:root {
    /* font-family: "Lato", serif;*/
    font-family: Inter;
    font-size: 14px;
}

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
}

#logo {
    /* margin: 12px 32px; */
    max-height: 50px;
    min-height: 28px;
    width: max-content;
    border-radius: 8px;
    /* background-color: white; */
}

nav {
    /* height: min-content; */
    background-color: black;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    padding: 20px 82px;

}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
}

#nav_close,
#nav_menu {
    display: none;
}

@media (max-width: 900px) {
    nav li {
        display: none
    }

    nav li#nav_menu {
        display: block;
    }
}

nav li img {
    height: 48px;
    width: 48px;
}

nav ul li a {
    display: flex;
    justify-self: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    height: 48px;
    padding: 0px 24px;
    border-radius: 18px;
}

nav ul li a:active {
    color: #EE5007;
}

nav ul li a.active {
    color: #EE5007;
}

button.btn {
    border: 0;
    border-radius: 18px;
    padding: 12px 24px;
    background-color: #EE5007;
    color: #ffffff;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    transition-timing-function: ease-in;
    transition-duration: 0.1s;
}

button.btn:hover {
    background-color: #C01F27;
}

button.btn:active {
    color: #999999;
    background-color: white;
    /* background-color: green; */
}

.hero {
    position: relative;
    height: 650px;
}

.hero .filter {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    height: 650px;
    width: 100%;
    z-index: -1;
}

.hero .hero_text {
    display: flex;
    flex-direction: column;
    z-index: 10;

}

.hero .text {
    margin-top: 180px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.hero p {
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-weight: 400;
    line-height: normal;
}

.hero_video {
    position: absolute;
    z-index: -10;
    /* top: -18px; */
    height: 650px;
    width: 100%;
    object-fit: cover;
}


.hero ul {
    display: flex;
    padding: 0;
    list-style: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.hero_text>ul {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 150px;
}

.hero_text li {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.hero_text .hero_link {
    gap: 8px;
}



header .text h1 {
    font-size: 74px;
    font-weight: 700;
    text-align: center;
}

header .text button {
    margin-top: 82px;
}

.hero_text ul li img {
    height: 24px;
    width: 24px;
}

.hero_link>li>a>img {
    background-color: #EE5007;
}

.hero_link>li>a {
    display: block;
}

.hero_link>li>a>img {
    padding: 4px;
    border-radius: 8px;
}



@media (max-width: 800px) {
    .hero_text>ul {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        width: max-content;
        margin: 0 auto;
        margin-top: 10vh;
    }

    .hero .text {
        margin-top: 10vh;
    }

    @media (max-width: 500px) {
        header .text h1 {
            font-size: 52px;
        }
    }
}


.callToAction {
    border: 0;
    border-radius: 16px;
    padding: 8px 20px;
    background-color: #EE5007;
    color: #ffffff;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    transition-timing-function: ease-in;
    transition-duration: 0.1s;
}

.callToAction>a {
    color: white;
    text-decoration: none;
}


.callToAction:hover {
    background-color: #C01F27;
}

h1.heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 0;
}

div.heading {
    background-image: url('assets/icon/underline.svg');
    background-repeat: no-repeat;
    background-position: center;
    height: 10px;
    margin-top: 10px;
}

#ourServices {
    margin-top: 10vh;
}

#ourServices>ul {
    margin-top: 50px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.ourServicesButton {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: Inter;
    border-radius: 32px;
    border: 2px solid transparent;
    transition: all 3s ease;
    transition: background-color 0.6s ease;
}

.ourServicesButton.selected {
    color: black;
    background-color: #D4AF37;
}

.ourServicesButton.unselected {
    color: #D4AF37;
    background-color: transparent;
    border: 2px solid #d4af37ae;
}

.ourServicesButton:hover {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    /* background-color: transparent; */
    /* transform: background-color rgba(212, 175, 55, 0.2) ease 1s; */
    background-color: rgba(212, 175, 55, 0.2);
}

.ourServicesButton.selected:hover {
    background-color: transparent;
}

.service_card {
    display: flex;
    padding-bottom: 16px;
    margin: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: #FFF;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    flex: 1 1 300px;
}

.service_card:hover {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}

.service_card>img {
    align-self: stretch;
    width: 100%;
    max-height: 500px;
}

.service_card>h3,
.service_card>p {
    align-self: stretch;
    text-align: center;
    font-weight: 600;
}

.service_card>h3 {
    color: #F8CB2E;
    font-size: 24px;
    font-weight: 600;
}

.service_card>p {
    color: rgba(0, 0, 0, 0.52);
    font-size: 16px;
    font-weight: 400;
}

.service_cards {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 52px;
    width: 85%;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center>button.callToAction {
    margin-top: 48px;
}

#ourRecentProjects {
    margin-top: 15vh;
    margin-bottom: 10vh;
}

.project_cards {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 32px;
    flex-wrap: wrap;

    margin-top: 52px;
}

.project_card {
    display: flex;
    padding-bottom: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    background: #FFF;
    /* box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.25); */
    border: 1px solid rgba(0, 0, 0, 0.25);
    width: fit-content;
    transition: all 0.3s ease;
    margin: 8px;
}

.project_card:hover {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}

.project_card .image {
    position: relative;
}

.project_card div>img {
    width: 350px;
    height: 350px;
}

.project_card button.moveButton {
    position: absolute;
    background-color: transparent;
    border: 0;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20%;
}

.project_card button.moveButton {
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.project_card button.moveButton:hover {
    opacity: 1;
}

.project_card button img {
    border-radius: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.50);
}

.project_card button.left {
    left: 0;
}

.project_card button.right {
    right: 0;
}

.project_card h3 {
    align-self: stretch;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

#aboutUs {
    background-image: url('assets/images/aboutUsBackground.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.contanour {
    width: 80%;
    padding: 95px 0;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    row-gap: 10px;
}

@media (max-width: 650px) {
    .contanour {
        padding: 55px 0;
    }
}

.contanour>.image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    overflow: hidden;
    margin: 0 82px;
}

@media (max-width: 700px) {
    .contanour>.image {
        max-width: none;
        margin: 0 24px;
    }

    @media (max-width: 700px) {
        .contanour>.image {
            margin: 0;
        }
    }

    @media (max-width: 400px) {
        .contanour {
            width: 92%;
        }
    }
}



.contanour>.image>img {
    width: 100%;
}

.contanour>.content {
    flex: 1;
    min-width: 300px;
}

.content>h2,
.content>p {
    color: white;
    text-align: left;
    align-self: stretch;
    font-size: 24px;
    font-weight: 600;

}

.content>h2 {
    margin: 14px;
}

.content>p {
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
}

#clients {
    margin-top: 15vh;
    padding-top: 10vh;
    padding-bottom: 2vh;
    background-color: #dbdbdb;
}

