:root {
    --font-weight-inter: 400;
    /*var(--font-weight-inter);*/
}

body {
    position: relative;
    /*    width: 100vw;*/
    font-family: 'Manrope', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

html.stop,
body.stop {
    overflow: hidden;
    position: relative;
    height: 100%;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1160px;
    margin: auto;
    z-index: 10;
    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;
}

a {
    text-decoration: none;
}


/*
html::-webkit-scrollbar,
body::-webkit-scrollbar{
    margin: 10px;
    background: none;
    width: 0px;
}
html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button{
    display: none;
}
html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece{
    background: rgba(0,0,0,0.15);
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb{
    margin: 10px;
    background: rgba(0,0,0,0.75);
    border-radius: 3px;;
}
*/

.block-1_big {
    position: relative;
    z-index: 10;
/*    background: url(../img/restaurent131.webp) center center no-repeat;*/
    background-size: cover;
    -webkit-filter: saturate(85%);
    filter: saturate(85%);
}

.block-1_big .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -o-linear-gradient(top, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0) 50.87%, rgba(17, 17, 17, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.6)), color-stop(50.87%, rgba(17, 17, 17, 0)), to(rgba(17, 17, 17, 1)));
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0) 50.87%, rgba(17, 17, 17, 1) 100%);
    opacity: 01;
    z-index: -1;
    display: block;
}

.block-1_big .block-1{
    position: relative;
    overflow: hidden;
}

.block-1_big .block-1 .video{
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.block-1_big .block-1.video .video{
    opacity: 1;
    visibility: visible;
}
.block-1_big .block-1 .video:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, #212121 0%, rgba(33, 33, 33, 0) 11.99%, #212121 100%);
}
.block-1_big .block-1 .video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-1 .container {
    padding-top: 100px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: calc(100vh - 130px);
    z-index: 10;
}

.block-1.loading .container.videocont{
    opacity: 0 !important;
}

.block-1 .container.videocont{
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 20%);
    transition: 0.6s;
    z-index: 9;
}

.block-1.video .container.videocont{
    opacity: 1;
    transform: translate(-50%, 0);
    z-index: 11;
}

.block-1 h1 {
    color: #fff;
    font-size: 92px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    transition: 0.3s;
}

.block-1 .container.videocont h1 {
    text-align: left;
    font-size: 80px;
    line-height: 0.9;
}

.block-1.video .container.imgcont h1 {
    margin-top: 100px;
    opacity: 0;
    text-align: center;
    font-size: 92px;
    line-height: 1.1;
}

.block-1 h1 span,
h2 span {
    color: rgb(189, 157, 98);
}

.block-1 .btn {
    height: 60px;
    width: 290px;
    cursor: pointer;
    text-align: center;
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 1px;
    border-radius: 300px;
    background-color: #ffffff;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition-delay: opacity 1s;
    text-decoration: none;
    opacity: 1;
    margin: 0 20px;
}

.block-1 .btn:hover {
    background-color: #bd9d62;
    color: #ffffff;
}

.block-1 .btn:nth-child(3),
.block-1 .btn:nth-child(2){
    background-color: #bd9d62;
    color: #ffffff;
}

.block-1 .btn:nth-child(3):hover,
.block-1 .btn:nth-child(2):hover{
    color: #bd9d62;
    background-color: #ffffff;
}

.block-1.video .btn{
    display: none;
    opacity: 0;
}

.block-10 .btns,
.block-1 .btns{
    display: flex;
    align-items: center;
}
.block-10 .btns{
    position: absolute;
    padding: 5px;
    padding-bottom: 20px;
    width: 100%;
    justify-content: space-between;
    z-index: 10;
    bottom: 0;
}

.block-10 .btn-close,
.block-1 .btn-close{
    margin-left: 20px;
    display: none;
    width: auto;
    padding: 10px;
    background: #fff;
    border-radius: 100px;
    margin-bottom: 35px;
    overflow: hidden;
}

.block-10 .btn-close{
    display: block;
    margin: 0 10px;
    cursor: pointer;
}
.block-10 .left{
    display: flex;
}
.block-10 video{
    display: block;
    z-index: 9;
}
.block-10 .btn-close span{
    display: block;
}
.block-1.video .btn-close{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    transition: 0.6s;
    max-width: 40px;
    cursor: pointer;
}

.block-1.video .btn-close:hover{
    max-width: 210px;
}

.block-1 .btn-close .ico{
    display: block;
    min-width: 20px;
    min-height: 20px;
    background: url(../img/b1-close.svg) center center no-repeat;
    background-size: 80%;
}

.block-1 .btn-close .text{
    color: #212121;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
}

.block-10 .btn-close.sound .ico,
.block-1 .btn-close.sound .ico{
    min-width: 20px;
    min-height: 20px;
    background: url(../img/b1-sound.svg) center center no-repeat;
    background-size: 110%;
    position: relative;
}

