/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap"); */

@font-face {
    font-family: "Artegra Sans";
    src: url("/fonts/ArtegraSans-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Artegra Sans";
    src: url("/fonts/ArtegraSans-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Artegra Sans";
    src: url("/fonts/ArtegraSans-BoldItalic.otf") format("opentype");
    font-weight: 600;
    font-style: italic;
}

:root {
    --main-color: rgba(89, 190, 255, 1);
    --main-dark-color: rgba(0, 20, 60, 1);
    --main-bg-gradient: radial-gradient(
        50% 50% at 50% 50%,
        rgba(18, 165, 222, 0.25) 0%,
        rgba(0, 20, 60, 0.8) 100%
    );
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    font-family: "Artegra Sans", sans-serif;
    font-size: 16px;
    color: var(--main-dark-color);

    @media screen and (min-width: 2560px) {
        font-size: 20px;
    }
}

.container {
    width: 100%;
    margin: 0 auto;

    @media (max-width: 1023px) {
        padding: 1rem;
    }

    @media (min-width: 1024px) and (max-width: 1339px) {
        max-width: 960px;
        width: 960px;
    }

    @media (min-width: 1340px) {
        max-width: 1340px;
        width: 1340px;
    }
}

.navigation {
    position: fixed;
    z-index: 9999;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;

    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2.25rem;

    /* @media (max-width: 1339px) {
        display: none;
    } */
}

.navigation > .left-content {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}

.navigation > .left-content > .burger {
    cursor: pointer;
    width: 1.875rem;
    height: 1.5rem;
}

.navigation > .right-content {
    display: none;
    @media (min-width: 1340px) {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10rem;
    }
}

.navigation > .right-content a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.navigation > .right-content > .langs {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}

.langs > .active {
    color: rgba(255, 255, 255, 1);
}

.main-section {
    position: relative;
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* 
    @media (max-width: 1339px) {
        display: none;
    } */
}

.main-section > .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.main-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--main-bg-gradient);
    z-index: -1;
    pointer-events: none;
}

.main-section > .scroll-to-explore {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%);

    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.125rem;

    cursor: pointer;

    @media (min-width: 1340px) {
        left: 7%;
        transform: unset;
    }
}

.main-section > .text-content {
    text-align: center;
    padding: 1rem;
    position: absolute;
    width: 100%;

    top: 25%;
    transform: translate(0%, -25%);

    @media (min-width: 1340px) {
        width: 50%;
        left: 7%;
        padding: unset;
        top: 50%;
        transform: translate(0%, -50%);
        text-align: unset;
    }
}

.text-content > .title {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);

    @media (min-width: 1340px) {
        font-size: 3.5rem;
        line-height: 4rem;
    }
}

.text-content > .sub-title {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.15rem;
    color: var(--main-color);
    margin-top: 2rem;

    @media (min-width: 1340px) {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-top: 2rem;
    }
}

.main-section > .button-content {
    position: absolute;
    top: 65%;
    right: 50%;
    transform: translate(50%, -50%);

    @media (min-width: 1340px) {
        top: 50%;
        right: 15%;
        transform: translate(15%, -50%);
    }
}

.button-content .outer-outline {
    border-radius: 50%;
    padding: 3rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);

    @media (min-width: 1340px) {
        padding: 4.5rem;
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
}

.button-content .inner-outline {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (min-width: 1340px) {
        padding: 4rem;
        border: 1px solid rgba(255, 255, 255, 0.35);
    }
}

.button-content .play-button {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s linear;
    position: relative;

    @media (min-width: 1340px) {
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
}

.button-content .play-button > img {
    width: 1.9375rem;
    height: 1.9375rem;
}

.button-content .play-button:hover {
    transform: scale(1.1);
}

.play-button > .caption {
    position: absolute;
    color: rgba(255, 255, 255, 1);
    left: -125%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
}

.intro-section {
    padding: 4rem 0;
    @media (min-width: 1340px) {
        padding: 4.5rem 0;
    }
}

.intro-section > .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    @media (min-width: 1340px) {
        gap: 6rem;
    }
}

.intro-section .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;

    @media (min-width: 1340px) {
        flex-direction: row;
        align-items: flex-start;
        gap: 15rem;
    }
}

.intro-section .text-content > .header {
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
    white-space: nowrap;
}