.client_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 80px;
    gap: 18px;
    flex-shrink: 0;
    flex-shrink: 1;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
    transition: all 1s ease;
}

.client_card>img {
    height: 80px;
    width: 80px;
}

.client_card>p,
.client_card>h3,
.client_card>h4 {
    align-self: stretch;
    color: #000;
    text-align: center;
    font-size: 14px;
}

.client_card>p {
    color: #000;
    font-weight: 400;
}

.client_card>h3 {
    color: #EE5007;
    font-size: 16px;
    font-weight: 600;
}

.client_card>h4 {
    color: #000;
    font-weight: 300;
}

.client_card_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto;
    max-width: 80vw;
}

.client_card_block>button>img {
    border-radius: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.50);
}

.client_card_block>button {
    height: 30vh;
    width: 10%;
    background: 0;
    border: 0;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.client_card_block>button:hover {
    transform: scale(125%);
}

#contact {
    /* padding: 0vh; */
    padding-top: 7vh;
    background-color: #dbdbdb;
}

#contact .contanour {
    row-gap: 5vh;
    padding-top: 45px;
    height: fit-content;
}

#contact .right {
    display: flex;
    flex: 1;
    padding: 18px 20px;
    flex-direction: column;
    align-items: center;
    gap: 54px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
}

.right>h2 {
    color: #EE5007;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.right>ul:nth-child(2) {
    margin: 0px auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
}

.right>ul:nth-child(2)>li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.right>ul:nth-child(2)>li>a>img {
    height: 24px;
    width: 24px;
    /* filter: invert(1); */
}

.right>ul:nth-child(2)>li>p {
    flex: 1 0 0;
}

