body {
    background-color: #F3F5F8;
    margin: 0;
}

body, div, button, input, textarea {
    font-family: Manrope;
}

button, a {
    cursor: pointer;
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.header-company-name {
    font-size: 36px;
    color: #1c1c1c;
    font-weight: 800;
    height: 27px;
    width: 113px;
    background-image: url("chinor.svg");
}

.navigation-bar {
    display: flex;
    align-items: center;
}

.navigation-bar-button {
    padding: 0 24px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.navigation-bar-button:hover {
    color: #0043F1;
}

.navigation-bar-button-change-language-panel {
    position: relative;
}

.navigation-bar-button-change-language-button {
    border-radius: 64px;
    background-color: #ffffff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

/*.navigation-bar-button-change-language-button:hover {*/
/*    background-color: #F8F8F8;*/
/*}*/

.navigation-bar-button-change-language-popup {
    position: absolute;
    z-index: 10;
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    right: 0;
    margin-top: 3px;
    display: none;
    gap: 24px;
    flex-direction: column;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);

}

.navigation-bar-button-change-language-popup-item {
    font-size: 16px;
    line-height: 26px;
    color: #1c1c1c;
    font-weight: 600;
}

.navigation-bar-button-change-language-popup-item:hover {
    color: #0043F1;
    cursor: pointer;
}


.navigation-bar-button-test-solution {
    background-color: #0043F1;
    border-radius: 64px;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    margin: 0 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.navigation-bar-button-test-solution:hover {
    background-color: #0037C5;
}

.details-panel {
    /*background: #1C1C1C;*/
    background: linear-gradient(225deg, rgba(26, 41, 39, 1) 0%, rgba(35, 52, 71, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 64px;
    padding: 80px 0 70px 0;
}

.details-panel-text {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    gap: 24px;
}


.details-panel-text-header {
    font-size: 64px;
    color: #F4F4F6;
    font-weight: 700;
    line-height: 64px;
}

.details-panel-text-details {
    font-size: 24px;
    color: #F4F4F6;
    opacity: 60%;
    line-height: 32px;
}

.details-panel-scope {
    margin-top: 100px;
    min-height: 200px;
    max-width: 951px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("audio.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.deployment-results-audio {
    background-image: url("audio_2.svg");
    height: 101px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.details-panel-scope-list {
    display: flex;
    gap: 12px;
    /*max-width: 600px;*/
    flex-wrap: wrap;
}

.details-panel-scope-list-item {
    display: flex;
    padding: 8px 16px;
    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(5px);
}


.details-panel-scope-list-item img {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.about-product-item-ui-scope-list {
    display: flex;
    gap: 12px;
    /*max-width: 600px;*/
    flex-wrap: wrap;
    justify-content: center;
}

.about-product-item-ui-scope-list-item {
    display: flex;
    padding: 8px 16px;
    border-radius: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(5px);
}


.about-product-item-ui-scope-list-item img {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.about-product-section {
    color: #1c1c1c;
    background-color: #FFFFFF;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 64px;
}

.about-product-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 960px;
    width: 100%;
}

.about-product-header {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.about-product-panels {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
            "a b"
            "c d"
            "c e"
            "c f";
}


.about-product-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 24px;
    background-color: #F6F8FA;
    padding: 40px;
}

.about-product-item-ui {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    justify-content: space-between;
    border-radius: 24px;
    background: linear-gradient(205deg, rgba(35, 167, 149, 1) 0%, rgba(21, 100, 89, 1) 53%, rgba(33, 42, 68, 1) 97%);
}

.about-product-item-ui button {
    background-color: #0043F1;
    border-radius: 64px;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    /*font-family: Manrope;*/
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.about-product-item-ui button:hover {
    background-color: #0037C5;
}

.about-product-item-ui-header-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-product-item-ui-header {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 24px;

}

.about-product-item-ui-text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 70%;
}

.about-product-item-header {
    font-weight: 700;
    color: #1C1C1C;
    font-size: 24px;

}

.about-product-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1C1C1C;
    opacity: 70%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px 24px 16px;
}

.deployment-results-panel {
    background-color: #1C1C1C;
    /*background: linear-gradient(185deg, rgba(35, 167, 149, 1) 0%, rgba(21, 100, 89, 1) 10%, rgba(28, 28, 28, 1) 20%, rgba(28, 28, 28, 1) 80%, rgba(52, 112, 130, 1) 90%, rgba(108, 135, 205, 1) 100%);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 64px;
    padding: 80px 40px;
    gap: 40px;
}

.deployment-results-text {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    gap: 16px;
}

.deployment-results-text-header {
    font-size: 40px;
    color: #F4F4F6;
    font-weight: 700;
    line-height: 52px;
}

.deployment-results-text-details {
    font-size: 24px;
    color: #F4F4F6;
    opacity: 60%;
    line-height: 32px;
}

.deployment-results {
    display: grid;
    gap: 8px;
    max-width: 960px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
            "a c"
            "b c";
}

.deployment-results-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 24px;
    background-color: #F6F8FA;
    padding: 40px;
}

.deployment-results-item.container {
    justify-content: space-between;
}

.deployment-results-item-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deployment-results-item-header {
    font-weight: 700;
    color: #1C1C1C;
    font-size: 24px;

}


.deployment-results-item-text {
    font-size: 16px;
    font-weight: 400;
    color: #1C1C1C;
    opacity: 70%;
    line-height: 24px;
}

.deployment-results-item-signed-lines-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-section {
    display: flex;
    justify-content: center;
    height: 405px;
    background-image: url("kazahestan.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.deployment-results-item-signed-line {
    display: flex;
    gap: 10px;
    justify-content: start;
}

.contacts-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.contacts-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 960px;
    align-items: stretch;
    width: 100%;
}

.contacts-panel-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-panel-info-header {
    font-weight: 700;
    color: #1C1C1C;
    font-size: 40px;
    line-height: 52px;
    text-align: center;

}

.contacts-panel-info-text {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: #1C1C1C;
    opacity: 70%;
    text-align: center;
}

.contacts-panel-forms {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
}

.contacts-panel-test-solution-panel {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    background-color: #FFFFFF;
    border-radius: 24px;
}

.contacts-panel-test-success-send-panel {
    display: none;
    flex-direction: column;
    padding: 0;
    gap: 24px;
    background-color: #FFFFFF;
    border-radius: 24px;
    color: seagreen;
    font-size: 24px;
    line-height: normal;
    font-weight: 500;
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
    align-items: center;
    text-align: center;
}

.contacts-panel-test-success-send-panel-header {
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: normal;

}

.contacts-panel-test-success-send-panel-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1c1c1c;
}

.contacts-panel-test-success-send-panel-download a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #0043F1;
    background-color: #FFFFFF;
    border-radius: 64px;
    border: 3px solid #0043F1;
    padding: 12px 24px;
}

.contacts-panel-test-success-send-panel-download a:hover {
    color: #0037C5;
    border: 3px solid #0037C5;
}

.contacts-panel-test-solution-panel-personal-data-panel {
    display: flex;
    gap: 24px;
    flex-direction: row;
}

.contacts-panel-test-solution-panel-personal-data-panel > input {
    flex-grow: 1;
}

.contacts-panel-test-solution-panel-submit-panel {
    display: flex;
    gap: 24px;
    flex-direction: row;
    justify-content: space-between;
}

.contacts-panel-test-solution-panel button {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    white-space: nowrap;
}

.contacts-panel-more-question-panel {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-radius: 24px;
}

.contacts-panel-more-question-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-panel-more-question-header-caption {
    font-weight: 700;
    color: #1C1C1C;
    font-size: 24px;
}

.contacts-panel-more-question-header-text {
    font-size: 16px;
    font-weight: 400;
    color: #1C1C1C;
    opacity: 70%;
}

.contacts-panel-more-question-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-panel-more-question-buttons button {
    border-radius: 64px;
    border: 3px solid #0043F1;
    font-size: 16px;
    font-weight: 600;
    color: #0043F1;
    padding: 12px 16px;
    background-color: #FFFFFF;
}

.contacts-panel-test-solution-panel button {
    background-color: #0043F1;
    border-radius: 64px;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    /*font-family: Manrope;*/
    font-size: 16px;
}

.contacts-panel-test-solution-panel button:hover {
    background-color: #0037C5;
}

.contacts-panel-test-solution-panel button.disabled {
    background-color: slategray;
    cursor: none;
    pointer-events:none;
}

.contacts-panel-test-solution-panel input, .contacts-panel-test-solution-panel textarea {
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /*font-family: Manrope;*/
    font-size: 16px;
    outline: none;
}

.contacts-panel-test-solution-panel input:focus,
.contacts-panel-test-solution-panel input:focus-visible,
.contacts-panel-test-solution-panel textarea:focus,
.contacts-panel-test-solution-panel textarea:focus-visible {
    border: 1px solid rgba(0, 67, 241, 0.5);
}

.contacts-panel-test-solution-panel .field {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.contacts-panel-test-solution-panel .field .caption {
    padding: 0 16px;
    font-size: 12px;
    line-height: normal;
    display: none;
}

.contacts-panel-test-solution-panel .field.error.required .caption.required {
    color: rgba(255, 0, 0, 1);
    display: block;
}

.contacts-panel-test-solution-panel .field.error.email .caption.email {
    color: rgba(255, 0, 0, 1);
    display: block;
}

.contacts-panel-test-solution-panel .field.error input, .contacts-panel-test-solution-panel .field.error textarea {
    border: 1px solid rgba(255, 0, 0, 0.5);
}

.contacts-panel-test-solution-agreement-checkbox-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    /*font-family: Manrope;*/
    font-size: 16px;
}

.contacts-panel-test-solution-panel input[type='checkbox'] {
    /*TODO*/
}

.icon-panel {
    display: flex;
    justify-content: center;
}

.copyright-panel {
    display: flex;
    justify-content: center;
}

.privacy-policy-panel {
    display: flex;
    justify-content: center;
}

.privacy-policy-panel a, .privacy-policy-panel a:hover, .privacy-policy-panel a:visited {
    color: black;
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    opacity: 60%;
    color: #1c1c1c;
}

@media screen and (max-width: 1280px) {
    .details-panel-text, .details-panel-scope-list {
        max-width: unset;
        padding: 0 90px;
    }

    .about-product-section {
        padding: 40px 80px;
    }

}

@media screen and (max-width: 1040px) {
    .details-panel-text, .details-panel-scope-list {
        max-width: unset;
        padding: 0 64px;
    }

    .details-panel-scope {
        margin-top: 36px;
        width: 100%;
    }


}

@media screen and (max-width: 920px) {
    /*.details-panel-text {*/
    /*    max-width: 712px;*/
    /*}*/
    .details-panel-text, .details-panel-scope-list {
        max-width: unset;
        padding: 0 64px;
    }

    .about-product-section {
        padding: 40px;
    }

    .navigation-bar-button {
        display: none;
    }

    .about-product-panels {
        /*display: grid;*/
        /*gap: 8px;*/
        /*grid-template-columns: 1fr;*/
        /*grid-template-areas:*/
        /*    "a"*/
        /*    "b"*/
        /*    "c"*/
        /*    "d"*/
        /*    "e"*/
        /*    "f";*/
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .deployment-results {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 40px;
        /*width: 100%;*/
    }

    .about-product-item-ui {
        align-items: center;
    }

    .details-panel-scope-list {
        justify-content: center;
    }

    .about-product-item-ui-header, .about-product-item-ui-text {
        text-align: center;
    }

    .map-section {
        background-position-x: 50%;
    }

    .contacts-panel-test-solution-panel-personal-data-panel {
        flex-direction: column;
    }
}

@media screen and (max-width: 720px) {
    .details-panel-text, .details-panel-scope-list {
        /*max-width: 576px;*/
        max-width: unset;

        padding: 0 56px;
    }

    .details-panel, .deployment-results-panel, .about-product-section {
        padding: 40px 16px;
    }

    .contacts-panel-info-header {
        font-size: 32px;
        line-height: normal;
    }

    .contacts-panel-info-text {
        font-size: 18px;
        line-height: 28px;
    }

}


@media screen and (max-width: 640px) {
    /*.details-panel-text {*/
    /*    max-width: 496px;*/
    /*}*/
    .details-panel-text, .details-panel-scope-list {
        max-width: unset;

        padding: 0 56px;
    }

    .details-panel-text-header {
        font-size: 52px;
        line-height: 56px;
    }

    .details-panel-text-details {
        font-size: 18px;
        line-height: 28px;
    }

    .contacts-panel-test-solution-panel-submit-panel {
        flex-direction: column;
    }

}

@media screen and (max-width: 560px) {
    .navigation-bar-button-test-solution > div {
        display: none;
    }

    /*.details-panel-text {*/
    /*    max-width: 416px;*/
    /*}*/
    .details-panel-text, .details-panel-scope-list {
        max-width: unset;

        padding: 0 56px;
    }

    .details-panel-text-header {
        font-size: 36px;
        line-height: 40px;
    }

    .details-panel-text-details, .contacts-panel-info-text {
        font-size: 16px;
        line-height: 24px;
    }

    .about-product-item-header, .deployment-results-item-header, .about-product-item-ui-header, .deployment-results-text-details {
        font-size: 20px;
        line-height: normal;
    }

    .contacts-panel-info-header {
        font-size: 24px;
        line-height: normal;
    }

    .deployment-results-item {
        padding: 24px;
        gap: 16px;
    }

    .deployment-results-text-header, .about-product-header {
        font-size: 24px;
        line-height: normal;
    }

}

@media screen and (max-width: 480px) {
    /*.details-panel-text {*/
    /*    max-width: 336px;*/
    /*}*/
    .details-panel-text, .details-panel-scope-list {
        max-width: unset;

        padding: 0 56px;
    }

    .details-panel-scope-list-item {
        display: none;
    }

    .about-product-item {
        padding: 24px;
        gap: 16px;
    }
}

@media screen and (max-width: 400px) {
    .details-panel-text, .details-panel-scope-list {
        /*max-width: 298px;*/
        max-width: unset;

        padding: 0 36px;
    }

    .exclude-sm {
        display: none;
    }

    textarea {
        height: 5em;
    }

}

@media screen and (max-width: 320px) {
    .details-panel-text, .details-panel-scope-list {
        /*max-width: 240px;*/
        max-width: unset;

        padding: 0 24px;
    }

    .details-panel-text-header {
        font-size: 30px;
        line-height: 32px;
    }


}

.contacts-section-details {
    background: rgb(246, 248, 250);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts-section-details .contacts-panel-info-text {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contacts-section-details .contacts-panel-info-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contacts-section-details .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.contacts-section-details .linkedin .contact-icon {
    background: #0077b5;
}

.contacts-section-details .email .contact-icon {
    background: #d44638;
}

.contacts-section-details .telegram .contact-icon {
    background: #0088cc;
    font-size: 38px;
}

.contacts-section-details .contact-text {
    font-size: 1rem;
    color: #2c3e50;
}

.contacts-section-details .contact-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-section-details .contact-text a:hover {
    color: #000;
    text-decoration: underline;
}