.intro-section .text-content > .text {
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 120%;
}

.intro-section .text-content > .text a {
    color: var(--main-color);
}

.splide {
    max-width: 100%;
    margin: 2rem auto 0;

    @media (min-width: 1340px) {
        margin: 3.125rem auto;
    }
}

.splide__slide img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 2rem;

    @media (min-width: 1340px) {
        height: 35rem;
    }
}

.why-now-section {
    background: var(--main-bg-gradient),
        url("/assets/images/bgs/bg-why-now.png") center/cover no-repeat;
    padding: 5rem 0;

    @media (min-width: 1340px) {
        padding: unset;
        min-height: 100vh;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.why-now-section > .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;

    @media (min-width: 1340px) {
        gap: 5rem;
    }
}

.why-now-section .header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;

    @media (min-width: 1340px) {
        text-align: unset;
    }
}

.why-now-section .statistics {
    display: grid;
    margin-top: 7rem;
    gap: 3rem;
    grid-template-rows: repeat(3, 1fr);
    color: rgba(255, 255, 255, 1);

    justify-content: center;

    @media (min-width: 1340px) {
        margin-top: 2rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        gap: unset;
        justify-content: space-between;
    }
}
.why-now-section .statistics .indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.why-now-section .statistics .caption {
    text-align: center;
    width: 70%;
}

.why-now-section .statistics .figure {
    font-weight: 600;
    font-size: 6rem;
    line-height: 100%;
    display: flex;
}

.our-team-section {
    background: var(--main-bg-gradient),
        url("/assets/images/bgs/bg-team.png") center/cover no-repeat;
    padding: 3rem 0;

    @media (min-width: 1340px) {
        padding: 7rem 0;
    }
}
.our-team-section .content {
    color: rgba(255, 255, 255, 1);
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
    gap: 1rem;

    @media (min-width: 1340px) {
        gap: 3rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }
}
.our-team-section .content .header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.our-team-section .content .member-name {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 2rem;
}

.our-team-section .content .picture-content {
    position: relative;
    display: inline-block;
    text-align: center;
}
.our-team-section .content .picture-content > img {
    position: relative;
    display: inline-block;
    width: 20rem;

    @media (min-width: 1340px) {
        width: unset;
    }
}
.our-team-section .content .member-picture {
    position: relative;
    z-index: 1;
}
.our-team-section .content .picture-content .circle-effect {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 23.625rem;
    height: 8.875rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;

    @media (min-width: 1340px) {
        width: 40.625rem;
        height: 11.875rem;
    }
}

.partners-section {
    background: var(--main-bg-gradient),
        url("/assets/images/bgs/bg-partners.png") center/cover no-repeat;
    padding: 5rem 0;

    @media (min-width: 1340px) {
        padding: 7rem 0;
    }
}

.partners-section .header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.partners-section .description {
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    margin-bottom: 2rem;
}

.partners-section .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;

    @media (min-width: 1340px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partners-grid .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
    height: 17.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    overflow: hidden;

    @media (min-width: 1340px) {
        height: 22.5rem;
    }
}

.partners-grid .card .details-text-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.25px;
}

.partners-grid .card .partner-name {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.partners-grid .card .card-logo {
    position: relative;
    width: 5.625rem;
    height: 5.625rem;

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

.partners-grid .card .card-logo img {
    width: 5.625rem;
    height: 5.625rem;
    object-fit: contain;
}

.partners-grid .card .card-logo::before,
.partners-grid .card .card-logo::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    z-index: 0;
}

.partners-grid .card .card-logo::before {
    width: 9.375rem;
    height: 9.375rem;
    background: rgba(255, 255, 255, 0.06);
}

.partners-grid .card .card-logo::after {
    width: 12.5rem;
    height: 12.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.partners-grid .card .link-button-wrapper {
    display: none;

    @media (min-width: 1340px) {
        padding: 1rem 0 0 1rem;
        border-top-left-radius: 1.25rem;
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        background-color: transparent;
        z-index: 1;
        display: block;
    }
}

.partners-grid .card .link-button {
    display: flex;
    justify-content: flex-end;
    background-color: var(--main-color);

    min-width: 100px;
    max-width: 100px;
    padding: 1rem;
    border-radius: 1.25rem;
}

.three-solution-section {
    background: var(--main-bg-gradient),
        url("/assets/images/bgs/bg-three-sol.png") center/cover no-repeat;
    padding: 3rem 0;

    @media (min-width: 1340px) {
        padding: 7rem 0;
    }
}

.three-solution-section .header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.three-solution-section .three-solution-grid {
    display: grid;
    grid-template-areas:
        "cards"
        "title"
        "image"
        "banner";

    grid-template-columns: 1fr;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 1);
    row-gap: 3rem;

    @media (min-width: 1340px) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        grid-template-areas:
            "title cards"
            "image banner";
        column-gap: 5rem;
        row-gap: 3rem;
        margin-top: 6rem;
    }
}