.right>ul:nth-child(3) {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.right>ul:nth-child(3)>li>a>img {
    width: 24px;
    height: 24px;
}

.right>ul:nth-child(3)>li>a {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #EE5007;
    padding: 12px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.right>ul:nth-child(3)>li>a:hover {
    transform: scale(125%)
}

.form_section {
    display: flex;
    flex: 2;
    padding: 18px 20px;
    flex-direction: column;
    align-items: center;
    gap: 54px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
}

.form_section>h2 {
    color: #EE5007;
    font-family: Inter;
    font-size: 32px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

form>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

form>div>input {
    flex: 1;
    min-width: 200px;
}

form input,
form textarea {
    align-self: stretch;
    outline: none;
    padding: 10px 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: #FFF;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;


}

form textarea {
    height: 176px;
    padding: 10px 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: #FFF;
}

form button {
    padding: 8px 20px;
    border-radius: 8px;
    background: #EE5007;
    color: #FFF;
    font-family: Outfit;
    font-size: 18px;
    font-weight: 500;
    border: none;
}

.center-center {
    background-color: gray;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
}

footer {
    background-color: black;
    color: white;
}

footer>h3 {
    padding: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.70);
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
}

footer>h3>a {
    color: white;
}


.top_footer {

    background: #EE5007;
    display: flex;
    padding: 16px 100px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.top_footer>h2 {
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-weight: 700;

}

.top_footer>ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.top_footer li>a {
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 999px;
    background-color: white;
    transition: all 0.3s ease;
}

.top_footer li>a:hover {
    transform: scale(125%);
}

.top_footer a>img {
    filter: invert(1);
    padding: 8px;
}

.bottom_footer {
    width: 80%;
    margin: 32px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.bottom_footer>.link {
    display: flex;
    flex-direction: column;
    gap: 26px;
    flex: 1 1 500px;
}

.bottom_footer>.contact {
    display: flex;
    flex-direction: column;
    gap: 26px;
    flex: 1 1 390px;
}

.bottom_footer>.link>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    row-gap: 32px;
}

.bottom_footer a {
    text-decoration: none;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-weight: 300;
}

.bottom_footer li {
    list-style: none;
}

.bottom_footer>.contact>ul {
    display: flex;
    flex-direction: column;
    gap: 16px;

}

.bottom_footer h2 {
    color: #F8CB2E;
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    align-self: stretch;
}

.service_cards>.service_card.hidden {
    display: none;
}

.service_cards>.service_card.show {
    display: flex;
}


.client_images {
    display: flex;
    flex-direction: row;
    margin: 0 12px;
    gap: 42px;
    overflow: auto;
    padding: 32px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    /* To hide the scroll bar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.client_images::-webkit-scrollbar {
    /* To hide the scroll bar */
    display: none;
}


.client_images>.client_card {
    min-width: 210px;
    max-width: 720px;
    scroll-snap-align: center;
}

@media (max-width: 580px) {
    .client_images {
        gap: 24px;
        padding: 16px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .client_images>.client_card {
        min-width: 180px;
        padding: 22px 20px;
        margin: 0 6px;

    }

    @media (max-width: 500px) {
        .client_images {
            gap: 12px;
        }

        .client_images>.client_card {
            padding: 22px 12px;
        }
    }

}

@media (max-width: 600px) {
    .client_card_block {
        max-width: 90%;
    }

}

/* New code for the auto scrolling images */

.project_card {
    padding: 4px;
    padding-bottom: 16px;
}

.project_card>.image>.image_scroll {
    width: 350px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    scroll-behavior: smooth;
    overflow-y: hidden;
    overflow-x: hidden;
    /* overflow: auto; */
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;

    /* transition: all 1s ease-in-out; */
}

.project_card>.image>.image_scroll>img:hover {
    transform: scale(110%);
}


.project_card>.image>.image_scroll>img {
    scroll-snap-align: center;
    transition: all 0.6s ease-in-out;
}

/* The other hero section */

.hero_header {
    background-image: url('assets/images/hero_background.jpg');
    display: flex;
    padding: 76px 0px 104px 0px;
    justify-content: center;
    align-items: center;
}

.hero_header>div {
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;

    /* font-family: Outfit; */
    font-family: Inter;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #FFF;
}

.hero_header>div>h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;

}

.hero_header>div>p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

footer#service {
    margin-top: 25vh;
}




/* Member card section */



.member_card {
    display: flex;
    max-width: 400px;
    min-width: 300px;
    flex: 1 1 300px;
    padding-bottom: 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
}

.member_card>.image>img {
    width: 100%;

}

.member_card>.image {
    position: relative;
}

.member_card>.image>ul {
    position: absolute;
    bottom: 3px;
    right: 0;
}

.member_card>.image>ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding: 6px;
    background-color: white;
    border-top-left-radius: 12px;
}

.member_card>.image>ul>a {
    display: block;

}

.member_card>.image>ul img {
    height: 18px;
    width: 18px;
    padding: 4px;
    background-color: #EE5007;
    border-radius: 8px;
}

.member_card>h2 {
    color: #D4AF37;
    text-align: center;
    font-family: Inter;
    font-size: 32px;
    font-weight: 700;
}

.member_card>p {
    color: rgba(0, 0, 0, 0.70);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* width: 380px; */
    margin: 0 18px;
}





.project_scroller {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 50px auto;
    margin-top: 0;
    max-width: 90vw;
}


.project_scroller>.images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
    overflow-x: auto;
    padding: 10vh;
    scroll-snap-type: x mandatory;
    padding-top: 5vh;
}

@media (max-width: 500px) {
    .project_scroller>.images {
        gap: 12px;
    }
}


.project_scroller>.images img {
    max-width: 100%;
    border-radius: 12px;
    transition: all 0.4s ease;
    max-height: 350px;
}