.block-10 .btn-close.play .ico{
    min-width: 20px;
    min-height: 20px;
    background: url(../img/b1-play.svg) center center no-repeat;
    background-size: 70%;
    position: relative;
}

.block-10 .btn-close.play.stop .ico{
    min-width: 20px;
    min-height: 20px;
    background: url(../img/b1-pause.svg) center center no-repeat;
    background-size: 90%;
    position: relative;
}

.block-10 .btn-close.fullscreen .ico{
    min-width: 20px;
    min-height: 20px;
    background: url(../img/b1-fullscreen.svg) center center no-repeat;
    background-size: 110%;
    position: relative;
}
.block-10.video{
    display: none;
}
.block-1 .btn.w960{
    display: none;
}
@media(max-width: 960px){
    .block-10.video{
        display: flex;
    }
    .block-1_big .block-1 .video{
        display: none;
    }
    .block-1 .container.videocont{
        opacity: 0;
        transform: translate(-50%, 20%);
    }
    .block-1 .btn.w960{
/*        display: block;*/
    }
    .block-1 .btn.w1440{
        display: none;
    }
}
@media (max-width: 640px){
    .block-1 .btns{
        flex-direction: column;
    }
    .block-1 .btn{
        margin: 10px 0;
    }
}

@media (max-width: 450px){
    .block-10 .ico{
/*        min-width: 15px !important;*/
/*        min-height: 15px !important;*/
        padding: 8px;
    }
}


.block-10 .btn-close.sound .ico:before,
.block-1 .btn-close.sound .ico:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2.5px;
    width: 0;
    background: #000;
    border: 0px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3000px;
    transition: 0.3s;
}

.block-10 .btn-close.sound.mute .ico:before,
.block-1 .btn-close.sound.mute .ico:before{
    width: 130%;
    border: 1px solid #fff;
}

.block-1-1 {
    z-index: 10;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 50px 0px rgb(51 51 51 / 10%);
    box-shadow: 0px 4px 50px 0px rgb(51 51 51 / 10%);
    background: #fff;
    margin-bottom: 100px;
}

.block-1-1 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 130px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 45px;
}

.block-1-1 .container .cont {
    display: flex;
    justify-content: space-between;
}

.block-1-1 .container .cont:nth-child(1) {
    flex-grow: 1;
}

.block-1-1 .container .cont:nth-child(2) {
    margin-left: 110px
}

.block-1-1 .container:nth-child(2) {
    padding-top: 0;
    height: auto;
}

.block-1-1 .container:nth-child(2) h2 {
    color: #333333;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    width: 550px;
}

.block-1-1 .container:nth-child(2) p {
    width: 520px;
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.block-1-1 .box {
    width: 210px;
}

.block-1-1 .box p:nth-child(1) {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 25px;
    font-weight: 700;
}

.block-1-1 .box p:nth-child(2) {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 25px;
    font-weight: 400;
    opacity: 0.7;
}

.block-1-1 .btn {
    width: 200px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 1px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.block-1-1 .btn:hover {
    background-color: #fff;
    color: #bd9d62;
    border-color: #bd9d62;
}

.block-2 {
    background: #fff;
    padding-bottom: 100px;
}

.block-2 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 35px;
}

.block-2 .cont {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "a a b b c c" "d d d e e e";
    grid-gap: 20px;
}

.block-2 .cont .box:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: a;
}

.block-2 .cont .box:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-area: b;
}

.block-2 .cont .box:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 3;
    grid-area: c;
}

.block-2 .cont .box:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-area: d;
}

.block-2 .cont .box:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
    -ms-grid-column-span: 5;
    grid-area: e;
}

.block-2 .cont .box {
    height: 200px;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(189, 157, 98, 0.2);
    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;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-2 .cont .box:hover {
    background: #fffaf2
}

.block-2 .cont .box h3 {
    color: #bd9d62;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-2 .cont .box p {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0.7;
}

.block-3 {
    padding-bottom: 100px;
}

.block-3 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 35px;
}

.block-3 .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.block-3 .column {
    width: 550px;
}

.block-3 .line {
    width: 1px;
    border-radius: 5px;
    background-color: #e5e6e6;
    position: relative;
    display: block;
}

.block-3 .line span {
    position: sticky;
    top: 0;
    top: calc(50% - 300px);
    display: block;
    width: 3px;
    -webkit-transform: translate(-1px, 0);
    -ms-transform: translate(-1px, 0);
    transform: translate(-1px, 0);
    height: 400px;
    border-radius: 5px;
    background-color: #bd9d62;
}

.block-3 .box {
    margin-bottom: 30px;
}

.block-3 .box:last-child {
    margin-bottom: 0;
}

