body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat';
}

a {
    text-decoration: none;
    color: #1c1c1c;
    transition: all .3s;

    &:hover {
        opacity: .8;
    }
}

.container {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}



.input-item {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.input-item .icon {
    position: absolute;
    left: 15px;
    top: 15px;

    & img {
        width: 15px;
    }
}

.input-item input {
    width: calc(100% - 80px);
    border-radius: 6px;
    border: 1px solid #d6d6d6;
    background-color: #fff;
    box-shadow: none;
    padding: 13px 40px;
    font-weight: 500;
}

.btn {
    background: linear-gradient(85.6deg, #2E7DAB 2.52%, #5EC4FF 128.38%);
    color: #fff;
    font-weight: 500;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
    text-align: center;
    font-size: 14px;

    &:hover {
        opacity: .8;
    }
}

.wrapper-form .btn {
    margin-top: 12px;
    width: 100%;
}

.section {
    margin-bottom: 80px;

    & .title-section {
        font-size: 35px;
        color: #000;
        font-weight: 700;
        margin-bottom: 50px;
    }

    & .head-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;


        & .title-section {
            margin-bottom: 0;
        }
    }
}

.blue-background {
    background-color: #2E7DAB;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    transition: all .3s;
    z-index: 9999;
}

header.scrolled {
    background-color: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(5px);
    padding: 15px 0;
}

header .logo img {
    width: 130px;
}

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

header .menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

header .menu a {
    color: #fff;
    font-weight: 400;
}

header .contacts .phone {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
}

/* Адаптивные стили */
@media (max-width: 992px) {
    header .menu {
        gap: 30px;
    }

    header .contacts .phone {
        font-size: 14px;
    }

    header .logo img {
        width: 110px;
    }
}

@media (max-width: 768px) {
    header .wrapper-header {
        align-items: flex-start;
    }

    header .menu {
        align-items: flex-start;
        display: none;
        gap: 20px;
    }

    header .contacts {
        margin-top: 10px;
    }

    header .contacts .phone {
        font-size: 13px;
    }

    header .logo img {
        width: 100px;
    }
}

@media (max-width: 576px) {
    header .menu {
        display: none;
        /* Прячем меню на маленьких экранах, можно добавить бургер-меню */
    }

    header .wrapper-header {
        flex-direction: row;
        justify-content: space-between;
    }

    header .logo img {
        width: 90px;
    }
}

.main-screen {
    background: url('../images/backmain.jpg');
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;

    & .wrapper-main-screen {
        height: 75vh;
        display: flex;
        align-items: center;
        gap: 30px;
        padding-top: 65px;

        & .column-screen-left {
            width: 60%;

            & .title {
                font-size: 48px;
                font-weight: 700;
                color: #fff;
                text-transform: uppercase;
                margin-bottom: 30px;

                & .head-title {
                    color: #CFCFCF;
                    font-size: 65px;
                    margin-bottom: 5px;
                }
            }

            & .description {
                font-size: 24px;
                font-weight: 600;
                color: #fff;
            }
        }

        & .column-screen-right {
            width: 40%;
            display: flex;
            align-items: end;
            justify-content: end;


            & .wrapper-form {
                min-width: 300px;
                text-align: center;
                background-color: #fff;
                background-image: url('../images/pattern2.svg'), url('../images/pattern1.svg');
                background-position: top right, bottom left;
                background-repeat: no-repeat, no-repeat;
                background-size: auto, auto;
                border-radius: 12px;
                padding: 30px 40px;
                box-shadow: -4px 8px 20px rgb(0, 0, 0, .1);

                & .title-form {
                    font-size: 18px;
                    font-weight: 700;
                    color: #1e1d1d;
                    margin-bottom: 24px;
                }
            }
        }
    }

    & .carusel-logo {
        height: 10vh;
        display: flex;
        align-items: center;
        gap: 24px;
        overflow: hidden;
    }


}

.carusel-logo {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.inner {
    display: flex;
    position: relative;
}

.item-carusel {
    min-width: 150px; 
    padding: 0 30px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carusel-logo .item-carusel img {
    width: 100%;
    display: block;
}

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

    100% {
        transform: translateX(-100%);
    }
}

.wrapper-duble-block {
    display: flex;
    flex-wrap: wrap;
}

.section.main-screen,
.section.sec-block {
    margin-bottom: 0 !important;
}

.section.sec-block {
    padding: 120px 0;
}

.sec-block {
    background-image: url('../images/pattern3.svg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: auto;

    & .left {
        width: 50%;
    }

    & .right {
        width: 50%;
    }

    & .wrapper-star {

        & .item-star {
            display: flex;
            align-items: center;
            margin-bottom: 50px;

            &:last-child {
                margin-bottom: 0;
            }

            & .number {
                color: #2E7DAB;
                font-size: 48px;
                font-weight: 500;
                min-width: 60px;
                width: 60px;
                height: 60px;
            }

            & .info-star {
                display: flex;
                align-items: center;

                &::before {
                    content: '';
                    min-width: 2px;
                    width: 2px;
                    height: 90px;
                    background-color: #2E7DAB;
                    display: block;
                    margin: 0 40px;
                }

                & .title-star {
                    font-size: 22px;
                    color: #000;
                    font-weight: 600;
                    margin-bottom: 5px;
                }

                & .description-star {
                    font-size: 14px;
                    font-weight: 500;
                    color: #1f1f1f;
                }
            }
        }
    }

    & .wrapper-photo {
        margin-left: 50px;
        position: relative;
        box-shadow: 0 3px 6px rgb(0, 0, 0, .1);
        border-radius: 12px;

        & .photo {
            & img {
                width: 100%;
            }
        }

        & .info-photo {
            position: absolute;
            bottom: 0;
            background: #fff url('../images/kv.png') no-repeat top left 20px;
            background-size: 80px;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            padding: 20px 40px;

            & .text {
                font-size: 16px;
                font-weight: 500;
                color: #000;
                margin-bottom: 12px;
            }

            & .name {
                font-size: 14px;
                font-weight: 700;
                color: #3f3f3f;
            }

            & .job {
                font-size: 12px;
                font-weight: 500;
                color: #3f3f3f;
            }
        }
    }
}

.plus-block {
    padding: 60px 0;

    & .wrapper-grid-plus {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;

        & .item-plus {
            background-color: #fff;
            border-radius: 8px;
            text-align: center;
            padding: 40px 25px;

            & .icon {
                margin-bottom: 12px;

                & img {
                    width: 80px;
                }
            }

            & .title {
                font-size: 16px;
                color: #000;
                font-weight: 600;

                &::after {
                    content: '';
                    background-color: #2E7DAB;
                    width: 100%;
                    height: 1px;
                    display: block;
                    margin: 15px 0;
                }
            }

            & .description {
                font-size: 14px;
                color: #1f1f1f;
                font-weight: 500;
            }
        }
    }
}

.language-block {
    & .head-block {

        & .count-language {
            display: flex;
            align-items: center;

            & .count {
                font-size: 70px;
                color: #2E7DAB;
                font-weight: 600;
                display: flex;
                align-items: center;
            }

            & .text {
                width: 100px;
            }
        }
    }

    & .wrapper-grid-language {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;

        & .item-language {
            display: flex;
            align-items: center;
            padding: 20px 20px;
            border: 1px solid #cbcbcb;
            border-radius: 8px;

            & .icon {
                margin-right: 15px;

                & img {
                    width: 50px;
                }
            }
        }
    }
}

.wrapper-button-block {

    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;

    & .title {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 12px;
    }

}

.services-block {

    & .wrapper-grid-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
        gap: 20px;

        & .item-service {
            display: flex;
            padding: 30px 40px;
            border: 1px dashed #2E7DAB;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            transition: color 0.3s ease;

            &:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(256.66deg, #2E7DAB 0%, #3785B3 50.75%, #1A4A66 100%);
                z-index: -1;
                transition: opacity 0.3s ease;
                opacity: 0;
            }

            &:hover {
                color: #fff;
                border-color: #fff;

                &:before {
                    opacity: 1;
                }

                & .btn {
                    background: #fff;
                    color: #000;
                    transition: background 0.3s ease, color 0.3s ease;
                }

                & .info-service {
                    border-color: #fff;
                    transition: border-color 0.3s ease;

                    & .description {
                        color: #cfcfcf;
                        transition: color 0.3s ease;
                    }
                }
            }
        }

        & .info-service {
            max-width: 45%;
            padding: 24px 0;
            padding-right: 30px;
            display: flex;
            align-items: center;
            border-right: 1px solid #2E7DAB;

            & .title {
                font-size: 20px;
                font-weight: 600;
                margin-bottom: 40px;
            }

            & .description {
                font-size: 12px;
                font-weight: 500;
                margin-bottom: 50px;
                color: #606060;
            }

        }

        & .list-docs {
            max-width: 55%;
            padding: 24px 0;
            padding-right: 30px;

            & ul {
                margin: 0;

                & li {
                    margin-bottom: 24px;
                    font-size: 14px;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}


.carusel-reviews {

    & .item-carousel {


        & img {

            border-radius: 12px;
        }
    }
}


.owl-dots {
    text-align: center;
    margin-top: 24px;
}

.owl-carousel button.owl-dot {
    background: #666;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all .3s;
}

.owl-carousel button.active {
    width: 13px;
    height: 13px;
    background: #fff;
    border: 1px solid #666;
}

.reviews-web {
    padding: 50px 0;

    & .wrapper-grid-reviews {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 60px;

        & .title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
        }

        & .item-review {
            background: #fff;
            border-radius: 8px;
            padding: 10px 25px;
            display: flex;
            align-items: center;

            & .icon {
                margin-right: 15px;

                & img {
                    width: 45px;
                }
            }

            & .info {
                display: flex;
                align-items: center;

                & .oz {
                    font-size: 44px;
                    font-weight: 500;
                    margin-right: 12px;
                }

                & .stars {
                    display: flex;
                    flex-wrap: nowrap;

                    & img {
                        width: 18px;
                    }
                }

                & .text {
                    font-size: 14px;
                    color: #555;
                    font-weight: 500;
                    margin-top: 5px;
                }
            }
        }
    }

}

.contacts {
    display: flex;
    gap: 20px;
    & .wrapper-grid-contacts {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 60px;
        margin-top: 40px;

        & .item-contacts-column {

            & .value {
                font-size: 14px;
                margin-top: 12px;

                & span {
                    margin-bottom: 12px;
                    display: block;
                }
            }

            & .title {
                display: flex;
                align-items: center;
                flex-wrap: nowrap;
                gap: 10px;

                & img {
                    width: 20px;
                }

                & .title-icon {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000
                }
            }
        }
    }
}

#languageSwitcher {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;

    & option {
        color: #1c1c1c;
        cursor: pointer;
    }
}

.callback-footer {
    padding: 35px 0;

    & .title-callback {
        & .title {
            font-size: 24px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 12px;
        }

        & .description {
            font-size: 16px;
            color: #fff;
            font-weight: 400;
        }
    }

    & .wrapper-callback {
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;

        & .line-form {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        & .button-form {
            width: 100%;

            & .btn {
                width: 100%;
                background: #fff !important;
                color: #1c1c1c;
            }
        }
    }
}

footer {
    background-color: #F6F6F6;
    padding: 12px 0;

    & .wrapper-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        font-size: 12px;
        color: #6E6E6ECC;
        font-weight: 500;
        gap: 24px;

        & .absolute-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    max-width: 320px;
    text-align: center;
    margin: 15% auto;
    background-color: #fff;
    background-image: url('../images/pattern2.svg'), url('../images/pattern1.svg');
    background-position: top right, bottom left;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: -4px 8px 20px rgb(0, 0, 0, .1);
    animation: animatetop 0.4s;
    position: relative;
}

.title-form {
    font-size: 18px;
    font-weight: 700;
    color: #1e1d1d;
    margin-bottom: 24px;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 14px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.file-upload-container {
    display: flex;
    flex-direction: column;
}

.file-upload-container .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    font-weight: 500;
}

.file-upload-container .btn .icon-upload {
    display: block;
    padding-left: 24px;
    border-left: 1px solid #ffffff91;
}

.file-upload-container .btn .icon-upload img {
    width: 20px;
}

#file-input {
    display: none;
}

.upload-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.upload-label:hover {
    background-color: #0056b3;
}

#file-list {
    margin-top: 20px;
}

.file-item {
    margin: 5px 0;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.remove-file {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;

    &:hover {
        opacity: .8;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

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

@media (max-width: 1200px) {

    .sec-block .item-duble.left,
    .sec-block .item-duble.right {
        width: 100%;
    }

    .sec-block .wrapper-photo {
        margin-left: 0;
    }

    .wrapper-duble-block {
        gap: 50px
    }

    .title-section {
        font-size: 26px !important;
    }
}

@media (max-width: 991px) {
    .column-screen-right {
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .column-screen-left {
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 24px;
    }

    .wrapper-main-screen {
        flex-wrap: wrap;
        gap: 0 !important;
    }

    .column-screen-left .title {
        font-size: 35px !important;
    }

    .column-screen-left .title span {
        font-size: 35px !important;
    }

    .column-screen-left .description {
        font-size: 18px !important;
    }

    .column-screen-right .wrapper-form {
        min-width: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 790px) {
    .main-screen .wrapper-main-screen {
        height: auto;
        padding-top: 90px;
    }

    .main-screen .carusel-logo {
        height: auto;
        padding: 30px 0;
    }
}

@media (max-width: 576px) {

    .services-block .item-service .info-service,
    .services-block .item-service .list-docs {
        border: none !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .services-block .item-service {
        flex-wrap: wrap;
        gap: 30px
    }

    .services-block .wrapper-grid-services {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .section .head-block {
        flex-wrap: wrap;
        gap: 24px;
    }

    .sec-block .info-photo .text {
        font-size: 14px !important;
    }

    .sec-block .info-photo {
        padding: 12px 20px !important;
    }

    .language-block .wrapper-grid-language {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .language-block .wrapper-grid-language .item-language .icon img {
        width: 30px !important;
    }

    .language-block .wrapper-grid-language .item-language .title {
        font-size: 14px;
    }

    .reviews-web {
        padding: 30px 0;
    }

    .reviews-web .wrapper-grid-reviews {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .reviews-web .wrapper-grid-reviews .item-review {
        padding: 10px 15px;
    }

    .reviews-web .wrapper-grid-reviews .title {
        font-size: 16px;
    }

    .reviews-web .wrapper-grid-reviews .item-review .icon img {
        width: 24px;
    }

    .reviews-web .wrapper-grid-reviews .item-review .info .oz {
        font-size: 24px;
    }

    .reviews-web .wrapper-grid-reviews .item-review .info .stars img {
        width: 12px;
    }

    .reviews-web .wrapper-grid-reviews .item-review .info .text {
        font-size: 8px;
    }
}

@media (max-width: 490px) {
    .contacts .wrapper-grid-contacts {
        text-align: center;
    }

    .contacts .wrapper-grid-contacts .item-contacts-column .title {
        justify-content: center;
        font-size: 18px;
    }

    .contacts .wrapper-grid-contacts .item-contacts-column .title .title-icon {

        font-size: 18px;
    }

    .contacts .wrapper-grid-contacts .item-contacts-column .value {
        font-size: 16px;
    }
    .main-screen {
        background-color: #2E7DAB !important;
        background-image: url('../images/backmain.jpg') !important;
        background-position: center top !important;
        background-repeat: no-repeat;
        width: 100%;
        background-size: 235%;
    }
}

@media (max-width: 460px) {
    .reviews-web .wrapper-grid-reviews {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
        gap: 30px;
    }


}