:root {
    --blue-dark: #003DA6;
    --blue-mid: #0453DC;
    --blue: #00A7E1;
    --blue-light: #02BEFF;
    --gray-dark: #393B3D;
    --gray-text: #707070;
    --font-base: "MarkPro", sans-serif;
    --radius: 20px;
    --transition: all 0.4s linear;
    --shadow: 0px 5px 15px rgba(5, 40, 100, 0.2);
}

@font-face {
    font-family: "MarkPro";
    src: url("../font/Mark Pro.ttf");
}

* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: var(--font-base);
}

/* Для русского языка — переопределение */
html[lang="ru"] body {
    font-family: 'Huninn', sans-serif;
}

body.lock {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 0;
}

body.lock {
    overflow: hidden;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-ms-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}


/********PREALOADER***********/

/*******PRELOADER********/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: linear-gradient(270deg, #003DA6 0%, var(--blue) 128.16%);
}

#loader {
    display: block;
    position: relative;
    left: calc(50% - 95px);
    top: calc(50% - 95px);
    width: 190px;
    height: 190px;
    margin: 7px 0 0 -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#preloader_dog {
    width: 100px;
    height: 100px;
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 35px)
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #a4dbfc;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#preloader {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/******FLOATING WIDGET*********/
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.widget-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(270deg, #003DA6 0%, var(--blue) 128.16%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.widget-btn:hover {
    background: linear-gradient(270deg, #003DA6 0%, var(--blue) 128.16%);
    transform: scale(1.05);
}

.scroll-top-btn {
    opacity: 0;
    transform: translateY(20px) translateX(10px);;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Когда активна */
.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(-63px) translateX(10px);;
    pointer-events: auto;
}








/*******MAIN WRAPPER**********/
.main__wrapper {
    min-height: 100vh;
    width: 100%;

    position: relative;
    z-index: 500;

}



h2.section-title {
    position: relative;
    display: inline-block;
}

h2.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    height: 3px;
    width: 100%;
    border-radius: var(--radius);
    background: var(--blue);
}

/*********HEADER**************/
/*********HEADER**************/
/*********HEADER**************/
/*********HEADER*************/
.header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 103px;
    /* изначально отступ */
    z-index: 1000;
    transition: top 0.3s ease, height 0.6s cubic-bezier(0.25, 1, 0.5, 1);

    background: linear-gradient(270deg, #003DA6 0%, #00A7E1 128.16%);
    box-shadow: 0px 5px 10px rgba(1, 19, 51, 0.2);


}

.header__container {
    transition: padding 0.6s ease, transform 0.6s ease;
    width: 100%;
    height: 100%;

}

.header__wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    height: 100%;

    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__wrapper {}

.header__logo {
    transform: translateY(-83px);
}

.header__language {
    transform: translateY(-83px);
}

.header__logo,
.header__logo img,
.header__language {
    transition: transform 0.6s ease, filter 0.6s ease;
}





.header__navigation {
    width: 832px;
    height: 100%;
}

.header__navigation ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__navigation a {
    color: white;
    font-size: 16px;
    transition: all 0.4s linear;
    position: relative;
}

.header__navigation a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1.5px;
    transition: all 0.3s linear;
    background-color: #fff;
    bottom: -5px;
}

.header__navigation a:hover::before {
    width: 100%;
}

.header__language {
    position: relative;
    width: auto;
    background: transparent;
    user-select: none;
    cursor: pointer;
}

.header__language-selected {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;

    border-radius: 4px;
    transition: background 0.3s ease;

}

.header__language .lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.header__language-selected .span-text {
    font-size: 19px;
    color: #393B3D;
    transition: color 0.3s ease;
}

.header.scrolled .header__language-selected .span-text {
    color: #ffffff;
}





.header__language .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: all 0.3s ease;
}

.header.scrolled .arrow {
    border-top-color: #ffffff;
}


.header__language.open .arrow {
    transform: rotate(180deg);
}

.header__language-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.header__language.open .header__language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__language-options li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.header__language-options li:hover {
    background-color: #f3f3f3;
}













.header__content {
    width: 100%;
    height: 103px;
    position: absolute;
    top: 0;
    z-index: 900;
    background-color: #E2E9EC;
}

