

/* =========================================================
   GENERAL
========================================================= */

.team-page {
    width: 100%;
    max-width: 1180px;

    margin: 45px auto;

    padding: 0 20px;

    box-sizing: border-box;
}

.team-section {
    margin-bottom: 18px;

    border: 1px solid #e2e8ee;
    border-radius: 12px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 4px 18px rgba(23, 59, 92, 0.07);
}


/* =========================================================
   ACCORDION HEADING
========================================================= */

.team-heading {
    position: relative;

    width: 100%;
    min-height: 64px;

    padding: 18px 65px 18px 28px;

    border: 0;
    outline: 0;

    background: #f5f8fb;

    color: #173b5c;

    font-size: 17px;
    font-weight: 700;

    text-align: center;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.team-heading:hover {
    background: #eaf2f7;
}

.team-section.active .team-heading {
    background: linear-gradient(
        135deg,
        #173b5c 0%,
        #24597d 100%
    );

    color: #fff;
}


/* =========================================================
   PLUS / MINUS
========================================================= */

.team-icon {
    position: absolute;

    right: 22px;
    top: 50%;

    width: 32px;
    height: 32px;

    transform: translateY(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 22px;
    font-weight: 400;

    color: inherit;
}

.team-section.active .team-icon {
    background: rgba(255,255,255,0.12);
}


/* =========================================================
   CONTENT
========================================================= */

.team-content {
    display: none;

    padding: 32px;

    background: #fff;
}

.team-section.active .team-content {
    display: block;

    animation: teamFade 0.25s ease;
}

@keyframes teamFade {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   COORDINATING CENTRE
========================================================= */

.coordinating-fixed .team-heading {
    min-height: 92px;

    padding: 16px 75px;
}

.coordinating-title {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    line-height: 1.45;
}

.coordinating-title strong {
    font-size: 22px;

    font-weight: 800;

    letter-spacing: 0.3px;
}

.coordinating-title small {
    margin-top: 5px;

    font-size: 14px;

    font-weight: 500;

    opacity: 0.9;
}

.coordinating-content {
    padding: 38px;
}


/* =========================================================
   PRINCIPAL PROFILE
========================================================= */

.principal-profile {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: start;
}


/* =========================================================
   PRINCIPAL LEFT
========================================================= */

.principal-left {
    text-align: center;
}

.principal-image {
    margin-bottom: 22px;
}

.principal-image img {
    width: 270px;
    height: 360px;

    object-fit: cover;

    display: block;

    margin: 0 auto;

    border-radius: 10px;

    border: 5px solid #fff;

    box-shadow:
        0 8px 25px rgba(23, 59, 92, 0.16);
}


/* =========================================================
   PRINCIPAL DETAILS
========================================================= */

.profile-label {
    display: inline-block;

    margin-bottom: 9px;

    color: #24597d;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.principal-details h2 {
    margin: 0 0 12px;

    color: #173b5c;

    font-size: 26px;

    line-height: 1.35;

    font-weight: 700;
}

.principal-details p {
    margin: 7px 0;

    color: #555;

    font-size: 16px;

    line-height: 1.55;
}

.principal-details .qualification {
    color: #173b5c;

    font-weight: 600;
}


/* =========================================================
   KNOW MORE
========================================================= */

.know-more-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 16px;

    padding: 11px 20px;

    background: #173b5c;

    color: #fff !important;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.know-more-btn:hover {
    background: #0e2c45;

    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(23, 59, 92, 0.18);
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.principal-right {
    text-align: left;

    padding: 5px 10px;
}


/* =========================================================
   HOST LOGO
========================================================= */

.host-logo {
    min-height: 300px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.host-logo img {
    width: 270px;
    height: 270px;

    object-fit: contain;

    display: block;
}


/* =========================================================
   CO-PI TITLE
========================================================= */

.principal-right .co-pi {
    padding-top: 22px;

    border-top: 1px solid #e1e7ec;
}

.section-mini-title {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}

.section-mini-title > span {
    width: 4px;
    height: 25px;

    background: #173b5c;

    border-radius: 5px;
}

.section-mini-title h3 {
    margin: 0;

    color: #173b5c;

    font-size: 21px;

    font-weight: 800;
}


/* =========================================================
   CO-PI CARDS
========================================================= */

.principal-right .person {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 12px;

    padding: 13px 15px;

    background: #f7fafc;

    border: 1px solid #e5ebf0;

    border-left: 4px solid #173b5c;

    border-radius: 7px;

    text-align: left;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.principal-right .person:hover {
    background: #eef5f9;

    transform: translateX(3px);

    box-shadow:
        0 4px 12px rgba(23, 59, 92, 0.07);
}

.person-number {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f0f5;

    color: #173b5c;

    font-size: 11px;

    font-weight: 800;
}

.person-info {
    display: flex;

    flex-direction: column;
}

.principal-right .person strong {
    color: #173b5c;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;
}

.principal-right .person span {
    margin-top: 3px;

    color: #666;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.team-table-wrapper,
.project-table-wrapper {
    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    border-radius: 8px;
}


/* =========================================================
   TEAM TABLE
========================================================= */

.team-table {
    width: 100%;

    min-width: 850px;

    border-collapse: separate;

    border-spacing: 0;

    background: #fff;
}

.team-table th {
    padding: 15px 16px;

    background: #173b5c;

    color: #fff;

    border: 1px solid #315b76;

    text-align: center;

    vertical-align: middle;

    font-size: 14px;

    font-weight: 700;
}

.team-table td {
    padding: 16px;

    border: 1px solid #e1e7ec;

    color: #444;

    font-size: 14px;

    line-height: 1.6;

    vertical-align: top;
}

.team-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.team-table tbody tr:hover {
    background: #eef5f9;
}

.team-table td:first-child {
    width: 42%;

    font-weight: 500;
}

.team-table td:nth-child(2) {
    width: 27%;
}

.team-table td:nth-child(3) {
    width: 31%;
}

.team-table td strong {
    color: #173b5c;
}


/* =========================================================
   PROJECT TEAM
========================================================= */

.project-subsection {
    margin-bottom: 42px;
}

.project-subsection:last-child {
    margin-bottom: 0;
}

.project-subsection h2 {
    position: relative;

    margin: 0 0 22px;

    padding: 0 0 11px;

    color: #173b5c;

    font-size: 20px;

    font-weight: 800;

    border-bottom: 1px solid #dce4ea;
}

.project-subsection h2::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 75px;

    height: 3px;

    background: #173b5c;

    border-radius: 5px;
}


/* =========================================================
   PROJECT GRID
========================================================= */

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 13px;
}

.project-person {
    padding: 15px 17px;

    background: #f8fafc;

    border: 1px solid #e1e8ed;

    border-left: 4px solid #173b5c;

    border-radius: 7px;

    color: #333;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.project-person:hover {
    background: #eef5f9;

    transform: translateY(-2px);

    box-shadow:
        0 5px 14px rgba(23, 59, 92, 0.08);
}

.project-person span {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 12px;

    font-weight: 500;
}


/* =========================================================
   PROJECT TABLE
========================================================= */

.project-table {
    width: 100%;

    min-width: 650px;

    border-collapse: collapse;
}

.project-table th {
    padding: 14px 16px;

    background: #173b5c;

    color: #fff;

    border: 1px solid #315b76;

    text-align: left;

    font-size: 14px;

    font-weight: 700;
}

.project-table td {
    padding: 14px 16px;

    border: 1px solid #e1e7ec;

    color: #444;

    font-size: 14px;

    line-height: 1.5;

    vertical-align: top;
}

.project-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.project-table tbody tr:hover {
    background: #eef5f9;
}

.project-table td:first-child {
    width: 55%;

    color: #173b5c;

    font-weight: 700;
}

.project-table td:last-child {
    width: 45%;
}


/* =========================================================
   AJAY SINGH DHAMA
========================================================= */

.ajay-content {
    padding: 40px 25px;

    text-align: center;
}

.ajay-profile {
    max-width: 650px;

    margin: 0 auto;
}

.ajay-photo {
    width: 285px;
    height: 335px;

    object-fit: cover;

    display: block;

    margin: 0 auto 22px;

    border-radius: 9px;

    border: 4px solid #fff;

    box-shadow:
        0 8px 25px rgba(23, 59, 92, 0.15);
}

.ajay-profile h3 {
    margin: 12px 0 7px;

    color: #173b5c;

    font-size: 23px;

    font-weight: 700;
}

.ajay-profile p {
    margin: 0;

    color: #555;

    font-size: 16px;
}


/* =========================================================
   FINAL TEAM IMAGE
========================================================= */

.team-group-image {
    width: 100%;

    margin-top: 30px;

    padding: 5px;

    text-align: center;
}

.team-photo {
    max-width: 100%;

    height: auto;

    display: block;

    margin: 0 auto;

    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(23, 59, 92, 0.10);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .principal-profile {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .principal-right {
        max-width: 600px;

        width: 100%;

        margin: 0 auto;
    }

    .project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .team-page {
        margin: 25px auto;

        padding: 0 12px;
    }

    .team-section {
        margin-bottom: 14px;

        border-radius: 9px;
    }

    .team-heading {
        min-height: 56px;

        padding: 15px 48px 15px 18px;

        font-size: 14px;

        line-height: 1.4;
    }

    .team-icon {
        right: 13px;

        width: 28px;
        height: 28px;

        font-size: 20px;
    }

    .team-content {
        padding: 22px 15px;
    }


    /* Coordinating */

    .coordinating-fixed .team-heading {
        min-height: 82px;

        padding: 13px 48px 13px 20px;
    }

    .coordinating-title strong {
        font-size: 17px;
    }

    .coordinating-title small {
        margin-top: 4px;

        font-size: 11px;

        line-height: 1.45;
    }

    .coordinating-content {
        padding: 25px 15px;
    }


    /* Principal */

    .principal-profile {
        gap: 32px;
    }

    .principal-image img {
        width: 225px;

        height: 300px;
    }

    .principal-details h2 {
        font-size: 22px;
    }

    .principal-details p {
        font-size: 14px;
    }


    /* Logo */

    .host-logo {
        min-height: auto;

        margin-bottom: 15px;
    }

    .host-logo img {
        width: 210px;

        height: 210px;
    }

    .principal-right {
        padding: 0;
    }

    .principal-right .co-pi {
        padding-top: 18px;
    }

    .section-mini-title {
        justify-content: center;
    }

    .section-mini-title h3 {
        font-size: 19px;
    }

    .principal-right .person {
        padding: 12px 14px;
    }

    .principal-right .person strong {
        font-size: 15px;
    }

    .principal-right .person span {
        font-size: 13px;
    }


    /* Tables */

    .team-table {
        min-width: 760px;
    }

    .team-table th,
    .team-table td {
        padding: 12px;

        font-size: 13px;
    }


    /* Project */

    .project-subsection {
        margin-bottom: 32px;
    }

    .project-subsection h2 {
        font-size: 18px;
    }

    .project-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .project-person {
        padding: 12px;

        font-size: 13px;
    }


    /* Ajay */

    .ajay-content {
        padding: 30px 15px;
    }

    .ajay-photo {
        width: 250px;

        height: 300px;
    }

    .ajay-profile h3 {
        font-size: 21px;
    }

    .ajay-profile p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .team-page {
        padding: 0 9px;
    }

    .team-heading {
        font-size: 13px;

        padding: 14px 43px 14px 12px;
    }

    .team-icon {
        right: 9px;
    }

    .coordinating-fixed .team-heading {
        padding: 12px 42px 12px 15px;
    }

    .coordinating-title strong {
        font-size: 15px;
    }

    .coordinating-title small {
        font-size: 10px;
    }

    .team-content {
        padding: 18px 11px;
    }

    .principal-image img {
        width: 205px;

        height: 275px;
    }

    .principal-details h2 {
        font-size: 20px;
    }

    .host-logo img {
        width: 185px;

        height: 185px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-person {
        font-size: 14px;
    }

    .team-table {
        min-width: 720px;
    }

    .project-table {
        min-width: 600px;
    }

    .ajay-photo {
        width: 225px;

        height: 275px;
    }

}

/* =========================================================
   TEAM IMAGE SLIDER
========================================================= */

.team-group-image {
    width: 100%;
    max-width: 1450px;
    margin: 45px auto 50px;
    padding: 0 20px;
    box-sizing: border-box;
}

.team-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #eef3f6;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.team-slides {
    display: flex;
    width: 100%;
    height: 600px;
    transition: transform 0.7s ease-in-out;
}

.team-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.team-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   ARROWS
========================================================= */

.team-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.90);
    color: #173f5f;

    font-size: 26px;
    font-weight: 600;

    cursor: pointer;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);

    transition: all 0.25s ease;
}

.team-slider-btn:hover {
    background: #173f5f;
    color: #ffffff;
}

.team-prev {
    left: 20px;
}

.team-next {
    right: 20px;
}


/* =========================================================
   DOTS
========================================================= */

.team-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    border-radius: 30px;

    background: rgba(0, 0, 0, 0.35);

    z-index: 20;
}

.team-dot {
    width: 9px;
    height: 9px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: all 0.3s ease;
}

.team-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .team-slides {
        height: 480px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .team-group-image {
        margin-top: 30px;
        padding: 0 10px 30px;
    }

    .team-slides {
        height: 300px;
    }

    .team-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .team-prev {
        left: 10px;
    }

    .team-next {
        right: 10px;
    }

    .team-slider-dots {
        bottom: 10px;
    }

}
/* =========================================================
   FINAL TEAM IMAGE CARD SLIDER
========================================================= */

.team-group-image {
    width: 100%;
    max-width: 1180px;
    margin: 40px auto 50px;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =========================================================
   SLIDER OUTER
========================================================= */

.team-slider {
    position: relative;
    width: 100%;

    overflow: hidden;

    padding: 18px;

    box-sizing: border-box;

    border-radius: 18px;

    background: #f5f8fb;

    border: 1px solid #e1e8ed;

    box-shadow:
        0 8px 25px rgba(23, 59, 92, 0.10);
}


/* =========================================================
   SLIDES
========================================================= */

.team-slides {
    display: flex;

    width: 100%;
    height: 520px;

    transition:
        transform 0.65s ease-in-out;
}


/* =========================================================
   SINGLE SLIDE
========================================================= */

.team-slide {
    flex: 0 0 100%;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.team-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid #e2e8ee;

    padding: 8px;

    box-sizing: border-box;

    box-shadow:
        0 6px 20px rgba(23, 59, 92, 0.10);
}


/* =========================================================
   PREVIOUS / NEXT BUTTON
========================================================= */

.team-slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #ffffff;

    color: #173b5c;

    font-size: 22px;

    font-weight: 600;

    cursor: pointer;

    z-index: 20;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 5px 15px rgba(23, 59, 92, 0.18);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.team-slider-btn:hover {
    background: #173b5c;

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.06);
}

.team-prev {
    left: 30px;
}

.team-next {
    right: 30px;
}


/* =========================================================
   DOTS
========================================================= */

.team-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 25px;

    background: rgba(23, 59, 92, 0.78);

    z-index: 20;
}

