.proj-highlights {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
}

.proj-thumb {
    width: 18.75vw;
    height: 10.54vw;
    box-sizing: border-box;
    float: left;
    border-radius: 25px;
    overflow: hidden;
    border: 0px var(--bg1) solid;
    outline: 0px #33A88C solid;
    box-shadow: 0px 0px 0px var(--txt2);
    transition: border 0.1s linear, outline 0.1s linear, box-shadow 0.1s linear;
}

.proj-thumb:hover {
    box-sizing: border-box;
    border: 5px var(--bg1) solid;
    outline: 5px #33A88C solid;
    /*box-shadow: 0px 5px 20px var(--txt2);*/
    transition: border 0.1s linear, outline 0.1s linear, box-shadow 0.1s linear;
}

.proj-thumb + .proj-thumb {
    margin-left: 1.875vw;
}

.proj-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proj-more {
    display: inline-block;
    height: 1.875vw;
    box-sizing: border-box;
    margin-top: 15px;
    padding: 0px 20px;
    font-size: 1.25vw;
    font-weight: normal;
    text-decoration: none;
    color: var(--txt1);
    border-radius: 1.25vw;
    border: 5px var(--bg1) solid;
    outline: 5px #33A88C solid;
    transition: background 0.1s linear, color 0.1s linear;
}

.proj-more:hover {
    background: var(--bg2);
    color: var(--txt2);
}

.logo-ticker {
    width: 60%;
    height: 240px;
    max-width: 1000px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    background: var(--mid);
    border-radius: 20px;
}

.row {
    width: fit-content;
    padding-right: 25px;
    height: 120px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 25px;
    animation: tickeranim 20s linear infinite;
}

.row:last-child {
    animation-delay: -2s;
}

.row img {
    height: 120px;
    filter: opacity(75%);
}

.row img:hover {
    filter: opacity(100%);
}

.row:hover {
    animation-play-state: paused;
}

@keyframes tickeranim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.about {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about-txt {
    width: 70%;
    font-weight: normal;
    text-transform: none;
}

.about-sidebar {
    width: 30%;
}

.about-sidebar img {
    left: 10%;
    width: 80%;
    object-fit: cover;
}

.experience {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
}

.exp-list {
    width: 35%;
}

.exp-detail {
    width: 65%;
    font-weight: normal;
}

.exp-list label {
    display: block;
    width: 100%;
    height: 2.5vw;
    cursor: pointer;
    text-align: left;
    font-size: 0.7vw;
    font-weight: normal;
    line-height: 1vw;
    white-space: nowrap;
    margin-bottom: 10px;
}

.exp-list label:hover {
    background: var(--mid);
    color: var(--txt2);
}

.exp-list label div {
    float: left;
    width: 2.5vw;
    height: 2.5vw;
    margin-right: 8px;
    background: url("../media/img/list.png");
    background-size: contain;
}

.exp-list label:hover div {
    background: url("../media/img/listhover.png");
    background-size: contain;
}

.exp-list label:first-child div {
    background: url("../media/img/ltop.png");
    background-size: contain;
}

.exp-list label:first-child:hover div {
    background: url("../media/img/ltophover.png");
    background-size: contain;
}

.exp-list label b {
    font-size: 1.2vw;
    line-height: 1.5vw;
}

.exp-detail input {
    display: none;
}

.exp-detail div {
    display: none;
    text-align: left;
    padding-left: 40px;
    text-transform: none;
}

.exp-detail div h3 {
    display: inline-block;
    line-height: 1.5vw;
    font-size: 1.2vw;
    margin: 0px;
    background: linear-gradient(90deg, #33A88C 0%, #337EA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-detail div h4 {
    line-height: 1vw;
    font-size: 0.7vw;
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: normal;
}

.exp-detail div a {
    color: #337EA8;
}

.exp-detail div a:hover {
    color: #33A88C;
}

#exp1:checked ~ #expdtl1,
#exp2:checked ~ #expdtl2,
#exp3:checked ~ #expdtl3,
#exp4:checked ~ #expdtl4,
#exp5:checked ~ #expdtl5,
#exp6:checked ~ #expdtl6 {
    display: block;
}