@font-face {
    font-family: 'Poppins Light';
    src: url('../fonts/Poppins-Light.woff2');
}

@font-face {
    font-family: 'Poppins Regular';
    src: url('../fonts/Poppins-Regular.woff2');
}

@font-face {
    font-family: 'Poppins Bold';
    src: url('../fonts/Poppins-Bold.woff2');
}

* {
    font-family: 'Poppins Regular', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    position: relative;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: all 1.5s;
    transition-delay: 1.25s;
}

body.active::after {
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
}

.container {
    padding: 0 33px;
}

::selection {
    color: white;
    background: black;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



/* Loader */

#loading-screen {
    position: fixed;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    pointer-events: none;
}

#loading-screen .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 50px;
    display: flex;
    background: rgb(80, 80, 80);
    border: none;
}

#loading-screen .loader .loader-1 {
    position: relative;
    background: #fff;
    border: none;
    outline: none;
    width: 200px;
}

#loading-screen .loader .loader-2 {
    position: relative;
    background: #fff;
    border: none;
    outline: none;
    width: 100px;
}

#loading-screen .loader .bar {
    height: 50px;
}

#loading-screen .counter {
    position: fixed;
    left: 50px;
    bottom: 50px;
    display: flex;
    height: 100px;
    line-height: 100px;
    font-size: 100px;
    font-weight: 400;
    clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    overflow: hidden;
}

#loading-screen .counter .counter-1,
#loading-screen .counter .counter-2,
#loading-screen .counter .counter-3 {
    position: relative;
    /* top: -15px; */
    top: 0;
}

#loading-screen .counter .num1offset1 {
    position: relative;
    right: -25px;
}

#loading-screen .counter .num1offset2 {
    position: relative;
    right: -10px;
}

/* Loader */



/* Header */
header {
    position: fixed;
    top: 20px;
    left: 30px;
    z-index: 5;
    width: 470px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

header .header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

header .header .header_outer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    height: 100px;
}

header .header .header_outer .logo {
    height: 80px;
}

header .header .header_outer .logo a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

header .header .header_outer .logo a .logo_pic {
    width: 102px;
    height: 70px;
    transform: scale(1.4);
}

header .header .header_outer .logo a .logo_pic svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .header .header_outer .logo a .logo_text {
    color: #fff;
    font: 600 35px/40px "Poppins Bold", sans-serif;
    letter-spacing: -2px;
}

header .header .header_outer .svg svg {
    width: 60px;
    cursor: pointer;
}

header .header .header_inner {
    width: 100%;
}

header .header .header_inner #sidebar {
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    /* gap: 50px; */
    gap: 15px;
    justify-content: space-between;
    overflow: auto;
    padding: 0;
    height: 0;
}

header .header .header_inner #sidebar::-webkit-scrollbar {
    width: 8px;
}
header .header .header_inner #sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
header .header .header_inner #sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
}

header .header .header_inner #sidebar .pages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .header .header_inner #sidebar .pages li {
    overflow: hidden;
}

header .header .header_inner #sidebar .pages li a {
    font: 300 45px/50px 'Poppins Regular', sans-serif !important;
    color: #000;
    padding: 2px 0 4px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transform: translateY(100%);
}

header .header .header_inner #sidebar .pages li a.active {
    color: rgba(0, 0, 0, 0.5);
    cursor: default;
}

header .header .header_inner #sidebar .pages li a.active::before {
    display: none;
}

header .header .header_inner #sidebar .pages li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #000;
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
}

header .header .header_inner #sidebar .pages li a:hover::before {
    width: 100%;
}

header .header .header_inner #sidebar .socials {
    display: flex;
    flex-direction: column;
}

header .header .header_inner #sidebar .socials li {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

header .header .header_inner #sidebar .socials li img {
    width: 27px;
    height: 27px;
    transform: translateY(100%);
}

header .header .header_inner #sidebar .socials li span {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    transform: translateY(100%);
}

header .header .header_inner #sidebar .socials li a {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transform: translateY(100%);
}

header .header .header_inner #sidebar .socials li a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #000;
}

header .header .header_inner #sidebar .socials li a:hover::before {
    width: 100%;
}

header .header .header_inner #sidebar .socials li svg {
    width: 20px;
    height: 20px;
    transform: translateY(120%);
}







/* New Added */
header .header .header_inner #sidebar .socials .logos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
header .header .header_inner #sidebar .socials .logos li{
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s;
}
header .header .header_inner #sidebar .socials .logos li:hover{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 20px, rgba(0, 0, 0, 0.11) 0px 7px 6px;
}
header .header .header_inner #sidebar .socials .logos li:hover a .content{
    text-decoration: underline;
}
header .header .header_inner #sidebar .socials .logos li a {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    font: 700 18px/20px "Poppins Regular", sans-serif;
    padding: 0 10px;
}
header .header .header_inner #sidebar .socials .logos li a .content{
    font: 700 18px/20px "Poppins Regular", sans-serif;
}

header .header .header_inner #sidebar .socials .logos li a img {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 5px;
    /* object-fit: cover; */
}

header .header .header_inner #sidebar .socials .logos li a::before,
header .header .header_inner #sidebar .socials .logos li a::after {
    display: none;
}


@media only screen and (max-width: 767.98px) {
    header .header .header_inner #sidebar .socials>li {
        justify-content: center;
    }

    header .header .header_inner #sidebar .language {
        justify-content: center;
    }
    header .header .header_inner #sidebar .socials .logos li a {
        padding-right: 20px;
    }
}
@media only screen and (max-width: 419.98px){
    header .header .header_inner #sidebar .socials .logos li a img {
        width: 100px;
        height: 100px;
    }
    header .header .header_inner #sidebar .socials .logos {
        width: 90%;
        margin: 0 auto;
    }
}
/* New Added */















header .header .header_inner #sidebar .language {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

header .header .header_inner #sidebar .language li {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    overflow: hidden;
}

header .header .header_inner #sidebar .language li a {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    width: 45px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(110%);
}

header .header .header_inner #sidebar .language li a.active,
header .header .header_inner #sidebar .language li a:hover {
    color: #fff;
    background: #000;
}

/* Header */








/* Home */
#home {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* overflow: hidden; */
}

#home::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#home .background_video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

#home .heading_wrapper {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    display: flex;
    overflow: hidden;
}

#home .heading_wrapper h1 {
    height: 150px;
    display: flex;
    align-items: center;
    font: 300 120px/126px 'Poppins Regular', sans-serif;
    letter-spacing: -5px;
    transform: translateY(100%);
}

#home .heading_wrapper .words {
    overflow: hidden;
    height: 150px;
    transform: translateY(100%);
}

#home .heading_wrapper .words span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    height: 100%;
    font: 300 120px/126px 'Poppins Regular', sans-serif;
    letter-spacing: -5px;
    animation: spin_words 18s infinite 12s;
}

@keyframes spin_words {
    18% {
        transform: translateY(-105%);
    }

    33% {
        transform: translateY(-100%);
    }

    52% {
        transform: translateY(-205%);
    }

    67% {
        transform: translateY(-200%);
    }

    85% {
        transform: translateY(-305%);
    }

    100% {
        transform: translateY(-300%);
    }
}

#home .scroll {
    position: absolute;
    z-index: 2;
    width: 80px;
    height: 100px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

#home .scroll img {
    display: block;
    width: 80px;
    height: 80px;
    transform: translateY(20px);
    animation: scroll 1.5s linear infinite forwards;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Home */





/* Home Second Section */
#home_second {
    padding: 150px 0 50px;
}

#home_second .second_page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#home_second .second_page .first_row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 930px;
}

#home_second .second_page .first_row .left_side {
    width: 50%;
    height: 100%;
}

#home_second .second_page .first_row .right_side {
    width: 50%;
    height: 100%;
}

#home_second .second_page .first_row .left_side .gsap_scrollTrigger {
    margin-bottom: 50px;
    overflow: hidden;
}

#home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 {
    font: 300 64px/70px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
    transform: translateY(100%);
}

#home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 span {
    display: block;
}

#home_second .second_page .first_row .left_side p {
    font: 300 24px/32px 'Poppins Regular', sans-serif;
    width: 620px;
    padding-bottom: 30px;
}

#home_second .second_page .first_row .left_side a {
    font: 600 16px/23px 'Poppins Bold', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#home_second .second_page .first_row .left_side a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

#home_second .second_page .first_row .left_side a:hover::after {
    left: 100%;
}

#home_second .second_page .first_row .left_side a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -200%;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#home_second .second_page .first_row .left_side a:hover::before {
    left: 0;
}

#home_second .second_page .second_row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 1150px;
}

#home_second .second_page .second_row .left_side {
    width: 50%;
    height: 100%;
}

#home_second .second_page .second_row .right_side {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#home_second .second_page .second_row .right_side .picture {
    height: 500px;
}

#home_second .second_page .second_row .right_side .context {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
    padding-bottom: 100px;
}

#home_second .second_page .second_row .right_side p {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    width: 70%;
    letter-spacing: -0.5px;
}

#home_second .second_page .second_row .right_side p span {
    font: 600 18px/27px 'Poppins Bold', sans-serif;
}

/* Home Second Section */



/* Home Third Section */
#home_third {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

#home_third::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#home_third .background_video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

#home_third .context_wrapper {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

#home_third .context_wrapper .gsap_scrollTrigger {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

#home_third .context_wrapper .gsap_scrollTrigger p {
    font: 300 56px/60px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    transform: translateY(100%);
}

#home_third .context_wrapper a {
    font: 600 16px/23px 'Poppins Bold', sans-serif;
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#home_third .context_wrapper a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

#home_third .context_wrapper a:hover::after {
    left: 100%;
}

#home_third .context_wrapper a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -200%;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#home_third .context_wrapper a:hover::before {
    left: 0;
}

/* Home Third Section */



/* Home Forth Section */
#home_forth {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#home_forth .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    user-select: none;
}

#home_forth .overlay .overlay_item {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#home_forth .overlay .overlay_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
}

#home_forth .overlay .overlay_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home_forth .picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 450px;
    overflow: hidden;
}

#home_forth .picture .picture_item {
    position: absolute;
    width: 100%;
    height: 100%;
}

#home_forth .picture .picture_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home_forth .banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font: 300 176px/176px 'Poppins Regular', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    --gap: 100px;
    gap: var(--gap);
}

#home_forth .banner ul {
    list-style: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    animation: scroll_text 60s linear infinite;
}

/* #home_forth .banner ul:hover{
    animation-play-state: paused;
} */

@keyframes scroll_text {
    from {
        transform: translateX(80%);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Home Forth Section */



/* Home Fifth Section */
#home_fifth {
    background: rgb(248, 249, 250);
    padding: 40px 0 70px;
}

#home_fifth .heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#home_fifth .heading .gsap_scrollTrigger {
    overflow: hidden;
    padding: 5px 0;
}

#home_fifth .heading .gsap_scrollTrigger h2 {
    font: 300 64px/66px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
    transform: translateY(100%);
}

#home_fifth .heading .gsap_scrollTrigger h2 span {
    display: block;
}

#home_fifth .heading a {
    font: 600 16px/23px 'Poppins Regular', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#home_fifth .heading a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1.8px;
    background: #000;
    transition: 0.3s;
}

#home_fifth .heading a:hover::after {
    left: 100%;
}

#home_fifth .heading a::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: -200%;
    width: 100%;
    height: 1.8px;
    background: #000;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#home_fifth .heading a:hover::before {
    left: 0;
}



#home_fifth .swiper_wrapper {
    margin-top: 80px;
    position: relative;
}

#home_fifth .swiper_wrapper .swiper {
    width: 100%;
    height: 100%;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper {
    display: flex;
    width: 100%;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide {
    width: calc((100% - 2 * 10px) / 3);
    overflow: hidden;
    position: relative;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #000;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .circle {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .circle img {
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
    user-select: none;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    user-select: none;
    pointer-events: none;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content h3 {
    font: 600 18px/28px "Poppins Regular", sans-serif;
    text-align: center;
    transform: translateY(100%);
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide:hover {
    cursor: pointer;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide:hover a .circle {
    width: 60%;
    height: 60%;
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide:hover a .content h3 {
    transform: translateY(0);
}

#home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide:hover a .circle img {
    transform: scale(1.4);
}

/* Home Fifth Section */



/* Home Sixth Section */
#home_sixth,
#talent_sixth,
#practice_sixth {
    padding: 150px 0;
}

#home_sixth .overlay,
#talent_sixth .overlay,
#practice_sixth .overlay {
    margin: 0 auto;
    width: 720px;
    height: 1040px;
    position: relative;
}

#home_sixth .overlay .overlay_inner,
#talent_sixth .overlay .overlay_inner,
#practice_sixth .overlay .overlay_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 625px;
}

#home_sixth .context_wrapper,
#talent_sixth .context_wrapper,
#practice_sixth .context_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 70px;
}

#home_sixth .context_wrapper .gsap_scrollTrigger,
#talent_sixth .context_wrapper .gsap_scrollTrigger,
#practice_sixth .context_wrapper .gsap_scrollTrigger {
    overflow: hidden;
}

#home_sixth .context_wrapper .gsap_scrollTrigger h2,
#talent_sixth .context_wrapper .gsap_scrollTrigger h2,
#practice_sixth .context_wrapper .gsap_scrollTrigger h2 {
    font: 300 56px/60px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    transform: translateY(100%);
}

#home_sixth .context_wrapper .gsap_scrollTrigger h2 span,
#talent_sixth .context_wrapper .gsap_scrollTrigger h2 span,
#practice_sixth .context_wrapper .gsap_scrollTrigger h2 span {
    display: block;
}

#home_sixth .context_wrapper p,
#talent_sixth .context_wrapper p,
#practice_sixth .context_wrapper p {
    font: 300 24px/32px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    width: 680px;
}

#home_sixth .context_wrapper a,
#talent_sixth .context_wrapper a,
#practice_sixth .context_wrapper a {
    font: 600 16px/23px 'Poppins Bold', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#home_sixth .context_wrapper a::after,
#talent_sixth .context_wrapper a::after,
#practice_sixth .context_wrapper a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

#home_sixth .context_wrapper a:hover::after,
#talent_sixth .context_wrapper a:hover::after,
#practice_sixth .context_wrapper a:hover::after {
    left: 100%;
}

#home_sixth .context_wrapper a::before,
#talent_sixth .context_wrapper a::before,
#practice_sixth .context_wrapper a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -200%;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#home_sixth .context_wrapper a:hover::before,
#talent_sixth .context_wrapper a:hover::before,
#practice_sixth .context_wrapper a:hover::before {
    left: 0;
}

/* Home Sixth Section */



/* Footer Section */
footer {
    background: #000;
}

