.clients .hero {
    /* height: 230vh; */
    /* height: 100vh; */
    min-height: 100vh;
    height: 100%;
    position: relative;
    bottom: 0;
    padding: 435px 0 50px;
}
.client-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    position: relative;
    /* padding-bottom: 33px; */
}

.logo-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--white);
    backdrop-filter: blur(25px);
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.7);
}

.logo-item:hover {
    background-color: var(--grey6);
    transition: background-color 0.3s; /* Smooth transition effect */
}

.clients .hero .backGround {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            165.02deg,
            #3f3e3e -13.02%,
            #181818 38.65%,
            #181818 100%
    );
    z-index: 0;
    /* overflow: hidden; */
}


.clients .hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 30px;
    /* padding: 300px 30px; */
    min-height: 688px;
    color: var(--white);
    z-index: 4;
    height: 100%;
}

.clients .hero .container h2 {
    font-weight: 800;
    line-height: 50px;
    font-size: 40px;
    padding: 0;
    margin-bottom: 23px;
}


.clients .hero .container p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 25px;
}

.clients .hero .container .heroButton {
    display: flex;
    align-items: center;
}

.clients .hero .container .heroButton .line {
    background-color: var(--white);
    height: 2px;
    margin-left: -30px;
    width: 100%;
}

.clients .conversation {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 30px 50px 30px;
}

.clients .conversation h3 {
    font-weight: 700;
    margin-bottom: 23px;
    text-align: center;
}

.clients .conversation p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 30px;
    text-align: center;
}

@-webkit-keyframes ButtonMove {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: 5px;
    }
    100% {
        margin-top: 0;
    }
}

@keyframes ButtonMove {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: 5px;
    }
    100% {
        margin-top: 0;
    }
}

.clients .hero .button_container {
    position: relative;
    width: 54px;
    height: 54px;
    margin-right: 5px;
    margin-left: 20px;
}

.clients .hero .button {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.clients .hero .button img {
    width: 17px;
    height: 22px;
    -webkit-animation: ButtonMove infinite 1s;
    animation: ButtonMove infinite 1s;
}

.clients .hero .button_back {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--white);
    top: 5px;
    left: 5px;
    z-index: -1;
}

.clients .content {
    position: relative;
}

.clients .content .container {
    padding: 65px 30px;
}

.clients .content .container em {
    font-style: italic;
}

.clients .content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 28px;
}

/* @media (max-width: 1023px) and (orientation: landscape) {
    .clients .hero {
        height: 367vh;
    }
} */

@media screen and (min-width: 750px) {
    .clients .hero {
        padding: 435px 0 100px;
    }

    .clients .hero .container {
        margin: auto;
        padding: 0 50px;
        max-width: calc(var(--global_container_width) + 100px);
        min-height: 750px;
        /* height: 108%; */
    }

    .client-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        /* padding-bottom: 188px; */
    }

    .client-logos .logo-item {
        height: 150px;
    }

    .clients .hero .container h2 {
        font-size: 70px;
        line-height: 70px;
        max-width: 600px;
        margin-bottom: 80px;
    }

    .clients .hero .container p {
        margin-bottom: 102px;
        font-size: 20px;
        line-height: 25px;
        max-width: 470px;
    }

    .clients .hero .container .heroButton {
        width: 200%;
        transform: translateX(-50%);
    }

    .clients .hero .container .heroButton .button_container {
        width: 71px;
        height: 71px;
    }

    .clients .hero .container .heroButton .button_container .button {
        width: 71px;
        height: 71px;
    }

    .clients .hero .container .heroButton .button_container .button img {
        width: 22px;
        height: 29px;
    }

    .clients .hero .container .heroButton .button_container .button_back {
        width: 71px;
        height: 71px;
    }

    .clients .content .container {
        height: 144%;
        margin: auto;
        padding: 136px 50px 135px 50px;
        max-width: calc(var(--global_container_width) + 100px);
    }

    .clients .conversation {
        padding: 136px 50px 100px 50px;
    }

    .clients .conversation h3 {
        font-weight: 700;
        font-size: 45px;
        line-height: 36px;
        margin-bottom: 28px;
    }

    .logo-item img {
        transform: scale(0.6);
    }

    .clients .conversation p {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 50px;
        max-width: 600px;
    }
}

@media screen and (min-width: 1080px) {
    .client-logos {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    /* .clients .hero {
        padding-top: 0;
        height: 155vh;
    } */
    /* .client-logos {
        padding-bottom: 89px;
    } */

    .clients .hero {
        padding: 0 0 100px;
    }

    .clients .hero .container {
        min-height: 1334px;
        height: 100%;
    }

    .client-logos .logo-item {
        height: 150px;

    }

    .clients .conversation p {
        margin-bottom: 45px;
    }

}
/* @media screen and (min-width: 1110px) {
    .clients .hero {
        height: 153vh;
    }
} */
/* @media screen and (min-width: 1310px) {
    .clients .hero {
        height: 204vh;
    }
} */
/* @media screen and (min-width: 1600px) {
    .clients .hero .container {
        min-height: 1344px;
    }
    .clients .hero {
        padding-top: 0;
        height: 157vh;
    }
} */
/* @media screen and (min-width: 1880px) {
    .clients .hero .container {
        min-height: 1234px;
    }
    .clients .hero {
        padding-top: 0;
        height: 120vh;
    }
} */