.solution-title {
    grid-area: title;
}
.solution-cards {
    grid-area: cards;
}
.solution-image-b {
    grid-area: image;
}
.solution-banner {
    grid-area: banner;
}

.three-solution-grid .left-content {
    display: flex;
    flex-direction: column;
}

.three-solution-grid .left-content .sm-header {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 2.1875rem;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.three-solution-grid .left-content .caption {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 140%;
}

.three-solution-grid .left-content .content-image {
    height: 15.625rem;
    max-width: 100%;
    width: 100%;

    object-fit: cover;
    display: block;
    border-radius: 1.25rem;

    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1);

    @media (min-width: 1340px) {
        height: auto;
    }
}

.three-solution-grid .left-content .content-image.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.three-solution-grid .left-content .content-image.fade-in {
    opacity: 1;
    transform: scale(1);
}

.three-solution-grid .right-content .solutions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    color: rgba(255, 255, 255, 1);

    @media (min-width: 1340px) {
        flex-direction: row;
    }
}

.three-solution-grid .right-content .solutions .card {
    border: 2px solid;
    border-image-source: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(8px);
    padding: 2rem;

    width: 100%;

    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;

    display: flex;
    gap: 1.5rem;
    justify-content: space-between;

    cursor: pointer;
    border-radius: 1.25rem;

    @media (min-width: 1340px) {
        min-height: 13.75rem;
        max-height: 13.75rem;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
    }
}

.three-solution-grid .right-content .solutions .card:hover {
    background-color: rgba(89, 190, 255, 0.6);
}

.solutions .active {
    background-color: var(--main-color);
    box-shadow: 0px 0px 50px 0px rgba(18, 165, 222, 0.25);
}

.solutions .card .num {
    font-size: 1.5625rem;
}

.right-content .solutions-banner {
    height: 355px;
    padding: 0 2rem;
    border: 2px solid;

    border-image-source: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 79.45%
    );
    backdrop-filter: blur(25px);

    position: relative;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;

    @media (min-width: 1340px) {
        padding: 2rem;
        height: 100%;
    }
}

.solutions-banner .banner-header {
    font-weight: 600;
    font-size: 1.5625rem;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3rem 0 1rem;
}

.solutions-banner .banner-caption {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
}

.solutions-banner .banner-bottom {
    position: absolute;
    bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.banner-bottom .banner-steps {
    display: flex;
    align-items: baseline;
    font-weight: 600;
    font-size: 1.5625rem;
}
.banner-bottom .banner-steps .active-step {
    font-size: 3.125rem;
}

.banner-bottom .banner-line {
    background: rgba(255, 255, 255, 1);
    border-radius: 0.625rem;
    opacity: 0.5;
    height: 4px;
    width: 12.5rem;
}

.feedback-section {
    padding: 5rem 0rem;

    @media (min-width: 1340px) {
        padding: 10rem 0rem;
        position: relative;
        overflow: hidden;
    }
}

.feedback-section > .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (min-width: 1340px) {
        gap: 7rem;
    }
}

.feedback-section .header {
    font-weight: 400;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
}
.feedback-section .caption {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 130%;
}
.feedback-section .feedback-form {
    @media (min-width: 1340px) {
        width: 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 2rem;
    }
}

.feedback-form input {
    border: none;
    border-bottom: 1px solid var(--main-dark-color);
    outline: none;
    padding: 0.5rem;
    font-style: Inter;
    color: var(--main-dark-color);
    font-size: 1.25rem;
}

.feedback-form button {
    border: none;
    border-bottom: 1px solid var(--main-dark-color);
    outline: none;
    padding: 1rem 2rem;
    font-style: Inter;
    background-color: var(--main-dark-color);
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    cursor: pointer;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 1.25rem;
}