.header__content-block {
    width: 740px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__content-block a i {
    margin-right: 5px;
}

.header__content-number a {
    color: #393B3D;
    font-size: 16px;
}

.header__content-number i {
    color: #003DA6;
}

.contact-link {}

.header__content-email a {
    color: #393B3D;
    font-size: 16px;
}

.header__content-email i {
    color: #003DA6;
}

.header__content-cinecon {}

.cinecon {}




/*********HERO SECTION**************/
/*********HERO SECTION**************/
/*********HERO SECTION**************/
.hero {
    width: 100%;
    height: calc(100vh - 0px);
    min-height: 650px;
    background-color: #a4dbfc;
    background-image: url('../imgs/main.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 63px;
}

.hero__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content__container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__desc {}

.hero__desc h1 {
    font-weight: 900;
    color: var(--gray-dark);
    width: 499px;
    font-size: 37px;
    margin-bottom: 20px;
    line-height: 50px;
}

.hero__desc h2 {
    font-weight: 900;
    color: #065064;
    width: 499px;
    font-size: 37px;
    margin-bottom: 20px;
    line-height: 50px;

    display: block;
}

.hero__desc h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--gray-dark);
    width: 265px;
    line-height: 31px;
}



.hero__desc__buttons {
    margin-top: 30px;


}

.hero__desc__buttons button {
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.4s linear;
    padding: 0 13px;
    box-shadow: 0px 5px 15px rgba(5, 40, 100, 0.2);
    width: auto;
}

.hero__desc__buttons button:nth-child(1) {
    background: linear-gradient(360deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
    margin-right: 20px;
}

.hero__desc__buttons button:nth-child(2) {
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
}

.hero__image {
    max-width: 500px;
    width: 370px;
}

.hero__image img {
    width: 100%;
    object-fit: contain;
}



/*********ABOUT SECTION*************/
/*********ABOUT SECTION*************/
/*********ABOUT SECTION*************/

#about {
    width: 100%;
    height: 529px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.about__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 350px;
    width: 1200px;


}

.about__wrapper__element {
    width: 570px;
    height: 350px;

}

.about__image {
    width: 100%;
    height: 100%;
    position: relative;
}

.about__image__background {
    width: 540px;
    height: 306px;
    border-radius: 20px;
    position: absolute;
    border: 4px solid #DEE5E9;
    left: initial;
    right: 0;
    bottom: 15px;
}

.about__image__img {
    width: 540px;
    height: 306px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.15));
}

.about__image__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about__name h2 {
    position: relative;
    color: #065064;
    font-weight: 900;
    font-size: 37px;
    display: inline-block;
}

.about__name h2:before {
    content: '';
    background: var(--blue);
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -7px;
    border-radius: 20px;
}

.about__desc {
    margin-top: 25px;
}

.about__desc p {
    color: var(--gray-text);
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 24px;
}





/*********WHY WE SECTION*************/
/*********WHY WE SECTION*************/
/*********WHY WE SECTION*************/

.why_we {
    position: relative;
    width: 100%;
    height: 569px;
    border: 1px solid #DADADA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.why_we::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top: 0; left: 0; right: 0; bottom: 0 */
    background-image: url('../imgs/benefit-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* ← регулируй прозрачность */
    z-index: -1;
}


.why__we__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why__we__name {}

.why__we__name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #065064;
}

.why__we__name h2:before {
    content: '';
    background: var(--blue);
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -7px;
    border-radius: 20px;
}

.why__we__desc {
    max-width: 620px;
    margin-top: 30px;
    color: var(--gray-text);
    line-height: 24px;
    font-size: 16px;
    text-align: center;
}

.why__we__elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    width: 1100px;
    margin-top: 35px;
}