footer .upper_footer {
    padding: 90px 0 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .upper_footer .picture {
    width: 177px;
    height: 150px;
    transform: scale(1.4);
}

footer .upper_footer .picture a {
    display: block;
    width: 100%;
    height: 100%;
}

footer .upper_footer .links {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .upper_footer .links .nav_links {
    flex-grow: 3;
}

footer .upper_footer .links .location {
    flex-grow: 2.2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

footer .upper_footer .links .socials {
    flex-grow: 1;
}

footer .upper_footer .links .nav_links ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

footer .upper_footer .links .nav_links ul li a {
    font: 600 18px/23px 'Poppins Regular', sans-serif;
    color: #fff;
    padding: 2px 0 4px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

footer .upper_footer .links .nav_links ul li a::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
}

footer .upper_footer .links .nav_links ul li a:hover::before {
    width: 100%;
}

footer .upper_footer .links .location .upper_location {
    width: 65%;
}

footer .upper_footer .links .location .upper_location a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

footer .upper_footer .links .location .upper_location a p {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .upper_footer .links .location .upper_location a p img {
    display: block;
    width: 22px;
    height: 22px;
}

footer .upper_footer .links .location .lower_location ul {
    display: flex;
    flex-direction: column;
}

footer .upper_footer .links .location .lower_location ul li a {
    text-decoration: none;
    color: #fff;
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    position: relative;
}

footer .upper_footer .links .location .lower_location ul li a::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 0.8px;
    background: #fff;
}

footer .upper_footer .links .location .lower_location ul li a:hover::after {
    width: 100%;
}

footer .upper_footer .links .socials ul {
    display: flex;
    flex-direction: column;
}

footer .upper_footer .links .socials ul li {
    color: #fff;
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    display: flex;
    align-items: center;
}

footer .upper_footer .links .socials ul li a {
    text-decoration: none;
    color: #fff;
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    position: relative;
}

footer .upper_footer .links .socials ul li a::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 0.8px;
    background: #fff;
}

footer .upper_footer .links .socials ul li a:hover::after {
    width: 100%;
}

footer .upper_footer .links .socials ul li img {
    display: block;
    width: 22px;
    height: 22px;
}

footer .horizontal_line {
    width: 100%;
    height: 0.5px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.5);
}

footer .lower_footer {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
}

footer .lower_footer .copyright {
    font: 650 16px/23px 'Poppins Regular', sans-serif;
    white-space: nowrap;
    text-transform: uppercase;
}

footer .lower_footer .privacy ul {
    display: flex;
    gap: 5px;
    padding-right: 100px;
}

footer .lower_footer .privacy ul li {
    color: rgba(255, 255, 255, 0.5);
}

footer .lower_footer .privacy ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

footer .lower_footer .privacy ul li a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

footer .lower_footer .privacy ul li a:hover::after {
    width: 100%;
}

/* Footer Section */



/* Project Page */
#projects {
    padding: 150px 0;
}

#projects .projects_wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

#projects .projects_wrapper .content {
    height: calc(580px - 540px);
    color: #000;
    display: flex;
    align-items: center;
    font: 600 18px/27px "Poppins Regular", sans-serif;
}

#projects .projects_wrapper .projects_wrapper_two,
#projects .projects_wrapper .projects_wrapper_three {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 580px;
    gap: 15px;
}

#projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(1) {
    height: 100%;
    width: 62.2%;
}

#projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(2) {
    width: calc(37.8% - 1 * 15px);
    height: 100%;
}

#projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(2) {
    height: 100%;
    width: 62.2%;
}

#projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(1) {
    width: calc(37.8% - 1 * 15px);
    height: 100%;
}

#projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(1) {
    height: 100%;
    width: 24.4%;
}

#projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(3) {
    height: 100%;
    width: 24.4%;
}

#projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(2),
#projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(3) {
    width: calc(37.8% - 1 * 15px);
    height: 100%;
}

#projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(1),
#projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(2) {
    width: calc(37.8% - 1 * 15px);
    height: 100%;
}

#projects .projects_wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#projects .projects_wrapper a .picture {
    height: 540px;
    width: 100%;
    background: rgb(248, 249, 250);
    overflow: hidden;
}

#projects .projects_wrapper a .picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .64s cubic-bezier(.165, .84, .44, 1);
}

#projects .projects_wrapper a .picture:hover img {
    transform: scale(1.1);
}

/* Project Page */



/* Talent Fifth Section */
#talent_fifth {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

#talent_fifth::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#talent_fifth .background_video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

#talent_fifth .context_wrapper {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    overflow: hidden;
}

#talent_fifth .context_wrapper h2 {
    font: 300 112px/112px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
    text-align: left;
    transform: translateY(100%);
}

#talent_fifth .context_wrapper h2 span {
    display: block;
}

/* Talent Fifth Section */



/* Talent Sixth Section */
/* #talent_sixth {
    padding: 150px 0;
}

#talent_sixth .overlay {
    margin: 0 auto;
    width: 720px;
    height: 1040px;
    position: relative;
}

#talent_sixth .overlay .overlay_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 625px;
}

#talent_sixth .context_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 70px;
}

#talent_sixth .context_wrapper h2 {
    font: 300 56px/60px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    width: 500px;
}

#talent_sixth .context_wrapper p {
    font: 300 24px/32px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    width: 750px;
}

#talent_sixth .context_wrapper a {
    font: 600 16px/23px 'Poppins Bold', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#talent_sixth .context_wrapper a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

#talent_sixth .context_wrapper a:hover::after {
    left: 100%;
}

#talent_sixth .context_wrapper a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -200%;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#talent_sixth .context_wrapper a:hover::before {
    left: 0;
} */

/* Talent Sixth Section */



/*  Talent First Section  */
#talent_first {
    background: #000;
    color: #fff;
    padding: 145px 0 120px;
}

#practice_first {
    background: #fff;
    color: #000;
    padding: 145px 0 120px;
}

#talent_first .talent_first_wrapper,
#practice_first .practice_first_wrapper {
    overflow: hidden;
}

#talent_first .talent_first_wrapper .gsap_scrollTrigger,
#practice_first .practice_first_wrapper .gsap_scrollTrigger {
    transform: translateY(100%);
}

#talent_first .talent_first_wrapper h2,
#practice_first .practice_first_wrapper h2 {
    font: 600 24px/32px 'Poppins Bold', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
}

#talent_first .talent_first_wrapper p,
#practice_first .practice_first_wrapper p {
    font: 300 92px/92px 'Poppins Regular', sans-serif;
    letter-spacing: -5px;
}

/*  Talent First Section  */



/*  Talent Second Section  */
#talent_second {
    background-image: url(../images/buildings/building32.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
}

/*  Talent Second Section  */



/*  Talent Third Section  */
#talent_third {
    background: #000;
    padding: 120px 0;
    color: #fff;
}

#talent_third .talent_third_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 120px;
}

#talent_third .talent_third_wrapper .gsap_scrollTrigger {
    width: 25%;
    overflow: hidden;
}

#talent_third .talent_third_wrapper .title {
    font: 600 18px/27px 'Poppins Regular', sans-serif;
    text-transform: uppercase;
    transform: translateY(100%);
}

#talent_third .talent_third_wrapper .content {
    width: 75%;
}

#talent_third .talent_third_wrapper .content.paragraph {
    font: 300 32px/40px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
}

#talent_third .talent_third_wrapper .content.heading {
    font: 300 48px/54px 'Poppins Regular', sans-serif;
    letter-spacing: -2px;
}

#talent_third .talent_third_pictures {
    width: 100%;
    margin-bottom: 120px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#talent_third .talent_third_pictures .first_one {
    width: 50%;
    height: auto;
}

#talent_third .talent_third_pictures .second_one {
    width: 50%;
    height: auto;
}

#talent_third .horizontal_line {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    height: 0.8px;
    margin: 10px 0;
}

#talent_third .team {
    display: flex;
    position: relative;
}

#talent_third .team .team_left {
    width: 50%;
}

#talent_third .team .team_left .team_left_wrapper {
    position: sticky;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    width: 305px;
    height: auto;
}

#talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger {
    overflow: hidden;
}

#talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings {
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
}

#talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings h3 {
    font: 300 32px/40px 'Poppins Regular', sans-serif;
    letter-spacing: -2px;
}

#talent_third .team .team_left .team_left_wrapper .team_member_pic {
    width: 100%;
    height: auto;
    transition: 1s;
}

#talent_third .team .team_left .team_left_wrapper .team_member_pic img {
    transform-origin: 0% 100%;
}

#talent_third .team .team_right {
    width: 50%;
}

#talent_third .team .team_right .team_members {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 45px;
}

#talent_third .team .team_right .team_member {
    width: calc((100% - 3 * 15px) / 4);
    min-height: 260px;
}

#talent_third .team .team_right .team_member a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#talent_third .team .team_right .team_member .picture {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#talent_third .team .team_right .team_member .picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
}

#talent_third .team .team_right .team_member:hover img {
    transform: scale(1.1);
}

#talent_third .team .team_right .team_member .about {
    margin-top: 10px;
}

#talent_third .team .team_right .team_member .about .fullname {
    font: 650 16px/23px 'Poppins Regular', sans-serif;
    color: #fff;
}

#talent_third .team .team_right .team_member .about .profession {
    font: 300 14px/21px 'Poppins Regular', sans-serif;
    color: #fff;
}

/*  Talent Third Section  */



/* Contact */
#contact {
    background: #fff;
}

#contact .contact_wrapper {
    padding: 150px 0 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#contact .contact_wrapper .contact_wrapper_item {
    width: calc((100% - 3 * 15px) / 4);
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item:nth-child(2) {
    position: absolute;
    width: 100%;
    top: 40%;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger {
    overflow: hidden;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 {
    font: 300 32px/40px 'Poppins Regular', sans-serif;
    letter-spacing: -2px;
    transform: translateY(100%);
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 span {
    display: block;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .picture {
    width: 100%;
    height: auto;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .picture img {
    transform-origin: 0% 100%;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .heading {
    font: 650 18px/23px 'Poppins Regular', sans-serif;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .content {
    font: 300 18px/23px 'Poppins Regular', sans-serif;
    width: 80%;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link .break {
    width: 100%;
    height: 8px;
    background: transparent;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a {
    font: 650 16px/23px 'Poppins Regular', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #000;
    transition: 0.3s;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a:hover::after {
    left: 100%;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -200%;
    width: 100%;
    height: 1.5px;
    background: #000;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a:hover::before {
    left: 0;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag {
    display: block;
    width: 60%;
    height: 100%;
    text-decoration: none;
    color: #000;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag p {
    font: 300 18px/24px 'Poppins Regular', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag p img {
    display: block;
    width: 22px;
    height: 22px;
}

#contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .phone_number {
    font: 650 18px/27px 'Poppins Regular', sans-serif;
    color: #000;
    text-decoration: none;
}

/* Contact */



/*  Practice First Section  */
/* #practice_first {
    background: #fff;
}

#practice_first .practice_first_wrapper {
    padding: 145px 0 120px;
    color: #000;
}

#practice_first .practice_first_wrapper h2 {
    font: 600 24px/32px 'Poppins Bold', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
}

#practice_first .practice_first_wrapper p {
    font: 300 92px/92px 'Poppins Regular', sans-serif;
    letter-spacing: -5px;
} */

/*  Practice First Section  */



/*  Practice Second Section  */
#practice_second {
    height: 100vh;
}

#practice_second .background_video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*  Practice Second Section  */



/*  Practice Third Section  */
#practice_third {
    background: #fff;
    padding: 120px 0 30px;
    color: #000;
}

#practice_third .practice_third_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 150px;
}

#practice_third .practice_third_wrapper .gsap_scrollTrigger {
    width: 25%;
    overflow: hidden;
}

#practice_third .practice_third_wrapper .gsap_scrollTrigger .title {
    font: 600 18px/27px 'Poppins Regular', sans-serif;
    text-transform: uppercase;
    transform: translateY(100%);
}

#practice_third .practice_third_wrapper .content {
    width: 75%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#practice_third .practice_third_wrapper .content.paragraph {
    font: 300 32px/40px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
}

#practice_third .practice_third_pictures {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#practice_third .practice_third_pictures .image {
    width: 75%;
    height: auto;
}

/*  Practice Third Section  */



/* Practice Fifth Section */
#practice_fifth {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

#practice_fifth::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

#practice_fifth .background_video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

#practice_fifth .context_wrapper {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    overflow: hidden;
}

#practice_fifth .context_wrapper h2 {
    font: 300 112px/112px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
    text-align: left;
    transform: translateY(100%);
}

#practice_fifth .context_wrapper h2 span {
    display: block;
}

/* Practice Fifth Section */



/* Practice Sixth Section */
/* #practice_sixth {
    padding: 150px 0;
}

#practice_sixth .overlay {
    margin: 0 auto;
    width: 720px;
    height: 1040px;
    position: relative;
}

#practice_sixth .overlay .overlay_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 625px;
}

#practice_sixth .context_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 70px;
}

#practice_sixth .context_wrapper h2 {
    font: 300 56px/60px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    width: 500px;
}

#practice_sixth .context_wrapper p {
    font: 300 24px/32px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
    width: 750px;
}

#practice_sixth .context_wrapper a {
    font: 600 16px/23px 'Poppins Bold', sans-serif;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#practice_sixth .context_wrapper a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

#practice_sixth .context_wrapper a:hover::after {
    left: 100%;
}

#practice_sixth .context_wrapper a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -200%;
    width: 100%;
    height: 2px;
    background: #000;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#practice_sixth .context_wrapper a:hover::before {
    left: 0;
} */

/* Practice Sixth Section */



/* Practice Our Clients */
#practice_our_clients {
    background: #fff;
    color: #000;
}

#practice_our_clients .our_clients {
    display: flex;
    position: relative;
    padding: 140px 0;
}

#practice_our_clients .our_clients .our_clients_left {
    width: 50%;
}

#practice_our_clients .our_clients .our_clients_right {
    width: 50%;
}

#practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper {
    position: sticky;
    top: 35%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper h3 {
    font: 300 64px/66px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
}

#practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper p {
    font: 300 24px/32px 'Poppins Regular', sans-serif;
    width: 450px;
    letter-spacing: -1px;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 50px;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item {
    width: calc((100% - 1 * 20px) / 2);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item .name {
    font: 650 24px/32px 'Poppins Regular', sans-serif;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a {
    font: 300 18px/27px 'Poppins Regular', sans-serif;
    color: #6c757d;
    text-decoration: none;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .125rem;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .horizontal_line {
    width: 100%;
    background: rgba(108, 114, 125, 0.6);
    height: 1px;
    margin-top: 30px;
}

#practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .title {
    display: block;
    width: 100%;
    margin-top: -20px;
    font-size: 2.5rem;
    line-height: 2.875rem;
    font: 300 40px/45px 'Poppins Regular', sans-serif;
    letter-spacing: -2px;
}

/* Practice Our Clients */



/*  Practice Carousel Section  */
#practice_carousel {
    background: #000;
    padding: 40px 0 60px;
    color: #fff;
    overflow: hidden;
}

#practice_carousel .practice_carousel_wrapper .horizontal_line {
    width: 100%;
    height: 1.5px;
    background: rgba(108, 114, 125, 0.6);
    margin: 60px 0px 30px;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger {
    width: 50%;
    overflow: hidden;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title {
    font: 300 80px/110px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
    transform: translateY(100%);
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content {
    width: 50%;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.paragraph {
    font: 300 24px/32px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular {
    font: 300 54px/58px 'Poppins Regular', sans-serif;
    letter-spacing: -3px;
    /* width: 450px; */
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular span {
    display: block;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small {
    width: 25%;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small .title {
    font: 650 18px/27px 'Poppins Regular', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
}



#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small {
    width: 75%;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small.paragraph {
    font: 300 48px/54px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper {
    margin: 80px 0;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    /* Area Added */
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item {
    padding-right: 15px;
    float: left;
    text-align: center;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper:hover .picture img {
    transform: scale(1.1);
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture {
    width: 450px;
    overflow: hidden;
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: 0.8s cubic-bezier(.165, .84, .44, 1);
}

#practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .context {
    color: #fff;
    font: 650 18px/23px "Poppins Regular", sans-serif;
    text-align: left;
    margin-top: 10px;
}

/*  Practice Carousel Section  */



/* Practice Fifth Section */
#details_first {
    width: 100%;
    position: relative;
}

#details_first .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
}

#details_first::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
#details_first .container{
    padding: 60vh 33px 10vh;
}
#details_first .animation_wrapper {
    /* position: absolute;
    top: 60vh; */
    /* width: calc((100% - 2 * 33px)); */
    /* padding-top: 60vh; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20vh;
}

#details_first .context_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
    overflow: hidden;
}

#details_first .context_wrapper .gsap_scrollTrigger {
    transform: translateY(100%);
}

#details_first .context_wrapper .gsap_scrollTrigger h2 {
    font: 650 24px/32px 'Poppins Regular', sans-serif;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#details_first .context_wrapper .gsap_scrollTrigger p {
    color: #fff;
    text-transform: uppercase;
    font: 300 96px/96px 'Poppins Regular', sans-serif;
    letter-spacing: -2px;
    width: 90%;
    padding-right: 20px;
}

#details_first .info_wrapper {
    /* position: absolute;
    bottom: 130px; */
    color: #fff;
}

#details_first .info_wrapper .gsap_scrollTrigger {
    overflow: hidden;
}

#details_first .info_wrapper .gsap_scrollTrigger h2 {
    font: 600 22px/26px 'Poppins Regular', sans-serif;
    transform: translateY(100%);
}

#details_first .info_wrapper .horizontal_bar {
    border: none;
    outline: none;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 25px 0 65px;
    position: relative;
}

#details_first .info_wrapper .horizontal_bar .horizontal_bar_inner {
    position: absolute;
    top: -1px;
    left: 0;
    height: 2px;
    width: 8%;
    background: rgba(255, 255, 255, 1);
}

#details_first .info_wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: calc((3 * 200px) + (2 * 50px));
}

#details_first .info_wrapper ul li {
    width: 200px;
}

#details_first .info_wrapper ul li .gsap_scrollTrigger {
    overflow: hidden;
}

#details_first .info_wrapper ul li .gsap_scrollTrigger h5 {
    font: 300 22px/26px 'Poppins Regular', sans-serif;
    text-transform: uppercase;
    transform: translateY(100%);
    padding-bottom: 10px;
}

#details_first .info_wrapper ul li .gsap_scrollTrigger p {
    font: 300 22px/26px 'Poppins Regular', sans-serif;
    position: relative;
    transform: translateY(100%);
}

#details_first .info_wrapper ul li .gsap_scrollTrigger p span.superscript {
    position: absolute;
    top: 0;
    font: 300 16px/18px 'Poppins Regular', sans-serif;
}

/* Details Fifth Section */



/* Details Second Section */
#details_second {
    color: #000;
}

#details_second .details_second_wrapper {
    display: flex;
    align-items: flex-start;
    padding: 140px 0;
}

#details_second .details_second_wrapper>div {
    width: 50%;
}

#details_second .details_second_wrapper .title {
    overflow: hidden;
}

#details_second .details_second_wrapper .title h2 {
    font: 300 64px/66px "Poppins Regular", sans-serif;
    letter-spacing: -2px;
    transform: translateY(100%);
}

#details_second .details_second_wrapper .title h2 span {
    display: block;
}

#details_second .details_second_wrapper .context {
    display: flex;
    gap: 15px;
}

#details_second .details_second_wrapper .context .context_item {
    width: calc((100% - 1 * 15px) / 2);
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#details_second .details_second_wrapper .context .context_item p {
    font: 300 18px/27px "Poppins Regular", sans-serif;
    letter-spacing: -1px;
}

/* Details Second Section */



/*  Details Sixth Section  */
#details_sixth {
    height: 100vh;
}

#details_sixth.disabled {
    display: none;
}

#details_sixth .background_video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*  Details Sixth Section  */



/* Details Third Section */
#details_third {
    color: #000;
}

#details_third .details_third_wrapper {
    display: flex;
    align-items: center;
    padding: 80px 0 0;
    gap: 60px;
}

#details_third .details_third_wrapper .context {
    width: calc(45% - 60px);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#details_third .details_third_wrapper .context p {
    font: 300 32px/36px "Poppins Regular", sans-serif;
    letter-spacing: -1px;
}

#details_third .details_third_wrapper .picture {
    width: 55%;
}

#details_third .details_third_wrapper .picture img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Details Third Section */



/* Details Swiper */
#details_swiper {
    padding: 80px 0 40px;
}

#details_swiper .swiper.mySwiper {
    width: 100%;
    position: relative;
    padding-top: 100px;
    padding-left: 30px;
}

#details_swiper .swiper.mySwiper .container {
    height: 100px;
    position: relative;
}

#details_swiper .swiper.mySwiper .swiper-slide {
    width: auto;
}

#details_swiper .swiper.mySwiper .swiper-button-next {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    right: 30px;
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
}

#details_swiper .swiper.mySwiper .swiper-button-prev {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    right: calc(30px + 50px + 12px);
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
}

#details_swiper .swiper.mySwiper .swiper-button-prev::after,
#details_swiper .swiper.mySwiper .swiper-button-next::after {
    display: none;
}

.swiper-slide img {
    display: block;
    width: auto;
    height: 620px;
    object-fit: cover;
}

/* Details Swiper */

















































