.feedback-form .custom-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.feedback-form .custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.feedback-form .checkmark {
    width: 30px;
    height: 30px;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-color: transparent;
}

.feedback-form .checkmark::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 5px;
    background-color: var(--main-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.feedback-form .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: rgba(255, 255, 255, 1);
    border-color: var(--main-color);
}

.feedback-form .custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
    transform: scale(1);
    background-color: var(--main-color);
}

.feedback-form .custom-checkbox:hover .checkmark {
    border-color: var(--main-color);
}

.feedback-form .checkbox-text {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.feedback-form .user-agreement {
    color: var(--main-color);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.feedback-form .user-agreement:hover {
    color: var(--main-color);
}

.feedback-section > .bg-image {
    margin-top: 2rem;
    overflow: hidden;

    @media (min-width: 1340px) {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        z-index: -1;
        margin-top: unset;

        display: flex;
        align-items: center;
    }
}

.feedback-section > .bg-image img {
    object-fit: cover;
    width: 430px;
    @media (min-width: 1340px) {
        width: 600px;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    background: var(--main-dark-color);
    border-top-left-radius: 2.1875rem;
    border-top-right-radius: 2.1875rem;
    /* margin-top: -2.1875rem; */
}

.footer-section .footer-content {
    display: flex;
    flex-direction: column;
    padding: 3.125rem 0 0;
    gap: 2rem;

    @media (min-width: 1340px) {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: unset;
    }
}

.footer-section .footer-content a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;

    font-size: 1.5rem;
}

.footer-content .footer-logo {
    width: 12.5rem;
}

.footer-section .footer-menu {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;

    @media (min-width: 1340px) {
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        padding: 7.5rem 0;
    }
}

.footer-menu .menu-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1339px) {
    .footer-menu .menu-item:nth-child(2),
    .footer-menu .menu-item:nth-child(3),
    .footer-menu .menu-item:nth-child(4) {
        display: none;
    }
}

.footer-menu .menu-item .menu-header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.footer-menu .menu-item .menu-list {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    font-size: 0.875rem;
}

.footer-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 1);
    color: var(--main-color);
}

.footer-bottom .content {
    list-style-type: none;
    padding: 1rem 0;
    font-weight: 400;
    font-size: 0.875rem;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;

    @media (max-width: 1339px) {
        text-align: center;
    }

    @media (min-width: 1340px) {
        display: flex;
        justify-content: space-between;
        padding: 2.8125rem 0;
    }
}

.footer-bottom .content a {
    color: var(--main-color);
}

.footer-bottom .content .powered {
    color: rgba(255, 255, 255, 1);

    @media (max-width: 1339px) {
        text-align: center;
        grid-area: 2 / 1 / 3 / 3;
    }
}
.footer-bottom .content .powered a {
    color: rgba(255, 255, 255, 1);
}

.fade-slide {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-slide.show {
    opacity: 1;
    transform: translateY(0);
}

.blur-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    background: url("https://picsum.photos/600/600") no-repeat center / cover;
}