.block-3 .box p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.block-3 .column.img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-3 .column .bottom {
    border-radius: 15px;
    overflow: hidden;
}

.block-3 .column .top {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-3 .column .img {
    width: 100%;
    height: 400px;
/*    background: url(../img/restaurent1.webp) center center no-repeat;*/
    background-size: cover;
    border-radius: 15px;
    display: block;
    position: sticky;
    top: calc(50% - 300px);
    margin-bottom: 50px;
}

.block-4 h2 {
    width: 700px;
    text-align: center;
    margin: auto;
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 50px;
}

.block-4 h2 span {
    color: rgb(189, 157, 98);
}

.block-4 .cont1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 150px;
}

.block-4 .cont1 .box {
    height: 360px;
    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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 15px;
    border: 1px solid rgba(189, 157, 98, 0.2);
    padding: 30px;
    padding-right: 10px;
}

.block-4 .cont1 .box:nth-child(1) {
    background: #fffaf2;
    border: none;
}

.block-4 .cont1 .box img {
    margin-left: -25px;
    width: 120px;
    margin-bottom: 5px;
}

.block-4 .cont1 .box h3 {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
}

.block-4 .cont1 .box p {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0.7;
}

.block-4 .cont2 h3 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 55px;
}

.block-4 h3 span {
    color: rgb(189, 157, 98);
}

.block-4 .cont2 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 200px;
}

.block-4 .cont2 .l {
    position: relative;
}

.block-4 .cont2 .l .img {
    width: 860px;
    height: 430px;
/*    background: url(../img/bungalo_1.webp) center center no-repeat;*/
    background-size: cover;
    border-radius: 15px;
}

.block-4 .cont2 .l .row {
    border-radius: 0 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fffaf2;
    height: 100px;
    width: auto;
    padding: 15px 25px;
}

.block-4 .cont2 .box.left .l .row {
    left: inherit;
    right: 0;
    border-radius: 10px 0;
}

.block-4 .cont2 .l .row .item {
    margin-left: 25px;
    padding-right: 40px;
    position: relative;
}

.block-4 .cont2 .l .row .item:nth-child(1) {
    margin-left: 0;
}

.block-4 .cont2 .l .row .item:last-child {
    padding-right: 0;
}

.block-4 .cont2 .l .row .item:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1px;
    height: 20px;
    background: #BD9D62;
}

.block-4 .cont2 .l .row .item:last-child:before {
    display: none;
}

.block-4 .cont2 .l .row .item .t {
    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;
}

.block-4 .cont2 .l .row .item .t p {
    color: #bd9d62;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
}

.block-4 .cont2 .l .row .item .t img {
    width: 50px;
}

.block-4 .cont2 .l .row .item .b {
    color: #bd9d62;
    font-size: 12px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}

