@font-face {
    font-family: 'Recoleta Regular';
    src: url('/fonts/Recoleta-Regular.woff2') format('woff2'),
        url('/fonts/Recoleta-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro SemiBold', sans-serif;
    src: url('/fonts/SofiaProSemiBold.woff2') format('woff2'),
        url('/fonts/SofiaProSemiBold.woff') format('woff');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro Medium', sans-serif;
    src: url('/fonts/SofiaProMedium.woff2') format('woff2'),
        url('/fonts/SofiaProMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro Bold', sans-serif;
    src: url('/fonts/SofiaProBold.woff2') format('woff2'),
        url('/fonts/SofiaProBold.woff') format('woff');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro Light', sans-serif;
    src: url('/fonts/SofiaProLight.woff2') format('woff2'),
        url('/fonts/SofiaProLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro Regular', sans-serif;
    src: url('/fonts/SofiaProRegular.woff2') format('woff2'),
        url('/fonts/SofiaProRegular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
    vertical-align: baseline;
    outline: none;
}

/* universal classes */
.full-width {
    width: 100%;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ecc0a0c9;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background-color: #ececec;
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
}

.wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* animations */

.alternate-reverse div {
    -webkit-animation: shake 3s linear alternate-reverse infinite;
    animation: shake 3s linear alternate-reverse infinite;
}

@-webkit-keyframes shake {
    100% {
        -webkit-transform: translateX(-10px);
    }
}

@keyframes shake {
    100% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

#container {
    width: 300px;
    height: 300px;
}

/* menu-box START */

header .menu-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    z-index: 2;
}

.menu-box.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
}

.menu-btn {
    left: 95%;
    top: 20px;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #222222;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -ms-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn span:nth-of-type(3) {
    -webkit-transform: translate(-50%, 0%) rotate(-45deg);
    -ms-transform: translate(-50%, 0%) rotate(-45deg);
    transform: translate(-50%, 0%) rotate(-45deg);
}
.sidebar{
	width: 40px;
	position: fixed;
	top: calc(50% - 92px);
	right: 0px;
	background: rgba(225, 203, 187, 0.7);
	display: flex;
	align-items: center;
	border-top: 1px #000 solid;
	border-left: 1px #000 solid;
}
.sidebar li{
	padding: 10px 10px;
	border-bottom: 1px #000 solid;
}
.sidebar img{
	max-height: 20px;
	display: block;
	margin: 0 auto;
	filter:  brightness(0) invert(0);
	width: auto;
	max-width: 100%;
}

@media(min-width:200px) {
    .menu-box-row {
        height: 622px;
    }

    .menu-box-col-1 {
        display: none;
        background: rgba(36, 36, 36, 0.65);
    }

    .menu-box-col-2 {
        position: relative;
        width: 100%;
        padding: 0 1em;
        background: rgb(247 246 246 / 99%);
        overflow-y: scroll;
    }

    .menu-box-body {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    .menu-box-logo {
        margin: 0 auto;
    }

    .content-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .content-col {
        padding: 5px 10px;
    }

    .menu-box-actions-row {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: -27px 0 0px 0;
    }

    .menu-box-actions-row div {
        margin: 10px 0;
    }

    .tabs .content {
        height: 360px;
        margin-top: 30px;
        background-color: rgba(225, 203, 187, 0.781);
        border-radius: 8px;
        padding: 20px;
        overflow-y: scroll;
    }

    .menu-box-actions-row div button {
        width: 100%;
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        color: #22372B;
        padding: 1em 1.1em;
        border-radius: 8px;
        background-color: rgba(34, 55, 43, 0);
        cursor: pointer;
    }

    .menu-box-actions-row div button.menu-box-actions-active {
        width: 100%;
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        color: #ffffff;
        padding: 1em 2.5em;
        border-radius: 8px;
        background-color: rgba(34, 55, 43, 1);
        cursor: pointer;
    }
}


@media(min-width:720px) {
    .menu-box-row {
        height: auto;
    }
}

@media(max-width:1024px) {
    .menu-box-actions-row {
        flex-direction: column;
        margin-top: 9px;
    }

    .menu-box-actions-row div {
        width: 100%;
    }

    .menu-box-actions-text {
        font-size: 18px;
    }

    .content-col-title {
        border-bottom: 1px solid #D0BEB2;
        padding-bottom: 7px;
    }

    .content-col {
        width: 100%;
    }

    .content-col-item {
        padding: 5px 0;
    }

    .arr-1,
    .arr-2,
    .arr-3,
    .arr-4,
    .arr-5,
    .arr-6,
    .arr-7 {
        float: right;
        transform: rotate(180deg);
        zoom: 1.4;
    }

    .arr-1.active,
    .arr-2.active,
    .arr-3.active,
    .arr-4.active,
    .arr-5.active,
    .arr-6.active,
    .arr-7.active {
        transform: rotate(0deg);
    }
}

@media(min-width:1025px) {
    .menu-box-actions-row {
        flex-direction: row;
        margin-top: 9px;
    }

    .menu-box-actions-text {
        font-size: 14px;
    }

    .menu-box-actions-row div button {
        font-size: 14px;
        padding: 1.7em 2.5em;
    }

    .menu-box-actions-row div button.menu-box-actions-active {
        font-size: 14px;
        padding: 1.7em 2.5em;
    }

    .content-col-title {
        border-bottom: none;
        padding: 0;
    }

    .content-col {
        width: auto;
    }

    ul li label svg {
        display: none;
    }
}

@media(min-width:1200px) {
    .menu-box-col-1 {
        display: block;
        width: 42vw;
    }

    .menu-box-col-2 {
        position: relative;
        width: 100%;
        padding: 0 2em;
    }

    .tabs .content {
        height: auto;
    }

}

.menu-box-row {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.menu-box-col-1 img {
    opacity: 0;
    width: 100%;
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
}


.menu-box-logo a img {
    height: 78px;
    margin: -30px 0 30px 0;
}

.menu-box-actions-text {
    font-family: 'Sofia Pro Medium', sans-serif;
    line-height: 150%;
    text-align: center;
    color: #22372B;
}



.menu-box-actions-row div button:hover {
    -webkit-box-shadow: -7px 7px 10px 0px rgba(227, 227, 227, 1);
    box-shadow: -7px 7px 10px 0px rgba(227, 227, 227, 1);
    border-radius: 8px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s
}

.menu-box-actions-active {
    background: #22372B;
    border-radius: 8px;
    color: #FFF;
}

/* tabs START */

.menu-box-tabs-block {
    width: 100%;
}

.menu-box-tabs-block {
    margin-bottom: 45px;
}

.tabs {
    width: 100%;
}

.tabs input[name=tab-control] {
    display: none;
}

.tabs .content section h2,
.tabs ul li label {
    font-weight: bold;
    font-size: 18px;
}

.tabs ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.tabs ul li {
    box-sizing: border-box;
    flex: 1;
    padding: 0 10px;
    text-align: left;
}

.tabs ul li label {
    font-family: 'Sofia Pro Regular', sans-serif;
    font-size: 13px;
    line-height: 150%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #929daf;
    padding: 5px auto;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tabs ul li label br {
    display: none;
}

.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
    outline: 0;
    color: #bec5cf;
    text-decoration: underline;
}

.tabs .content {
    font-family: 'Sofia Pro Light', sans-serif;
    margin-top: 30px;
    background-color: rgba(225, 203, 187, 0.7);
    border-radius: 8px;
    padding: 20px;
}

.tabs .content section {
    display: none;
    -webkit-animation-name: content;
    animation-name: content;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    line-height: 1.4;
}

.tabs .content section h2 {
    color: #428BFF;
    display: none;
}

.tabs .content section h2::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #428BFF;
    margin-top: 5px;
    left: 1px;
}

.tabs input[name=tab-control]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(1):checked~.slider {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.tabs input[name=tab-control]:nth-of-type(1):checked~.content>section:nth-child(1) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(2):checked~.slider {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.tabs input[name=tab-control]:nth-of-type(2):checked~.content>section:nth-child(2) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(3):checked~.slider {
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
}

.tabs input[name=tab-control]:nth-of-type(3):checked~.content>section:nth-child(3) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(4):checked~ul>li:nth-child(4)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(4):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(4):checked~.content>section:nth-child(4) {
    display: block;
}

/* 5 */
.tabs input[name=tab-control]:nth-of-type(5):checked~ul>li:nth-child(5)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(5):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(5):checked~.content>section:nth-child(5) {
    display: block;
}

/* 6 */
.tabs input[name=tab-control]:nth-of-type(6):checked~ul>li:nth-child(6)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(6):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(6):checked~.content>section:nth-child(6) {
    display: block;
}

/* 7 */
.tabs input[name=tab-control]:nth-of-type(7):checked~ul>li:nth-child(7)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(7):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(7):checked~.content>section:nth-child(7) {
    display: block;
}

@-webkit-keyframes content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}


.content-col-title a {
    font-weight: 600;
    font-family: 'Sofia Pro Medium', sans-serif;
    font-size: 14px;
    line-height: 125%;
    color: #22372B;
    text-decoration: none;
}

.content-col-title a:hover {
    text-decoration: underline;
}

.content-col-item a {
    font-family: 'Sofia Pro Light', sans-serif;
    font-size: 14px;
    line-height: 125%;
    color: #22372B;
    text-decoration: none;
}

.content-col-item a:hover {
    text-decoration: underline;
}

.content-row-social-block:before {
    width: 300px;
    border-top: 1px solid rgba(34, 55, 43, 0.5);
}

.content-row-social-block {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.content-row-social-block a {
    border-top: 1px solid rgba(34, 55, 43, 0.5);
    padding: 8px 5px;
}

.content-row-social-block a svg {
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.content-row-social-block a svg:hover {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

@media (max-width:1024px) {
    .menu-box-col-2 {
        position: relative;
        width: 100%;
        padding: 0 2em;
        background: rgb(247 246 246 / 99%);
        /* overflow-y: scroll; */
    }

    .menu-box-logo a img {
        height: 52px;
        margin: -20px 0 0px 0;
    }

    .tabs ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .tabs ul li {
        width: 100%;
        border-bottom: 1px solid rgba(34, 55, 43, 0.26);
        padding: 0;
    }

    .tabs ul li label {
        width: 100%;
        font-size: 18px;
        line-height: 150%;
        font-weight: 400;
        color: #22372B;
        padding: 13px 0;
    }

    .tabs input[name=tab-control]:nth-of-type(1):checked~ul>li:nth-child(1)>label,
    .tabs input[name=tab-control]:nth-of-type(2):checked~ul>li:nth-child(2)>label,
    .tabs input[name=tab-control]:nth-of-type(3):checked~ul>li:nth-child(3)>label,
    .tabs input[name=tab-control]:nth-of-type(4):checked~ul>li:nth-child(4)>label,
    .tabs input[name=tab-control]:nth-of-type(5):checked~ul>li:nth-child(5)>label,
    .tabs input[name=tab-control]:nth-of-type(6):checked~ul>li:nth-child(6)>label,
    .tabs input[name=tab-control]:nth-of-type(7):checked~ul>li:nth-child(7)>label {
        cursor: default;
        transform: scale(1);
    }

    .content {
        display: none;
        position: absolute;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(1):checked~.content.active {
        height: auto;
        display: block;
        margin: -340px 30px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(2):checked~.content.active {
        display: block;
        position: relative;
        margin: -282px 0px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(3):checked~.content.active {
        height: auto;
        display: block;
        margin: -229px 30px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(4):checked~.content.active {
        height: auto;
        display: block;
        margin: -174px 30px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(5):checked~.content.active {
        height: auto;
        display: block;
        margin: -120px 30px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(6):checked~.content.active {
        height: auto;
        display: block;
        margin: -66px 30px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(7):checked~.content.active {
        height: auto;
        display: block;
        margin: -13px 30px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }
}

@media (min-width: 675px) and (max-width: 1024px) {
    .tabs input[name=tab-control]:nth-of-type(2):checked~.content.activeХ {
        width: 98vw;
    }
}

/* tabs END */
/* menu-box END */

/* header */
@media (min-width:200px) {
    .header-menu-desktop {
        display: none;
    }

    .header-menu-desktop img {
        width: 163px;
    }

    .header-menu-desktop nav {
        width: 300px;
    }

    .header-menu-desktop nav ul {

        display: flex;

        justify-content: space-between;
    }

    .header-menu-desktop nav ul li a {
        font-family: 'Sofia Pro Regular', sans-serif;
        line-height: 15px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #ffffff;
        text-decoration: none;
    }

    .header-menu-mob {
        height: 103px;

        display: flex;


        flex-direction: column;


        align-items: center;

        justify-content: space-between;
        width: 100%;
        background-color: rgba(217, 200, 188, 0.9);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .header-menu-mob .logo {
        height: 50px;
        text-align: center;
    }

    .header-menu-mob .logo img {
        width: 60%;
    }

    .header-menu-mob .horizont-line {
        width: 90%;
        border-top: 1px solid rgba(19, 22, 24, 0.09);
    }

    .header-menu-mob .vertical-line-nav {
        display: none;
        border-left: 1px solid rgba(19, 22, 24, 0.09)
    }

    .header-menu-mob nav {
        width: 100%;
    }

    .header-menu-mob .display-mobile {
        display: none;
    }

    .header-menu-mob .menu ul {
        display: flex;
        justify-content: space-around;
        padding: 7px 0 0px 0;
    }

    .header-menu-mob .menu ul li {
        list-style: none;
    }

    .header-menu-mob .menu ul li a {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 12px;
        line-height: 14px;
        text-align: center;
        letter-spacing: 0.085em;
        text-transform: uppercase;
        color: rgba(19, 22, 24, 0.9);
        text-decoration: none;
    }

    .header-menu-mob .menu ul li a div img {
        width: 20px;
    }

    .header-menu-descktop {
        display: none;
    }

    .menu-btn-1 {
        font-family: 'Sofia Pro Regular', sans-serif;
        line-height: 15px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;

        display: flex;
        z-index: 10000000;
    }

    .header-banner {
        height: 622px;
        position: relative;
        /*z-index: -1;*/
        background-attachment: fixed;
        background-position: center center;
        background-size: cover;
    }

    .header-banner picture {
        width: 100%;
    }

    .header-banner picture img {
        width: 100%;
        height: 622px;
        -o-object-fit: cover;
        object-fit: cover;
		object-position: right;
    }

    .header-banner-text {
        position: absolute;
        top: 50%;
        left: 4%;
        z-index: 1;
    }

    .header-sup-title p {
        font-family: 'Recoleta Regular';
        font-size: 16px;
        line-height: 116%;
        letter-spacing: 6px;
        color: #FFFFFF;
        padding: 0 0 10px 0;
    }

    .header-title h1 {
        font-family: 'Recoleta Regular';
        font-size: 36px;
        line-height: 100%;
        font-weight: 400;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    .header-llinks-box {
        padding: 10px 0 0 60px;
    }

    .header-llinks-box p a {
        font-family: 'Sofia Pro Light', sans-serif;
        font-size: 14px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        padding: 0 4px;
    }
}

@media (min-width:391px) {
    .header-menu-mob {
        height: 80px;

        flex-direction: row;

        align-items: center;
        padding: 0;
    }

    .header-banner picture {
        height: 622px;
    }


    .header-menu-mob .logo {
        text-align: center;
        margin-left: 6%;
		width: 25%;
    }

    .header-menu-mob .horizont-line {
        display: none;
    }

    .header-menu-mob nav {
        width: 100%;
        padding: 0 0 0 6%;
		width: 50%;
    }

    .header-menu-mob .logo img {
        width: 100%;
    }

    .header-menu-mob .menu ul {

        display: flex;

        justify-content: space-around;
        padding: 0;
    }
}

@media (min-width:540px) {
    .header-menu-mob .display-mobile {
        display: block;
    }

    .header-banner {
        height: 923px;
    }

    .header-banner picture img {
        width: 100%;
        height: 923px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .header-menu-mob .vertical-line-nav {
        display: block;
    }

    .header-sup-title p {
        font-size: 24px;
    }

    .header-title h1 {
        font-size: 42px;
    }
}

@media (min-width:768px) {
    .header-menu-desktop {

        display: flex;

        justify-content: space-between;

        align-items: center;
        padding-top: 30px;
        max-width: 1920px;
        position: absolute;
        width: 100%;
        height: 95px;
        z-index: 111111;
    }

    .header-menu-mob {
        display: none;
    }

    .header-menu-desktop img {
        width: 236px;
    }

    .header-menu-desktop .logo {
        padding-left: 60px;
    }

    .header-menu-desktop nav {
        padding-right: 60px;
    }

    .header-menu-desktop nav ul li a {
        font-size: 24px;
        color: #131618;
    }

    .header-menu-desktop nav ul li a:hover {
        text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
        transition: 0.2s;
    }


    .menu-btn-1 {
        font-size: 24px;
        color: #131618;
    }

    .menu-btn-1:hover {
        text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
        transition: 0.2s;
    }

}

@media (min-width:1024px) {
    .header-sup-title p {
        font-size: 38px;
        color: #22372B;
    }

    .header-title h1 {
        width: 742px;
        font-size: 97px;
        color: #22372B;
    }

    .header-sup-title p {
        font-size: 38px;
        margin-bottom: 45px;
    }

    .header-banner-text {
        top: 34%;
    }

}

@media (min-width:1440px) {
    .header-banner {
        height: 920px;
    }

    .header-banner picture img {
        height: 920px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .header-banner-text {
        top: 39%;
        left: 12%;
    }

    .header-sup-title p {
        width: 62%;
        margin-bottom: 45px;
    }

    .header-title h1 {
        font-size: 97px;
        line-height: 116%;
        width: 820px;
    }
}

/* all sections */
@media (min-width:200px) {

    /* section-1 */
    .section-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        margin-bottom: 45px;
    }

    .section-1-img {
        padding: 0;
    }

    .section-1-title h2 {
        font-family: 'Recoleta Regular';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #22372B;
        padding: 0 0 40px 0;
    }


    .section-1-title img {
        width: 114px;
        margin: 0px 0 -26px 0;
    }

    .section-1-text {
        font-family: 'Sofia Pro Light', sans-serif;
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        padding-bottom: 40px;

    }

    .section-1-text p {
        margin-bottom: 15px;
    }

    .section-1-btn>a {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #22372B;
        padding: 11px 55px 11px 0;
        text-decoration: none;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    /* section-2 */
    .section-2 {
        display: flex;
        flex-direction: column;
        background: #FCFCFC;
        /* padding-bottom: 100px; */
    }

    .section-2-body {
        width: 100%;
        margin-top: 50px;
    }

    .section-2-title h2 {
        font-family: 'Recoleta Regular';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #22372B;
        padding: 0 0 40px 0;
    }

    .section-2-link {
        padding-bottom: 50px;
    }

    .section-2-link-text {
        font-family: 'Recoleta Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 37px;
        text-align: center;
        letter-spacing: 0.035em;
        color: #000000;
    }

    .section-2-link a {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        display: flex;
        justify-content: center;
        text-decoration: none;
    }

    .section-2-link-arr {
        padding-right: 20px;
    }

    .section-2 .arrow-hover {
        cursor: pointer;
        position: relative;
        width: 35px;
        height: 50px;
        margin: 0 0 0 0;
    }

    .section-2 .arrow-hover div {
        position: relative;
        top: 20px;
        width: 35px;
        height: 1px;
        background: #000000;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        left: 0;
        display: block;
    }

    .section-2 .arrow-hover div::after {
        content: '';
        position: absolute;
        width: 7px;
        height: 2px;
        top: -2px;
        right: -3px;
        background: #000000;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .section-2 .arrow-hover div::before {
        content: '';
        position: absolute;
        width: 7px;
        height: 2px;
        top: 1px;
        right: -3px;
        background: #000000;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .section-2-slider-box {
        max-width: 1440px;
        margin: 0 auto;
        /* padding: 0 15px; */
    }

    /* section-3 */
    .section-3 {
        display: flex;
        flex-direction: column;
        background: #F5F5F5;
        text-align: center;
    }

    .section-3-body {
        padding: 50px 15px;
        text-align: center;
    }

    .section-3-title h3 {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 35px;
        text-align: center;
        color: #22372B;
        padding: 15px;
    }

    .section-3-text p {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        text-align: center;
        letter-spacing: 0.035em;
        color: #131618;
        padding: 15px;
    }

    .section-3-link {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        padding-top: 20px;
    }

    .section-3-chat {
        padding: 20px 50px;
        text-align: left;
    }

    .section-3-chat a {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        color: #22372B;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 0 40px 0;
        margin: 20px 0;
        text-decoration: none;
        background: rgba(0, 0, 0, 0);
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    /* section-4 */
    .section-4 {
        padding: 50px 0;
        background: #FCFCFC;
    }

    .section-4-body {
        max-width: 1250px;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 0 15px;
        margin: 0 auto;
    }

    .section-4-title h2 {
        font-family: 'Recoleta Regular';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #22372B;
        padding: 0 0 40px 0;
        text-transform: capitalize;
    }

    .section-4-text {
        max-width: 940px;
        width: 100%;
    }

    .section-4-text p,
    .section-4-item-box {
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 27px;
        text-align: center;
        letter-spacing: 0.035em;
        color: #131618;
        padding-bottom: 45px;
    }

    .section-4-item-box {
        display: flex;
        flex-wrap: wrap;
    }

    .section-4-item {
        max-width: 350px;
        width: 100%;
        padding: 25px 50px;
        text-align: left;
    }

    .section-4-item span {
        position: relative;
    }

    .section-4-item span::before {
        content: "";
        position: absolute;
        top: 4px;
        left: -25px;
        width: 12px;
        height: 12px;
        background-color: #000000;
    }

    /* section-5 */

    .section-5-body-btn-block {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .section-5 {
        padding: 0 15px;
    }

    .section-5-body {
        display: flex;
        flex-direction: column;
    }

    .section-5-item {
        margin-bottom: 50px;
    }

    .section-5-item-title h3 {
        margin-bottom: 45px;
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 28px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #000000;
    }
    .section-5-item-text{
        padding-bottom: 20px;
        border-bottom: 2px solid #000000;
    }
    .section-5-item-text p {
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #000000;
    }

    /* section-6 */
    .section-6 {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
        padding: 0;

    }

    .section-6-body {
        width: 100%;
        padding: 50px 15px;
        background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("/images/Interior.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
		box-sizing: border-box;
    }

    .section-6-title h2 {
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 35px;
        line-height: 46px;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-6-text {
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.035em;
    }

    .section-6-text p {
        color: #131618;
        margin-bottom: 25px;
    }

    .section-6-text ul {
        margin-left: 28px;
    }

    .section-6-text ul li {
        position: relative;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-6-text ul li::before {
        content: "";
        position: absolute;
        top: 4px;
        left: -25px;
        width: 12px;
        height: 12px;
        background-color: #000000;
    }

    /* section-7  */
    .section-7 {
        margin-bottom: 50px;
    }

    .section-7-body {
        padding: 0 15px;
    }

    .section-7-title h2 {
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 35px;
        line-height: 46px;
        text-transform: capitalize;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-7-text p {
        font-family: 'Sofia Pro Light', sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        margin-bottom: 25px;
    }

    /* section-8 */
    .section-8 {
        margin-bottom: 50px;
    }

    .section-8-img {
        background-image: url("/images/background_image.jpeg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        height: 324px;
        z-index: 0;
        margin-bottom: 50px;
    }

    .section-8-img picture img {
        position: absolute;
        height: 324px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 0;
    }
    .section-8-title {
        position: absolute;
        padding-top: 200px;
        z-index: 1;
    }

    .section-8-title h2 {
        font-family: 'Recoleta Regular';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #FFFFFF;
        padding: 15px;
    }

    .section-8-body-row {
        display: flex;
        flex-direction: column;
    }

    .section-8-body-col-1,
    .section-8-body-col-2 {
        flex: 50%;
        margin-bottom: 25px;
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 24px;
        line-height: 32px;
        color: #22372B;
    }

    .section-8-body-col-2 {
        padding: 0 15px;
    }

    .section-8-body-col-1 iframe {
        width: 100%;
        height: 484px;
        object-fit: cover;
    }

    .section-8-body-col-2 h3 {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 35px;
        line-height: 46px;
        font-style: normal;
        font-weight: 400;
        padding-bottom: 40px;
    }

    .section-8-body-col-2 p {
        font-size: 16px;
        margin-bottom: 20px;
        letter-spacing: 0.035em;
    }

    .section-8-body-col-2 a {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #22372B;
        text-decoration: none;
        padding: 11px 55px 11px 0;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    /* section-9 */
    .section-9 {
        display: flex;
        flex-direction: column;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .section-9-body {
        display: flex;
        flex-direction: column;
    }

    .section-9-img {
        text-align: center;
        margin-bottom: 45px;
    }

    .section-9-img img {
        zoom: 130%;
    }

    .section-9-question {
        margin-bottom: 45px;
    }

    .section-9-profiles {
        text-align: center;
        margin-top: 20px;
    }

    .section-9-profiles img {
        width: 150px;
    }

    .section-9-question p {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 24px;
        line-height: 110%;
        text-transform: uppercase;
        color: #22372B;
        text-align: center;
    }

    .section-9-chat {
        padding: 20px 50px;
        text-align: center;
    }

    .section-9-chat a {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        color: #22372B;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 0 40px 0;
        margin: 20px 0;
        text-decoration: none;
        background: rgba(0, 0, 0, 0);
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }


    .section-9-form-submit-arrow div {
        position: relative;
        top: 20px;
        width: 100%;
        height: 2px;
        background: #22372B;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        left: 0;
        display: block;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-9-form-submit-arrow div::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: -3px;
        right: -3px;
        background: #22372B;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .section-9-form-submit-arrow div::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: 3px;
        right: -3px;
        background: #22372B;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }


    /* section-10-form */
    .section-10-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        padding: 100px 15px;
    }

    .section-10-form-title {
        margin-bottom: 40px;
    }

    .section-10-form-title h2 {
        font-family: 'Recoleta Regular';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #FFFFFF;
    }

    .section-10-form-box {
        width: 100%;
        display: flex;
    }

    .section-10-form-box form {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
        width: 100%;
    }

    .section-10-form-body-row {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
    }

    .section-10-form-body-col-1 {
        width: 100%;
    }

    .section-10-form-body-col-2 {
        width: 100%;
    }

    .section-10-form-group-1 {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .section-10-form-group-1 div {
        margin: 7px 0;
    }

    .section-10-form-group-2 {
        display: flex;
        flex-direction: column;
        border: 1px solid #FFFFFF;
        padding: 20px;
        margin-bottom: 25px;
    }

    .section-10-form-group-1 input {
        width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(252, 252, 252, 1);
        background: rgba(255, 255, 255, 0);
        padding: 0.5em 0;
        color: white;
        font-size: 18px;
    }

    .section-10-form-group-2 input {
        background: rgba(255, 255, 255, 0);
    }

    .section-10-form-group-1 input::-webkit-input-placeholder {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-1 input::-moz-placeholder {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-1 input:-moz-placeholder {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-1 input:-ms-input-placeholder {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-2-title {
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-10-form-group-2-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-10-form-group-2-col div {
        margin-bottom: 15px;
    }

    .section-10-form-group-2-row input:checked,
    .section-10-form-group-2-row input:not(:checked) {
        position: absolute;
        left: -9999px;
    }

    .section-10-form-group-2-row input:checked+label,
    .section-10-form-group-2-row input:not(:checked)+label {
        display: inline-block;
        position: relative;
        padding-left: 39px;
        line-height: 20px;
        cursor: pointer;
    }

    .section-10-form-group-2-row input:checked+label:before,
    .section-10-form-group-2-row input:not(:checked)+label:before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 18px;
        height: 18px;
        border: 1px solid #dddddd;
        background: rgba(255, 255, 255, 0);
    }

    .section-10-form-group-2-row input:checked+label:after,
    .section-10-form-group-2-row input:not(:checked)+label:after {
        content: "";
        position: absolute;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        left: 3px;
        top: 3px;
        width: 10px;
        height: 8px;
        border-radius: 1px;
        border-left: 4px solid #d3d3d3;
        border-bottom: 4px solid #d3d3d3;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .section-10-form-group-2-row input:not(:checked)+label:after {
        opacity: 0;
    }

    .section-10-form-group-2-row input:checked+label:after {
        opacity: 1;
    }

    .section-10-form-submit {
        text-align: center;
    }

    .section-10-form-submit a {
        width: 100%;
        border: none;
        font-size: 24px;
        line-height: 110%;
        text-align: center;
        background: rgba(255, 255, 255, 0);
        color: #FFFFFF;
        text-decoration: none;
    }

    .section-5-body-btn-block .white {
        font-family: 'Sofia Pro Regular', sans-serif;
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        color: #FFFFFF;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 60px 40px 60px;
        margin: 20px 0;
        text-decoration: none;
        background: rgba(0, 0, 0, 0);
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div {
        position: relative;
        top: 20px;
        width: 100%;
        height: 2px;
        background: #FFFFFF;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        left: 0;
        display: block;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: -3px;
        right: -3px;
        background: #FFFFFF;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: 3px;
        right: -3px;
        background: #FFFFFF;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

}

@media (min-width:540px) {
    .section-1-img-lottie {
        width: 400px;
    }

    .section-5-body-links-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}



@media (min-width:768px) {

    .section-8-img {
        height: 811px;
    }

    .section-8-img picture img {
        height: 811px;
    }

    .section-8-title {
        padding-top: 631px;
    }

    .section-9-body {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .section-10-form {
        padding: 100px 40px;
    }

    .section-10-form-group-2-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .section-10-form-group-2 {
        padding: 50px 20px;
    }

    .section-10-form-group-2-title {
        text-align: left;
        margin-left: 35px;
    }

    .section-10-form-group-2-row div {
        padding-bottom: 25px;
    }

}

@media (min-width:1024px) {
    .section-1 {
        flex-direction: row;
        justify-content: space-around;
        padding: 150px 100px;
        margin-bottom: 0;
    }

    .section-1-img {
        width: 45%;
    }

    .section-1-img-lottie {
        width: 737px;
        margin: 0px 0 0 -147px;
    }

    .section-1-body {
        width: 55%;
        padding-left: 10vw;
        align-self: flex-start;
    }

    .section-1-title h2 {
        font-size: 90px;
        padding: 0 0 100px 0;
        text-align: left;
    }

    .section-1-title img {
        width: 200px;
        margin: 0px 0 -54px 0;
    }

    .section-2-body {
        width: 100%;
    }

    .section-2-title h2 {
        font-size: 90px;
        padding: 0 0 50px 0;
    }

    .section-2-text {
        text-align: left;
        font-size: 90px;
        padding-left: 212px;
    }
    .section-3{
        margin-bottom: 100px;
    }
    .section-4-title h2 {
        font-size: 90px;
        padding: 0 0 50px 0;
    }

    .section-5 {
        margin: 70px 0;
    }

    .section-5-body {
        flex-direction: row;
    }

    .section-5-body-btn-block .white {
        text-align: left;
    }

    .section-5-body-btn-block a {
        padding: 1.5em;
    }

    .section-5-body-btn-block {
        padding: 0 40px;
    }


    .section-5-body-btn-block .green {
        padding: 1.5em;
    }

    .section-5-item {
        padding: 0 40px;
    }

    .section-6 {
        height: 715px;
        background-image: url("/images/Interior_1.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        margin-bottom: 150px;
    }

    .section-6-body {
        height: 356px;
        max-width: 1040px;
        width: 100%;
        padding: 25px 50px;
        margin: auto auto;
        background: rgba(255, 255, 255, 0.8);
    }

    .section-5-body-new {
        height: auto;
        max-width: 500px;
        width: 100%;
        padding: 25px 50px;
        margin: auto auto;
        background: rgba(255, 255, 255, 0.8);
    }

    .section-7 {
        margin-bottom: 150px;
        padding: 0 50px;
    }

    .section-7-body {
        width: 80%;
        margin: 0 auto;
        padding: 50px;
        border: 1px solid #D9C8BC;
    }
    .section-8-body-row {
        flex-direction: row;
        align-items: center;
        padding-bottom: 100px;
    }

    .section-8-body-col-2 h3 {
        font-size: 35px;
    }

    .section-8-body-col-2 {
        padding: 0 1em;
    }

    .section-8-title {
        padding-top: 400px;
        padding-left: 200px;
    }

    .section-8-title h2 {
        width: 750px;
        text-align: left;
        font-size: 90px;
    }

    .section-9 {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .section-9-body {
        width: 60%;
    }

    .section-9-img img {
        width: 250px;
        zoom: 0;
    }

    .section-9-profiles img {
        width: 200px;
    }

    .section-9-chat {
        width: 300px;
        text-align: left;
    }

    .section-9-form-submit-arrow div {
        left: 0;
        max-width: 390px;
    }

    .section-10-form-title h2 {
        font-size: 90px;
        font-weight: 400;
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div {
        left: 0;
    }

    .section-10-form {
        padding-bottom: 50px;
    }

    .section-10-form-title h2 {
        font-size: 90px;
    }

    .section-10-form-body-row {
        flex-direction: row;
    }

    .section-10-form-group-1 {
        margin-bottom: 70px;
    }

    .section-10-form-group-2 {
        padding: 50px 5px 20px;
    }

    .section-10-form-submit>a {
        background: #cfcfcf;
        width: 530px;
        padding: 40px 60px;
        border: 1px solid #f51717;
    }

    .section-10-form-submit>a .section-10-form-submit-arrow div {
        width: 277px;
    }

    .section-10-form-submit {
        padding-left: 0;
    }

}

@media (min-width:1200px) {
    .section-1-btn>a:hover {
        -webkit-box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        padding-left: 55px;
    }

    .section-5-body-btn-block .white:hover .section-10-form-submit-arrow div {
        width: 80%;
        transition: .4s;
    }

    .section-5-body-btn-block a:hover {
        border-radius: 8px;
        border-color: rgba(19, 22, 24, 0);
        transition: .4s;
        transition-duration: .4s;
    }

    .section-5-body-btn-block .bs:hover {
        box-shadow: -75px 90px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        border-color: rgba(19, 22, 24, 0);
        transition: .4s;
        transition-duration: .4s;
    }


    .section-5-body-btn-block .green:hover {
        background: radial-gradient(85.12% 324.63% at 107.24% -7.85%, #315440 0%, #22372B 100%);
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
    }

    .section-8-body-col-2 {
        padding: 0 4em;
    }

    .section-7-body-title h2 {
        font-size: 90px;
    }

    .section-8-body-col-2 a:hover {
        -webkit-box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        padding-left: 55px;
    }

    .section-9-chat .white:hover .section-9-form-submit-arrow div,
    .section-9-chat .white:hover .section-9-form-submit-arrow div::before,
    .section-9-chat .white:hover .section-9-form-submit-arrow div::after {
        background: #355F47;
    }

    .section-9-chat:hover .section-9-form-submit-arrow div {
        width: 80%;
        transition: .4s;
    }

    .section-3-chat:hover .section-9-form-submit-arrow div {
        width: 80%;
        transition: .4s;
    }

    .section-10-form-title h2 {
        font-size: 90px;
    }

}

@media (min-width:1440px) {
    .section-1 {
        padding: 150px;
    }

    .section-1-title img {
        width: 250px;
    }

    .section-1-img-lottie {
        width: 737px;
        margin: 0px 0 0 -49px;
    }

    .section-9-profiles {
        text-align: center;
        margin-top: -14px;
    }

    .section-9-profiles img {
        width: 266px;
    }

    .section-9-question p {
        font-size: 36px;
        line-height: 370%;
    }

    .section-10-form-title h2 {
        max-width: 1490px;
        width: 100%;
    }

    .section-10-form-body-row {
        max-width: 1490px;
        width: 100%;
        margin: 0 auto;
    }
}

/* footer*/
@media (min-width:200px) {
    footer {
        background: rgba(19, 22, 24, 1);
        color: #FCFCFC;
    }

    footer a {
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    footer a svg {
        -moz-transition: all 2s ease-out;
        -o-transition: all 2s ease-out;
        -webkit-transition: all 2s ease-out;
    }

    footer a svg:hover {
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
    }

    .footer-box {
        padding: 15px;
    }

    .footer-row-1 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 25px 0;
    }

    .footer-row-1 .footer-col {
        margin-bottom: 40px;
    }

    .footer-col {
        padding: 0 5px;
        min-width: 145px;
    }

    .footer-col div {
        padding: 5px;
    }

    .footer-form-box {
        display: flex;
        justify-content: start;
        align-items: baseline;
    }

    .footer-row-6-col-send-btn>form {
        max-width: 500px;
        margin: 0 auto;
        background: rgba(43, 45, 44, 1);
    }

    .footer-row-6-col-send-btn>form input {
        background: rgba(255, 255, 255, 0);
        padding: 0.5em;
        color: white;
        font-size: 18px;
        width: 100%;
    }

    .footer-col h4 {
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;
    }

    .footer-row-title a {
        font-weight: 600;
    }

    .footer-row-6-col-send-btn button {
        text-align: right;
        font-family: 'Sofia Pro Bold', sans-serif;
        /* width: 100%; */
        background: rgba(43, 45, 44, 1);
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #FFFFFF;
        padding: 9px 4%;
        cursor: pointer;
    }

    .footer-row-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;

    }

    .footer-col-min-1440px {
        text-align: center;
        width: 100%;
        margin-bottom: 45px;
        padding-bottom: 35px;
    }

    .footer-row-2-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer-row-2-box-item-title {
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        letter-spacing: 0.68px;
    }

    .footer-row-2-box-item-text {
        text-align: center;
        padding: 0 44px;
    }

    .footer-row-3 {
        padding-bottom: 80px;
    }

    .footer-row-3-social {
        display: flex;
        justify-content: center;
        margin: 0 0 25px 0;
    }

    .footer-row-3-social div {
        padding: 0 0.5em;
    }

    .footer-row-3-spec {
        font-family: 'Sofia Pro Light', sans-serif;
        padding: 8px 2em;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        color: #FCFCFC;
        background: rgba(43, 45, 44, 1);
        margin-bottom: 25px;
    }

    .footer-row-3-sub,
    .footer-row-3-sub-policy a,
    .footer-row-3-sub-accessibility a {
        font-family: 'Sofia Pro Light', sans-serif;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        color: #FCFCFC;
    }

    .footer-row-3-sub-right {
        display: flex;
        justify-content: space-around;
        margin: 25px 0;
    }

    .footer-row-3-bottom {
        font-family: 'Sofia Pro Light', sans-serif;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        color: #FCFCFC;
    }
}

@media (min-width:540px) {
    .footer-row-6-col-send-btn button {
        max-width: 500px;
    }
}

@media (min-width:1440px) {

    .footer-row-1,
    .footer-row-2,
    .footer-row-3 {
        max-width: 1490px;
        width: 100%;
        margin: 0 auto;
    }

    .footer-col-min-1440px {
        width: 333px;
    }

    .footer-row-6-col-send-btn button {
        padding: 2% 4%;
    }
}


/* slider */
.swiper {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    z-index: 0;
}

.swiper-slide img {
    cursor: ew-resize;
    width: 70%;
    padding-left: 15%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    color: rgba(217, 200, 188, 0.9);
    line-height: 1;
}

.slide-text {
    font-family: 'Recoleta Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.035em;
    color: #000000;
    display: flex;
    justify-content: space-evenly;
    padding-top: 30px;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 40%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

#mobile-contacts>div {
    position: relative;
    width: 49.5%;
    float: left;
    border: 1px solid #3a2929;
    -webkit-box-shadow: 0px 1px 5px 2px rgba(111, 51, 0, 0.38) inset;
    -moz-box-shadow: 0px 1px 5px 2px rgba(111, 51, 0, 0.38) inset;
    box-shadow: 0px 1px 5px 2px rgba(111, 51, 0, 0.38) inset;
}

#mobile-contacts>div:nth-child(1) {
    background: #f28a0f;
}

#mobile-contacts>div:nth-child(1) .fa {
    font-size: 22px;
    position: relative;
    top: 3px;
    padding-right: 3px;
}

#mobile-contacts>div:nth-child(2) {
    background: #575757;
    padding-left: 28px;
    box-sizing: border-box;
}

#mobile-contacts>div:nth-child(2) img {
    width: 23px;
    position: absolute;
    left: 28px;
    top: 12px;
}

#mobile-contacts {
    display: none;
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
}

#mobile-contacts>div>a>i {
    padding-left: 5px;
}

#mobile-contacts>div>a>.fa-commenting-o {
    margin: 0px 0 3px -3px;
}

#mobile-contacts>div:nth-child(1) {
    background: #f28a0f;
}

#mobile-contacts>div:nth-child(2) {
    background: #f28a0f;
}

#mobile-contacts>div a {
    color: #fff;
    font-size: 22px;
    font-family: 'latoregular';
    display: block;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    #mobile-contacts {
        display: block;
    }
	.sidebar{
		display: none;
	}
}

@media screen and (max-width: 414px) {
    #mobile-contacts>div a {
        font-size: 18px;
    }
}

.header-banner .button {
    position: absolute;
    right: 7%;
    bottom: 50px;
    background: #22372B;
	width: 90%;
}
.button {
    background: #22372B;
}
.button {
    font-family: 'montserratlight';
    text-align: center;
    border-radius: 15px;
    color: #ffffff;
    padding: 16px 35px;
    max-width: 300px;
    width: 100%;
    font-size: 28px;
    text-decoration: none;
    display: block;
    /*border: 1px rgba(0,0,0,.5) solid;*/
}