.circle-container {
    display: none;

    @media (min-width: 1340px) {
        position: relative;
        width: 250px;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-center {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    z-index: 4;
}

.circle-middle {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.circle-outer {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.solution-section {
    background: var(--main-bg-gradient),
        url("/assets/images/bgs/bg-solution.png") center/cover no-repeat;
    padding: 3rem 0;

    @media (min-width: 1340px) {
        padding: 7rem 0;
    }
}

.solution-section .mb-descriptions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;

    @media (min-width: 1340px) {
        display: none;
    }
}

.solution-section .mb-descriptions div {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(8px);
}

.solution-section .header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.solution-section .solution-wrapper {
    position: relative;
}

.solution-section .solution-image {
    position: relative;
    z-index: 3;
    pointer-events: none;
    width: 100%;
    object-fit: contain;

    @media (min-width: 1340px) {
        height: 33.75rem;
    }
}

.solution-section .first-circle {
    position: absolute;
    bottom: -70px;
    left: -10px;
}
.solution-section .second-circle {
    position: absolute;
    left: 34%;
    top: 10px;
}
.solution-section .third-circle {
    position: absolute;
    right: 20px;
    top: 0px;
}

.third-circle .tooltip {
    left: auto;
    right: 110%;
    transform: translateY(-50%);
}

.tooltip {
    position: absolute;
    top: 50%;
    left: 110%;
    transform: translateY(-50%);

    border-radius: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    min-width: 550px;
    max-width: 500px;
    z-index: 999; /* Выше картинки */
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(8px);

    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.2;
}

.circle-center:hover .tooltip {
    opacity: 1;
}

.projects-section {
    background: var(--main-bg-gradient),
        url("/assets/images/bgs/bg-projects.png") center/cover no-repeat;
    padding: 3rem 0;
    @media (min-width: 1340px) {
        padding: 7rem 0;
    }
}

.projects-section .header {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    text-transform: uppercase;
}

.projects-section .project-wrapper {
    display: none;
    @media (min-width: 1340px) {
        background-color: rgba(255, 255, 255, 1);
        margin: 3rem 2rem 0;
        border-radius: 1.25rem;
        padding: 5rem 2rem 2rem 2rem;
        display: grid;
        grid-template-columns: 25% auto;
    }
}

.project-wrapper .text-container {
    display: flex;
    flex-direction: column;
}
.project-wrapper .text-container .title {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 100%;
    margin-top: 2rem;
}

.project-wrapper .text-container .description {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 2rem;
    flex: 1;
}

.project-wrapper .projects-container {
    display: grid;
    grid-template-columns: repeat(3, 27.5rem);
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 3rem;
}

.projects-container::-webkit-scrollbar,
.mb-projects-container::-webkit-scrollbar {
    height: 2px; /* горизонтальный скроллбар */
}

.projects-container::-webkit-scrollbar-track,
.mb-projects-container::-webkit-scrollbar-track {
    background: var(--main-dark-color);
    border-radius: 2px;
}

.projects-container::-webkit-scrollbar-thumb,
.mb-projects-container::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 2px;
    transition: background 0.3s;
}

.projects-container .project-container {
    min-width: 27.5rem;
    min-height: 37.5rem;
    max-height: 37.5rem;
    border-radius: 1.25rem;
    position: relative;
}

.project-container .share-button {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border-radius: 1.25rem;
    cursor: pointer;
}

.project-container .project-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 1.25rem;

    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    background-color: var(--main-color);
    color: rgba(255, 255, 255, 1);
}
.project-container .project-description:hover {
    background-color: var(--main-dark-color);
    cursor: pointer;
}

.project-description .caption {
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 100%;
}

.project-description .name {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 100%;
}

.project-container:nth-child(1) {
    background: url("/assets/images/projects/project-bg-1.png") center center / cover no-repeat;
}

.project-container:nth-child(2) {
    background: url("/assets/images/projects/project-bg-2.png") center center / cover no-repeat;
}

.project-container:nth-child(3) {
    background: url("/assets/images/projects/project-bg-3.png") center center / cover no-repeat;
}

.mb-project-wrapper {
    background-color: rgba(255, 255, 255, 1);

    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    margin: 1rem;

    @media (min-width: 1340px) {
        display: none;
    }
}

.mb-project-wrapper .mb-projects-container {
    display: grid;
    grid-template-columns: repeat(3, 100%);
    overflow: auto;
    gap: 1rem;
    padding-bottom: 2rem;
}

.mb-project-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mb-project-container .mb-project-picture {
    width: 100%;
    height: 25rem;
    background: url("/assets/images/projects/project-bg-1.png") center center / cover no-repeat;
    border-radius: 1.25rem;
    position: relative;
}

.mb-project-picture .mb-share-button {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border-radius: 1.25rem;
    cursor: pointer;
}

.mb-project-picture .mb-share-button img {
    width: 1rem;
    height: 1rem;
}

.mb-project-container .mb-text-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 1.25rem;
    padding: 1rem;
    /* border: 1px solid var(--main-dark-color); */
    box-shadow: 0px 4px 4px 0px rgba(49, 49, 49, 0.25);
}

.mb-text-container .title {
    font-weight: 600;
    font-size: 1.25rem;
}
.mb-text-container .description {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 110%;
}

.mb-project-container .mb-project-description {
    background-color: var(--main-dark-color);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-radius: 1.25rem;
    padding: 0.75rem;
}

.mb-project-description .name {
    font-weight: 600;
    font-size: 1.25rem;
}