/* ! RESPONSIVE PARTS */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {

    /* Loader */
    #loading-screen .counter {
        height: 95px;
        line-height: 95px;
        font-size: 95px;
        clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    }

    #loading-screen .counter .num1offset1 {
        right: -24px;
    }

    #loading-screen .counter .num1offset2 {
        right: -9px;
    }

    /* Loader */


    /* Home */
    #home .heading_wrapper {
        top: 50%;
        left: 47%;
        transform: translate(-50%, -50%);
        display: flex;
    }

    #home .heading_wrapper h1 {
        height: 145px;
        display: flex;
        align-items: center;
        font: 300 110px/116px 'Poppins Regular', sans-serif;
    }

    #home .heading_wrapper .words {
        height: 145px;
    }

    #home .heading_wrapper .words span {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 30px;
        font: 300 110px/116px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    #home .scroll {
        width: 77px;
        height: 97px;
    }

    #home .scroll img {
        width: 77px;
        height: 77px;
    }

    /* Home */



    /* Home Second Section */
    #home_second {
        padding: 150px 0 50px;
    }

    #home_second .second_page .first_row {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        height: 800px;
    }

    #home_second .second_page .first_row .left_side {
        width: 50%;
        height: 100%;
    }

    #home_second .second_page .first_row .right_side {
        width: 50%;
        height: 100%;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger {
        margin-bottom: 50px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 {
        font: 300 62px/68px 'Poppins Regular', sans-serif;
    }

    #home_second .second_page .first_row .left_side p {
        font: 300 22px/30px 'Poppins Regular', sans-serif;
        width: 540px;
        padding-bottom: 30px;
    }

    #home_second .second_page .first_row .left_side a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
    }

    #home_second .second_page .first_row .left_side a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .first_row .left_side a::before {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .second_row {
        height: 1000px;
    }

    #home_second .second_page .second_row .right_side .picture {
        height: 450px;
    }

    #home_second .second_page .second_row .right_side .context {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 30px;
        padding-bottom: 50px;
    }

    #home_second .second_page .second_row .right_side p {
        font: 300 17px/25px 'Poppins Regular', sans-serif;
        width: 70%;
        letter-spacing: -0.5px;
    }

    #home_second .second_page .second_row .right_side p span {
        font: 600 17px/25px 'Poppins Bold', sans-serif;
    }

    /* Home Second Section */



    /* Home Third Section */
    #home_third .context_wrapper {
        gap: 50px;
        width: 60%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger {
        width: 80%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger p {
        font: 300 53px/57px 'Poppins Regular', sans-serif;
    }

    #home_third .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
    }

    /* Home Third Section */



    /* Home Forth Section */
    #home_forth .picture {
        width: 340px;
        height: 440px;
    }

    #home_forth .banner {
        font: 300 173px/173px 'Poppins Regular', sans-serif;
        --gap: 95px;
    }

    /* Home Forth Section */




    /* Home Fifth Section */
    #home_fifth {
        padding: 40px 0 70px;
    }

    #home_fifth .heading {
        align-items: flex-start;
        justify-content: space-between;
    }

    #home_fifth .heading .gsap_scrollTrigger h2 {
        font: 300 64px/66px 'Poppins Regular', sans-serif;
    }

    #home_fifth .heading a {
        font: 600 16px/23px 'Poppins Regular', sans-serif;
    }

    #home_fifth .swiper_wrapper {
        margin-top: 75px;
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide {
        /* width: calc((100% - 2 * 90px) / 2.5); */
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content h3 {
        font: 600 18px/28px "Poppins Regular", sans-serif;
    }

    /* Home Fifth Section */



    /* Home Sixth Section */
    #home_sixth,
    #talent_sixth,
    #practice_sixth {
        padding: 140px 0;
    }

    #home_sixth .overlay,
    #talent_sixth .overlay,
    #practice_sixth .overlay {
        width: 720px;
        height: 1040px;
    }


    #home_sixth .overlay .overlay_inner,
    #talent_sixth .overlay .overlay_inner,
    #practice_sixth .overlay .overlay_inner {
        width: 430px;
        height: 625px;
    }

    #home_sixth .context_wrapper,
    #talent_sixth .context_wrapper,
    #practice_sixth .context_wrapper {
        gap: 50px;
        margin-top: 70px;
    }

    #home_sixth .context_wrapper .gsap_scrollTrigger h2,
    #talent_sixth .context_wrapper .gsap_scrollTrigger h2,
    #practice_sixth .context_wrapper .gsap_scrollTrigger h2 {
        font: 300 56px/60px 'Poppins Regular', sans-serif;
    }

    #home_sixth .context_wrapper p,
    #talent_sixth .context_wrapper p,
    #practice_sixth .context_wrapper p {
        font: 300 24px/32px 'Poppins Regular', sans-serif;
        width: 680px;
    }

    #home_sixth .context_wrapper a,
    #talent_sixth .context_wrapper a,
    #practice_sixth .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
    }

    #home_sixth .context_wrapper a::after,
    #talent_sixth .context_wrapper a::after,
    #practice_sixth .context_wrapper a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_sixth .context_wrapper a::before,
    #talent_sixth .context_wrapper a::before,
    #practice_sixth .context_wrapper a::before {
        bottom: 2px;
        height: 2px;
    }

    /* Home Sixth Section */



    /* Footer Section */
    footer {
        background: #000;
    }

    footer .upper_footer {
        padding: 85px 0 95px;
    ;
    }

    footer .upper_footer .picture {
        width: 160px;
        height: 135px;
    }

    footer .upper_footer .links {
        width: 55%;
    }

    footer .upper_footer .links .nav_links ul li a {
        font: 600 18px/23px 'Poppins Regular', sans-serif;
        padding: 2px 0 4px;
    }

    footer .upper_footer .links .location {
        gap: 25px;
    }

    footer .upper_footer .links .location .upper_location {
        width: 70%;
    }

    footer .upper_footer .links .location .upper_location a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: #fff;
    }

    footer .upper_footer .links .location .upper_location a p {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    footer .upper_footer .links .location .upper_location a p img {
        display: block;
        width: 22px;
        height: 22px;
    }

    footer .upper_footer .links .location .lower_location ul {
        display: flex;
        flex-direction: column;
    }

    footer .upper_footer .links .location .lower_location ul li a {
        text-decoration: none;
        color: #fff;
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        position: relative;
    }

    footer .upper_footer .links .location .lower_location ul li a::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0.8px;
        background: #fff;
    }

    footer .upper_footer .links .location .lower_location ul li a:hover::after {
        width: 100%;
    }

    footer .upper_footer .links .socials ul {
        display: flex;
        flex-direction: column;
    }

    footer .upper_footer .links .socials ul li {
        color: #fff;
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        display: flex;
        align-items: center;
    }

    footer .upper_footer .links .socials ul li a {
        text-decoration: none;
        color: #fff;
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        position: relative;
    }

    footer .upper_footer .links .socials ul li a::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0.8px;
        background: #fff;
    }

    footer .upper_footer .links .socials ul li a:hover::after {
        width: 100%;
    }

    footer .upper_footer .links .socials ul li img {
        display: block;
        width: 22px;
        height: 22px;
    }

    footer .horizontal_line {
        width: 100%;
        height: 0.5px;
        border: none;
        outline: none;
        background: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer {
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .copyright {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
        white-space: nowrap;
        text-transform: uppercase;
    }

    footer .lower_footer .privacy ul {
        display: flex;
        gap: 5px;
        padding-right: 100px;
    }

    footer .lower_footer .privacy ul li {
        color: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .privacy ul li a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.5);
        position: relative;
    }

    footer .lower_footer .privacy ul li a::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .privacy ul li a:hover::after {
        width: 100%;
    }

    /* Footer Section */



    /* Contact */
    #contact .contact_wrapper {
        padding: 140px 0 80px;
        gap: 15px;
    }

    #contact .contact_wrapper .contact_wrapper_item {
        width: calc((100% - 3 * 15px) / 4);
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container {
        gap: 75px;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item:nth-child(2) {
        top: 45%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 {
        font: 300 32px/40px 'Poppins Regular', sans-serif;
    }


    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .content {
        width: 80%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag {
        width: 70%;
    }

    /* Contact */





    /* Details Fifth Section */

    #details_first .container{
        padding: 60vh 33px 10vh;
    }
    #details_first .animation_wrapper {
        gap: 20vh;
    }













    #details_first .context_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
    }

    #details_first .context_wrapper .gsap_scrollTrigger {
        transform: translateY(100%);
    }

    #details_first .context_wrapper .gsap_scrollTrigger h2 {
        font: 650 24px/32px 'Poppins Regular', sans-serif;
        margin-bottom: 20px;
    }

    #details_first .context_wrapper .gsap_scrollTrigger p {
        font: 300 75px/75px 'Poppins Regular', sans-serif;
        width: 90%;
    }


    #details_first .info_wrapper .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper .gsap_scrollTrigger h2 {
        font: 600 22px/26px 'Poppins Regular', sans-serif;
        transform: translateY(100%);
    }

    #details_first .info_wrapper .horizontal_bar {
        border: none;
        outline: none;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 25px 0 65px;
        position: relative;
    }

    #details_first .info_wrapper .horizontal_bar .horizontal_bar_inner {
        position: absolute;
        top: -1px;
        left: 0;
        height: 2px;
        width: 8%;
        background: rgba(255, 255, 255, 1);
    }

    #details_first .info_wrapper ul {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        max-width: calc((3 * 200px) + (2 * 50px));
    }

    #details_first .info_wrapper ul li {
        width: 200px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger h5 {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        text-transform: uppercase;
        transform: translateY(100%);
        padding-bottom: 10px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        position: relative;
        transform: translateY(100%);
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p span.superscript {
        position: absolute;
        top: 0;
        font: 300 16px/18px 'Poppins Regular', sans-serif;
    }

    /* Details Fifth Section */


    /* Details Swiper */
    #details_swiper {
        padding: 80px 0 40px;
    }

    #details_swiper .swiper.mySwiper {
        padding-top: 100px;
        padding-left: 30px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-next {
        width: 50px;
        height: 50px;
        top: 40px;
        right: 30px;
        font-size: 16px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: 40px;
        right: calc(30px + 50px + 12px);
        font-size: 16px;
    }

    .swiper-slide img {
        height: 560px;
    }

    /* Details Swiper */




    /* Details Second Section */
    #details_second .details_second_wrapper {
        padding: 130px 0;
    }

    #details_second .details_second_wrapper>div {
        width: 50%;
    }

    #details_second .details_second_wrapper .title h2 {
        font: 300 60px/62px "Poppins Regular", sans-serif;
    }

    #details_second .details_second_wrapper .title h2 span {
        display: block;
    }

    #details_second .details_second_wrapper .context {
        display: flex;
        gap: 15px;
    }

    #details_second .details_second_wrapper .context .context_item {
        width: calc((100% - 1 * 15px) / 2);
        padding-right: 37px;
        gap: 40px;
    }

    #details_second .details_second_wrapper .context .context_item p {
        font: 300 18px/27px "Poppins Regular", sans-serif;
    }

    /* Details Second Section */



    /* Details Third Section */
    #details_third .details_third_wrapper {
        display: flex;
        align-items: center;
        padding: 80px 0 0;
        gap: 55px;
    }

    #details_third .details_third_wrapper .context {
        width: calc(50% - 55px);
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    #details_third .details_third_wrapper .context p {
        font: 300 28px/32px "Poppins Regular", sans-serif;
        letter-spacing: -1px;
    }

    #details_third .details_third_wrapper .picture {
        width: 50%;
    }

    /* Details Third Section */


    /*  Talent First Section  */
    #talent_first,
    #practice_first {
        padding: 140px 0 115px;
    }

    #talent_first .talent_first_wrapper h2,
    #practice_first .practice_first_wrapper h2 {
        font: 600 23px/31px 'Poppins Bold', sans-serif;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    #talent_first .talent_first_wrapper p,
    #practice_first .practice_first_wrapper p {
        font: 300 90px/90px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    /*  Talent First Section  */



    /* Talent Fifth Section */
    #talent_fifth .context_wrapper h2 {
        font: 300 106px/106px 'Poppins Regular', sans-serif;
    }

    /* Talent Fifth Section */



    /*  Talent Third Section  */
    #talent_third {
        padding: 115px 0;
    }

    #talent_third .talent_third_wrapper {
        justify-content: space-between;
        margin-bottom: 115px;
    }

    #talent_third .talent_third_wrapper .content {
        width: 75%;
    }

    #talent_third .talent_third_wrapper .content.paragraph {
        font: 300 31px/38px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content.heading {
        font: 300 46px/52px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_pictures {
        margin-bottom: 115px;
        display: flex;
        gap: 15px;
    }

    #talent_third .talent_third_pictures .first_one {
        width: 50%;
    }

    #talent_third .talent_third_pictures .second_one {
        width: 50%;
    }

    #talent_third .team {
        display: flex;
    }

    #talent_third .team .team_left {
        width: 50%;
    }

    #talent_third .team .team_left .team_left_wrapper {
        position: sticky;
        top: 20%;
        width: 290px;
    }

    #talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings h3 {
        font: 300 31px/38px 'Poppins Regular', sans-serif;
        letter-spacing: -2px;
    }

    #talent_third .team .team_right {
        width: 50%;
    }

    #talent_third .team .team_right .team_members {
        display: flex;
        flex-wrap: wrap;
        column-gap: 15px;
        row-gap: 45px;
    }

    #talent_third .team .team_right .team_member {
        width: calc((100% - 3 * 15px) / 4);
        min-height: 250px;
    }

    #talent_third .team .team_right .team_member .about .fullname {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right .team_member .about .profession {
        font: 300 14px/21px 'Poppins Regular', sans-serif;
    }

    /*  Talent Third Section  */


    /*  Practice Third Section  */
    #practice_third {
        padding: 115px 0 30px;
    }

    #practice_third .practice_third_wrapper {
        justify-content: space-between;
        margin-bottom: 140px;
    }

    #practice_third .practice_third_wrapper .content {
        width: 75%;
        padding-right: 47px;
        gap: 47px;
    }

    #practice_third .practice_third_wrapper .content.paragraph {
        font: 300 30px/37px 'Poppins Regular', sans-serif;
    }

    #practice_third .practice_third_pictures .image {
        width: 75%;
    }

    /*  Practice Third Section  */


    /* Practice Fifth Section */
    #practice_fifth .context_wrapper h2 {
        font: 300 106px/106px 'Poppins Regular', sans-serif;
    }

    /* Practice Fifth Section */


    /*  Practice Carousel Section  */
    #practice_carousel {
        padding: 40px 0 60px;
    }

    #practice_carousel .practice_carousel_wrapper .horizontal_line {
        margin: 60px 0px 30px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context {
        justify-content: space-between;
        padding-bottom: 40px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger {
        width: 50%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title {
        font: 300 77px/107px 'Poppins Regular', sans-serif;
    }


    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content {
        width: 50%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.paragraph {
        font: 300 23px/31px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular {
        font: 300 52px/56px 'Poppins Regular', sans-serif;
        /* width: 450px; */
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular span {
        display: block;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small {
        width: 25%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small .title {
        font: 650 18px/27px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small {
        width: 75%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small.paragraph {
        font: 300 46px/52px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper {
        margin: 76px 0;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item {
        padding-right: 15px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture {
        width: 430px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .context {
        font: 650 18px/23px "Poppins Regular", sans-serif;
        margin-top: 10px;
    }

    /*  Practice Carousel Section  */




    /* Practice Our Clients */
    #practice_our_clients .our_clients {
        padding: 130px 0;
    }

    #practice_our_clients .our_clients .our_clients_left {
        width: 50%;
    }

    #practice_our_clients .our_clients .our_clients_right {
        width: 50%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper {
        position: sticky;
        top: 35%;
        gap: 45px;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper h3 {
        font: 300 61px/63px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper p {
        font: 300 23px/30px 'Poppins Regular', sans-serif;
        width: 450px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 47px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item {
        width: calc((100% - 1 * 20px) / 2);
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item .name {
        font: 650 23px/31px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .horizontal_line {
        margin-top: 30px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .title {
        margin-top: -20px;
        font-size: 2.5rem;
        line-height: 2.875rem;
        font: 300 40px/45px 'Poppins Regular', sans-serif;
    }

    /* Practice Our Clients */

}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {

    /* Loader */
    #loading-screen .counter {
        height: 90px;
        line-height: 90px;
        font-size: 90px;
        clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    }

    #loading-screen .counter .num1offset1 {
        right: -23px;
    }

    #loading-screen .counter .num1offset2 {
        right: -8px;
    }

    /* Loader */


    /* Home */
    #home .heading_wrapper {
        top: 50%;
        left: 47%;
        transform: translate(-50%, -50%);
        display: flex;
    }

    #home .heading_wrapper h1 {
        height: 140px;
        display: flex;
        align-items: center;
        font: 300 100px/106px 'Poppins Regular', sans-serif;
    }

    #home .heading_wrapper .words {
        height: 140px;
    }

    #home .heading_wrapper .words span {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 25px;
        font: 300 100px/106px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    #home .scroll {
        width: 74px;
        height: 94px;
    }

    #home .scroll img {
        width: 74px;
        height: 74px;
    }

    /* Home */



    /* Home Second Section */
    #home_second {
        padding: 120px 0 40px;
    }

    #home_second .second_page .first_row {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        height: 650px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger {
        margin-bottom: 50px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 {
        font: 300 54px/60px 'Poppins Regular', sans-serif;
    }

    #home_second .second_page .first_row .left_side p {
        font: 300 16px/24px 'Poppins Regular', sans-serif;
        width: 450px;
        padding-bottom: 30px;
    }

    #home_second .second_page .first_row .left_side a {
        font: 600 14px/21px 'Poppins Bold', sans-serif;
        padding-bottom: 4px;
    }

    #home_second .second_page .first_row .left_side a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .first_row .left_side a::before {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .second_row {
        height: 850px;
    }

    #home_second .second_page .second_row .right_side .picture {
        height: 350px;
    }

    #home_second .second_page .second_row .right_side .context {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 25px;
        padding-bottom: 30px;
    }

    #home_second .second_page .second_row .right_side p {
        font: 300 16px/22px 'Poppins Regular', sans-serif;
        width: 80%;
        letter-spacing: -0.5px;
    }

    #home_second .second_page .second_row .right_side p span {
        font: 600 16px/22px 'Poppins Bold', sans-serif;
    }

    /* Home Second Section */



    /* Home Third Section */
    #home_third .context_wrapper {
        gap: 50px;
        width: 60%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger {
        width: 100%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger p {
        font: 300 50px/54px 'Poppins Regular', sans-serif;
    }

    #home_third .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
    }

    /* Home Third Section */



    /* Home Forth Section */
    #home_forth .picture {
        width: 330px;
        height: 430px;
    }

    #home_forth .banner {
        font: 300 170px/170px 'Poppins Regular', sans-serif;
        --gap: 90px;
    }

    /* Home Forth Section */



    /* Home Fifth Section */
    #home_fifth {
        padding: 40px 0 70px;
    }

    #home_fifth .heading {
        align-items: flex-start;
        justify-content: space-between;
    }

    #home_fifth .heading .gsap_scrollTrigger h2 {
        font: 300 62px/64px 'Poppins Regular', sans-serif;
    }

    #home_fifth .heading a {
        font: 600 16px/23px 'Poppins Regular', sans-serif;
    }

    #home_fifth .swiper_wrapper {
        margin-top: 75px;
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide {
        /* width: calc((100% - 2 * 80px) / 2.5); */
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content h3 {
        font: 600 18px/28px "Poppins Regular", sans-serif;
    }

    /* Home Fifth Section */



    /* Footer Section */
    footer .upper_footer {
        padding: 80px 0 90px;
    ;
    }

    footer .upper_footer .picture {
        width: 140px;
        height: 118px;
    }

    footer .upper_footer .links {
        width: 65%;
    }

    footer .upper_footer .links .nav_links ul li a {
        font: 600 18px/23px 'Poppins Regular', sans-serif;
        padding: 2px 0 4px;
    }

    footer .upper_footer .links .location {
        gap: 25px;
    }

    footer .upper_footer .links .location .upper_location {
        width: 70%;
    }

    footer .upper_footer .links .location .upper_location a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: #fff;
    }

    footer .upper_footer .links .location .upper_location a p {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    footer .upper_footer .links .location .upper_location a p img {
        display: block;
        width: 22px;
        height: 22px;
    }

    footer .upper_footer .links .location .lower_location ul {
        display: flex;
        flex-direction: column;
    }

    footer .upper_footer .links .location .lower_location ul li a {
        text-decoration: none;
        color: #fff;
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        position: relative;
    }

    footer .upper_footer .links .location .lower_location ul li a::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0.8px;
        background: #fff;
    }

    footer .upper_footer .links .location .lower_location ul li a:hover::after {
        width: 100%;
    }

    footer .upper_footer .links .socials ul {
        display: flex;
        flex-direction: column;
    }

    footer .upper_footer .links .socials ul li {
        color: #fff;
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        display: flex;
        align-items: center;
    }

    footer .upper_footer .links .socials ul li a {
        text-decoration: none;
        color: #fff;
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        position: relative;
    }

    footer .upper_footer .links .socials ul li a::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0.8px;
        background: #fff;
    }

    footer .upper_footer .links .socials ul li a:hover::after {
        width: 100%;
    }

    footer .upper_footer .links .socials ul li img {
        display: block;
        width: 22px;
        height: 22px;
    }

    footer .horizontal_line {
        width: 100%;
        height: 0.5px;
        border: none;
        outline: none;
        background: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer {
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .copyright {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
        white-space: nowrap;
        text-transform: uppercase;
    }

    footer .lower_footer .privacy ul {
        display: flex;
        gap: 5px;
        padding-right: 100px;
    }

    footer .lower_footer .privacy ul li {
        color: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .privacy ul li a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.5);
        position: relative;
    }

    footer .lower_footer .privacy ul li a::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .privacy ul li a:hover::after {
        width: 100%;
    }

    /* Footer Section */


    /* Contact */
    #contact .contact_wrapper {
        padding: 130px 0 75px;
        gap: 15px;
    }

    #contact .contact_wrapper .contact_wrapper_item {
        width: calc((100% - 3 * 15px) / 4);
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container {
        gap: 70px;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item:nth-child(2) {
        top: 50%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 {
        font: 300 28px/34px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .heading {
        font: 650 17px/22px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .content {
        font: 300 17px/22px 'Poppins Regular', sans-serif;
        width: 90%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag {
        width: 90%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag p {
        font: 300 17px/22px 'Poppins Regular', sans-serif;
    }

    /* Contact */


    /* Details Fifth Section */
    #details_first .container{
        padding: 60vh 33px 10vh;
    }
    #details_first .animation_wrapper {
        gap: 20vh;
    }

    #details_first .context_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
    }

    #details_first .context_wrapper .gsap_scrollTrigger {
        transform: translateY(100%);
    }

    #details_first .context_wrapper .gsap_scrollTrigger h2 {
        font: 650 24px/32px 'Poppins Regular', sans-serif;
        margin-bottom: 20px;
    }

    #details_first .context_wrapper .gsap_scrollTrigger p {
        font: 300 60px/60px 'Poppins Regular', sans-serif;
        width: 90%;
    }


    #details_first .info_wrapper .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper .gsap_scrollTrigger h2 {
        font: 600 22px/26px 'Poppins Regular', sans-serif;
        transform: translateY(100%);
    }

    #details_first .info_wrapper .horizontal_bar {
        border: none;
        outline: none;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 25px 0 65px;
        position: relative;
    }

    #details_first .info_wrapper .horizontal_bar .horizontal_bar_inner {
        position: absolute;
        top: -1px;
        left: 0;
        height: 2px;
        width: 8%;
        background: rgba(255, 255, 255, 1);
    }

    #details_first .info_wrapper ul {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        max-width: calc((3 * 200px) + (2 * 50px));
    }

    #details_first .info_wrapper ul li {
        width: 200px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger h5 {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        text-transform: uppercase;
        transform: translateY(100%);
        padding-bottom: 10px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        position: relative;
        transform: translateY(100%);
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p span.superscript {
        position: absolute;
        top: 0;
        font: 300 16px/18px 'Poppins Regular', sans-serif;
    }

    /* Details Fifth Section */


    /* Details Swiper */
    #details_swiper {
        padding: 80px 0 40px;
    }

    #details_swiper .swiper.mySwiper {
        padding-top: 100px;
        padding-left: 30px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-next {
        width: 50px;
        height: 50px;
        top: 40px;
        right: 30px;
        font-size: 16px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: 40px;
        right: calc(30px + 50px + 12px);
        font-size: 16px;
    }

    .swiper-slide img {
        height: 520px;
    }

    /* Details Swiper */


    /* Details Second Section */
    #details_second .details_second_wrapper {
        padding: 120px 0;
    }

    #details_second .details_second_wrapper>div {
        width: 50%;
    }

    #details_second .details_second_wrapper .title h2 {
        font: 300 56px/58px "Poppins Regular", sans-serif;
    }

    #details_second .details_second_wrapper .title h2 span {
        display: block;
    }

    #details_second .details_second_wrapper .context {
        display: flex;
        gap: 15px;
    }

    #details_second .details_second_wrapper .context .context_item {
        width: calc((100% - 1 * 15px) / 2);
        padding-right: 33px;
        gap: 40px;
    }

    #details_second .details_second_wrapper .context .context_item p {
        font: 300 17px/24px "Poppins Regular", sans-serif;
    }

    /* Details Second Section */



    /* Details Third Section */
    #details_third .details_third_wrapper {
        display: flex;
        align-items: center;
        padding: 70px 0 0;
        gap: 50px;
    }

    #details_third .details_third_wrapper .context {
        width: calc(60% - 50px);
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    #details_third .details_third_wrapper .context p {
        font: 300 24px/26px "Poppins Regular", sans-serif;
        letter-spacing: -1px;
    }

    #details_third .details_third_wrapper .picture {
        width: 40%;
    }

    /* Details Third Section */



    /*  Talent First Section  */
    #talent_first,
    #practice_first {
        padding: 130px 0 110px;
    }

    #talent_first .talent_first_wrapper h2,
    #practice_first .practice_first_wrapper h2 {
        font: 600 22px/30px 'Poppins Bold', sans-serif;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    #talent_first .talent_first_wrapper p,
    #practice_first .practice_first_wrapper p {
        font: 300 87px/87px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    /*  Talent First Section  */


    /* Talent Fifth Section */
    #talent_fifth .context_wrapper h2 {
        font: 300 100px/100px 'Poppins Regular', sans-serif;
    }

    /* Talent Fifth Section */



    /*  Talent Third Section  */
    #talent_third {
        padding: 105px 0;
    }

    #talent_third .talent_third_wrapper {
        justify-content: space-between;
        margin-bottom: 105px;
    }

    #talent_third .talent_third_wrapper .title {
        font: 600 17px/25px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content {
        width: 75%;
    }

    #talent_third .talent_third_wrapper .content.paragraph {
        font: 300 28px/34px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content.heading {
        font: 300 42px/48px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_pictures {
        margin-bottom: 105px;
    }

    #talent_third .talent_third_pictures .first_one {
        width: 50%;
    }

    #talent_third .talent_third_pictures .second_one {
        width: 50%;
    }

    #talent_third .team {
        display: flex;
    }

    #talent_third .team .team_left {
        width: 40%;
    }

    #talent_third .team .team_left .team_left_wrapper {
        position: sticky;
        top: 24%;
        width: 270px;
    }

    #talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings h3 {
        font: 300 28px/34px 'Poppins Regular', sans-serif;
        letter-spacing: -2px;
    }

    #talent_third .team .team_right {
        width: 60%;
    }

    #talent_third .team .team_right .team_members {
        column-gap: 15px;
        row-gap: 45px;
    }

    #talent_third .team .team_right .team_member {
        width: calc((100% - 3 * 15px) / 4);
        min-height: 245px;
    }

    #talent_third .team .team_right .team_member .about .fullname {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right .team_member .about .profession {
        font: 300 14px/21px 'Poppins Regular', sans-serif;
    }

    /*  Talent Third Section  */


    /*  Practice Third Section  */
    #practice_third {
        padding: 110px 0 30px;
    }

    #practice_third .practice_third_wrapper {
        justify-content: space-between;
        margin-bottom: 130px;
    }

    #practice_third .practice_third_wrapper .content {
        width: 75%;
        padding-right: 44px;
        gap: 44px;
    }

    #practice_third .practice_third_wrapper .content.paragraph {
        font: 300 28px/34px 'Poppins Regular', sans-serif;
    }

    #practice_third .practice_third_pictures .image {
        width: 75%;
    }

    /*  Practice Third Section  */


    /* Practice Fifth Section */
    #practice_fifth .context_wrapper h2 {
        font: 300 100px/100px 'Poppins Regular', sans-serif;
    }

    /* Practice Fifth Section */


    /*  Practice Carousel Section  */
    #practice_carousel {
        padding: 40px 0 60px;
    }

    #practice_carousel .practice_carousel_wrapper .horizontal_line {
        margin: 55px 0px 27px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context {
        justify-content: space-between;
        padding-bottom: 35px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger {
        width: 50%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title {
        font: 300 70px/100px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content {
        width: 50%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.paragraph {
        font: 300 22px/28px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular {
        font: 300 48px/53px 'Poppins Regular', sans-serif;
        /* width: 380px; */
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular span {
        display: block;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small {
        width: 25%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small .title {
        font: 650 18px/27px 'Poppins Regular', sans-serif;

    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small {
        width: 75%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small.paragraph {
        font: 300 42px/47px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper {
        margin: 70px 0;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item {
        padding-right: 15px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture {
        width: 380px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .context {
        font: 650 18px/23px "Poppins Regular", sans-serif;
        margin-top: 10px;
    }

    /*  Practice Carousel Section  */



    /* Practice Our Clients */
    #practice_our_clients .our_clients {
        padding: 120px 0;
    }

    #practice_our_clients .our_clients .our_clients_left {
        width: 45%;
    }

    #practice_our_clients .our_clients .our_clients_right {
        width: 55%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper {
        position: sticky;
        top: 35%;
        gap: 42px;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper h3 {
        font: 300 57px/60px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper p {
        font: 300 22px/28px 'Poppins Regular', sans-serif;
        width: 380px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 45px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item {
        width: calc((100% - 1 * 20px) / 2);
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item .name {
        font: 650 22px/28px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a {
        font: 300 18px/25px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .horizontal_line {
        margin-top: 30px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .title {
        margin-top: -20px;
        font-size: 2.5rem;
        line-height: 2.875rem;
        font: 300 40px/45px 'Poppins Regular', sans-serif;
    }

    /* Practice Our Clients */
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {

    /* Loader */
    #loading-screen .counter {
        height: 80px;
        line-height: 80px;
        font-size: 80px;
        clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    }

    #loading-screen .counter .num1offset1 {
        right: -21px;
    }

    #loading-screen .counter .num1offset2 {
        right: -7px;
    }

    /* Loader */




    /* Home */
    #home .heading_wrapper {
        top: 50%;
        left: 47%;
        transform: translate(-50%, -50%);
        display: flex;
    }

    #home .heading_wrapper h1 {
        height: 125px;
        display: flex;
        align-items: center;
        font: 300 85px/91px 'Poppins Regular', sans-serif;
    }

    #home .heading_wrapper .words {
        height: 125px;
    }

    #home .heading_wrapper .words span {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 18px;
        font: 300 85px/91px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    #home .scroll {
        width: 71px;
        height: 91px;
    }

    #home .scroll img {
        width: 71px;
        height: 71px;
    }

    /* Home */



    /* Home Second Section */
    #home_second {
        padding: 120px 0 40px;
    }

    #home_second .second_page {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #home_second .second_page .first_row {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        height: 600px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger {
        margin-bottom: 30px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 {
        font: 300 45px/50px 'Poppins Regular', sans-serif;
    }



    #home_second .second_page .first_row .left_side p {
        font: 300 16px/24px 'Poppins Regular', sans-serif;
        width: 340px;
        padding-bottom: 20px;
    }

    #home_second .second_page .second_row {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        height: 800px;
    }

    #home_second .second_page .second_row .right_side .picture {
        height: 250px;
    }

    #home_second .second_page .second_row .right_side .context {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        padding-bottom: 40px;
    }

    #home_second .second_page .second_row .right_side p {
        font: 300 16px/21px 'Poppins Regular', sans-serif;
        width: 90%;
        letter-spacing: -0.5px;
    }

    #home_second .second_page .second_row .right_side p span {
        font: 600 16px/21px 'Poppins Bold', sans-serif;
    }

    /* Home Second Section */



    /* Home Third Section */
    #home_third .context_wrapper {
        gap: 45px;
        width: 60%;
    }

    #home_third .context_wrapper {
        width: 70%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger {
        width: 100%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger p {
        font: 300 47px/51px 'Poppins Regular', sans-serif;
    }

    #home_third .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
    }

    /* Home Third Section */



    /* Home Forth Section */
    #home_forth .picture {
        width: 320px;
        height: 420px;
    }

    #home_forth .banner {
        font: 300 160px/160px 'Poppins Regular', sans-serif;
        --gap: 80px;
    }

    /* Home Forth Section */



    /* Home Fifth Section */
    #home_fifth {
        padding: 40px 0 70px;
    }

    #home_fifth .heading {
        align-items: flex-start;
        justify-content: space-between;
    }

    #home_fifth .heading .gsap_scrollTrigger h2 {
        font: 300 58px/60px 'Poppins Regular', sans-serif;
    }

    #home_fifth .heading a {
        font: 600 16px/23px 'Poppins Regular', sans-serif;
    }

    #home_fifth .swiper_wrapper {
        margin-top: 65px;
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide {
        /* width: calc((100% - 2 * 75px) / 2.5); */
        width: calc((100% - 2 * 10px) / 2.5);
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content h3 {
        font: 600 18px/28px "Poppins Regular", sans-serif;
    }

    /* Home Fifth Section */



    /* Home Sixth Section */
    #home_sixth,
    #talent_sixth,
    #practice_sixth {

        padding: 120px 0;
    }

    #home_sixth .overlay,
    #talent_sixth .overlay,
    #practice_sixth .overlay {
        width: 620px;
        height: 895px;
    }

    #home_sixth .overlay .overlay_inner,
    #talent_sixth .overlay .overlay_inner,
    #practice_sixth .overlay .overlay_inner {
        width: 370px;
        height: 537px;
    }

    #home_sixth .context_wrapper,
    #talent_sixth .context_wrapper,
    #practice_sixth .context_wrapper {
        gap: 50px;
        margin-top: 70px;
    }

    #home_sixth .context_wrapper .gsap_scrollTrigger h2,
    #talent_sixth .context_wrapper .gsap_scrollTrigger h2,
    #practice_sixth .context_wrapper .gsap_scrollTrigger h2 {
        font: 300 52px/56px 'Poppins Regular', sans-serif;
    }

    #home_sixth .context_wrapper p,
    #talent_sixth .context_wrapper p,
    #practice_sixth .context_wrapper p {
        font: 300 22px/30px 'Poppins Regular', sans-serif;
        width: 580px;
    }

    #home_sixth .context_wrapper a,
    #talent_sixth .context_wrapper a,
    #practice_sixth .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
    }

    #home_sixth .context_wrapper a::after,
    #talent_sixth .context_wrapper a::after,
    #practice_sixth .context_wrapper a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_sixth .context_wrapper a::before,
    #talent_sixth .context_wrapper a::before,
    #practice_sixth .context_wrapper a::before {
        bottom: 2px;
        height: 2px;
    }

    /* Home Sixth Section */


    /* Footer Section */
    footer .upper_footer {
        padding: 75px 0 85px;
    }

    footer .upper_footer .picture {
        width: 125px;
        height: 105px;
    }

    footer .upper_footer .links {
        width: 70%;
    }

    footer .upper_footer .links .nav_links ul li a {
        font: 600 17px/22px 'Poppins Regular', sans-serif;
        padding: 2px 0 4px;
    }

    footer .upper_footer .links .location {
        gap: 25px;
    }

    footer .upper_footer .links .location .upper_location {
        width: 80%;
    }

    footer .upper_footer .links .location .upper_location a p {
        font: 300 17px/25px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .location .upper_location a p img {
        display: block;
        width: 21px;
        height: 21px;
    }

    footer .upper_footer .links .location .lower_location ul {
        display: flex;
        flex-direction: column;
    }

    footer .upper_footer .links .location .lower_location ul li a {
        text-decoration: none;
        color: #fff;
        font: 300 17px/25px 'Poppins Regular', sans-serif;
        position: relative;
    }

    footer .upper_footer .links .location .lower_location ul li a::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0.8px;
        background: #fff;
    }

    footer .upper_footer .links .location .lower_location ul li a:hover::after {
        width: 100%;
    }

    footer .upper_footer .links .socials ul {
        display: flex;
        flex-direction: column;
    }

    footer .upper_footer .links .socials ul li {
        color: #fff;
        font: 300 17px/25px 'Poppins Regular', sans-serif;
        display: flex;
        align-items: center;
    }

    footer .upper_footer .links .socials ul li a {
        text-decoration: none;
        color: #fff;
        font: 300 17px/25px 'Poppins Regular', sans-serif;
        position: relative;
    }

    footer .upper_footer .links .socials ul li a::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0.8px;
        background: #fff;
    }

    footer .upper_footer .links .socials ul li a:hover::after {
        width: 100%;
    }

    footer .upper_footer .links .socials ul li img {
        display: block;
        width: 21px;
        height: 21px;
    }

    footer .horizontal_line {
        width: 100%;
        height: 0.5px;
        border: none;
        outline: none;
        background: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer {
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .copyright {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
        white-space: nowrap;
        text-transform: uppercase;
    }

    footer .lower_footer .privacy ul {
        display: flex;
        gap: 5px;
        padding-right: 70px;
    }

    footer .lower_footer .privacy ul li {
        color: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .privacy ul li a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.5);
        position: relative;
    }

    footer .lower_footer .privacy ul li a::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.5);
    }

    footer .lower_footer .privacy ul li a:hover::after {
        width: 100%;
    }

    /* Footer Section */


    /* Contact */
    #contact .contact_wrapper {
        padding: 130px 0 75px;
        gap: 15px;
    }

    #contact .contact_wrapper .contact_wrapper_item {
        width: calc((100% - 3 * 15px) / 4);
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container {
        gap: 65px;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item:nth-child(2) {
        top: 60%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 {
        font: 300 25px/31px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .heading {
        font: 650 16px/21px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .content {
        font: 300 16px/21px 'Poppins Regular', sans-serif;
        width: 95%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .link a {
        font: 650 15px/21px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag {
        width: 100%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag p {
        font: 300 16px/21px 'Poppins Regular', sans-serif;
    }

    /* Contact */



    /* Project Page */
    #projects {
        padding: 150px 0;
    }

    #projects .projects_wrapper {
        gap: 35px;
    }

    #projects .projects_wrapper .content {
        height: auto;
        font: 600 18px/27px "Poppins Regular", sans-serif;
    }

    #projects .projects_wrapper .projects_wrapper_two,
    #projects .projects_wrapper .projects_wrapper_three {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        gap: 35px;
    }

    #projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(1) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(2) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(2) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(1) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(1) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(3) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(2),
    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(3) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(1),
    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(2) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper a .picture {
        height: auto;
    }

    /* Project Page */


    /* Details Fifth Section */
    #details_first .container{
        padding: 60vh 33px 10vh;
    }
    #details_first .animation_wrapper {
        gap: 20vh;
    }

    #details_first .context_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
    }

    #details_first .context_wrapper .gsap_scrollTrigger {
        transform: translateY(100%);
    }

    #details_first .context_wrapper .gsap_scrollTrigger h2 {
        font: 650 24px/32px 'Poppins Regular', sans-serif;
        margin-bottom: 20px;
    }

    #details_first .context_wrapper .gsap_scrollTrigger p {
        font: 300 55px/55px 'Poppins Regular', sans-serif;
        width: 90%;
    }

    #details_first .info_wrapper .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper .gsap_scrollTrigger h2 {
        font: 600 22px/26px 'Poppins Regular', sans-serif;
        transform: translateY(100%);
    }

    #details_first .info_wrapper .horizontal_bar {
        border: none;
        outline: none;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 25px 0 65px;
        position: relative;
    }

    #details_first .info_wrapper .horizontal_bar .horizontal_bar_inner {
        position: absolute;
        top: -1px;
        left: 0;
        height: 2px;
        width: 8%;
        background: rgba(255, 255, 255, 1);
    }

    #details_first .info_wrapper ul {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        max-width: calc((3 * 200px) + (2 * 50px));
    }

    #details_first .info_wrapper ul li {
        width: 200px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger h5 {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        text-transform: uppercase;
        transform: translateY(100%);
        padding-bottom: 10px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        position: relative;
        transform: translateY(100%);
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p span.superscript {
        position: absolute;
        top: 0;
        font: 300 16px/18px 'Poppins Regular', sans-serif;
    }

    /* Details Fifth Section */



    /* Details Swiper */
    #details_swiper {
        padding: 80px 0 40px;
    }

    #details_swiper .swiper.mySwiper {
        padding-top: 100px;
        padding-left: 30px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-next {
        width: 50px;
        height: 50px;
        top: 40px;
        right: 30px;
        font-size: 16px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: 40px;
        right: calc(30px + 50px + 12px);
        font-size: 16px;
    }

    .swiper-slide img {
        height: 470px;
    }

    /* Details Swiper */




    /* Details Second Section */

    #details_second .details_second_wrapper {
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding: 110px 0;
    }

    #details_second .details_second_wrapper>div {
        width: 100%;
    }

    #details_second .details_second_wrapper .title h2 {
        font: 300 64px/66px "Poppins Regular", sans-serif;
    }

    #details_second .details_second_wrapper .title h2 span {
        display: inline-block;
    }

    #details_second .details_second_wrapper .context {
        display: flex;
        gap: 15px;
    }

    #details_second .details_second_wrapper .context .context_item {
        width: calc((100% - 1 * 15px) / 2);
        padding-right: 40px;
        gap: 40px;
    }

    #details_second .details_second_wrapper .context .context_item p {
        font: 300 18px/27px "Poppins Regular", sans-serif;
    }

    /* Details Second Section */





    /* Details Third Section */
    #details_third .details_third_wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 80px 0 0;
        gap: 50px;
    }

    #details_third .details_third_wrapper .context {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    #details_third .details_third_wrapper .context p {
        font: 300 30px/33px "Poppins Regular", sans-serif;
    }

    #details_third .details_third_wrapper .picture {
        width: 100%;
    }

    /* Details Third Section */



    /*  Talent First Section  */
    #talent_first,
    #practice_first {
        padding: 125px 0 105px;
    }

    #talent_first .talent_first_wrapper h2,
    #practice_first .practice_first_wrapper h2 {
        font: 600 21px/28px 'Poppins Bold', sans-serif;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    #talent_first .talent_first_wrapper p,
    #practice_first .practice_first_wrapper p {
        font: 300 82px/82px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    /*  Talent First Section  */


    /* Talent Fifth Section */
    #talent_fifth .context_wrapper h2 {
        font: 300 94px/94px 'Poppins Regular', sans-serif;
    }

    /* Talent Fifth Section */


    /*  Talent Third Section  */
    #talent_third {
        padding: 100px 0;
    }

    #talent_third .talent_third_wrapper {
        justify-content: space-between;
        margin-bottom: 100px;
    }

    #talent_third .talent_third_wrapper .title {
        font: 600 17px/25px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content {
        width: 75%;
    }

    #talent_third .talent_third_wrapper .content.paragraph {
        font: 300 27px/33px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content.heading {
        font: 300 40px/46px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_pictures {
        margin-bottom: 100px;
    }

    #talent_third .talent_third_pictures .first_one {
        width: 50%;
    }

    #talent_third .talent_third_pictures .second_one {
        width: 50%;
    }

    #talent_third .team {
        display: flex;
    }

    #talent_third .team .team_left {
        width: 50%;
    }

    #talent_third .team .team_left .team_left_wrapper {
        position: sticky;
        top: 26%;
        width: 250px;
    }

    #talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings h3 {
        font: 300 27px/33px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right {
        width: 50%;
    }

    #talent_third .team .team_right .team_members {
        column-gap: 15px;
        row-gap: 30px;
    }

    #talent_third .team .team_right .team_member {
        width: calc((100% - 2 * 15px) / 3);
        min-height: 205px;
    }

    #talent_third .team .team_right .team_member .about .fullname {
        font: 650 14px/16px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right .team_member .about .profession {
        font: 300 12px/16px 'Poppins Regular', sans-serif;
    }

    /*  Talent Third Section  */


    /*  Practice Third Section  */
    #practice_third {
        padding: 105px 0 30px;
    }

    #practice_third .practice_third_wrapper {
        justify-content: space-between;
        margin-bottom: 120px;
    }

    #practice_third .practice_third_wrapper .content {
        width: 75%;
        padding-right: 41px;
        gap: 41px;
    }

    #practice_third .practice_third_wrapper .content.paragraph {
        font: 300 26px/32px 'Poppins Regular', sans-serif;
    }

    #practice_third .practice_third_pictures .image {
        width: 75%;
    }

    /*  Practice Third Section  */


    /* Practice Fifth Section */
    #practice_fifth .context_wrapper h2 {
        font: 300 94px/94px 'Poppins Regular', sans-serif;
    }

    /* Practice Fifth Section */



    /*  Practice Carousel Section  */
    #practice_carousel {
        padding: 40px 0 60px;
    }

    #practice_carousel .practice_carousel_wrapper .horizontal_line {
        margin: 55px 0px 27px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context {
        flex-direction: column;
        gap: 35px;
        justify-content: flex-start;
        padding-bottom: 35px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title {
        font: 300 70px/100px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.paragraph {
        font: 300 22px/28px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular {
        font: 300 48px/53px 'Poppins Regular', sans-serif;
        /* width: 100%; */
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular span {
        display: inline-block;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small .title {
        font: 300 48px/53px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small.paragraph {
        font: 300 36px/42px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper {
        margin: 65px 0;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item {
        padding-right: 15px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture {
        width: 330px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .context {
        font: 650 18px/23px "Poppins Regular", sans-serif;
        margin-top: 10px;
    }

    /*  Practice Carousel Section  */


    /* Practice Our Clients */
    #practice_our_clients .our_clients {
        padding: 110px 0;
    }

    #practice_our_clients .our_clients .our_clients_left {
        width: 40%;
    }

    #practice_our_clients .our_clients .our_clients_right {
        width: 60%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper {
        position: sticky;
        top: 35%;
        gap: 42px;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper h3 {
        font: 300 54px/60px 'Poppins Regular', sans-serif;
        width: 80%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper p {
        font: 300 22px/25px 'Poppins Regular', sans-serif;
        width: 85%;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 45px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item {
        width: calc((100% - 1 * 20px) / 2);
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item .name {
        font: 650 22px/26px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a {
        font: 300 18px/24px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .horizontal_line {
        margin-top: 30px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .title {
        margin-top: -20px;
        font-size: 2.5rem;
        line-height: 2.875rem;
        font: 300 40px/45px 'Poppins Regular', sans-serif;
    }

    /* Practice Our Clients */
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {

    /* Loader */
    #loading-screen .counter {
        height: 75px;
        line-height: 75px;
        font-size: 75px;
        clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    }

    #loading-screen .counter .num1offset1 {
        right: -20px;
    }

    #loading-screen .counter .num1offset2 {
        right: -6px;
    }

    /* Loader */



    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 5;
        width: 100%;
    }

    header .header .header_outer {
        height: 90px;
    }

    header .header .header_outer .logo {
        height: 70px;
    }

    header .header .header_outer .logo a .logo_pic {
        width: 102px;
        height: 70px;
        transform: scale(1.4);
    }

    header .header .header_outer .logo a .logo_text {
        color: #fff;
        font: 600 35px/40px "Poppins Bold", sans-serif;
        letter-spacing: -2px;
    }

    header .header .header_outer .svg svg {
        width: 60px;
        cursor: pointer;
    }

    header .header .header_inner {
        width: 100%;
    }

    header .header .header_inner #sidebar {
        align-items: center;
        /* height: calc((100vh - 85px));
        padding: 50px 0; */
        padding: 0;
        height: 0;
    }

    header .header .header_inner #sidebar .pages li a {
        font: 300 45px/50px 'Poppins Regular', sans-serif !important;
    }

    header .header .header_inner #sidebar .socials li {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    header .header .header_inner #sidebar .socials li img {
        width: 27px;
        height: 27px;
    }

    header .header .header_inner #sidebar .socials li span {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    header .header .header_inner #sidebar .socials li a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    /* Header */



    /* Home */
    #home .heading_wrapper {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #home .heading_wrapper h1 {
        height: 110px;
        display: flex;
        align-items: center;
        font: 300 100px/110px 'Poppins Regular', sans-serif;
    }

    #home .heading_wrapper .words {
        height: 135px;
    }

    #home .heading_wrapper .words span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font: 300 100px/110px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    #home .scroll {
        width: 68px;
        height: 88px;
    }

    #home .scroll img {
        width: 68px;
        height: 68px;
    }

    /* Home */



    /* Home Second Section */
    #home_second {
        padding: 120px 0 40px;
    }

    #home_second .second_page {
        flex-direction: column;
        gap: 50px;
    }

    #home_second .second_page .first_row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        height: auto;
    }

    #home_second .second_page .first_row .left_side {
        width: 100%;
        height: auto;
    }

    #home_second .second_page .first_row .right_side {
        width: 100%;
        height: auto;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger {
        margin-bottom: 50px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 {
        font: 300 64px/70px 'Poppins Regular', sans-serif;
    }



    #home_second .second_page .first_row .left_side p {
        font: 300 24px/32px 'Poppins Regular', sans-serif;
        width: 100%;
        padding-bottom: 30px;
    }

    #home_second .second_page .first_row .left_side a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
    }

    #home_second .second_page .first_row .left_side a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .first_row .left_side a::before {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .second_row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        height: auto;
    }

    #home_second .second_page .second_row .left_side {
        width: 100%;
        height: auto;
    }

    #home_second .second_page .second_row .right_side {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #home_second .second_page .second_row .right_side .picture {
        height: auto;
    }

    #home_second .second_page .second_row .right_side .context {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 35px;
        padding: 50px 0 0;
    }

    #home_second .second_page .second_row .right_side p {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
        width: 70%;
        letter-spacing: -0.5px;
    }

    #home_second .second_page .second_row .right_side p span {
        font: 600 18px/27px 'Poppins Bold', sans-serif;
    }

    /* Home Second Section */



    /* Home Third Section */
    #home_third .context_wrapper {
        gap: 40px;
        width: 85%;
    }

    #home_third .context_wrapper {
        width: 80%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger {
        width: 100%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger p {
        font: 300 44px/47px 'Poppins Regular', sans-serif;
    }

    #home_third .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
    }

    /* Home Third Section */



    /* Home Forth Section */
    #home_forth .picture {
        width: 320px;
        height: 440px;
    }

    #home_forth .banner {
        font: 300 150px/150px 'Poppins Regular', sans-serif;
        --gap: 70px;
    }

    /* Home Forth Section */


    /* Home Fifth Section */
    #home_fifth {
        padding: 40px 0 70px;
    }

    #home_fifth .heading {
        align-items: flex-start;
        justify-content: space-between;
    }

    #home_fifth .heading .gsap_scrollTrigger h2 {
        font: 300 50px/54px 'Poppins Regular', sans-serif;
    }

    #home_fifth .heading a {
        font: 600 16px/23px 'Poppins Regular', sans-serif;
    }

    #home_fifth .swiper_wrapper {
        margin-top: 60px;
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide {
        /* width: calc((100% - 2 * 70px) / 1.5); */
        width: calc((100% - 2 * 10px) / 2.5);

    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content h3 {
        font: 600 18px/28px "Poppins Regular", sans-serif;
    }

    /* Home Fifth Section */



    /* Home Sixth Section */
    #home_sixth,
    #talent_sixth,
    #practice_sixth {

        padding: 100px 0;
    }

    #home_sixth .overlay,
    #talent_sixth .overlay,
    #practice_sixth .overlay {
        width: 500px;
        height: 720px;
    }

    #home_sixth .overlay .overlay_inner,
    #talent_sixth .overlay .overlay_inner,
    #practice_sixth .overlay .overlay_inner {
        width: 300px;
        height: 435px;
    }

    #home_sixth .context_wrapper,
    #talent_sixth .context_wrapper,
    #practice_sixth .context_wrapper {
        gap: 40px;
        margin-top: 70px;
    }

    #home_sixth .context_wrapper .gsap_scrollTrigger h2,
    #talent_sixth .context_wrapper .gsap_scrollTrigger h2,
    #practice_sixth .context_wrapper .gsap_scrollTrigger h2 {
        font: 300 48px/52px 'Poppins Regular', sans-serif;
    }

    #home_sixth .context_wrapper p,
    #talent_sixth .context_wrapper p,
    #practice_sixth .context_wrapper p {
        font: 300 20px/26px 'Poppins Regular', sans-serif;
        width: 450px;
    }

    #home_sixth .context_wrapper a,
    #talent_sixth .context_wrapper a,
    #practice_sixth .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
    }

    #home_sixth .context_wrapper a::after,
    #talent_sixth .context_wrapper a::after,
    #practice_sixth .context_wrapper a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_sixth .context_wrapper a::before,
    #talent_sixth .context_wrapper a::before,
    #practice_sixth .context_wrapper a::before {
        bottom: 2px;
        height: 2px;
    }

    /* Home Sixth Section */


    /* Footer Section */
    footer .upper_footer {
        padding: 75px 0 85px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }

    footer .upper_footer .picture {
        width: 177px;
        height: 150px;
    }

    footer .upper_footer .links {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }

    footer .upper_footer .links .nav_links {
        flex-grow: auto;
        width: 100%;
    }

    footer .upper_footer .links .location {
        flex-grow: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    footer .upper_footer .links .socials {
        flex-grow: auto;
        width: 100%;
    }

    footer .upper_footer .links .location .upper_location {
        width: 100%;
    }

    footer .upper_footer .links .location .upper_location a p {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .location .lower_location ul li a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .socials ul li {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .socials ul li a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .lower_footer {
        height: auto;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        color: rgba(255, 255, 255, 0.5);
        gap: 10px;
    }

    footer .lower_footer .copyright {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
    }

    footer .lower_footer .privacy ul {
        padding: 0;
    }

    /* Footer Section */



    /* Contact */
    #contact .contact_wrapper {
        padding: 150px 0 80px;
        flex-direction: column;
        gap: 40px;
    }

    #contact .contact_wrapper .contact_wrapper_item {
        width: 100%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container {
        gap: 40px;
        position: static;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item:nth-child(2) {
        width: 100%;
        position: static;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 {
        font: 300 32px/40px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item {
        gap: 20px;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .heading {
        font: 650 18px/23px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .content {
        font: 300 18px/23px 'Poppins Regular', sans-serif;
        width: 80%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag {
        width: 60%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag p {
        font: 300 18px/24px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .phone_number {
        font: 650 18px/27px 'Poppins Regular', sans-serif;
    }

    /* Contact */

    /* Project Page */
    #projects {
        padding: 150px 0;
    }

    #projects .projects_wrapper {
        gap: 35px;
    }

    #projects .projects_wrapper .content {
        height: auto;
        font: 600 18px/27px "Poppins Regular", sans-serif;
    }

    #projects .projects_wrapper .projects_wrapper_two,
    #projects .projects_wrapper .projects_wrapper_three {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        gap: 35px;
    }

    #projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(1) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(2) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(2) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(1) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(1) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(3) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(2),
    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(3) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(1),
    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(2) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper a .picture {
        height: auto;
    }

    /* Project Page */


    /* Details Fifth Section */
    #details_first .container{
        padding: 60vh 33px 10vh;
    }
    #details_first .animation_wrapper {
        gap: 20vh;
    }

    #details_first .context_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
    }

    #details_first .context_wrapper .gsap_scrollTrigger {
        transform: translateY(100%);
    }

    #details_first .context_wrapper .gsap_scrollTrigger h2 {
        font: 650 24px/32px 'Poppins Regular', sans-serif;
        margin-bottom: 20px;
    }

    #details_first .context_wrapper .gsap_scrollTrigger p {
        font: 300 43px/43px 'Poppins Regular', sans-serif;
        width: 93%;
    }


    #details_first .info_wrapper .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper .gsap_scrollTrigger h2 {
        font: 600 22px/26px 'Poppins Regular', sans-serif;
        transform: translateY(100%);
    }

    #details_first .info_wrapper .horizontal_bar {
        border: none;
        outline: none;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 25px 0 65px;
        position: relative;
    }

    #details_first .info_wrapper .horizontal_bar .horizontal_bar_inner {
        position: absolute;
        top: -1px;
        left: 0;
        height: 2px;
        width: 8%;
        background: rgba(255, 255, 255, 1);
    }

    #details_first .info_wrapper ul {
        display: flex;
        /* flex-direction: column; */
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        width: 100%;
        max-width: calc((3 * 200px) + (2 * 50px));
    }

    #details_first .info_wrapper ul li {
        width: 200px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger h5 {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        text-transform: uppercase;
        transform: translateY(100%);
        padding-bottom: 10px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
        position: relative;
        transform: translateY(100%);
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p span.superscript {
        position: absolute;
        top: 0;
        font: 300 16px/18px 'Poppins Regular', sans-serif;
    }

    /* Details Fifth Section */




    /* Details Swiper */
    #details_swiper {
        padding: 80px 0 40px;
    }

    #details_swiper .swiper.mySwiper {
        padding-top: 100px;
        padding-left: 30px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-next {
        width: 50px;
        height: 50px;
        top: 40px;
        right: 30px;
        font-size: 16px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: 40px;
        right: calc(30px + 50px + 12px);
        font-size: 16px;
    }

    .swiper-slide img {
        height: 430px;
    }

    /* Details Swiper */


    /* Details Second Section */
    #details_second .details_second_wrapper {
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding: 110px 0;
    }

    #details_second .details_second_wrapper>div {
        width: 100%;
    }

    #details_second .details_second_wrapper .title h2 {
        font: 300 56px/60px "Poppins Regular", sans-serif;
    }

    #details_second .details_second_wrapper .title h2 span {
        display: inline-block;
    }

    #details_second .details_second_wrapper .context {
        display: flex;
        gap: 15px;
    }

    #details_second .details_second_wrapper .context .context_item {
        width: calc((100% - 1 * 15px) / 2);
        padding-right: 30px;
        gap: 40px;
    }

    #details_second .details_second_wrapper .context .context_item p {
        font: 300 16px/23px "Poppins Regular", sans-serif;
    }

    /* Details Second Section */



    /* Details Third Section */
    #details_third .details_third_wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 80px 0 0;
        gap: 50px;
    }

    #details_third .details_third_wrapper .context {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    #details_third .details_third_wrapper .context p {
        font: 300 24px/28px "Poppins Regular", sans-serif;
    }

    #details_third .details_third_wrapper .picture {
        width: 100%;
    }

    /* Details Third Section */



    /*  Talent First Section  */
    #talent_first,
    #practice_first {
        padding: 120px 0 100px;
    }

    #talent_first .talent_first_wrapper h2,
    #practice_first .practice_first_wrapper h2 {
        font: 600 20px/26px 'Poppins Bold', sans-serif;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    #talent_first .talent_first_wrapper p,
    #practice_first .practice_first_wrapper p {
        font: 300 70px/70px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    /*  Talent First Section  */



    /* Talent Fifth Section */
    #talent_fifth .context_wrapper h2 {
        font: 300 84px/84px 'Poppins Regular', sans-serif;
    }

    /* Talent Fifth Section */


    /*  Talent Third Section  */
    #talent_third {
        padding: 95px 0;
    }

    #talent_third .talent_third_wrapper {
        justify-content: space-between;
        margin-bottom: 95px;
    }

    #talent_third .talent_third_wrapper .title {
        font: 600 16px/24px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content {
        width: 75%;
    }

    #talent_third .talent_third_wrapper .content.paragraph {
        font: 300 24px/28px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content.heading {
        font: 300 36px/40px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_pictures {
        margin-bottom: 95px;
    }

    #talent_third .talent_third_pictures .first_one {
        width: 50%;
    }

    #talent_third .talent_third_pictures .second_one {
        width: 50%;
    }

    #talent_third .team {
        display: flex;
    }

    #talent_third .team .team_left {
        width: 40%;
    }

    #talent_third .team .team_left .team_left_wrapper {
        position: sticky;
        top: 29%;
        width: 180px;
    }

    #talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings h3 {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right {
        width: 60%;
    }

    #talent_third .team .team_right .team_members {
        column-gap: 10px;
        row-gap: 20px;
    }

    #talent_third .team .team_right .team_member {
        width: calc((100% - 2 * 10px) / 3);
        min-height: 190px;
    }

    #talent_third .team .team_right .team_member .about .fullname {
        font: 650 14px/16px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right .team_member .about .profession {
        font: 300 12px/16px 'Poppins Regular', sans-serif;
    }

    /*  Talent Third Section  */


    /*  Practice Third Section  */
    #practice_third {
        padding: 100px 0 30px;
    }

    #practice_third .practice_third_wrapper {
        justify-content: space-between;
        margin-bottom: 110px;
    }

    #practice_third .practice_third_wrapper .content {
        width: 75%;
        padding-right: 35px;
        gap: 35px;
    }

    #practice_third .practice_third_wrapper .content.paragraph {
        font: 300 24px/30px 'Poppins Regular', sans-serif;
    }

    #practice_third .practice_third_pictures .image {
        width: 75%;
    }

    /*  Practice Third Section  */



    /* Practice Fifth Section */
    #practice_fifth .context_wrapper h2 {
        font: 300 84px/84px 'Poppins Regular', sans-serif;
    }

    /* Practice Fifth Section */


    /*  Practice Carousel Section  */
    #practice_carousel {
        padding: 40px 0 60px;
    }

    #practice_carousel .practice_carousel_wrapper .horizontal_line {
        margin: 50px 0px 25px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context {
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
        padding-bottom: 25px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title {
        font: 300 60px/92px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.paragraph {
        font: 300 22px/26px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular {
        font: 300 45px/50px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular span {
        display: inline-block;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small .title {
        font: 300 45px/50px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small.paragraph {
        font: 300 32px/38px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper {
        margin: 60px 0;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture {
        width: 270px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .context {
        font: 650 18px/23px "Poppins Regular", sans-serif;
        margin-top: 10px;
    }

    /*  Practice Carousel Section  */



    /* Practice Our Clients */
    #practice_our_clients .our_clients {
        padding: 100px 0;
    }

    #practice_our_clients .our_clients .our_clients_left {
        width: 50%;
    }

    #practice_our_clients .our_clients .our_clients_right {
        width: 50%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper {
        position: sticky;
        top: 35%;
        gap: 38px;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper h3 {
        font: 300 54px/60px 'Poppins Regular', sans-serif;
        width: 80%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper p {
        font: 300 22px/25px 'Poppins Regular', sans-serif;
        width: 90%;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 35px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item .name {
        font: 650 22px/26px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a {
        font: 300 18px/24px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .horizontal_line {
        margin-top: 30px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .title {
        margin-top: -20px;
        font-size: 2.5rem;
        line-height: 2.875rem;
        font: 300 40px/45px 'Poppins Regular', sans-serif;
    }

    /* Practice Our Clients */
}

@media only screen and (max-width: 575.98px) {

    /* Loader */
    #loading-screen .counter {
        left: 30px;
        bottom: 30px;
        height: 65px;
        line-height: 65px;
        font-size: 65px;
        clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    }

    #loading-screen .counter .num1offset1 {
        right: -18px;
    }

    #loading-screen .counter .num1offset2 {
        right: -5px;
    }

    /* Loader */



    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 5;
        width: 100%;
    }

    header .header .header_outer {
        height: 80px;
    }

    header .header .header_outer .logo {
        height: 60px;
    }

    header .header .header_outer .logo a .logo_pic {
        width: 80px;
        height: 54px;
        transform: scale(1.4);
    }

    header .header .header_outer .logo a .logo_text {
        color: #fff;
        font: 600 27px/31px "Poppins Bold", sans-serif;
        letter-spacing: -2px;
    }

    header .header .header_outer .svg svg {
        width: 50px;
        cursor: pointer;
    }

    header .header .header_inner {
        width: 100%;
    }

    header .header .header_inner #sidebar {
        align-items: center;
        /* height: calc((100vh - 75px));
        padding: 50px 0 100px; */
        padding: 0;
        height: 0;
    }

    header .header .header_inner #sidebar .pages li a {
        font: 300 40px/45px 'Poppins Regular', sans-serif !important;
    }

    header .header .header_inner #sidebar .socials li {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    header .header .header_inner #sidebar .socials li img {
        width: 27px;
        height: 27px;
    }

    header .header .header_inner #sidebar .socials li span {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    header .header .header_inner #sidebar .socials li a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    /* Header */



    /* Home */
    #home .heading_wrapper {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #home .heading_wrapper h1 {
        height: 75px;
        display: flex;
        align-items: center;
        font: 300 70px/75px 'Poppins Regular', sans-serif;
    }

    #home .heading_wrapper .words {
        height: 95px;
    }

    #home .heading_wrapper .words span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font: 300 70px/75px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    #home .scroll {
        width: 65px;
        height: 85px;
    }

    #home .scroll img {
        width: 65px;
        height: 65px;
    }

    /* Home */



    /* Home Second Section */
    #home_second {
        padding: 120px 0 40px;
    }

    #home_second .second_page {
        flex-direction: column;
        gap: 50px;
    }

    #home_second .second_page .first_row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        height: auto;
    }

    #home_second .second_page .first_row .left_side {
        width: 100%;
        height: auto;
    }

    #home_second .second_page .first_row .right_side {
        width: 100%;
        height: auto;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger {
        margin-bottom: 30px;
    }

    #home_second .second_page .first_row .left_side .gsap_scrollTrigger h2 {
        font: 300 47px/56px 'Poppins Regular', sans-serif;
    }



    #home_second .second_page .first_row .left_side p {
        font: 300 20px/27px 'Poppins Regular', sans-serif;
        width: 100%;
        padding-bottom: 18px;
    }

    #home_second .second_page .first_row .left_side a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
        margin-top: 10px;
    }

    #home_second .second_page .first_row .left_side a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .first_row .left_side a::before {
        bottom: 2px;
        height: 2px;
    }

    #home_second .second_page .second_row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        height: auto;
    }

    #home_second .second_page .second_row .left_side {
        width: 100%;
        height: auto;
    }

    #home_second .second_page .second_row .right_side {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #home_second .second_page .second_row .right_side .picture {
        height: auto;
    }

    #home_second .second_page .second_row .right_side .context {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 25px;
        padding: 50px 0 0;
    }

    #home_second .second_page .second_row .right_side p {
        font: 300 16px/24px 'Poppins Regular', sans-serif;
        width: 100%;
        letter-spacing: -0.5px;
    }

    #home_second .second_page .second_row .right_side p span {
        font: 600 16px/24px 'Poppins Bold', sans-serif;
    }

    /* Home Second Section */


    /* Home Third Section */
    #home_third .context_wrapper {
        gap: 35px;
        width: 90%;
    }

    #home_third .context_wrapper {
        width: 80%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger {
        width: 100%;
    }

    #home_third .context_wrapper .gsap_scrollTrigger p {
        font: 300 32px/36px 'Poppins Regular', sans-serif;
    }

    #home_third .context_wrapper a {
        font: 600 15px/22px 'Poppins Bold', sans-serif;
    }

    /* Home Third Section */



    /* Home Forth Section */
    #home_forth .picture {
        width: 70%;
        height: 60%;
    }

    #home_forth .banner {
        font: 300 130px/130px 'Poppins Regular', sans-serif;
        --gap: 65px;
    }

    /* Home Forth Section */


    /* Home Fifth Section */
    #home_fifth {
        padding: 40px 0 70px;
    }

    #home_fifth .heading {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }

    #home_fifth .heading .gsap_scrollTrigger h2 {
        font: 300 45px/49px 'Poppins Regular', sans-serif;
    }

    #home_fifth .heading a {
        font: 600 16px/23px 'Poppins Regular', sans-serif;
    }

    #home_fifth .swiper_wrapper {
        margin-top: 60px;
    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide {
        /* width: calc((100% - 2 * 40px) / 1.2); */
        width: calc((100% - 2 * 10px) / 1.5);

    }

    #home_fifth .swiper_wrapper .swiper .swiper-wrapper .swiper-slide a .content h3 {
        font: 600 16px/18px "Poppins Regular", sans-serif;
    }

    /* Home Fifth Section */


    /* Home Sixth Section */
    #home_sixth,
    #talent_sixth,
    #practice_sixth {

        padding: 100px 0;
    }

    #home_sixth .overlay,
    #talent_sixth .overlay,
    #practice_sixth .overlay {
        width: 95%;
        height: auto;
    }

    #home_sixth .overlay .overlay_inner,
    #talent_sixth .overlay .overlay_inner,
    #practice_sixth .overlay .overlay_inner {
        width: 60%;
        height: auto;
    }

    #home_sixth .context_wrapper,
    #talent_sixth .context_wrapper,
    #practice_sixth .context_wrapper {
        gap: 40px;
        margin-top: 70px;
    }

    #home_sixth .context_wrapper .gsap_scrollTrigger h2,
    #talent_sixth .context_wrapper .gsap_scrollTrigger h2,
    #practice_sixth .context_wrapper .gsap_scrollTrigger h2 {
        font: 300 42px/46px 'Poppins Regular', sans-serif;
    }

    #home_sixth .context_wrapper p,
    #talent_sixth .context_wrapper p,
    #practice_sixth .context_wrapper p {
        font: 300 18px/23px 'Poppins Regular', sans-serif;
        width: 90%;
    }

    #home_sixth .context_wrapper a,
    #talent_sixth .context_wrapper a,
    #practice_sixth .context_wrapper a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
        padding-bottom: 5px;
    }

    #home_sixth .context_wrapper a::after,
    #talent_sixth .context_wrapper a::after,
    #practice_sixth .context_wrapper a::after {
        bottom: 2px;
        height: 2px;
    }

    #home_sixth .context_wrapper a::before,
    #talent_sixth .context_wrapper a::before,
    #practice_sixth .context_wrapper a::before {
        bottom: 2px;
        height: 2px;
    }

    /* Home Sixth Section */



    /* Footer Section */
    footer .upper_footer {
        padding: 75px 0 85px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }

    footer .upper_footer .picture {
        width: 177px;
        height: 150px;
    }

    footer .upper_footer .links {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }

    footer .upper_footer .links .nav_links {
        flex-grow: auto;
        width: 100%;
    }

    footer .upper_footer .links .location {
        flex-grow: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    footer .upper_footer .links .socials {
        flex-grow: auto;
        width: 100%;
    }

    footer .upper_footer .links .location .upper_location {
        width: 100%;
    }

    footer .upper_footer .links .location .upper_location a p {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .location .lower_location ul li a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .socials ul li {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .upper_footer .links .socials ul li a {
        font: 300 18px/27px 'Poppins Regular', sans-serif;
    }

    footer .lower_footer {
        height: auto;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        color: rgba(255, 255, 255, 0.5);
        gap: 10px;
    }

    footer .lower_footer .copyright {
        font: 650 16px/23px 'Poppins Regular', sans-serif;
    }

    footer .lower_footer .privacy ul {
        padding: 0;
    }

    footer .lower_footer .privacy ul li {
        display: flex;
    }

    /* Footer Section */




    /* Contact */
    #contact .contact_wrapper {
        padding: 150px 0 80px;
        flex-direction: column;
        gap: 25px;
    }

    #contact .contact_wrapper .contact_wrapper_item {
        width: 100%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container {
        gap: 25px;
        position: static;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item:nth-child(2) {
        width: 100%;
        position: static;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .gsap_scrollTrigger h2 {
        font: 300 32px/40px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item {
        gap: 20px;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .heading {
        font: 650 18px/23px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .content {
        font: 300 18px/23px 'Poppins Regular', sans-serif;
        width: 90%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag {
        width: 90%;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .location_tag p {
        font: 300 18px/24px 'Poppins Regular', sans-serif;
    }

    #contact .contact_wrapper .contact_wrapper_item .contact_wrapper_item_container .contact_wrapper_inner_item .phone_number {
        font: 650 18px/27px 'Poppins Regular', sans-serif;
    }

    /* Contact */

    /* Project Page */
    #projects {
        padding: 150px 0;
    }

    #projects .projects_wrapper {
        gap: 30px;
    }

    #projects .projects_wrapper .content {
        height: auto;
        font: 600 18px/27px "Poppins Regular", sans-serif;
    }

    #projects .projects_wrapper .projects_wrapper_two,
    #projects .projects_wrapper .projects_wrapper_three {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        gap: 30px;
    }

    #projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(1) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_two .projects_wrapper_two_item:nth-child(2) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(2) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_two.reverse .projects_wrapper_two_item:nth-child(1) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(1) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(3) {
        height: auto;
        width: 100%;
    }

    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(2),
    #projects .projects_wrapper .projects_wrapper_three .projects_wrapper_three_item:nth-child(3) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(1),
    #projects .projects_wrapper .projects_wrapper_three.reverse .projects_wrapper_three_item:nth-child(2) {
        width: 100%;
        height: auto;
    }

    #projects .projects_wrapper a .picture {
        height: auto;
    }

    /* Project Page */


    /* Details Fifth Section */
    #details_first .container{
        padding: 60vh 33px 10vh;
    }
    #details_first .animation_wrapper {
        gap: 20vh;
    }

    #details_first .context_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
    }

    #details_first .context_wrapper .gsap_scrollTrigger {
        transform: translateY(100%);
    }

    #details_first .context_wrapper .gsap_scrollTrigger h2 {
        font: 650 24px/32px 'Poppins Regular', sans-serif;
        margin-bottom: 20px;
    }

    #details_first .context_wrapper .gsap_scrollTrigger p {
        font: 300 34px/34px 'Poppins Regular', sans-serif;
        width: 93%;
    }

    #details_first .info_wrapper .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper .gsap_scrollTrigger h2 {
        font: 600 22px/26px 'Poppins Regular', sans-serif;
        transform: translateY(100%);
    }

    #details_first .info_wrapper .horizontal_bar {
        border: none;
        outline: none;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 15px 0 45px;
        position: relative;
    }

    #details_first .info_wrapper .horizontal_bar .horizontal_bar_inner {
        position: absolute;
        top: -1px;
        left: 0;
        height: 2px;
        width: 8%;
        background: rgba(255, 255, 255, 1);
    }

    #details_first .info_wrapper ul {
        display: flex;
        /* flex-direction: column; */
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    #details_first .info_wrapper ul li {
        width: 120px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger {
        overflow: hidden;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger h5 {
        font: 300 18px/20px 'Poppins Regular', sans-serif;
        text-transform: uppercase;
        transform: translateY(100%);
        padding-bottom: 5px;
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p {
        font: 300 16px/18px 'Poppins Regular', sans-serif;
        position: relative;
        transform: translateY(100%);
    }

    #details_first .info_wrapper ul li .gsap_scrollTrigger p span.superscript {
        position: absolute;
        top: 0;
        font: 300 16px/18px 'Poppins Regular', sans-serif;
    }

    /* Details Fifth Section */


    /* Details Swiper */
    #details_swiper {
        padding: 80px 0 40px;
    }

    #details_swiper .swiper.mySwiper {
        padding-top: 100px;
        padding-left: 30px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-next {
        width: 40px;
        height: 40px;
        top: 40px;
        right: 30px;
        font-size: 12px;
    }

    #details_swiper .swiper.mySwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        top: 40px;
        right: calc(30px + 40px + 12px);
        font-size: 12px;
    }

    .swiper-slide img {
        height: 300px;
    }

    /* Details Swiper */



    /* Details Second Section */
    #details_second .details_second_wrapper {
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding: 90px 0;
    }

    #details_second .details_second_wrapper>div {
        width: 100%;
    }

    #details_second .details_second_wrapper .title h2 {
        font: 300 45px/48px "Poppins Regular", sans-serif;
    }

    #details_second .details_second_wrapper .title h2 span {
        display: inline-block;
    }

    #details_second .details_second_wrapper .context {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #details_second .details_second_wrapper .context .context_item {
        width: 100%;
        padding: 0;
        gap: 40px;
    }

    #details_second .details_second_wrapper .context .context_item p {
        font: 300 18px/27px "Poppins Regular", sans-serif;
    }

    /* Details Second Section */



    /* Details Third Section */
    #details_third .details_third_wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 80px 0 0;
        gap: 30px;
    }

    #details_third .details_third_wrapper .context {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    #details_third .details_third_wrapper .context p {
        font: 300 21px/24px "Poppins Regular", sans-serif;
    }

    #details_third .details_third_wrapper .picture {
        width: 100%;
    }

    /* Details Third Section */



    /*  Talent First Section  */
    #talent_first,
    #practice_first {
        padding: 110px 0 90px;
    }

    #talent_first .talent_first_wrapper h2,
    #practice_first .practice_first_wrapper h2 {
        font: 600 20px/24px 'Poppins Bold', sans-serif;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    #talent_first .talent_first_wrapper p,
    #practice_first .practice_first_wrapper p {
        font: 300 60px/60px 'Poppins Regular', sans-serif;
        letter-spacing: -5px;
    }

    /*  Talent First Section  */



    /* Talent Fifth Section */
    #talent_fifth .context_wrapper h2 {
        font: 300 70px/70px 'Poppins Regular', sans-serif;
    }

    /* Talent Fifth Section */



    /*  Talent Third Section  */
    #talent_third {
        padding: 90px 0;
    }

    #talent_third .talent_third_wrapper {
        flex-direction: column;
        gap: 40px;
        justify-content: flex-start;
        margin-bottom: 90px;
    }

    #talent_third .talent_third_wrapper .gsap_scrollTrigger {
        width: 100%;
    }

    #talent_third .talent_third_wrapper .title {
        font: 600 30px/36px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content {
        width: 100%;
    }

    #talent_third .talent_third_wrapper .content.paragraph {
        font: 300 20px/24px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_wrapper .content.heading {
        font: 300 30px/34px 'Poppins Regular', sans-serif;
    }

    #talent_third .talent_third_pictures {
        margin-bottom: 90px;
        flex-direction: column;
    }

    #talent_third .talent_third_pictures .first_one {
        width: 100%;
    }

    #talent_third .talent_third_pictures .second_one {
        width: 100%;
    }

    #talent_third .team {
        display: flex;
    }

    #talent_third .team .team_left {
        width: 50%;
    }

    #talent_third .team .team_left .team_left_wrapper {
        position: sticky;
        top: 39%;
        width: 90%;
    }

    #talent_third .team .team_left .team_left_wrapper .gsap_scrollTrigger .headings h3 {
        font: 300 20px/24px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right {
        width: 50%;
    }

    #talent_third .team .team_right .team_members {
        column-gap: 10px;
        row-gap: 30px;
    }

    #talent_third .team .team_right .team_member {
        width: 100%;
        min-height: 140px;
    }

    #talent_third .team .team_right .team_member .about .fullname {
        font: 650 14px/15px 'Poppins Regular', sans-serif;
    }

    #talent_third .team .team_right .team_member .about .profession {
        font: 300 13px/14px 'Poppins Regular', sans-serif;
    }

    /*  Talent Third Section  */



    /*  Practice Third Section  */
    #practice_third {
        padding: 90px 0 30px;
    }

    #practice_third .practice_third_wrapper {
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
        margin-bottom: 60px;
    }

    #practice_third .practice_third_wrapper .gsap_scrollTrigger {
        width: 100%;
    }

    #practice_third .practice_third_wrapper .gsap_scrollTrigger .title {
        font: 600 30px/37px 'Poppins Regular', sans-serif;
    }

    #practice_third .practice_third_wrapper .content {
        width: 100%;
        padding-right: 25px;
        gap: 25px;
    }

    #practice_third .practice_third_wrapper .content.paragraph {
        font: 300 20px/23px 'Poppins Regular', sans-serif;
    }

    #practice_third .practice_third_pictures .image {
        width: 100%;
    }

    /*  Practice Third Section  */



    /* Practice Fifth Section */
    #practice_fifth .context_wrapper h2 {
        font: 300 70px/70px 'Poppins Regular', sans-serif;
    }

    /* Practice Fifth Section */


    /*  Practice Carousel Section  */
    #practice_carousel {
        padding: 40px 0 60px;
    }

    #practice_carousel .practice_carousel_wrapper .horizontal_line {
        margin: 45px 0px 25px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context {
        flex-direction: column;
        gap: 25px;
        justify-content: flex-start;
        padding-bottom: 15px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title {
        font: 300 45px/70px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.paragraph {
        font: 300 18px/22px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular {
        font: 300 35px/40px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .title.regular span {
        display: inline-block;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .gsap_scrollTrigger.small .title {
        font: 300 34px/38px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small {
        width: 100%;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_context .content.small.paragraph {
        font: 300 20px/24px 'Poppins Regular', sans-serif;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper {
        margin: 60px 0;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .picture {
        width: 180px;
    }

    #practice_carousel .practice_carousel_wrapper .practice_carousel_wrapper_swiper .carouselTicker__item .building_wrapper .context {
        font: 650 14px/18px "Poppins Regular", sans-serif;
        margin-top: 10px;
        height: auto;
        width: 180px;
    }

    /*  Practice Carousel Section  */


    /* Practice Our Clients */
    #practice_our_clients .our_clients {
        padding: 90px 0;
    }

    #practice_our_clients .our_clients {
        flex-direction: column;
        gap: 70px;
    }

    #practice_our_clients .our_clients .our_clients_left {
        width: 100%;
    }

    #practice_our_clients .our_clients .our_clients_right {
        width: 100%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper {
        position: static;
        gap: 35px;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper h3 {
        font: 300 54px/60px 'Poppins Regular', sans-serif;
        width: 100%;
    }

    #practice_our_clients .our_clients .our_clients_left .our_clients_left_wrapper p {
        font: 300 24px/30px 'Poppins Regular', sans-serif;
        width: 100%;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 35px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item .name {
        font: 650 22px/26px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .item a {
        font: 300 18px/24px 'Poppins Regular', sans-serif;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .horizontal_line {
        margin-top: 30px;
    }

    #practice_our_clients .our_clients .our_clients_right .our_clients_right_wrapper .title {
        margin-top: -20px;
        font-size: 2.5rem;
        line-height: 2.875rem;
        font: 300 40px/45px 'Poppins Regular', sans-serif;
    }

    /* Practice Our Clients */
}

/* Page Not Found */
#page_not_found {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

#page_not_found::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#page_not_found .background_video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

#page_not_found .context_wrapper {
    position: absolute;
    z-index: 2;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    overflow: hidden;
}

#page_not_found .context_wrapper .gsap_scrollTrigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: translateY(100%);
}

#page_not_found .context_wrapper .gsap_scrollTrigger p {
    font: 300 56px/60px 'Poppins Regular', sans-serif;
    letter-spacing: -1px;
    text-align: center;
}

#page_not_found .context_wrapper .gsap_scrollTrigger a {
    font: 600 16px/23px 'Poppins Bold', sans-serif;
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

#page_not_found .context_wrapper .gsap_scrollTrigger a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

#page_not_found .context_wrapper .gsap_scrollTrigger a:hover::after {
    left: 100%;
}

#page_not_found .context_wrapper .gsap_scrollTrigger a::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: -200%;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    transition-delay: 0.3s;
}

#page_not_found .context_wrapper .gsap_scrollTrigger a:hover::before {
    left: 0;
}

@media only screen and (max-width: 575.98px) {
    #page_not_found .context_wrapper .gsap_scrollTrigger p {
        font: 300 40px/44px 'Poppins Regular', sans-serif;
    }

    #page_not_found .context_wrapper .gsap_scrollTrigger a {
        font: 600 16px/23px 'Poppins Bold', sans-serif;
    }
}

/* Page Not Found */
























.barba_animation {
    width: 100%;
    height: 0;
    position: fixed;
    top: 100vh;
    left: 0;
    z-index: 90;
}

.barba_animation img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.load-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
    background-color: #000;
}

/* Barba Animation */

.gsap__anim {
    will-change: transform;
    overflow: hidden;
}