.why__we__element {
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.why__we__eleemnt-image {
    width: 100px;
    height: 100px;
    background: -webkit-gradient(linear, left top, left bottom, from(#00A1E1), color-stop(202.5%, #003FA6));
    background: linear-gradient(180deg, #00A1E1 0%, #003FA6 202.5%);
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;

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

.why__we__element-desc {


    font-weight: 600;
    color: var(--gray-dark);
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    line-height: 24px;
}

/*************NUMBERS************/
/*************NUMBERS************/
/*************NUMBERS************/
.numbers {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numbers__wrapper {
    width: 1100px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numbers__block {
    width: 250px;
    height: 120px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.4s linear;
    position: relative;
}

.numbers__block:hover {
    transform: translateY(-10px);
    background-color: #00A7E1;
    cursor: pointer;
    background-image: url('../imgs/numbers-hover.png');
    background-position: center;
    background-size: cover;
}

.numbers__block:hover .numbers__block-name {
    color: #fff;
}

.numbers__block:hover .numbers__block-number {
    color: #fff;
}

.numbers__block:nth-child(2) {
    margin-right: 20px;
    margin-left: 20px;
}

.numbers__block-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-dark);

    z-index: 1;
}

.numbers__block-number {
    font-size: 30px;
    font-weight: 900;
    color: var(--blue);
    margin-top: 10px;

    z-index: 1;
}

.numbers__block-number span {
    display: inline-block;
    min-width: 50px;
    font-weight: bold;
    font-size: 32px;
    transition: all 0.3s ease-in-out;
}



/***********HOW WE WORK**************/
/***********HOW WE WORK**************/
/***********HOW WE WORK**************/
.how_work {
    width: 100%;
    min-height: 100vh;
}

.how_work_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.how_work__name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #065064;
}


.how_work__container {
    margin-top: 50px;
    width: 1070px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;


    position: relative;
}

/********HOW WORK IAMGES******/
.how__work__pathimage {
    position: absolute;

}

.how__work__pathimage1 {
    top: 230px;
    left: 190px;
}

.how__work__pathimage2 {
    top: 232px;
    left: 559px;
}

.how__work__pathimage3 {
    top: 228px;
    right: -107px;
    transform: scale(0.93);
}

.how__work__pathimage4 {
    bottom: 117px;
    right: 189px;
}

.how__work__pathimage5 {
    bottom: 117px;
    left: 190px;
}

/******/


.how_work__element {
    height: 350px;
    width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.how__work__element-image {
    height: 187px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.how__work__element-image img {
    height: 100%;
    object-fit: cover;

}

.how__work__element-span {
    margin-top: 18px;
    display: inline-block;
    color: var(--blue);
    border: 2px solid var(--blue);
    ;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    line-height: 37px;
    font-size: 19px;
    margin-top: 18px;
    position: relative;
}

.how__work__element-desc {
    font-weight: 600;
    margin-top: 18px;
    font-size: 17px;
    text-align: center;
    color: var(--gray-dark);
    line-height: 26px;
}

/***********CALCULATOR**************/
/***********CALCULATOR**************/
.calculator {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../imgs/calc.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}

.calculator__container {
    width: 1100px;
    display: flex;
    justify-content: space-between;
}

.calculator__form {
    width: 660px;
}

.calculator__form__name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #065064;
}


.calculator__form_desc {
    color: rgb(112, 112, 112);
    margin-top: 30px;
    max-width: 465px;
    font-size: 19px;
    font-weight: 600;
    line-height: 24px;
}

.calculator__form-form {
    margin-top: 40px;

}

.calculator__block {
    margin-bottom: 40px;
}

.calculator__block p {
    font-size: 19px;
    font-weight: 600;

    color: #393B3D;
}

.calculator__walls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 43px;
    margin-top: 16px;
}

.calculator__walls input {
    background: #fdfdfd;
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    height: 42px;
    width: 193px;
    padding-left: 10px;
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-group label {
    margin-right: 35px;
    color: #393B3D;
    font-size: 18px;
    display: inline-block;
}


.calculator__image {
    width: calc(1100px - 660px);
}

.calculator__image img {
    width: 100%;
}

.calculator__block textarea {
    margin-top: 16px;
    width: 400px;
    height: 130px;
    background: #F7F7F7;
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    padding: 10px;
    resize: none;
    /* ← запрещает растягивание */
}

.calculator__contact {
    margin-top: 10px;

}

.calculator__contact input {
    background: #F7F7F7;
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    height: 42px;
    padding-left: 10px;
    width: 220px;
    margin-right: 15px;
}

.calculator__block button {

    background: linear-gradient(180deg, #00A7E1 0%, #003DA6 100%);
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    padding: 0 25px;
}

/***********DISCOUNTS **************/
/***********DISCOUNTS **************/
/***********DISCOUNTS **************/


.discount {
    padding: 80px 0;
    width: 100%;
}

.discount__name {
    width: 100%;
    text-align: center;
}

.discount__name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #065064;
}

.discount__wrapper {
    margin: 0 auto;
    margin-top: 45px;
    width: 1100px;
    height: 395px;
    display: flex;
    justify-content: space-evenly;
}

.discount__element {
    width: 380px;
    height: 395px;
    background-image: url('../imgs/discount1.jpg');
    background-position: center;
    background-size: 120%;
    border-radius: 20px;
    transition: ease-in-out 0.5s;
}

.discount__element-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    background: rgba(15, 105, 134, 0.4);
}

.discount__element-name {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 16px;
    color: white;
}

.discount__element-content {
    color: white;
    font-size: 18px;
    line-height: 27px;
}

.discount__element:hover {
    background-size: 140%;
}

/***********PROJECTS **************/
/***********PROJECTS **************/
/***********PROJECTS **************/
.projects {
    width: 100%;
    padding: 0 80px;
    padding-top: 40px;
}

.projects__wrapper {
    width: 1100px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.projects__name-btn {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
}

.projects__name {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 16px;
    color: #065064;
}

.projects__btn a {

    background: linear-gradient(180deg, #00A7E1 0%, #003DA6 100%);
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    padding: 10px 25px;
}

.projects__container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

.projects__element {
    width: 360px;
    height: 360px;
    position: relative;
    margin-bottom: 5px;
    margin-top: 5px;
    transition: all 0.3s ease;
}


.projects__element-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 100;
    transition: all 0.3s ease;

}

.projects__element-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.projects__element-content {
    opacity: 0;
    z-index: 200;
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.projects__element-desc {
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.projects__element-name {
    text-align: center;
    line-height: 31px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    height: 75px;
    margin-bottom: 10px;
}

.projects__element-more {
    font-size: 16px;
    background: linear-gradient(360deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
}

.projects__element:hover .projects__element-image img {
    filter: none;
}

.projects__element:hover .projects__element-content {
    opacity: 1;
}









.project-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.project-popup.active {
    opacity: 1;
    visibility: visible;
}

.project-popup__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.project-popup__content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 1000px;
    width: 90%;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.project-popup__close {
    position: absolute;
    top: 0px;
    right: 15px;
    background: none;
    border: none;
    font-size: 42px;
    cursor: pointer;
    color: var(--blue-dark);
}


.project-popup__title {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-popup__description {
    font-size: 15px;
    line-height: 22px;
    color: #333;
}




.project-popup-wrapper.two-column {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.project-popup__gallery {
    width: 640px;
    max-height: 420px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.project-popup__gallery a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}



.project-popup__info {
    width: calc(100% - 530px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-popup-text {
    max-height: 340px;
    overflow-y: scroll;
}

.project-popup_social p {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark);
}

#projectMainImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





/***********PARTNERS **************/
/***********PARTNERS **************/
/***********PARTNERS **************/

.partners {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.partners_name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #065064;
}

.partners__wrapper {
    display: flex;
    align-items: center;
    margin-top: 45px;
}

.partners-element {
    width: 250px;
    height: 120px;
    background: #FFFFFF;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s linear;
    padding: 30px;
}

.partners-element:hover {
    transform: translateY(-10px);
    cursor: pointer;
}



.partners-element:nth-child(2) {
    margin-right: 30px;
    margin-left: 30px;
}

.partners-element:nth-child(1) {
    padding: 15px;
}

.partners-element-image {
    width: 100%;
    height: 100%;
}

.partners-element-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*********VIDEOS************/
/*********VIDEOS************/
/*********VIDEOS************/
.videos {
    background: url(../imgs/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

.videos__container {
    width: 1100px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.videos-name {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.videos__more a {
    background: linear-gradient(180deg, #00A7E1 0%, #003DA6 100%);
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    padding: 10px 30px;
}

.videos__wrapper {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;
    margin-top: 35px;
}

.video-wrapper {
    width: 356px;
    height: 320px;

}

.youtube-player {
    width: 100%;
    height: 100%;
}














/******PRICES*******/
/******PRICES*******/
/******PRICES*******/
/******PRICES*******/

.prices {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 40px;
}

.prices__name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #065064;
}

.prices__wrapper {
    width: 1200px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prices__element {
    width: 100%;
    height: 320px;
    box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    padding: 15px 35px 15px 35px;
    margin-bottom: 20px;
    transition: ease-in-out 0.5s;
}

.prices__element:hover {
    box-shadow: 0px 24px 32px rgba(18, 35, 185, 0.2), 0px 16px 24px rgba(31, 109, 145, 0.2), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.prices__element_name {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.prices__element_name-text {
    font-size: 26px;
    color: var(--gray-dark);
}

.prices__element_name-button button {
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.4s linear;
    padding: 0 13px;
    box-shadow: 0px 5px 15px rgba(5, 40, 100, 0.2);
    width: auto;
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
}

.prices__element_content {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.prices__subelement {
    width: 202px;

}

.prices__subelement-name {
    font-size: 17px;
    font-weight: 700;
    padding: 10px 0px 5px 0px;
    border-bottom: 1px solid #e3e3e3bb;
    min-height: 50px;
}

.prices__subelement-desc {
    font-size: 17px;
    margin-top: 10px;
    height: 40px;
    line-height: 21px;
}

.prices__subelement-formula {
    color: var(--gray-text);
    font-weight: 400;
}

.prices__subelement-small {
    color: #393B3D;
    margin-top: 8px;
    font-size: 13px;
}

.prices__subelement-prices {
    margin-top: 15px;
    width: 100%;
}

.prices__subelement-prices div {
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.prices__subelement-prices div:nth-child(2) {
    margin-top: 8px;
}

.prices__subelement-prices p {
    color: var(--gray-dark);
    font-weight: 600;
}

.prices__subelement-prices span {
    color: var(--blue-dark);
    font-weight: 600;
}

/********QUESTIONS FORM**********/
/********QUESTIONS FORM**********/
/********QUESTIONS FORM**********/

.questions {
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../imgs/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.questions_wrapper {
    width: 1100px;
    height: 562px;
    display: flex;
    justify-content: space-between;

}

.questions__desc {
    width: 445px;
    margin-top: 110px;
}

.questions__desc h2 {
    color: white;
    font-weight: 900;
    font-size: 33px;
    margin-bottom: 25px;

}

.questions__desc p {
    color: white;
    font-size: 18px;
    margin-bottom: 7px;
}

.questions__form {
    width: 445px;
    margin-top: 20px;
}

.questions__form_block {
    background-color: #fff;
    width: 442px;
    height: 500px;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.questions__form_block input {
    background: #EEEEEE;
    border-radius: 10px;
    border: #eee;
    margin-bottom: 20px;
    height: 50px;

    width: 100%;
    padding-left: 15px;
}

.questions__form_block textarea {
    background: #EEEEEE;
    border-radius: 10px;
    border: #eee;
    margin-bottom: 20px;
    height: 120px;
    width: 100%;
    padding: 15px;
}

.questions__form_block button {
    background: -webkit-gradient(linear, left top, left bottom, from(#00A7E1), to(#003DA6));
    background: linear-gradient(180deg, #00A7E1 0%, #003DA6 100%);
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    padding: 0 25px;
}




/********CONTACT**********/
/********CONTACT**********/
/********CONTACT**********/
.contact {
    width: 100%;
    height: 549px;
    display: flex;
    align-items: center;
    flex-direction: column;

    background-image: url('../imgs/footer.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #CDCDCD;
}

.contact__name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

.contact__container {
    margin-top: 40px;
    width: calc(1100px);
    height: 300px;
    display: flex;
    justify-content: space-between;
}

.contact__element {
    width: 300px;
    height: 300px;


    background: #FAFAFA;

    box-shadow: 0px 16px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    border: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: center;
    padding: 45px 0;




    transition: all 0.4s linear;
}

.contact__image {
    height: 70px;
    width: 70px;
    background: linear-gradient(180deg, #00A7E1 0%, #003DA6 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    font-weight: 300;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fas {}

.fa-phone-alt {}

.contact__element__name {
    color: #393B3D;
    font-weight: 700;
    font-size: 21px;
    margin: 15px 0;
}

.contact__desc {
    color: #707070;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
}

.fa-envelope {}

.fa-map-marker-alt {}


/********MAP********/
.map {
    width: 100%;
    height: 400px;

}



/*******FOOTER********/
/*******FOOTER********/
/*******FOOTER********/
.footer {
    width: 100%;
    height: 190px;
    background-image: url('../imgs/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 40px;
}

.footer__wrapper {
    width: 1100px;
    height: 100%;
    margin: 0 auto;
}

.footer__nav__sosial {
    display: flex;
    justify-content: space-between;

}

.footer__logo {
    width: 109px;
    height: 70px;

}

.footer__logo img {
    width: 100%;
    height: 100%;
}

.footer__navigation {
    width: 630px;
    display: flex;
    justify-content: space-evenly;
}

.footer__navigation button {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 16px;
}

.footer__social {}

.footer__social-element {}

.fab {}

.fa-facebook-f {}

.fa-instagram {}

.fa-linkedin-in {}

.fa-telegram-plane {}

.footer__createdby {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;

    border-top: 1px solid #DEE5E9;
}

.footer__createdby p {
    font-size: 15px;
    color: white;
}

.footer__createdby a {
    width: 100px;
    height: 50px;

}

.footer__createdby a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/***********CONTACT NEW BLOCK**********/
.contact-new {
    width: 100%;
    height: 560px;
    padding-top: 50px;
    background-image: url('../imgs/footer.jpg');
    background-size: cover;
    background-position: center;
}

.contact__new {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.contact__new-name {
    width: 100%;
    text-align: right;
    height: 50px;

}

.contact__new-name h2 {
    font-weight: 900;
    font-size: 37px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.contact__new__wrapper {
    width: 100%;
    height: calc(100% - 60px);
    position: relative;

}

.contact__new-map {
    position: absolute;
    height: 400px;
    width: 440px;
    border-radius: 20px;
    border: 2px solid #fff;
    overflow: hidden;
    top: -40px;
    z-index: 300;
}





.contact__new-created {
    width: 250px;
    height: 50px;
    overflow: hidden;

    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.contact__new-created-image {
    height: 35px;
    width: 120px;

}

.contact__new-created-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.contact__new-created-image a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact__new-copright {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-align: right;
}


.contact__new-block {
    width: 70%;
    height: 360px;
    position: absolute;

    bottom: 20px;
    right: 0;
    z-index: 200;
    border-radius: 20px;
    border: 2px solid #fff;

    background-image: url('../imgs/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact__new__container {
    width: 100%;
    height: 100%;
    background-color: #1E1E1E80;
    overflow: hidden;
    border-radius: 20px;

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

.contact__new-navigation {
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-right: 30px;
    align-items: left;
}

.contact__new-navigation {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);

}

.contact__new-navigation button {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    margin-bottom: 19px;
    background-color: rgba(0, 0, 0, 0);
}


.contact__new-contact__social {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.contact__new-numbers {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.contact__new-number {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    align-items: center;
}

.contact__new-number:last-child {
    align-items: initial;
}

.contact__new-number-logo {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
    font-size: 15px;
    margin-right: 8px;
}

.fa-phone {}

.contact__new-number-data {
    color: #fff;
    font-size: 17px;
    max-width: 161px;
}

.fa-envelope {}

.fa-map-marker {}

.contact__new-social {
    width: 100%;
}

.contact__new-container {
    width: 226px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact__new-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: var(--blue-dark);
    border-radius: 8px;
    font-size: 21px;
}

.fa-whatsapp {}

.fa-telegram {}

.fa-instagram {}

/**************POPUP*****************/
.popup.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.popup__content {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 30px 50px;
    z-index: 2;
    width: 100%;
    max-width: 450px;
}

.popup__close {
    position: absolute;
    right: 13px;
    top: -2px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    color: var(--blue);
}

.popup__form-container input,
.popup__form-container textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.popup__form-container textarea {
    resize: none;
    height: 100px;
}

.popup__form-container .btn {
    border: 1px solid transparent;
    border-radius: 60px;
    color: white;
    min-width: 115px;
    height: 38px;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.4s linear;
    padding: 0 13px;
    box-shadow: 0px 5px 15px rgba(5, 40, 100, 0.2);
    background: linear-gradient(360deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
}

.popup__form-container form {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.popup__success {
    text-align: center;
    font-size: 18px;
    color: green;
}

.header__burger {
    display: none;
    visibility: hidden;
}

.calculator_mobile_image {
    display: none;
    visibility: hidden;
}

.prices__wrapper-mobile {
    margin: 0 auto;
    display: none;
    visibility: hidden;
}

.mobile-menu {
    display: none;
    visibility: hidden;
}

.calculator__success {
    color: green;
    font-size: 20px;
    font-weight: 600;
}



@media only screen and (max-width: 1050px) {
    .header__wrapper {
        width: 100%;
    }

    .header__navigation {
        display: none;
        visibility: hidden;
    }

    .header__content-block {
        width: 90%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        position: relative;
        justify-content: center;
    }

    .header__content-email {
        display: none;
        visibility: visible;
    }

    .header__content-cinecon {
        position: absolute;
        right: 0;
    }

    .header__content-cinecon a {
        display: block;
        align-items: center;
        justify-content: center;

    }

    .header__language {
        display: none;
        visibility: hidden;
    }






    .header__logo {
        width: 90px;
        height: 50px;
    }

    .header__logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .header__content-cinecon {
        width: 80px;
        height: 50px;
    }

    .header__content-cinecon a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__content-cinecon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .header {
        transition: top 0.3s ease, height 0.2s
    }

    .header__burger {
        display: flex;

        background-color: #fff;
        height: 40px;
        width: 40px;
    }

    .header__burger {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        z-index: 1101;
        visibility: visible;
        height: 40px;
        width: 40px;
    }

    .burger-toggle {
        width: 25px;
        height: 18px;
        position: relative;
        cursor: pointer;
    }

    .burger-toggle span {
        background: white;
        position: absolute;
        height: 2px;
        width: 100%;
        left: 0;
        transition: 0.3s;
    }

    .burger-toggle span:nth-child(1) {
        top: 0;
    }

    .burger-toggle span:nth-child(2) {
        top: 8px;
    }

    .burger-toggle span:nth-child(3) {
        top: 16px;
    }

    .burger-toggle {
        transition: opacity 0.3s ease;
    }

    .burger-toggle.hidden {
        opacity: 0;

        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    /* mobile menu */
    .mobile-menu {


        visibility: visible;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(360deg, #011537 0%, var(--blue-mid) 100%);
        display: flex;
        flex-direction: column;
        padding: 120px 30px;
        z-index: 1100;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li {
        margin-bottom: 20px;
    }

    .mobile-nav a {
        color: white;
        font-size: 20px;
        text-decoration: none;
    }

    .mobile-lang {
        list-style: none;
        padding: 0;
        width: 80%;
        height: 40px;
        display: flex;

        margin-bottom: 20px;

    }

    .mobile-lang li:nth-child(2) {
        margin-left: 40px;
    }

    .mobile-lang li {
        color: white;
        font-size: 18px;
        margin-top: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-lang li img {
        height: 30px;
        width: 30px;
    }

    .mobile-close {
        position: absolute;
        height: 30px;
        width: 30px;
        right: 30px;
        top: 30px;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        background-color: rgba(0, 0, 0, 0);
    }

    .mobile-logo {
        position: absolute;
        width: 118px;
        height: 63px;
        left: 20px;
        top: 40px;
    }

    .mobile-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .header__content-number a {
        font-size: 14px;
    }








    .insta,
    .questions,
    .contact,
    .map,
    .footer {
        display: none;
        visibility: hidden;
    }

    /******HERO********/
    .hero__wrapper {
        width: 100%;
    }

    .hero__content__container {
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    .hero__desc {
        width: 100%;
        padding-left: 20px;
    }

    .hero__desc h1 {
        width: 90%;
        font-size: 30px;
        line-height: 43px;
    }

    .hero__desc h2 {
        width: 90%;
        font-size: 27px;
        line-height: 50px;
    }

    .hero__image {
        display: none;
        visibility: hidden;
    }








    /******ABOUT********/

    #about {
        height: initial;
        padding: 80px 0;
    }

    .about__wrapper {
        height: initial;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .about__wrapper__element {
        width: 90%;
        height: initial;
    }

    .about__wrapper__element:nth-child(2) {
        margin-top: 25px;
    }

    .about__image__background {
        width: 80%;
        left: 0;
        right: initial;
    }

    .about__image__img {
        width: 80%;
        left: 10px;
        right: initial;
        margin-left: 20px;
    }


    /*********WHY WE*********/
    .why_we {
        height: initial;
        padding: 70px 0;
    }

    .why__we__desc {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .why__we__elements {
        width: 90%;
        align-items: center;
        flex-direction: column;
    }

    .why__we__element {
        margin-bottom: 20px;
    }

    .why__we__eleemnt-image {
        width: 80px;
        height: 80px;
    }

    .why__we__eleemnt-image img {
        width: 40px;
        height: 40px;
    }

    .why__we__element-desc {
        font-size: 15px;
        text-align: center;
        margin-top: 20px;
        line-height: 21px;
    }

    /**********NUMBERS**************/
    .numbers {
        height: initial;
        padding: 40px 0;
    }

    .numbers__wrapper {
        width: 90%;
        height: initial;
        margin: 0 auto;
        flex-direction: column;
    }

    .numbers__block {
        margin-bottom: 15px;
    }

    /*******HOW WORK*********/
    .how__work__pathimage {
        display: none;
        visibility: hidden;
    }

    .how_work__container {
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .how_work__element {
        order: initial;
    }

    .how_work__element:nth-child(1) {
        order: 1;
    }

    .how_work__element:nth-child(2) {
        order: 2;
    }

    .how_work__element:nth-child(3) {
        order: 3;
    }

    .how_work__element:nth-child(4) {
        order: 6;
    }

    .how_work__element:nth-child(5) {
        order: 5;
    }

    .how_work__element:nth-child(6) {
        order: 4;
    }

    /***********CALCULATOR*************/
    .calculator__container {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
    }

    .calculator__form {
        width: 100%;
    }

    .calculator_mobile_image {
        display: block;
        visibility: visible;
        width: 100%;
        height: 300px;
    }

    .calculator_mobile_image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .calculator__form_desc {
        font-size: 16px;
        margin-bottom: 15px;
    }




    .calculator__image {
        display: none;
        visibility: hidden;

    }

    .calculator__walls {
        flex-direction: column;
        height: initial;
    }

    .calculator__walls input {
        margin-bottom: 9px;
        width: 100%;


    }

    .checkbox-group {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .checkbox-group label {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .calculator__block textarea {
        width: 100%;

    }

    .calculator__contact {
        flex-direction: column;

    }

    .calculator__contact input {
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
    }

    /***********DISCOUNT*************/
    .discount {}

    .discount__wrapper {
        width: 95%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .discount__element {
        width: 100%;
        height: 340px;
    }

    /***********PROJECTs*************/
    .projects__wrapper {
        width: 100%;
        height: 100%;
    }

    .projects__container {}

    .projects {
        padding: 0;
    }

    .projects__name-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .projects__element {
        width: calc(50% - 5px);
        height: 250px;
    }

    .projects__element-desc {
        padding: 14px;
    }

    .projects__element-name {
        line-height: 20px;
        font-size: 15px;
    }

    .projects__element-more {
        padding: 8px 16px;
        border-radius: 8px;
    }

    /********PROJECTS-POPUP***************/
    .project-popup__content {
        height: 600px;
    }

    .project-popup-wrapper {
        flex-direction: column;

    }

    .project-popup__gallery {
        width: 100%;
        height: 280px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #0040a642;
    }

    .project-popup__gallery {
        flex: initial;
    }

    #carouselContainer {
        height: 100%;
    }

    .project-popup-wrapper.two-column {
        gap: 10px;
    }

    .f-carousel__slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .project-popup__title {
        font-weight: 600;
        font-size: 16px;
    }

    .project-popup__description {
        font-size: 14px;
    }

    .project-popup-wrapper.two-column {
        flex-direction: column;
    }

    .project-popup__info {
        width: initial;
    }

    .project-popup__gallery a {
        width: 157px;
        height: 86px;
    }

    .project-popup__gallery a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-popup__gallery {
        height: initial;
    }


    /*****PARTNERS*******/
    .partners {
        height: initial;
        padding: 40px 0;

    }

    .partners__wrapper {
        flex-direction: column;

    }

    .partners-element {
        margin-bottom: 20px;
    }

    .videos__container {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        height: 50px;
    }

    .videos__wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .video-wrapper {
        width: 90%;
        height: 300px;
        margin-bottom: 20px;
    }

    .videos-name {
        font-size: 25px;
    }

    .videos__more a {
        padding: 9px 24px;
        font-size: 14px;
    }

    /*******PRICES*******/
    .prices__wrapper {
        display: none;
        visibility: hidden;
    }

    .prices__wrapper-mobile {
        display: flex;
        visibility: visible;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }





    .solutions-list-item__tab {
        display: none;
    }

    .solutions-list-item__tab.is-active {
        display: block;
    }

    .solutions-list-item__tabs-header {
        cursor: pointer;
    }

    .solutions-list-item__tabs-header.is-active {
        font-weight: bold;
    }

    .solutions-list-item {
        width: 95%;
        padding: 20px 20px 75px 20px;
        position: relative;
        margin-bottom: 20px;
    }

    .shadowed {
        box-shadow: 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
        border-radius: 15px;
    }

    .solutions-list-item__header {
        color: var(--gray-dark);
        font-size: 17px;
        margin-bottom: 10px;
    }

    .solutions-list-item__button {
        position: absolute;
        top: auto;
        bottom: 20px;
        right: auto;
        left: 20px;
        display: flex;
        align-items: center;
        justify-content: center;


        border: 1px solid transparent;
        border-radius: 60px;
        color: white;
        min-width: 115px;
        height: 38px;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.4s linear;
        padding: 0 13px;
        box-shadow: 0px 5px 15px rgba(5, 40, 100, 0.2);
        width: auto;
        background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
    }

    .solutions-list-item__tabs {
        display: flex;
        gap: 18px;
        border-bottom: 1px solid #E2E2E2;
    }

    .solutions-list-item__tabs-header {
        color: #868686;
        position: relative;
        top: 1px;
        padding-bottom: 6px;
    }

    .solutions-list-item__tabs-header.is-active {
        color: #2B2E33;
        border-bottom: 4px solid #003FA6;
    }

    .solutions-list-item__tabs-body {
        padding-top: 19px;
        display: flex;
        flex-direction: column;
    }

    .solutions-list-item__tab-header {
        color: var(--gray-dark);
        font-weight: 600;

    }

    .solutions-list-item__tab-header-drw {
        color: var(--gray-text);
        font-size: 15px;
        margin-top: 4px;
    }

    .solutions-list-item__tab-text {
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .solutions-list-item__tab-price-item {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .solutions-list-item__tab-price-item p {
        color: var(--gray-dark);
        font-weight: 600;
    }

    .solutions-list-item__tab-price-item span {
        color: var(--blue-dark);
        font-weight: 600;
    }

    .solutions-list-item__tab-price {
        margin-top: 10px;
    }



    .solutions-list-item__tab-text {

        line-height: 19px;
        height: 34px;
    }

    /**********NEW CONTACT MOBILE***************/
    .contact-new {
        height: initial;
        padding-bottom: 20px;
    }

    .contact__new {
        width: 100%;

    }

    .contact__new__wrapper {
        height: initial;
    }

    .contact__new-map {
        position: initial;
    }

    .contact__new-created {
        position: initial;
        order: 3;
    }

    .contact__new-block {
        position: initial;
        width: 100%;
        order: 2;
        margin-bottom: 15px;
        height: initial;
    }

    .contact__new-name {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact__new__wrapper {
        width: 95%;
        display: flex;
        align-items: center;
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;

    }

    .contact__new__container {
        flex-direction: column;
        padding: 30px;
        align-items: initial;
    }

    .contact__new-navigation {
        margin-right: initial;
    }

    .contact__new-contact__social {
        width: 100%;
    }

    .contact__new-number-data {
        max-width: 280px;

    }




    .contact__new-map {
        width: 100%;
        height: 350px;
        order: 1;
        margin-bottom: 35px;
    }

    /*********CONTACT FORM**********/
    .popup__content {
        max-width: 92%;
    }
}