.webView{
    display: block;
}
.mobileView{
    display: none;
}

.about-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80vh;
    width: 100%;
    gap: 12px;
}

.pill {
    margin: 0 !important;
    margin-bottom: 16px !important;
}

.left {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.right {
    width: 100%;    
    display: flex;
    justify-content: flex-end;
}

.right img {
    height: 100%;
    max-height: 350px;
}

.top,
.bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.card-1st,
.card-2nd {
    height: 100%;
    position: relative;
    width: 100%;
}

.card-1st .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    font-family: Geist Mono, monospace;
}

.card-1st img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-with-dashed-border {
    width: 100%;
}

.card-2nd .details {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -4%;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 24px;
}

.leader-cards{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.leader-card{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.leaderImg{
    height: 120px;
    width: 120px;
    margin-bottom: 32px;
}

.poition{
    margin-bottom: 16px;
    color: #00a0ff;
    background: linear-gradient(90deg, #218DFF, #52C5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    font-size: 16px;
    font-weight: 700;
}

.pName{
font-weight: 600;
font-size: 32px;
line-height: 40px;
letter-spacing: -4%;
margin-bottom: 16px;
}

.prev{
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
margin-bottom: 32px;
opacity: 70%;
}

.linkedImg{
    height: 24px;
    width: 24px;
}

@media screen and (max-width: 768px) {
    .webView{
        display: none;
    }
    .mobileView{
        display: block;
    }
    .about-hero {
        flex-direction: column;
        padding: 20px;
    }
    .left{
        align-items: center;
        text-align: center;
    }
    .right {
        display: block;
    }
    .right img{
        width: 100%;
        height: auto;
    }
    .top,
    .bottom {
        flex-direction: column;
    }
    .bottom{
        flex-direction: column-reverse;
    }
    .leader-cards{
        flex-direction: column;
        gap: 40px
    }

    .card-1st{
        max-height: 100px;
        overflow: hidden;
    }
    .card-2nd .details{
font-weight: 600;
font-size: 20px;
line-height: 28px;
letter-spacing: -4%;
    }
}