.block-4 .cont2 .r {
    padding-left: 40px;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.block-4 .cont2 h4 {
    color: #333333;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.block-4 h4 span {
    color: rgb(189, 157, 98);
}

.block-4 .cont2 .r .desc {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 25px;
}

.block-4 .cont2 .r .btn {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 55px;
    font-weight: 500;
    border-width: 1px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    text-align: center;
    width: 150px;
    height: 55px;
    cursor: pointer;
}

.block-4 .cont2 .r .btn:hover {
    background-color: #fff;
    color: #bd9d62;
    border-color: #bd9d62;
}

.block-4 .cont2 .circule {
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: 220px;
    height: 220px;
    background: #fff;
    background: #fff;
    -webkit-box-shadow: 0px 4px 50px 0px rgb(51 51 51 / 10%);
    box-shadow: 0px 4px 50px 0px rgb(51 51 51 / 10%);
    border-radius: 50%;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-4 .cont2 .box.left .circule {
    left: inherit;
    right: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.block-4 .cont2 .box.left .r {
    padding-left: 0;
    padding-right: 40px;
}

.block-4 .cont2 .circule p {
    color: #333333;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-4 .cont2 .circule span {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
}

.block-4 .cont2 .l .circule {
    display: none;
}

.block-4 .cont3 .line:nth-child(1) {
    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;
    margin-bottom: 100px;
}

.block-4 .cont3 .line:nth-child(1) h3 {
    width: 860px;
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-4 .cont3 .line:nth-child(1) p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    width: 370px;
}

.block-4 .cont3 .line:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
}

.block-4 .cont3 .line:nth-child(2) .box {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Igra';
    padding: 0 10px;
    -webkit-transition: font-weight, color 0.3s ease;
    -o-transition: font-weight, color 0.3s ease;
    transition: font-weight, color 0.3s ease;
    padding-bottom: 18px;
    border-bottom: 1px solid #f2ebe0;
    cursor: pointer;
}

.block-4 .cont3 .line:nth-child(2) .box.active {
    color: #bd9d62 !important;
    font-weight: 500 !important;
    border-bottom-color: #bd9d62 !important;
}

.block-4 .cont3 .line:nth-child(2) .box {
    text-align: center;
}

.block-4 .cont3 .line:nth-child(3) {
    margin-bottom: 100px;
}

.block-4 .cont3 .line:nth-child(3) .img {
    width: 100%;
    height: 650px;
/*    background: url('../img/block-1_bg.webp') center center no-repeat;*/
    background-size: cover;
    border-radius: 15px;
}

.block-4 .cont3 .line:nth-child(3) .swiper {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.block-4 .cont3 .line:nth-child(3) .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    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;
}

.block-4 .cont3 .line:nth-child(3) .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block-4 .cont3 .line:nth-child(3) .swiper-pagination-bullet-active {
    background: #bd9d62;
}

.block-4 .cont3 .line:nth-child(3) .swiper-pagination {
    position: relative;
    top: 0px;
    width: 80px;
    margin-top: 20px;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    left: inherit;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    width: 600px;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
    padding-top: 20px
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont p:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #bd9d62;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-next,
.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-prev {
    position: relative;
    margin: 0;
    top: 0;
    width: 35px;
    height: 35px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: .6;
    border-radius: 20px;
/*    background: url(/img/question_1.svg) center center no-repeat;*/
/*    background-size: 24px;*/
    background-color: #fffaf2;
    opacity: 1;
    background: url(../img/question_1-white.svg) center center no-repeat;
    background-color: #bd9d62;
    background-size: 24px;
    -webkit-transform: rotate(180 deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.8;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-disabled {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.3;
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-next {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-prev {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-next:after,
.block-4 .cont3 .line:nth-child(3) .swiper-cont .swiper-button-prev:after {
    display: none;
}

.block-4 .cont4 .line:nth-child(1) {
    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;
    margin-bottom: 100px;
}

.block-4 .cont4 .line:nth-child(1) h3 {
    width: 860px;
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-4 .cont4 .line:nth-child(1) p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    width: 370px;
}

.block-4 .cont4 .line2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-bottom: 150px;
}

.block-4 .cont4 .line2 .box {
    height: 280px;
    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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 15px;
    border: 1px solid rgba(189, 157, 98, 0.2);
    padding: 30px;
    padding-right: 20px;
    overflow: hidden;
    position: relative;
}

.block-4 .cont4 .line2 .box .con {
    position: absolute;
    top: 80px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-4 .cont4 .line2 .box:hover .con {
    position: absolute;
    top: 0px;
}

.block-4 .cont4 .line2 .box:nth-child(1) {
    background: #fffaf2;
    border: none;
}

.block-4 .cont4 .line2 .box img {
    margin-left: -25px;
    width: 120px;
    margin-bottom: 5px;
}

.block-4 .cont4 .line2 .box h3 {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}

.block-4 .cont4 .line2 .box:hover h3 {
    margin-bottom: 12px;
}

.block-4 .cont4 .line2 .box p {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-right: 20px;
}

.block-4 .cont4 .line2 .box:hover p {
    opacity: 0.7;
}

.block-4 .cont4 .line2 .box:nth-child(3) {
    background: #d1ba91;
}

.block-4 .cont4 .line2 .box:nth-child(3) h3,
.block-4 .cont4 .line2 .box:nth-child(3) p {
    color: #fff;
}

.block-5 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 105px;
}

.block-5 h2 span {
    color: rgb(189, 157, 98);
}

.block-5 .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.block-5 .left {
    width: 310px;
    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;
}

.block-5 .top {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-5 .left p {
    display: block;
    position: sticky;
    top: 300px;
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 50px;
}

.block-5 .left .bottom {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-5 .left .btn {
    margin: 10px 0;
    width: 100%;
    height: 60px;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 2px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    margin-right: 0;
}

.block-5 .left .btn:hover {
    background-color: transparent;
    border: 2px solid #bd9d62;
    color: #bd9d62;
}

.block-5 .left a.btn {
    background-color: transparent;
    border: 2px solid #bd9d62;
    color: #bd9d62;
}

.block-5 .left a.btn:hover {
    background-color: #bd9d62;
    color: #fff;
}

.block-5 .right {
    width: 760px;
}

.block-5 .right .line {
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-5 .right .line:last-child {
    margin-bottom: 0;
}

.block-5 .right .box {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.block-5 .right .img,
.block-5 .right img {
    height: 270px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.block-5 .right h3 {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-5 .data {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 460px;
}

.block-5 .data span {
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background-color: #bd9d62;
    margin-bottom: 15px;
}

.block-5 .data p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}


/*Line ONE*/

.block-5 .line.one .box img {
    height: inherit;
    width: 100%;
}


/*Line TWO V1*/

.block-5 .line.two.v1 .box:nth-child(1) {
    max-width: 300px;
}

.block-5 .line.two.v1 .box:nth-child(2) {
    max-width: 380px;
}

.block-5 .line.two.v1 .box .img {
    width: 100%;
    height: 270px;
}


/*Line TWO V2*/

.block-5 .line.two.v2 .box:nth-child(1) {
    max-width: 420px;
}

.block-5 .line.two.v2 .box:nth-child(2) {
    max-width: 260px;
}

.block-5 .line.two.v2 .box .img {
    width: 100%;
    height: 270px;
    max-height: 270px;
}

.block-6 {
    margin-top: 150px;
}

.block-6 .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 80px;
}

.block-6 .line:nth-child(1) .left {
    width: 360px;
}

.block-6 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.block-6 .left p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.block-6 img {
    width: 760px;
    border-radius: 15px;
    position: relative;
    filter: brightness(0.9);
    transition: 0.3s;
}

.block-6 .img-r{
    position: relative;
    cursor: pointer;
}

.block-6 .img-r:hover img {
    filter: brightness(0.7);
}

.block-6 .img-r:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: url(../img/play-video.svg) center center no-repeat;
    background-size: cover; 
    z-index: 111;
}

.block-6 .box {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 500px;
}

.block-6 .box h3 {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-6 .box span {
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background-color: #bd9d62;
    margin-bottom: 15px;
}

.block-6 .box p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.block-6 .tag-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

.block-6 .tag-line .tag {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-right: 15px;
    margin-bottom: 15px;
    background: #fffaf2;
    border-radius: 20px;
    color: rgb(189, 157, 98);
    font-size: 15px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.5;
    font-weight: 700;
}

.block-6 .btn {
    margin: 10px 0;
    margin-top: 50px;
    width: 250px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 2px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    margin-right: 0;
}

.block-6 .btn:hover {
    background-color: transparent;
    border: 2px solid #bd9d62;
    color: #bd9d62;
}

.block-7 {
    margin-top: 100px;
    padding-bottom: 1250px;
}

.block-7 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.block-7 .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.block-7 .box {
    width: 360px;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-7 .box.ico {
    background: red;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.block-7 p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.block-7 .h3 {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-7 .box span {
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background-color: #bd9d62;
    margin-bottom: 15px;
}

.block-7 .big_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 760px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.block-7 .l {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-7 .l:nth-child(1) .box {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.block-7 .img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
}

.block-7 .ico{
    max-width: 120px;
    border-radius: 0;
}

.block-7 .ico {
    width: 100px;
    margin-bottom: 30px
}

.block-7 .bigimg {
    /*
    position: absolute;
    width: 2450px;
    top: 600px;
    left: 0;
    -webkit-transform: translate(-40%, 0);
        -ms-transform: translate(-40%, 0);
            transform: translate(-40%, 0);
*/
    position: absolute;
    width: 100vw;
    top: 720px;
    left: 50%;
    /* -webkit-transform: translate(-40%, 0); */
    -ms-transform: translate(-40%, 0);
    /* transform: translate(-40%, 0); */
    z-index: -1;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-image: url(../img/mask.png);
    mask-image: url(../img/mask.png);
}

.block-7 .bigimg {}

.block-7 .w500 {
    display: none;
}

.block-8 {
    margin-bottom: 100px;
}

.block-8 .container .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-8 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 50px;
}

.block-8 .box {
    border-radius: 15px;
    background-color: #fffaf2;
    padding: 45px 30px 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

.block-8 .head {
    color: #333;
    font-size: 34px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-8 .head span {
    color: #bd9d62
}

.block-8 .line:nth-child(1) p:nth-child(2) {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    width: 50%;
}

.block-8 .input-line {
    width: auto;
    height: 50px;
    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;
    margin-right: 10px;
}

.block-8 .input-line .input-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgb(189, 157, 98);
    color: #bd9d62;
    font-size: 25px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.block-8 .input-line .input-btn:hover {
    background: rgb(189, 157, 98);
    color: #fff;
}

.block-8 input {
    width: 80px;
    height: 50px;
    border: none;
    border-bottom: 1px solid rgb(189, 157, 98);
    background: none;
    outline: none;
    font-size: 30px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    letter-spacing: 1px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0 10px;
}

.block-8 input::-webkit-outer-spin-button,
.block-8 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.block-8 .line:nth-child(2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 50px;
    margin-bottom: 50px;
}

.block-8 .line:nth-child(2) p {
    color: #333333;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-left: 10px;
}

.block-8 .line:nth-child(3) .left {
    width: calc(40% - 50px);
}

.block-8 h4 {
    text-align: center;
    color: #333;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-8 h4 span {
    color: #bd9d62;
}

.block-8 .line:nth-child(3) .left p {
    text-align: center;
    margin-top: 20px;
    color: #333;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-8 .line:nth-child(3) .left p span {
    color: #bd9d62;
    margin: 0 10px;
}

.block-8 .line:nth-child(3) .right {
    margin: auto;
    width: 60%;
}

.block-8 .table {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: auto;
    margin-top: 20px;
}

.block-8 .table .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.block-8 .table .row:last-child {
    border-bottom: none;
}

.block-8 .table .row div {
    padding: 15px;
    color: #333;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-8 .table .row div:first-child {
    border-right: 1px solid rgba(51, 51, 51, 0.15);
    width: 250px;
}

.block-8 .table .row .comment {
    display: none;
}

.block-8 .table .row div:nth-child(2),
.block-8 .table .row div:nth-child(3) {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    flex-grow: 1;
}

.block-8 .table .row:first-child div {
    padding-top: 0;
}

.block-8 .line:nth-child(4) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 50px;
}

.block-8 .btn {
    width: 300px;
    height: 60px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 1px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    cursor: pointer;
}

.block-8 .btn:hover {
    color: #bd9d62;
    background-color: transparent;
    border-color: #bd9d62;
}

.block-8 .cont {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-8 .left {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 15px;
    background-color: #fffaf2;
    margin-left: 40px;
    padding: 30px;
    border: 1px solid #bd9d62;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.block-8 h3 {
    color: #bd9d62;
    font-size: 25px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.block-8 .system {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
}

.block-8 .system span {
    color: #bd9d62;
}

.block-8 .system br {
    display: none;
}

.block-8 .desc {
    margin-top: 30px;
    max-width: 390px;
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 30px;
}

.block-8 .box {
    width: 660px;
    border-radius: 15px;
    /*    background-color: #fffaf2;*/
    border: 1px solid #bd9d62;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-8 .box img {
    width: 140px;
    margin-left: -30px;
    margin-top: -30px;
}

.block-8 .box .text {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.block-8 .head {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-9 .main {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0.7;
}

.block-8 .right {
    width: 360px;
}

.block-8 .right div {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    -webkit-box-shadow: 100px 40px 150px rgba(0, 0, 0, 0.1);
    box-shadow: 100px 40px 150px rgba(0, 0, 0, 0.1);
}


/*

.block-8 .vars {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.block-8 .var {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.block-8 .var:last-child {
    margin-bottom: 0;
}

.block-8 .btn {
    width: 200px;
    height: 60px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 1px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    cursor: pointer;
}

.block-8 .btn:hover {
    color: #bd9d62;
    background-color: transparent;
    border-color: #bd9d62;
}

.block-8 .var .data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 50px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.block-8 .var p {
    max-width: 50%;
    min-width: 50%;
    text-align: center;
    color: #333333;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 700;
}

.block-8 .var p:nth-child(1) {
    text-align: end;
    padding-right: 20px;
    border-right: 1px solid #333;
}

.block-8 .var p:nth-child(2) {
    text-align: start;
    padding-left: 20px;
}

.block-8 .var.custom p:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-8 .var p input {
    width: 100px;
    height: 29px;
    border: none;
    background: none;
    border-bottom: 1px solid rgb(189, 157, 98);
    margin-right: 10px;
    outline: none;
    color: #333;
}

.block-8 input::-webkit-outer-spin-button,
.block-8 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
*/

.block-9 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 150px;
}

.block-9 .left {
    width: 760px;
}

.block-9 h2 {
    color: #bd9d62;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.block-9 .desc {
    max-width: 560px;
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 30px;
}

.block-9 .box {
    width: 660px;
    border-radius: 15px;
    /*    background-color: #fffaf2;*/
    border: 1px solid #bd9d62;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-9 .box img {
    width: 140px;
    margin-left: -30px;
    margin-top: -30px;
}

.block-9 .box .text {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.block-9 .head {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-9 .main {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 400;
    opacity: 0.7;
}

.block-9 .right {
    width: 360px;
}

.block-9 .right img {
    width: 100%;
    border-radius: 15px;
    -webkit-box-shadow: 100px 40px 150px rgba(0, 0, 0, 0.1);
    box-shadow: 100px 40px 150px rgba(0, 0, 0, 0.1);
}

.block-10 {
    margin-bottom: 150px;
}

.block-10 h2 {
    color: #333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 50px;
}

.block-10 iframe {
    height: 660px;
    border-radius: 15px;
}

.block-11 {
    margin-bottom: 150px;
}

.block-11 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 55px;
}

.block-11 .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.block-11 .box {
    width: 360px;
}

.block-11 .box:last-child {
    display: none;
}

.block-11 .img {
    position: relative;
    margin-bottom: 20px;
}

.block-11 .thumb {
    width: 100%;
    height: 270px;
    border-radius: 10px;
}

.block-11 .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 8px 7px;
    text-align: center;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 3px;
    font-family: 'Igra', Arial, sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.block-11 h3 {
    color: #bd9d62;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Igra';
    margin-bottom: 15px;
}

.block-11 .desc {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Igra';
    line-height: 1.2;
}

.block-12 {
    margin-bottom: 100px;
}

.block-12 h2,
.block-13 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 55px;
}

.block-12 .line {
    padding: 15px 0;
    border: 1px solid #bd9d62;
    border-right: none;
    border-left: none;
    border-bottom: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow: hidden
}

.block-12 .head {
    min-height: 35px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #bd9d62;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Igra';
    margin-bottom: 15px;
    cursor: pointer;
}

.block-12 .head h3 {
    margin-top: 10px;
    margin-bottom: 10px
}

.block-12 .box .line:last-child {
    border-bottom: 1px solid #bd9d62;
}

.block-12 .close {
    min-width: 40px;
    min-height: 40px;
    background-color: none!important;
    background-size: 25px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: .6;
    border-radius: 20px;
    background: url(../img/question_1.svg) center center no-repeat;
    background-size: 24px;
    background-color: #fffaf2;
    opacity: 1;
    margin-left: 20px;
}

.block-12 .line:hover .close {
    /*    background-color: #bd9d62!important;*/
    /*    opacity: 0.8;*/
}

.block-12 .line.active .close {
    background: url(../img/question_1-white.svg) center center no-repeat;
    background-color: #bd9d62;
    background-size: 24px;
    -webkit-transform: rotate(180 deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.8;
}

.block-12 .text {
    position: relative
}

.block-12 .text p {
    position: absolute;
    margin-top: 10px;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 40px;
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.footer .line {
    border-top: 1px solid rgba(189, 157, 98, 0.2);
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer .line:nth-child(1) .left {
    width: 360px;
}

.footer .line:nth-child(1) .left h2 {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

.footer .line:nth-child(1) .right {
    width: 760px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer .line:nth-child(1) .right .l {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer .line:nth-child(1) .right .l a {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 18px;
    transition: 0.3s;
}

.footer .line:nth-child(1) .right .l a:hover {
    color: #bd9d62;
}

.footer .line:nth-child(1) .right .r {
    width: 360px;
}

.footer .line:nth-child(1) .right .r .head {
    color: #bd9d62;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer .input {
    position: relative;
    opacity: 0.6;
    width: 100%;
}

.footer input {
    width: 100%;
    position: relative;
    color: rgb(0, 0, 0);
    border: none;
    background: none;
    outline: none;
    border: 1px solid #bd9d62;
    height: 50px;
    padding: 26px 20px 10px;
    font-size: 14px;
    line-height: 1.33;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    color: rgb(189, 157, 98);
    border-radius: 15px;
    font-size: 16px;
    font-weight: 400;
    /*    height: 60px;*/
}

input {
    cursor: pointer !important;
}

.footer .error {
    border-bottom: 1px solid red;
}

.footer input::-moz-placeholder {
    color: transparent;
}

.footer input::-webkit-input-placeholder {
    color: transparent;
}

.footer input:-ms-input-placeholder {
    color: transparent;
}

.footer input::-ms-input-placeholder {
    color: transparent;
}

.footer input::placeholder {
    color: transparent;
}

.footer .input label {
    position: absolute;
    width: 100%;
    top: 18px;
    left: 15px;
    font-weight: 400;
    font-size: 14px;
    height: 15px;
    color: #000;
    -webkit-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

.footer input:not(:-moz-placeholder-shown) ~ label {
    transform: translate( -15%, -100%) scale(.7);
    left: 15px;
}

.footer input:not(:-ms-input-placeholder) ~ label {
    -ms-transform: translate( -15%, -100%) scale(.7);
    transform: translate( -15%, -100%) scale(.7);
    left: 15px;
}

.footer input:not(:placeholder-shown) ~ label,
.footer input:focus ~ label {
    -webkit-transform: translate( -15%, -100%) scale(.7);
    -ms-transform: translate( -15%, -100%) scale(.7);
    transform: translate( -15%, -100%) scale(.7);
    left: 15px;
}

.checkbox {
    margin-top: 10px;
    margin-bottom: 0.2em;
    width: 100%;
}

.custom-checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox>span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgb(203, 203, 202);
    font-size: 12px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
}

.custom-checkbox>span a {
    color: #8a8a8a;
    font-size: 12px !important;
}

.custom-checkbox>span::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: 2px solid #C7C7C6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    margin-right: 10px;
    margin-bottom: -4px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox>input {
    display: none;
}

.custom-checkbox .error ~ span::before {
    border: 2px solid #F83030;
}


/* ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾Ð³Ð¾ Ñ‡ÐµÐºÐ±Ð¾ÐºÑÐ° (Ð¿Ñ€Ð¸ Ð½Ð°Ð¶Ð°Ñ‚Ð¸Ð¸ Ð½Ð° Ð½ÐµÐ³Ð¾) */

.custom-checkbox>input:not(:disabled):active+span::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}


/* ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ñ‡ÐµÐºÐ±Ð¾ÐºÑÐ°, Ð½Ð°Ñ…Ð¾Ð´ÑÑ‰ÐµÐ³Ð¾ÑÑ Ð² ÑÐ¾ÑÑ‚Ð¾ÑÐ½Ð¸Ð¸ checked */

.custom-checkbox>input:checked+span::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23C7C7C6' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    background-size: 10px;
}

.footer .btn {
    width: 200px;
    height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 50px;
    font-weight: 700;
    border-width: 1px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    cursor: pointer;
    margin-top: 20px
}

.footer .line:nth-child(2) a,
.footer .line:nth-child(2) p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 18px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 100px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header.scroll {
    background: #291f0c;
}

.header .container {
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .left,
.header .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
/*    width: calc(50% - 100px);*/
/*    max-width: calc(50% - 200px);*/
}

.header .right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header a {
    margin-right: 60px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    border-width: 1px;
    border-radius: 30px;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.header a:hover {
    color: #bd9d62;
}

.header .left a:last-child{
    margin-right: 0;
}

.header .right a{
    margin: 0;
    margin-left: 60px;
}

.header .btn {
    width: 200px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 60px;
    font-weight: 700;
    border-width: 2px;
    border-radius: 30px;
    background-color: #bd9d62;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    margin-right: 0;
}

.header .btn:hover {
    color: #fff;
    border-color: #bd9d62;
    background: transparent;
}

.header .logo {
    color: #bd9d62;
    font-size: 24px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

.header .menu-btn {
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #bd9d62;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
}

@media(max-width: 1200px){
    .header .menu-btn {
        display: flex;
    }
}

.header .menu-btn span {
    position: relative;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
}

.menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #bd9d62;
    padding: 48px 40px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.5s ease-out;
}

.menu.active {
    left: 0;
}

.menu .up {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.menu .up a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    font-family: 'Igra';
    margin-bottom: 15px;
}

.menu .down .a {
    font-family: 'Igra', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
    color: #fff;
}

.menu .down .line {
    margin-top: 50px;
    display: flex;
}

.menu .down .btn {
    color: #bd9d62;
    background-color: #ffffff;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    font-family: 'Igra', Arial, sans-serif;
    font-weight: 700;
    line-height: 60px;
    height: 60px;
    display: block;
    padding: 0 40px;
    margin-right: 20px;
    cursor: pointer;
}

.menu .down .btn:nth-child(2) {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.menu .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url('../img/menu-close.svg') center center no-repeat;
    background-size: 20px;
}

.block-13 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 100px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.block-13 .left {
    width: 350px;
}

.block-13 .left .img {
    width: 100%;
    height: 380px;
/*    background: url(../img/b13.webp) center center no-repeat;*/
    background-size: cover;
    border-radius: 15px;
    position: sticky;
    top: 300px;
}

.block-13 .right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 40px;
    height: auto;
}

.block-13 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.block-13 li .main-span {
    position: relative;
    width: 20px;
    height: 20px;
}

.block-13 li .main-span span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 2px solid rgb(189, 157, 98);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '';
    border-radius: 50%;
}

.block-13 li .main-span span:nth-child(2) {
    background: rgb(189, 157, 98);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.block-13 li div {
    width: 100%;
    margin-left: 20px;
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.block-13 h3 {
    color: #bd9d62;
    font-size: 20px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.block-13 .span {
    width: 100%;
    max-width: 360px;
    height: 1px;
    opacity: 0.2;
    background-color: #bd9d62;
    margin: 0;
    margin-bottom: 15px;
}

.block-13 p {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.7;
}

.block-14 {
    margin-bottom: 100px;
}

.block-14 h2 {
    color: #333333;
    font-size: 65px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: left;
}

.block-14 .line {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-14 .box {
    height: 500px;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.block-14 .box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(60, 60, 60, 0.4) 0%, rgba(17, 17, 17, 0) 100%);
    z-index: 1;
    display: block;
}

.block-14 .cont {
    display: block;
    z-index: 11;
}

.block-14 a {
    color: #333333;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
    border-width: 1px;
    border-radius: 30px;
    background-color: #ffffff;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    padding: 15px 50px;
    display: block;
    z-index: 11;
}

.block-14 .box .img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.block-14 h3 {
    color: #bd9d62;
    color: #ffffff;
    font-size: 26px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.block-14 .desc {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Igra', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 500;
    max-width: 300px;
}