.project_scroller>.images .project_image {
    min-width: 300px;
    max-width: 450px;
    padding: 8px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.project_scroller>.images .project_image:hover {
    transform: scale(1.2);
}

@media (max-width: 500px) {
    .project_scroller>.images .project_image {
        min-width: 270px;
    }
}

#projects_scroller {
    margin-top: 10vh;
}



#achieve {
    margin-top: 10vh;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    /* height: max-content; */
    gap: 32px;
    width: 80%;
    margin: 0 auto;
    margin-top: 10vh;

}

.achievement {
    min-width: 300px;
    max-width: 450px;
    flex: 1 1 300px;
    overflow: hidden;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.achievement img {
    width: 100%;
}

@media (max-width: 500px) {
    .achievements {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 32px;
        overflow-x: auto;
        padding: 32px;
        width: 80%;
        margin: 0 auto;
        scroll-snap-type: x mandatory;
    }

    .achievement {
        min-width: 250px;
    }

}


@media (max-width: 500px) {
    .hidable {
        display: none;
    }
}


/* Team card */

.team_card {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 14px;
    transition: all 0.3s ease;
    scroll-snap-align: center;
}

.team_card:hover {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}

.team_card .img {
    height: 400px;
    width: 350px;
    overflow: hidden;
    display: flex;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}


.team_card .img>img {
    width: 100%;
    height: fit-content;
    position: absolute;
}

.team_card .img ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    list-style: none;
    gap: 8px;
    position: absolute;
    bottom: 0;
    right: 4px;
}

.team_card .img ul li {
    display: flex;
    flex-direction: row;
    gap: 8px;
    transition: all 0.2s ease;
}


.team_card .img ul li:hover img {
    transform: scale(1.1);
}

.team_card .img ul li a {
    display: block;
}

.team_card .img ul li a img {
    padding: 4px;
    border-radius: 8px;
    height: 24px;
    width: 24px;
    background-color: #EE5007;
}

.team_card h2 {
    align-self: stretch;
    color: #F8CB2E;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
}

.team_card .ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
}

.team_card ul {
    padding: 0 24px;
}

.team_cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    padding: 32px;
    margin: 0 18px;
    width: 100%;
    gap: 32px;
    overflow: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.team_members {
    display: flex;
    flex-direction: row;
    margin: 5vh auto;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 90%;
}

.team_button {
    display: flex;
    height: fit-content;
    width: fit-content;
    padding: 8px;
    border: none;
    border-radius: 99%;
    transition: all 0.3s ease;
    background-color: #b9b9b9;
}

.team_button:hover {
    background-color: #999999;
}

.team_cards_team {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    width: 90%;
    margin: 7vh auto;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 820px) {
    .team_members {
        margin: 0;
        width: 100%;
    }

    .team_cards {
        margin: 0;
    }

    .team_card {
        width: fit-content;
    }

    .team_card .img {
        height: 360px;
        width: 300px;
    }

    .team_button {
        padding: 8px 2px;
        border-radius: 16%;
    }
}

.team_images {
    column-count: 3;
    column-gap: 18px;
    row-gap: 12px;
    width: 80%;
    margin: 5vh auto;
}

.team_images>.image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.team_images>.image>img {
    transition: all 0.3s ease;
    width: 100%;
}

.team_images>.image>.open {
    position: absolute;
    height: 48px;
    width: 48px;
    z-index: 10;
}

.team_images>.image>.open>img {
    height: 100%;
    width: 100%;
    padding: 4px;
    transition: all 0.3s ease;
    opacity: 0;
    cursor: pointer;
}

.team_images>.image:hover>img {
    /* opacity: 0.3; */

}

.team_images>.image:hover>.open>img {
    opacity: 1;
    /* transform: scale(1.1); */
}

@media (max-width: 700px) {
    .team_images {
        column-count: 2;
        width: 95%;
    }

    .team_images>.image>.open {
        width: 20%;
        height: 20%;
    }
}

/* director section */

.director {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 14px;
    width: fit-content;
    transition: all 0.3s ease;
    scroll-snap-align: center;
}

.director:hover{
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}

.director .image {
    width: 300px;
    height: 360px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.director .image>img {
    width: 100%;
    align-self: flex-start;
}

.director .image>ul {
    list-style: none;
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 4px;
    margin-right: 4px;
}

.director .image>ul li {}

.director .image>ul li a {
    display: block;
}

.director .image>ul li a img {
    padding: 4px;
    border-radius: 8px;
    height: 24px;
    width: 24px;
    background-color: #EE5007;

}

.director h2 {
    color: #F8CB2E;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    align-self: stretch;
    text-align: center;

}

.director p {
    color: rgba(0, 0, 0, 0.52);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    align-self: stretch;
    text-align: center;
}


.directors {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: auto;
    width: 80%;
    margin: 0 auto;
    gap: 18px;
    justify-content: start;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    scroll-snap-type: x mandatory;
}