body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

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

body {
    min-height: 100vh;
    background-color: #f5f5f5;
    font-family: 'Gilroy';
    font-size: 18px;
    font-weight: normal;
    color: #2a2a2a;
    overflow-x: hidden
}

body.lock {
    overflow-y: hidden;
    height: 100vh
}

ol,
ul {
    list-style: none;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    background-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

b {
    font-weight: 600;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*main*/

.section-main {
    height: 950px;
    background-image: url(../img/main/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.menu {
    position: relative;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 500;
}

.menu__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.logo {
    margin-top: 5px;
    margin-bottom: -10px;
    width: 100%;
    max-width: 248px;
    height: auto;
}

.menu__decs {
    margin: 0 15px;
    font-weight: 600;

}

.menu__decs > span {

    font-weight: normal;

}

.menu__burger-wrap {
    display: none;
    position: absolute;
    top: 30px;
    right: 8px;
    z-index: 100;
    height: 25px;
    width: 30px;
}

.menu__burger {
    position: relative;
    height: 100%;


}

.menu__burger span {
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #676767;
    z-index: 10;
}

.menu__burger span:first-child {
    top: 0;
    left: 0;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.menu__burger.open span:first-child {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 11px;
}

.menu__burger span:nth-child(2) {
    top: 11px;
    left: 0;
    opacity: 1;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.menu__burger.open span:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
}

.menu__burger span:nth-child(3) {
    bottom: 0;
    left: 0;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.menu__burger.open span:nth-child(3) {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    bottom: 11px;
}

.mobile__menu-wrap {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #f5f5f5;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    overflow-x: hidden;
    overflow-y: scroll;


}

.mobile__menu-wrap.open {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);

}

ul.mobile__menu {
    margin-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;

}

.mobile__link {
    margin: 8px 0;
}

.mobile__link a {
    color: inherit;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
}

.mobile__link.active {
    border-bottom: 2px solid #727272;
}

.mobile__link.mobile__link-phone a {
    font-size: 22px;
    font-weight: 600;
}

.mobile__link.mobile__link-title {
    margin-top: 20px;
    margin-bottom: 0;
}

.menu_items {
    width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.menu__workinghours::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #38a001;
    border-radius: 50%;
    position: absolute;
    right: 102%;
    top: 7px;
    -webkit-animation: blink 3s ease-in infinite both;
    animation: blink 3s ease-in infinite both;
}

@-webkit-keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.menu__workinghours > span {
    font-weight: 600;
    font-size: 18px;
}

.menu__workinghours {
    position: relative;
    font-size: 16px;
    font-weight: normal;
}

.menu__phone-text {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

.menu__phone-text > span {
    font-weight: 600;
}


.soc-links a img {
    width: 36px;
    height: 36px;
}

.menu__phone-call {
    position: relative;
    margin-top: 5px;
}

.menu__phone-call > img {
    position: absolute;
    left: -5px;
    bottom: -6px;
    display: block;
    z-index: 1;
    width: 36px;
    height: 36px;
}

.menu__phone-call > a {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    margin-left: 35px;
}

.menu__phone-call > a:hover {
    border-bottom: 2px #727272 dotted;

}

/*Mobile menu*/
.menu_items-mobile {
    display: none;
}

.menu__contacts-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.menu__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu__contacts a img {
    display: block;
    margin: 0 10px;
    width: 44px;
    height: 44px;
}

.mobile-phone {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: 25px;
    font-weight: 600;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.main__item {
    width: 50%;
}

.main__title {
    margin-top: 85px;
    font-size: 68px;
    font-weight: 600;
    text-shadow: 0 0 15px #fff;
}

.main__desc {
    margin-top: 10px;
    margin-bottom: 75px;
    font-size: 26px;
    font-weight: 500;
}

.btn__wrap {
    position: relative;
    display: inline-block;
}

.btn-primary {
    position: relative;
    display: inline-block;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #f19900;
    background-color: #ffd100;
    -webkit-box-shadow: 0 7px 0 -4px #df9c19, 0 10px 30px -5px rgb(0 0 0 / 62%), inset 0 6px 18px rgba(255, 249, 220, 0.83), inset 0 -6px 18px #ff9600;
    box-shadow: 0 7px 0 -4px #df9c19, 0 10px 30px -5px rgb(0 0 0 / 62%), inset 0 6px 18px rgba(255, 249, 220, 0.83), inset 0 -6px 18px #ff9600;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.8);
    left: -120px;
    top: -50px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes flash {
    0% {
        left: 0
    }

    10% {
        left: 130%
    }

    100% {
        left: 130%
    }
}

.btn-primary--main {
    padding: 25px 45px;
    font-size: 24px;
}


.btn-primary:hover {
    background-color: #ffc400;
    cursor: pointer
}

.main__calc {
    position: absolute;
    display: block;
    z-index: 1;
    left: -60px;
    bottom: -20px;
}

.main__arrow1 {
    position: absolute;
    display: block;
    z-index: 1;
    left: 103%;
    bottom: -35px;
}

.main__arrow2 {
    position: absolute;
    display: block;
    z-index: 1;
    left: -22px;
    bottom: -65px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.main__text {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
    padding-left: 30px;
}

.main__text + .main__text {
    margin-top: 45px;
}

.main__soc {
    margin-top: 60px;
}

.main__soc-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.main__foto {
    position: relative;
    height: 600px;
}

.main__builder {
    position: absolute;
    display: block;
    right: -35px;
    top: 60px;
    z-index: 2;
}

.main__dignity {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;

}

.main__dignity-item {
    min-width: 173px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    background-image: url(../img/main/dignity.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.main__dignity-text {
    padding: 13px 0px 28px 50px;
}

.main__dignity-text > span {
    font-weight: 600;
}

.main__check {
    position: absolute;
    left: 3px;
    top: -17px;
    z-index: 1;
    display: block;
}

/*Rooms*/
.section-room {
    position: relative;
    background-image: url(../img/room/pattern.png);
    background-position: right top;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    overflow-x: hidden
}

.room-top-right {
    right: -200px;
    top: 0;
}

.room-pattern-bot-right {
    position: absolute;
    display: block;
    opacity: .6;
    z-index: 1;
    right: 0px;
    bottom: 0;
}

.section__title {
    font-size: 44px;
    font-weight: 300;
    text-align: center;
    padding: 60px 0 25px
}

.section__title > span {
    font-weight: 500;

}

.room__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.room__wrap + .room__wrap {
    margin-top: 20px;
}

.room__card-title {
    padding: 15px;
    position: relative;
    z-index: 3;
}

.room__card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 30px;
    font-weight: 600;
    height: 275px;
    background-color: #ffd100;
    -webkit-box-shadow: 0 9px 20px -4px rgba(124, 124, 124, 0.3);
    box-shadow: 0 9px 20px -4px rgba(124, 124, 124, 0.3);
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
}

.room__card:hover > .room__desc {
    opacity: 1;
    visibility: visible;
}

.room__card:hover > .room__desc > .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.room__card2 {
    width: 48%;
}

.room__card2 > img {
    position: absolute;
    display: block;
    right: -45px;
    bottom: -14px;
}

.room__card3 {
    width: 31%;
}

.room__card3 > img {
    position: absolute;
    display: block;
    right: -45px;
    bottom: 50px;
}

.room__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    z-index: 4;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.room__text {
    font-size: 18px;
    font-weight: normal;
    padding: 15px 15px 5px 15px;
}

.btn-primary.btn-primary--room {
    right: 0;
    font-size: 20px;
    padding: 20px 30px;
    margin-right: 15px;
    margin-bottom: 20px;
}

.btn-wrap {

    display: none;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/*Stage*/
.section-stage {
    position: relative;
    background-image: url(../img/room/pattern.png);
    background-position: left top;
    background-repeat: no-repeat;
}

.stage__cement {
    position: absolute;
    z-index: 1;
    display: block;
    bottom: -120px;
    left: 0;
}

.stage__pattern {
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: -150px;
}

.stage__wrap {
    margin-top: 160px;
    position: relative;
}

.stage__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 100px;
}

.stage__desc {
    width: 50%;
}

.stage__img {
    width: 50%;
}

.stage__img img {
    display: block;
}

.stage__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.stage__text {
    font-size: 20px;
    position: relative;
    text-indent: 1.2em;
    margin-top: 8px;
    padding-right: 10px;
}

.stage__text:last-child::after {
    content: "";
    display: block;
    position: absolute;
    width: 350px;
    height: 3px;
    background-color: #676767;
    color: aqua;
    bottom: -25px;
    left: 0;
}

.stage__img {
    position: relative;
    z-index: 2;
}

.stage__img img {
    display: block;
    width: 100%;
    max-width: 587px;
    height: auto
}

.stage__img-subtitle {
    position: absolute;
    font-size: 90px;
    font-weight: 900;
    background: -webkit-gradient(linear, left bottom, left top, from(#dededc), to(#727272));
    background: linear-gradient(0deg, #dededc, #727272);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
    z-index: 1;
    display: block;
    bottom: -60px;
    left: -80px;
}

/*Slick*/
.slick-list {
    overflow: hidden;
}

.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-dots {
    position: absolute;
    top: -140px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 7px 0 -3px #d4d4d4, 0px 12px 40px #ababab;
    box-shadow: 0 7px 0 -3px #d4d4d4, 0px 12px 40px #ababab;
}

.slick-dots > li.slick-active > button {
    border: 1px solid #f19900;
    background-color: #ffd100 !important;
    -webkit-box-shadow: 0 7px 0 -4px #df9c19, inset 0 6px 18px rgb(255 249 220 / 83%), inset 0 -6px 18px #ff9600;
    box-shadow: 0 7px 0 -4px #df9c19, inset 0 6px 18px rgb(255 249 220 / 83%), inset 0 -6px 18px #ff9600;
    pointer-events: none;
}

.slick-dots > li > button {
    padding: 20px 40px;
    width: 200px;
    height: 84px;
    font-size: 26px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid transparent;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    outline: none;

}

.slick-dots li button:hover {
    background-color: #e3e3e3;

}

.slick-arrow {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -125px;
    font-size: 0;
    border: none;

    background-size: 100% 100%;
    display: block;
    z-index: 10;
    cursor: pointer;
    opacity: 0.7
}

.slick-arrow:hover {
    opacity: 1;
    -webkit-transform: scale(0.92);
    transform: scale(0.92)
}

.slick-prev {
    background: url(../img/stage/left.png) no-repeat;
    left: 140px;
}

.slick-next {
    background: url(../img/stage/right.png) no-repeat;
    right: 134px;
}

/*Quality*/
.section-quality {
    position: relative;
    background-color: #fff;
    background-image: url(../img/room/pattern.png);
    background-position: right top;
    background-repeat: no-repeat;
    /*    overflow: hidden*/
}

.quality__machine {
    position: absolute;
    z-index: 1;
    display: block;

    bottom: -88px;
    right: 0px;
}

.quality__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px;
    padding-bottom: 120px;

}

.quality__img {
    position: relative;
    width: 50%;
}

.quality__img-subtitle {
    position: absolute;
    font-size: 90px;
    font-weight: 900;
    background: -webkit-gradient(linear, left bottom, left top, from(#dededc), to(#727272));
    background: linear-gradient(0deg, #dededc, #727272);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
    z-index: 1;
    display: block;
    top: -84px;
    right: -20px;
}

.quality__img > img {
    position: relative;
    z-index: 2;
    display: block;
}

.quality__plus {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    background-color: #ffd100;
    -webkit-box-shadow: 0 3px 10px #868686;
    box-shadow: 0 3px 10px #868686;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear
}

.quality__plus::before {
    content: "+";
    position: absolute;
    display: block;
    font-size: 26px;
    font-weight: 600;
    left: 11px;
    bottom: 2px;
}

.quality__plus::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #ffd100;
    top: 29px;
    left: 13px;
    z-index: 10;
    display: none;

}

.quality__plus-wrap::before,
.quality__plus-wrap::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    bottom: -18px;
    top: -18px;
    border: 3px solid #fff100;
    border-radius: 100px;
    opacity: 0;
    -webkit-animation: pulse 1.8s linear infinite;
    animation: pulse 1.8s linear infinite;
    z-index: 1;

}

.quality__plus-wrap::after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.plus-1 {
    left: 75px;
    bottom: 140px;
}

.plus-2 {
    left: 200px;
    bottom: 110px;
}

.plus-3 {
    left: 340px;
    bottom: 90px;
}

.plus-4 {
    left: 250px;
    bottom: 63px;
}

.quality__plus-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.quality__plus-desc {
    display: none;
    position: absolute;
    width: 250px;
    height: auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 15px 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
    -webkit-box-shadow: 0 0 20px #c3c3c3;
    box-shadow: 0 0 20px #c3c3c3;
    z-index: 4;
}

.quality__plus:hover .quality__plus-desc {
    display: block;

}

.quality__plus:hover.quality__plus::after {
    display: block;
}

.quality__plus-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center
}

.quality__plus-text {
    padding: 10px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

.quality__desc {
    width: 50%;

}

.quality__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-left: 30px;
}

.quality__text {
    font-size: 20px;
    position: relative;
    text-indent: 1.2em;
    margin-top: 8px;
    margin-left: 30px;
}

.quality__text > span {
    font-weight: 600;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(.9);
        opacity: 0;
    }
}

/*Bonus*/
.section-bonus {
    background-image: url(../img/room/pattern.png);
    background-position: left top;
    background-repeat: no-repeat;
    overflow-x: hidden
}

.bonus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-bottom: 40px;

}

.bonus__item > img {
    position: absolute;
    z-index: 1;
    display: block;
    top: 20px;
    right: -20px;
}

.bonus__item {
    position: relative;
    display: block;
    width: 30%;
    height: 500px;
    padding: 40px;
    -webkit-box-shadow: 0px 13px 20px 8px #c7c7c7cc;
    box-shadow: 0px 13px 20px 8px #c7c7c7cc;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid #cecece;
}

.bonus__item1 {
    background: url(../img/bonus/1.jpg) 60% 50% no-repeat;
}

.bonus__item2 {
    background: url(../img/bonus/2.jpg) 60% 50% no-repeat;
}

.bonus__item3 {
    background: url(../img/bonus/3.jpg) 60% 50% no-repeat;
}

.bonus__item4 {
    background: url(../img/bonus/4.jpg) 60% 50% no-repeat;
}

.bonus__item5 {
    background: url(../img/bonus/5.jpg) 60% 50% no-repeat;
}

.bonus__item6 {
    background: url(../img/bonus/6.jpg) 60% 50% no-repeat;
}

.bonus__img {
    position: absolute;
    z-index: 1;
    display: block;
    right: -80px;
    bottom: -40px;
}

.bonus__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bonus__text {
    font-size: 18px;
    font-weight: 500;
}

/*Contact-us*/

.section-contact-us {
    position: relative;
    height: 740px;
    width: 100%;
    background: url(../img/contact_us/bg.jpg) 70% 100% no-repeat;
    overflow: hidden;
}

.foreman {
    position: absolute;
    display: block;
    z-index: 1;
    bottom: 41px;
    right: 18%;
}

.contact-us__wrap {

    position: relative;
    width: 50%;
    min-height: 450px;
    background: url(../img/contact_us/shape.png) no-repeat;
    background-size: 100% 100%;
    padding: 45px 50px;
    z-index: 3;
    position: relative;
}

.ruller {
    position: absolute;
    z-index: 1;
    display: block;
    right: -20px;
    bottom: -10px;
    max-width: 486px;
    height: auto;
    width: 70%;
}

.contact-us__title {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 25px;
}

.contact-us__title > span {
    font-weight: 600;
}

.contact-us__text {
    font-size: 20px;
    color: #696969;
}

.btn--form {
    margin-top: 20px;
    font-size: 24px;
    padding: 24px 46px;
    z-index: 2;
}

.contact-us__input-phone {
    position: relative;
    width: 265px;
    height: 38px;
    margin-top: 20px;
    margin-left: 10px;
    border: none;
    border-bottom: 1px solid #696969;
    padding-left: 35px;
    background: url(../img/contact_us/phone.png) no-repeat center left;
    z-index: 2;
}

.contact-us__input-phone:focus {
    background-color: #d8d8d8;
    outline: none;
}

/*Footer*/
.footer {
    background-color: #fff;
    padding-bottom: 10px;
    background-image: url(../img/room/pattern.png);
    background-position: right top;
    background-repeat: no-repeat;
}

.section__title.section__title--footer {
    padding-top: 20px;
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 30px;
}

.footer__item {
    font-size: 20px;
    width: 33.3333%;
}

.footer__subtitle {
    line-height: 1;
    font-size: 80px;
    font-weight: 900;
    background: -webkit-gradient(linear, left bottom, left top, from(#dededc), to(#727272));
    background: linear-gradient(0deg, #dededc, #727272);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
    z-index: 1;
    display: block;
    top: -20px;
    left: -80px;
}

.footer__name,
.footer__adress,
.footer__phone,
.footer__email {
    color: inherit;
    text-decoration: none;

}

.footer__phone-wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer__phone {
    display: block;
}

.footer__phone + .footer__phone {
    margin-top: 5px;
}

.footer__phone:hover {
    -webkit-box-shadow: inset 0 -1px #9f9f9f;
    box-shadow: inset 0 -1px #9f9f9f;
}

.footer__text {
    margin-top: 8px;
    font-weight: 600;
    font-size: 22px;
}

.footer__item.footer__item--logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo.footer--logo {
    margin: 0 auto;
}

.footer__item.footer__item3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.footer__btn-title {
    font-size: 22px;
    text-align: end;
    font-weight: 600;
}

.footer__btn-subtitle {
    font-size: 16px;
    text-align: end;
}

.footer__btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.btn-primary.btn-primary--footer {
    padding: 25px 45px;
    margin-top: 20px;
}

.footer__soc {
    font-weight: 600;
    font-size: 22px;
    text-align: end;
}

/*Popup*/
.popup {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.7);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 150;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow-x: hidden;
    overflow-y: auto
}

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

.popup__body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.popup__content {
    position: relative;
    padding: 30px 35px;
    background-color: #fff;
    width: 500px;
    height: 550px;
    border-radius: 20px;
    border: 1px solid rgba(203, 203, 203, 0.7);
    -webkit-box-shadow: 0 15px 0px -8px #dbdbdb;
    box-shadow: 0 15px 0px -8px #dbdbdb;
}

.popup__content.popup__content1 {
    background: #fff url(../img/popup/calc.png)100% 100% no-repeat;
}

.popup__content.popup__content2 {
    background: #fff url(../img/popup/rulle.png)100% 100% no-repeat;
}

.popup__content.popup__content3 {
    background: #fff url(../img/popup/call.png)100% 100% no-repeat;
}

.popup__content.popup__content4 {
    background: #fff url(../img/popup/manpopup.jpg)150% 100% no-repeat;
    background-size: 90%;
}

.popup__close {
    position: absolute;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    color: #454545;
    font-size: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    right: -14px;
    top: -14px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear
}

.popup__close:hover {
    color: #ff003b
}

.popup__title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.popup__text {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn-popup {
    padding: 20px 38px;
    font-size: 24px;
    margin-top: 20px;
}

input.popup__input {
    background-color: #efefef;
    min-width: 300px;
    position: relative;
    padding: 20px 20px;
    border: 1px solid #d4d4d4;
    border-radius: 20px;
    border: 1px solid #bebebe;
    margin-bottom: 20px;
}

input.popup__input:focus {
    outline: none;
    background-color: #ffffff;
    -webkit-box-shadow: inset 0 3px 10px rgba(147, 147, 147, 0.29);
    box-shadow: inset 0 3px 10px rgba(147, 147, 147, 0.29);
}

/*Breakpoints*/
@media (max-width: 1700px) {

    .stage__cement {
        width: 250px;
        left: 27%;
        bottom: -83px;
    }

    .quality__machine {
        bottom: -88px;
        right: 0px;
        width: 318px;
    }

}

@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
        overflow: hidden;
    }

    /*  main*/

    .section-main {
        height: 800px;
    }

    .menu__decs {
        font-size: 15px;
        margin: 0 10px;
    }

    .menu__phone-call > a {
        font-size: 18px;
    }

    .main__item.main__item1 {
        width: 40%;
    }

    .main__item.main__item2 {
        width: 60%;
    }

    .main__title {
        font-size: 44px;
    }

    .btn__wrap {
        margin-left: 35px;
    }

    .main__desc {
        margin-bottom: 45px;
    }

    .main__text {
        margin-left: 35px;
    }

    .main__soc {
        margin-top: 30px;
    }

    .main__foto {
        height: 530px;
    }

    .main__builder {
        height: auto;
        max-width: 839px;
        width: 110%;
        right: 0;
    }

    .main__dignity-text {
        font-size: 15px;
    }

    /*Room*/
    .room__wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .room__card2,
    .room__card3 {
        width: 100%;
    }

    .room__card2 + .room__card2,
    .room__card3 + .room__card3 {
        margin-top: 20px;
    }

    /*Stage*/
    .slick-dots > li > button {

        width: 150px;
        font-size: 20px;
    }

    .stage__title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .stage__text {
        font-size: 18px;
    }

    .stage__cement {
        display: none;
    }

    /*Quality*/

    .quality__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .quality__desc {
        width: 100%;
    }

    .quality__text {
        margin-left: 0;
    }

    .quality__img {
        -ms-flex-item-align: start;
        align-self: flex-start
    }

    .quality__machine {
        bottom: -80px;
        width: 280px;
    }

    /*Bonus;*/
    .bonus__title {
        margin-bottom: 15px;
        font-size: 23px;
    }

    .bonus__wrap {
        height: 480px;
    }

    .bonus__item {
        padding: 30px;
    }

    .bonus__text {
        font-size: 16px;
    }

    /*Contact us*/
    .foreman {
        right: 15px;
    }

    .contact-us__wrap {
        width: 65%;
        max-width: 618px;
    }

    .footer__subtitle {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .section__title {
        font-size: 38px;
        padding-left: 40px;
        padding-right: 40px;
    }

    /*main*/
    .section-main {
        height: 1150px;
    }

    .menu_items {
        display: none;
    }

    .menu_items-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .menu__contacts-wrap {

        -webkit-box-orient: vertical;

        -webkit-box-direction: normal;

        -ms-flex-direction: column;

        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .main {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .main__title {
        margin-top: 50px;
        font-size: 64px;
    }

    .main__item.main__item1 {
        width: 100%;
    }

    .main__item.main__item2 {
        width: 100%;
    }

    .main__foto {
        height: 320px;
    }

    .main__builder {
        top: -215px;
        right: -23px;
    }

    /*Stage*/
    .stage__wrap {
        margin-top: 80px;

    }

    .stage__card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
        padding-bottom: 0
    }

    .stage__img,
    .stage__desc {
        width: 100%;
    }

    .stage__desc {
        margin-bottom: 25px;
    }

    .stage__img img {
        margin: 0 auto;
    }

    .stage__img {
        margin-bottom: 50px;
    }

    .stage__img-subtitle {
        left: 0;
        bottom: -50px;
    }

    .stage__text:last-child::after {
        display: none;
    }

    .slick-dots {
        top: -85px;
        height: 60px;
    }

    .slick-dots > li > button {
        width: 145px;
        font-size: 18px;
        padding: 14px 25px;
        height: 60px;
    }

    .slick-arrow {
        top: -86px;
    }

    .slick-next {
        right: -34px;
    }

    .slick-prev {
        left: -30px;
    }

    /*Quality*/
    .quality__title {
        margin-top: 20px;
    }

    .quality__img {
        width: 100%;
    }

    .quality__img-subtitle {
        left: 0;
    }

    /*Bonus*/
    .bonus__item {
        height: 450px;
    }

    .bonus {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .bonus__item {
        width: 45%;
        max-width: 350px;
    }

    /*Contact us*/
    .contact-us__title {
        font-size: 25px;
    }

    .btn--form {
        font-size: 20px;
        padding: 20px 30px;
    }

    .contact-us__wrap {
        min-height: 410px;
    }

    .contact-us__text {
        font-size: 18px;
    }

    .btn-primary.btn-primary--footer {
        font-size: 20px;
        padding: 20px 30px;
    }

    .footer__subtitle {
        font-size: 50px;
    }
}

@media (max-width: 767px) {

    /*main*/

    .section-main {
        height: 990px;
        background: url(../img/main/bg-mobile.jpg) 37% 10% no-repeat;
        background-size: 1400px;
        
    }

    .main__text {
        text-shadow: 0 0 5px #fff;
    }

    .menu__decs {
        display: none
    }

    .main__title {
        font-size: 40px;
    }

    .main__foto {
        display: none;
    }

    .main__builder {
        display: none;
    }

    .main__item.main__item2 {
        display: none;
    }

    /*Stage*/
    .stage__img-subtitle {
        font-size: 50px;
    }

    .slick-dots > li > button {
        width: 125px;
        font-size: 18px;
        padding: 0px 10px;
    }

    .stage__card {
        padding-bottom: 50px;
    }

    .stage__desc {
        margin-top: 30px;
    }

    .stage__img {
        margin-bottom: 0;
    }

    /*Quality*/
    .quality__text {
        font-size: 18px;
    }

    .quality__img > img {
        width: 100%;
        max-width: 615px;
        height: auto;
    }

    /*Contact us*/
    .foreman {
        right: -115px;
    }

    .contact-us__wrap {
        width: 75%;
    }

    .contact-us__text {
        font-size: 16px;
    }

    .contact-us__title {
        margin-bottom: 10px;
    }

    .contact-us__wrap {
        min-height: 395px;
    }

    .btn-primary.btn-primary--footer {
        font-size: 17px;
        padding: 15px 20px;
    }

    .footer__subtitle {
        font-size: 37px;
    }

    .footer__btn-subtitle {
        font-size: 15px;
    }

    .footer__text {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }

    .section__title {
        font-size: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /*  main*/
    .header {
        margin-bottom: 50px;
    }

    .section-main {
        height: 850px;
        background: url(../img/main/bg-mobile.jpg) 44% 0% no-repeat;
        background-size: 1180px;
    }

    .menu {
        margin-top: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .menu__logo {
        margin-bottom: 15px;
    }

    .menu_items-mobile {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-item-align: end;
        align-self: flex-end
    }


    .mobile-phone {
        font-size: 26px;
        margin-top: 5px;
    }

    .menu__burger-wrap {
        display: block;
    }

    .btn__wrap {
        margin-left: 50px;
        margin-top: 70px;
    }

    .btn-primary--main {
        font-size: 20px;
        padding: 20px 40px;
    }

    .main__title {
        margin-top: 0;
        font-size: 38px;
    }

    .main__desc {
        margin-bottom: 15px;
    }

    .main__text {
        font-size: 20px;
        margin-left: -30px;
        color: #fff;
        text-shadow: 0 0 5px #000;
    }

    .main__soc {
        margin-top: 20px;
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 15px;
        border-radius: 20px;
    }

    .main__arrow1,
    .main__arrow2 {
        display: none
    }

    .main__text + .main__text {
        margin-top: 10px;
    }

    /*Room*/
    .room__card2 + .room__card2,
    .room__card3 + .room__card3 {
        margin-top: 10px;
    }

    .room__wrap + .room__wrap {
        margin-top: 10px;
    }

    .room__card3 > img {
        right: -22px;
    }

    .room__card2 > img {
        right: -190px;
    }

    .room__card {
        font-size: 26px;
    }

    .room__text {
        font-size: 16px;
        font-weight: normal;
        padding: 15px 15px 5px 15px;
    }

    /*Stage*/
    .slick-dots > li > button {
        width: 67px;
        font-size: 15px;
        padding: 0;
    }

    .stage__text {
        font-size: 16px;
    }

    .stage__img-subtitle {
        bottom: -30px;
    }

    .slick-next {
        right: -30px;
    }

    .slick-prev {
        left: -24px;
    }

    .stage__card {
        padding-bottom: 25px;
    }

    /*Quality*/
    .quality__wrap {
        margin-top: 35px;
        padding-bottom: 50px;
    }

    .quality__plus {
        display: none;
    }

    .quality__img-subtitle {
        font-size: 60px;
        top: -57px;
        width: inherit
    }

    .quality__text {
        font-size: 16px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .quality__text:last-child::after {
        display: none
    }

    .quality__machine {
        display: none;
    }

    /*Bonus*/
    .bonus__item {
        width: 90%;
        max-width: 350px;
        height: 400px;
        padding: 15px 20px;
    }

    .bonus__title {
        font-size: 22px;
    }

    /*Contact us*/
    .contact-us__wrap {
        width: 100%;
    }

    .foreman {
        display: none;
    }

    .section-contact-us {

        height: 590px;
    }

    .contact-us__wrap {

        padding: 35px 28px;
        min-height: 340px;
    }

    .contact-us__title {
        font-size: 20px;
    }

    .btn--form {
        margin-top: 12px;
        font-size: 18px;
        padding: 16px 24px;
    }

    .contact-us__input-phone {
        font-size: 16px;
        width: 230px;
        margin-top: 0;
    }

    .footer {
        padding-bottom: 10px;
    }

    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer__item {
        width: 100%;
    }

    .footer__item.footer__item--logo {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 20px;
    }

    .footer__item.footer__item3 {

        -webkit-box-align: start;

        -ms-flex-align: start;

        align-items: flex-start;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .footer__item.footer__item3 {
        margin-top: 20px
    }

    .btn-primary.btn-primary--footer {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .footer__btn-subtitle {
        text-align: left
    }

    /*Popup*/
    .popup__title {
        font-size: 24px;
    }

    .popup__text {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .btn-popup {
        font-size: 20px;
        margin-top: 10px;
    }

    .popup__content {
        width: 300px;
        padding: 20px 20px;
        margin-top: 15px;
        height: auto;
    }

    .popup__content.popup__content4 {
        min-height: 420px;
    }

    input.popup__input {
        min-width: 260px;
        padding: 12px 15px;
        margin-bottom: 10px;
    }

    .popup__body {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    input::-webkit-input-placeholder {
        font-size: 15px;
    }

    input:-ms-input-placeholder {
        font-size: 15px;
    }

    input::placeholder {
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .section__title {
        font-size: 22px;
    }

    /*main*/

    .mobile-phone {
        font-size: 24px;
    }

    .section-main {
        height: 700px;
        background: url(../img/main/bg-mobile.jpg) 49% 0% no-repeat;
        background-size: 1100px;
    }

    .main__title {
        font-size: 32px;
    }

    .main__desc {
        font-size: 18px;
    }

    .main__text {
        display: none;
    }

    .main__soc {
        margin-top: 15px;
    }

    .room__wrap {
        padding: 0;
    }

    .slick-dots > li > button {
        width: 62px;
        font-size: 13px;
    }

    .quality__title {
        font-size: 22px;
    }

    /*Bonus*/

    .contact-us__input-phone {
        font-size: 16px;
        margin-left: 0;
        width: 230px;
    }

    .contact-us__input-phone {
        margin-top: 5px;
    }

    .contact-us__wrap {
        min-height: 370px;
    }

    /*Popup*/
    .popup__content {
        width: 290px;
        height: auto;
        padding: 15px;
        margin-top: 15px;
    }

    .popup__content.popup__content4 {
        min-height: 350px;
    }

    .popup__title {
        font-size: 20px;
    }

    .popup__text {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .btn-popup {
        font-size: 18px;
    }

    .btn-popup {
        margin-top: 0;
    }

    input.popup__input {
        min-width: 260px;
        padding: 10px 13px;
        margin-bottom: 7px;
    }
}