.team-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.team-dot.active {
    width: 23px;

    border-radius: 10px;

    background: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .team-group-image {
        padding: 0 15px;
    }

    .team-slider {
        padding: 14px;
    }

    .team-slides {
        height: 430px;
    }

    .team-slider-btn {
        width: 40px;
        height: 40px;

        font-size: 20px;
    }

    .team-prev {
        left: 23px;
    }

    .team-next {
        right: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .team-group-image {
        margin-top: 30px;

        padding: 0 10px 30px;
    }

    .team-slider {
        padding: 10px;

        border-radius: 15px;
    }

    .team-slides {
        height: 320px;
    }

    .team-slide img {
        border-radius: 11px;

        padding: 5px;
    }

    .team-slider-btn {
        width: 36px;
        height: 36px;

        font-size: 18px;
    }

    .team-prev {
        left: 17px;
    }

    .team-next {
        right: 17px;
    }

    .team-slider-dots {
        bottom: 20px;

        gap: 6px;

        padding: 6px 9px;
    }

    .team-dot {
        width: 7px;
        height: 7px;
    }

    .team-dot.active {
        width: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .team-slides {
        height: 250px;
    }

    .team-slider-btn {
        width: 32px;
        height: 32px;

        font-size: 16px;
    }

    .team-prev {
        left: 15px;
    }

    .team-next {
        right: 15px;
    }

}
/* =========================================================
   TEAM IMAGE - COMPACT CARD SLIDER
========================================================= */

.team-group-image {
    width: 100%;
    max-width: 900px;
    margin: 35px auto 45px;
    padding: 0 15px;
    box-sizing: border-box;
}


/* ================= CARD ================= */

.team-slider {
    position: relative;
    width: 100%;

    padding: 14px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e1e8ed;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(23, 59, 92, 0.10);

    overflow: hidden;
}


/* ================= SLIDER ================= */

.team-slides {
    display: flex;

    width: 100%;

    /* IMAGE HEIGHT */
    height: 400px;

    transition:
        transform 0.65s ease-in-out;
}


/* ================= SINGLE IMAGE ================= */

.team-slide {
    flex: 0 0 100%;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}


/* ================= IMAGE ================= */

.team-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #f7f9fb;

    border-radius: 12px;

    padding: 5px;

    box-sizing: border-box;

    border: 1px solid #e6ebef;
}


/* =========================================================
   ARROWS
========================================================= */

.team-slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #173b5c;

    font-size: 20px;

    cursor: pointer;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}

.team-slider-btn:hover {
    background: #173b5c;

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.05);
}

.team-prev {
    left: 25px;
}

.team-next {
    right: 25px;
}


/* =========================================================
   DOTS
========================================================= */

.team-slider-dots {
    position: absolute;

    left: 50%;

    bottom: 24px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 20px;

    background: rgba(23, 59, 92, 0.75);

    z-index: 10;
}

.team-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: all 0.3s ease;
}

.team-dot.active {
    width: 20px;

    background: #ffffff;

    border-radius: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .team-group-image {
        max-width: 750px;
    }

    .team-slides {
        height: 350px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .team-group-image {
        margin-top: 25px;

        padding: 0 8px 30px;
    }

    .team-slider {
        padding: 9px;

        border-radius: 14px;
    }

    .team-slides {
        height: 260px;
    }

    .team-slide img {
        border-radius: 9px;
    }

    .team-slider-btn {
        width: 34px;
        height: 34px;

        font-size: 17px;
    }

    .team-prev {
        left: 16px;
    }

    .team-next {
        right: 16px;
    }

    .team-slider-dots {
        bottom: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .team-slides {
        height: 220px;
    }

}