*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*@media (max-width: 1199px){
	html, body, section {
		overflow-x: hidden;
	}
}*/
html{
	overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    /*overflow-x: hidden;*/
    color: #4F4F4F;
    font-size: 1rem;
    font-style: normal;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.015em;
    background-color: rgb(209, 209, 209);
}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{border-radius:10px;box-shadow:inset 0 0 5px transparent}
::-webkit-scrollbar-thumb{background:grey;border-radius:10px}:root{--swiper-theme-color:#000!important}

main{
    width: 100%;
    position: relative;
	overflow-x: hidden;
}
a{
    text-decoration: none;
    color:#333333;
    outline: none;
}
a:hover{
    text-decoration: none;
    color:#4F4F4F;
    outline: none;
}
p, ul{
    margin-bottom: 1em;
}
h1,.h1{
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h2,.h2{
    font-size: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
h3,.h3{
    font-size: 1.72rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
h4,.h4{
    font-size: 1.36rem;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.2;
}
h5,.h5{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
}
.text-strong{
    color:#222222;
}
.text-small{
    color:#4F4F4F;
    font-size: 86%;
}
.text-semi{
    font-weight: 600;
}
.btn{
    border: 1px solid;
    cursor: pointer;
    display: flex;
    padding: 0.65rem 2.4rem 0.65rem 2.4rem;
    font-size: 0.86rem;
    box-shadow: none;
    align-items: center;
    vertical-align: middle;
    font-weight: 400;
    line-height: 1;
    border-radius: 0;
    letter-spacing: 0.015em;
    pointer-events: visible;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    appearance: none;
    min-height: 2.4rem;
}
.btn-light{
	transition: all 0.6s;
}
.btn-light:hover{
	color: rgb(242, 242, 242);
    border-color: rgb(79, 79, 79);
    background-color: rgb(79, 79, 79);
}
button.btn{
    padding: 0.7rem 2.4rem 0.6rem 2.4rem;
    min-height: 2.4rem;
}
.btn_black{
    color: rgb(242, 242, 242);
    border-color: rgb(79, 79, 79);
    background-color: rgb(79, 79, 79);
}
.btn_black {
    background-position: center;
    transition: background 0.8s;
}
.btn_black:hover {
    color: rgb(242, 242, 242);
    border-color: #5a5a5a;
    background: #5e5e5e radial-gradient(circle, transparent 1%, #5e5e5e 1%) center/15000%;
}
.btn_black:active {
    background-color: #707070;
    background-size: 100%;
    transition: background 0s;
}
.btn-min{
	padding: 0.65rem 0.84rem 0.65rem 0.84rem;
	text-align:center;
}
.overflow_viz{
    overflow: visible;
}
.overflow_hid{
    overflow: hidden;
}
.brand_logo{
    /*width: 3vw;
    min-width: 50px;
    height: auto;*/
	height: 8vw;
	min-width: 60px;
	width: auto;
}
@media (min-width:992px){
	.brand_logo{
		height: 6vw;
		min-width: 60px;
		width: auto;
	}
}
@media (min-width:768px) and (max-width:991px){
	.menu_list a {
		font-size: 80%;
		letter-spacing: -0.03em;
	}
}
.form input{
    font: inherit;
    color: currentColor;
    width: 100%;
    border: 0;
    height: 2rem;
    margin: 0;
    display: block;
    padding: 0.65rem 0;
    min-width: 0;
    background: none;
    box-sizing: content-box;
    animation-name: mui-auto-fill-cancel;
    letter-spacing: inherit;
    animation-duration: 10ms;
    -webkit-tap-highlight-color: transparent;
}
.form label{
    font-size: 0.86rem;
    line-height: 1.2em;
    position: absolute;
    top: calc(50% - 1.2em/2);
    left: 0;
    transition: all 150ms ease-out 0ms;
    pointer-events: none;
    -webkit-transition: -webkit-transform 100ms ease;
    -moz-transition: -moz-transform 100ms ease;
    -o-transition: -o-transform 100ms ease;
    -ms-transition: -ms-transform 100ms ease;
    transition: transform 100ms ease;
    -webkit-transform: translateY(-2em);
    -moz-transform: translateY(-2em);
    -o-transform: translateY(-2em);
    -ms-transform: translateY(-2em);
    transform: translateY(-2em);
    font-size: 70%;
}
.form input:focus,
.form textarea:focus{
    outline: 0 none;
}
.form input:invalid + label {
    font-size: 100%;
    font-weight: 300;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.form input:focus + label{
    font-size: 70%;
    font-weight: 400;
    transition: all 150ms ease-out 0ms;
    -webkit-transform: translateY(-2em);
    -moz-transform: translateY(-2em);
    -o-transform: translateY(-2em);
    -ms-transform: translateY(-2em);
    transform: translateY(-2em);
}
.required::after {
    content: '*';
    position: absolute;
    top:1rem;
    right: 0;
    opacity: 0.5;
}
.form textarea {
    border: none;
    font: inherit;
    color: currentColor;
    width: 100%;
    margin: 0;
    display: block;
    padding: 0.65rem 0;
    min-width: 0;
    background: none;
    font-family: Montserrat,sans-serif;
    box-sizing: content-box;
    animation-name: mui-auto-fill-cancel;
    letter-spacing: inherit;
    animation-duration: 10ms;
    -webkit-tap-highlight-color: transparent;
}
.form textarea:focus{
    outline: 0 none;
}
.form_group{
    border-bottom: 1px solid #919191;
    margin-bottom: 2rem;
    position: relative;
}
/*.form_group:after {
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    transition: transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    pointer-events: none;
}*/
.form_total{
    margin-top: 4rem;
    position: relative;
}
.form{
    margin-top: 2rem;
    position: relative;
}

hr{margin-top: 2rem;border: 0 none;margin-bottom: 2rem;width: 100%;height: 1px;background-color: #4F4F4F;} 


aside {
    width: 10vw;
    height: 100vh;
}
.aside{
    top: 0;
    left: 0;
    opacity: 1;
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 2;
    position: fixed;
    background: rgba(232, 232, 232, 0.32);
    box-sizing: border-box;
    min-height: 100vh;
    transition: 0.5s;
    border-right: 1px solid #4F4F4F;
    backdrop-filter: blur(10px);
}
.aside nav.desktop_nav{
    height: 100%;
    /*padding-bottom: 50px;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
section {
    width: 100%;
    /*min-height: 1px;*/
    padding-left: 10vw;
    display: table;
}
.height100img{
	max-height: 100vh;
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
}
.height110img{
	display: block;
	height: 100vh!important;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
@media (max-width: 768px){
	.height110img{
		height: 50vh!important;
	}
}
.darken{
	mix-blend-mode: darken;
}
.multiply{
	mix-blend-mode: multiply;
}
section.fluid {
    width: 100%;
    min-height: 1px;
    padding-left: 0;
    display: table;
}
.container {
    width: 100%;
    padding-left: 100px;
    padding-right: 10vw;
}
.start{
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 720px;
}
.hero{
    min-height: 100vh;
    width: calc(100% + 10vw);
    margin-left: -10vw;
    margin-right: -10vw;
    position: relative;
    padding-left: 0!important;
    padding-right: 0!important;
}
/*.hero .bx-wrapper {
    border-bottom: 1px solid #4F4F4F;
}*/
.cont_start{
    width: 100%;
    display: flex;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    flex-direction: column;
}
.absolute_right{
    position: absolute;
    right:0;
    top:0;
    z-index: 3;
}
.aside_right .absolute_right{
    right:10vw;
    top:40px;
}
.slider_home{
    height: 100vh;
}
.slider_home img{
    pointer-events: visible;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 70%;
}
.hero .bx-viewport{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/openhand.cur"), all-scroll;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.hero .bx-viewport:focus,
.hero .bx-viewport:active{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
.hero .box_title {
    padding-right: 10.4vw;
    margin-left: 10vw;
    padding-left: 100px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    display: flex;
    margin-bottom: calc(40px*2 + 1rem);
}
.box_title h1 {
    text-transform: none;
    font-size: 3.2rem;
	margin-bottom: 1em;
}
.hero .bx-controls {
    position: absolute;
    right: 10vw;
    bottom: calc(40px*2 + 1rem);
    z-index: 1;
}
.bx-controls-direction{
    /*display: flex;
    gap: 0.5rem;*/
    display: flex;
    /*column-gap: 0.5rem;
    grid-auto-flow: column;*/
}
.bx-prev{
	margin-right:0.5rem;
}
.bx-next,
.bx-prev {
    width: 3.2rem;
    height: 3.2rem;
    background-color: #e0e0e0;
    pointer-events: visible;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-indent: -9999px;
    position: relative;
    background-position: center;
    transition: background 0.2s;
}
.bx-next::before {
    content: '';
    right: 0;
    left: 0;
    margin: auto auto auto 0.75rem;
    width: 1rem;
    border: 1px solid #333;
    height: 1rem;
    position: absolute;
    transform: rotate(-45deg);
    border-width: 0px 1px 1px 0px;
}
.bx-prev::before {
    content: '';
    right: 0;
    left: 0;
    margin: auto 0.75rem auto auto;
    width: 1rem;
    border: 1px solid #333;
    height: 1rem;
    position: absolute;
    transform: rotate(-45deg);
    border-width: 1px 0px 0px 1px;
}
.bx-next:hover,
.bx-prev:hover {
    background: #f2f2f2 radial-gradient(circle, transparent 1%, #f2f2f2 1%) center/15000%;
    transition: background 0.8s;
}
.bx-next:active,
.bx-prev:active {
    background: #e0e0e0 radial-gradient(circle, transparent 1%, #e0e0e0 1%) center/15000%;
    background-size: 100%;
    transition: background 0s;
    pointer-events: visible;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    appearance: none;
}
@-webkit-keyframes arrow {
    0% {
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
    100% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}
@keyframes arrow {
    0% {
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
    100% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
}
.hero .down-arrow{
    position: absolute;
    right: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    margin-right: auto;
    margin-left: auto;
    bottom: calc(40px*2 + 1rem + 0.75rem);
    z-index: 1;
    animation: arrow 0.7s infinite ease-in-out alternate;
    pointer-events: visible;
}
.down-arrow::before{
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.5rem;
    width: 2rem;
    height: 2rem;
    border: 1px solid #E2E2E2;
    transform: rotate(-45deg) scale(0.85);
    border-width: 0px 0px 2px 2px;
    margin: auto;
}
.down-arrow.arrow-black::before{
    border: 1px solid #4f4f4f;
    border-width: 0px 0px 2px 2px;
}
.arrow_block {
    position: absolute;
    bottom: calc(40px*2 + 1rem);
    left: calc(-10vw + 5.2vw + 4rem + 40% + 1rem);
    margin-left: auto;
    margin-right: auto;
    width: 2rem;
    height: 2rem;
    display: flex;
}
.arrow_block .down-arrow{
    animation: arrow 0.7s infinite ease-in-out alternate;
    pointer-events: visible;
}
/*--SLIDER HERO--*/
.cont_start .bx-wrapper{
    display: flex;
    height: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    position: relative;
    padding-bottom: 3.6rem;
}
.cont_start .bx-controls{
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
}
.cont_start .bx-pager {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-right: 20%;
}
.cont_start .bx-pager .bx-pager-item {
    cursor: pointer;
    height: 1rem;
    display: block;
    padding-bottom: 1.8rem;
    box-sizing: content-box;
}
.cont_start .bx-pager .bx-pager-item  .bx-pager-link{
    color: #828282;
    text-decoration: none;
}
.cont_start .bx-pager .bx-pager-item  .bx-pager-link:before{
    content: '0';
}
.cont_start .bx-pager .bx-pager-item  .bx-pager-link:hover,
.cont_start .bx-pager .bx-pager-item  .bx-pager-link.active{
    color: #333333;
}
/*.cont_start .bx-pager .bx-pager-item  .bx-pager-link:after{
    content: '';
    width: 110%;
    height: 1px;
    transition: 0.5s;
    background-color: #4F4F4F;
    position: absolute;
    bottom: 0;
    left: -100px;
}*/
img {
    max-width: 100%;
    height: auto;
}
.d-block{
    display: block;
}
.d-flex{
    display: flex;
    width: 100%;
}
.d-flex-gap{
    /*display: flex;
    width: 100%;
    gap:2rem;*/
    display: table;
    margin-left: -1rem;
    margin-right: -1rem;
}
.d-flex-gap > * {
    padding-left: 1rem;
    padding-right: 1rem;
    display: table-cell;
    width: 50%;
}
.d-flex-col{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.d-flex-col-center{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
}

.d-flex-col-between{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.d-flex-col-between + .col2 *{
    height: 100%!important;
    width: 100%;
}
.col1{
    width: 40%;
    flex-basis: 40%;
    padding-right: 4rem;
}
.col2{
    width: 60%;
    flex-basis: 60%;
}
.title_block{
    text-transform: uppercase;
    color: #4F4F4F;
    font-weight: 600;
    font-size: 1.72rem;
    margin-bottom: 4rem;
    position: relative;
}
.title_block:before{
    content: '';
    position: absolute;
    /*top:1.68rem;*/
    bottom: 9px;
    left:-100px;
    width: 80px;
    height: 1px;
    display: inline-block;
    background-color: #4F4F4F;
}
.col2 .title_block:before{
    display: none;
}
.title_module{
    text-transform: uppercase;
    font-size: 1.36rem;
    font-weight: 500;
}
.slider_hero{
    font-size: 0.84rem;
}
.slider_hero .item{
	position: absolute;
    z-index: 0;
    display: none;
}
.slider_hero .item .content{
    padding-right: 60%;
    /*display: flex;
    gap: 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;*/
    /*display: grid;
    row-gap: 2rem;
    grid-template-columns: repeat(1, 100%);*/
	display:flex;
	flex: 1 1 auto;
	flex-wrap:wrap;
	justify-content: flex-start;
	align-items: start;
	flex-direction: column;
}
.slider_hero .item .content > * {
	margin-bottom:2rem;
	
}
.slider_hero .item .content > *:last-child {
	margin-bottom:0;
}
.slider_hero .title{
    color:#ffffff;
    margin-bottom: 0;
}
.cont_start .progress {
    z-index: 1;
    position: absolute;
    bottom: calc(40px*2);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}
.cont_start .progress {
    width: 0%;
    background-color: #4F4F4F;
    padding-left: 5.2vw;
    padding-right: 6.8vw;
    box-sizing: content-box;
    overflow: visible!important;
}
.cont_start .progress:before{
    top: 0;
    right: 0;
    width: 10px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    transform: rotate(45deg);
    background-color: #4F4F4F;
    transform-origin: 100% 50%;
}
.cont_start .progress:after{
    top: 0;
    right: 0;
    width: 10px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    transform: rotate(315deg);
    background-color: #4F4F4F;
    transform-origin: 100% 50%;
}
.h-100{
    height: 100%;
}
.box_relative{
    position: relative;
}
.box_absolute{
    position:absolute;
}
.text-uppercase{
    text-transform: uppercase;
}
.text-light{
    font-weight: 400;
}
.video_box {
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    z-index: 0;
    position: absolute;
    min-height: 768px;
    display: flex;
	z-index: -1;
    justify-content: center;
}
.video_box video{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    mix-blend-mode: darken;
}
.project_page .col2 .video_box {
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    position: relative;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.project_page .col2 .video_box video {
    transform: scale(1.7);
    margin-top: -5%;
}
.menu_title{
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 1;
    transition: 0.5s;
    color:#333333;
}
.menu_list {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0;
    padding: 0px;
    list-style: none;
    text-align: center;
    transition: 0.5s;
	display:block;
	/*display: grid;
    row-gap: 1.4rem;
    grid-template-columns: repeat(1, 100%);*/
}
.menu_list li{
	margin-bottom:1.4rem;
}
.menu_list li:last-child{
	margin-bottom:0;
}
.menu_list a {
    color:#333333;
    text-decoration: none;
    opacity: 1;
    transition: 0.5s;
}
.menu_list a.active,
.menu_list a:hover {
    opacity: 0.6;
    transition: 0.5s;
}
nav.desktop_nav{
    transition: 0.5s;
}
nav.desktop_nav:hover .menu_title {
    opacity: 0;
    transition: 0.5s;
}
nav.desktop_nav:hover .menu_list {
    opacity: 1;
    transition: 0.5s;
}
@media (min-width: 768px) and (max-width: 1200px){
	nav.desktop_nav .menu_title {
		opacity: 0;
	}
	nav.desktop_nav .menu_list {
		opacity: 1;
	}
}
.social_block{
    width: 100%;
}
.social_block{
    border-top: 1px solid #4F4F4F;
    padding-top: 40px;
	position: relative;
}
.social_list {
    display: flex;
    padding: 0 14%;
    position: absolute;
    width: 100%;
    justify-content: space-evenly;
    top: 100%;
	transform: translateY(-50%);
}
.icon_link {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
}
.outmore .carousel-hero .item-detail{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/openhand.cur"), all-scroll;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.outmore .carousel-hero .item-detail:active {
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
.carousel-hero .item{
    border: 1px solid #4F4F4F;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin-left: -1px;
}
.carousel-hero .item .btn{
    
}
.outmore .carousel-hero .item{
    flex-direction: column;
}
.carousel-horizont-block:not(.outmore) .carousel-hero .c_img{
    flex-basis: 40%;
}
.carousel-horizont-block:not(.outmore) .carousel-hero .item-detail{
    flex-basis: 60%;
}
.carousel-hero .c_img {
    overflow: hidden;
    aspect-ratio: 3/2;
}
.outmore .carousel-hero .c_img{
    width: 100%;
}
.outmore .carousel-hero .c_text,
.outmore .carousel-hero .с_but{
    display: none;
}
.carousel-hero .c_img img{
    pointer-events: visible;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
    mix-blend-mode: darken;
}
.carousel-hero .item:hover .c_img img{
    transform: scale(1.1);
}
.block.carousel-horizont-block:before{
    content: '';
    position: absolute;
    top:0;
    left: -100px;
    width: 80px;
    height: 1px;
    display: inline-block;
    background-color: #4F4F4F;
}
.container:last-child > .block{
    margin-bottom: 2vw;
}
.block{
    position: relative;
    margin-top: 7vw;
    margin-bottom: 7vw;
}
.block.carousel-horizont-block{
    margin-top: 3.5vw;
}
.block.outmore{
    width:138%;
}
.carousel-horizont-block .bx-viewport{
    border-left: 1px solid rgb(51, 51, 51);
}
.bx-viewport{
    z-index: 1;
}
.item-detail{
    padding: 3rem;
    width: 100%;
}
.item-detail .ins{
    position: relative;
}
.carousel-horizont-block:not(.outmore) .item-detail .ins{
    margin-bottom: 2rem;
}
.item-header{
    display: flex;
    flex-direction: row;
    margin-bottom: 1.8rem;
    align-items: center;
}
.c_title{
    color:#606060;
    margin: 0;
    line-height: 1.1;
    width: 60%;
}
.c_cost {
    width: 40%;
    font-size: 1.24rem;
    color: #333;
    text-align: right;
    font-weight: 400;
}
ul.c_list, ul.c_list li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.c_list{
    width: 55%;
    display: flex;
    flex-direction: column;
}
ul.c_list li {
    margin-bottom: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
ul.c_list li span:first-child{
    font-weight: 400;
}
ul.c_list li span:last-child{
    font-weight: 600;
}
.c_stage{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
}
.c_stage img{
    max-width: 100%;
    height: auto;
}
.prem{
    width: 100%;
    /*gap: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;*/
	display:flex;
	flex-wrap: wrap;
	margin-bottom: -2rem;
}
.prem_item{
	flex-basis: 100%;
	width: 100%;
	padding-bottom:2rem;
	display: flex;
    flex-direction: column;
}
.prem_body{
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}
.prem_body p{
    margin-bottom: 0;
}
.prem_icon{
    margin-right: 1.6rem;
	margin-bottom: 4px;
}
.advantes .prem_icon {
    margin-top: 6px;
}
.modal{
	display:none;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: transparent;
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
}
.faq_item:not(:last-child) {
    border-bottom: 1px solid #454545;
}
.accordion h5{
    font-weight: 400;
    margin-bottom: 0;
}
.accordion.active h5{
    color:#121212;
}
.accordion .label-plus {
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion .label-plus .svg-plus{
    transform: rotate(0deg);
    transition: all 150ms ease-out 0ms;
    opacity: .7;
}
.accordion.active .label-plus .svg-plus{
    -webkit-transform: rotate(45deg)!important;
    transform: rotate(45deg)!important;
    transition: all 150ms ease-out 0ms;
    opacity: 1;
}
.accordion:hover .label-plus .svg-plus{
    transition: all 150ms ease-out 0ms;
    opacity: 1;
}
.accordion .label-plus .svg-plus{
    fill: currentColor;
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    flex-shrink: 0;
    user-select: none;
}
.panel {
    /* display: none; */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}
.panel p{
    margin: 0 0 1rem 0;
}
.contact_slide{
    height: 100%;
    min-height:600px;
	background: #d1d1d1;
}
.contact_slide img{
    mix-blend-mode: multiply;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}
.aboutus_office{
    height: 100%;
    min-height:600px;
    background: center / cover no-repeat url("/assets/images/aboutus_office.jpg");
    mix-blend-mode: luminosity;
}
.annotation{
    width: 50%;
}
footer{
    padding: 0.75rem;
    background-color: #4F4F4F!important;
    text-align: center;
    font-size: 0.86rem;
    color: #c7c7c7;
    margin-top: 4rem;
}
.main_dark{
    background-color: #4f4f4f!important;
    color: #c7c7c7;
}
.main_dark + footer{
    margin-top: 0;
    border-top: 1px solid #c7c7c72b;
}
.main + .main_dark{
    margin-top: 7vw;
}
.main_dark .container:last-child .block {
    margin-bottom: 6vw;
}
.main_dark .title_block {
    color: #ffffff;
}
.main_dark a {
    color: #c7c7c7;
}
.main_dark a:hover {
    color: #ffffff;
}
.main_dark .text-strong {
    color: #ffffff;
}
.main_dark .text-small {
    color: #c7c7c7;
}
.main_dark .title_block:before {
    background-color: #c7c7c7;
    opacity: 0.5;
}
.mode-lighten {
    mix-blend-mode: lighten;
}
.mobile{
    display: none;
}
.desktop{
    display: block;
}
.descr_project {
    align-items: center;
}
.project_page .video_box {
    z-index: 0;
    position: relative;
}
strong{
    font-weight: 600;
}

.group_tab{
    display: flex;
}
.detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.detail span{
    width: 70%;
}
.detail strong{
    width: 30%;
    white-space: nowrap;
}
.tabs {
    position: relative;
    width: calc(40% - 4rem);
    flex-basis: calc(40% - 4rem);
    padding: 0;
}
.contents{
    position: relative;
    width: calc(60% + 4rem);
    flex-basis: calc(60% + 4rem);
    padding: 0;
}
.tab-content {
    position: absolute;
    /*display: none;*/
    display: block;
    opacity: 0;
    min-height: 100%;
    padding: 1rem 1rem 1rem 4rem;
    background: #d1d1d1;
    border: 1px solid #ababab /*#4f4f4f*/;
    top: 0;
    left: -1px;
    width: 100%;
}
.tabs input {
    display: none;
}
.tabs label {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 1px solid #ababab;
    border-right-color: #ababab /*#4f4f4f*/;
    background: #4F4F4F /*#d1d1d1*/;
    cursor: pointer;
    margin-bottom: -1px;
}
.tabs label h3{
    text-transform: uppercase;
    margin-bottom: 0;
	color: #d1d1d1;
    font-size: 1.9rem;
}
.tabs input:hover:not(:checked) + label{
	background: #5e5e5e;
}
.tabs input:checked + label {
    background: #d1d1d1;
    border-right: 0 solid transparent;
    border-color: #ababab /*#4f4f4f*/;
    z-index: 1;
    position: relative;
	color: #4F4F4F;
}
.tabs input:hover + label h3{
    color: #d1d1d1;
    transition: all 0.3s ease;
}
.tabs input:checked + label h3{
    color: #4F4F4F;
    transition: all 0.3s ease;
}
.tabs input + label h3,
.tabs input:checked + label h3,
.tabs input:checked:hover + label h3{
    margin-left: 0;
    transition: all 0.3s ease;
}
.tabs input:hover + label h3{
    /*margin-left: 0.25rem;*/
    transition: all 0.3s ease;
}
.tabs input + label .descr {
    display: none;
}
.tabs input:checked + label .descr {
    display: block;
    margin-top: 1rem;
}
.tab-content.active {
    /*display: block;*/
    opacity: 1;
    position: relative;
}
.tab-content .bx-controls{
    margin-top: 1rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 1;
}
.tab-content .bx-controls .bx-pager{
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
}
.tab-content .bx-controls .bx-pager .bx-pager-item{
    
}
.tab-content .bx-controls .bx-pager .bx-pager-item .bx-pager-link{
    height: 2.4rem;
    width: 2.4rem;
    background: #d1d1d1;
    border: 1px solid #4f4f4f;
    margin-left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.tab-content .bx-controls .bx-pager .bx-pager-item .bx-pager-link:hover,
.tab-content .bx-controls .bx-pager .bx-pager-item .bx-pager-link.active{
    background-color: #4f4f4f;
    color: #d1d1d1;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.tab-content .bx-caption{
    bottom: 0;
    width: 60%;
    height: 2.4rem;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}
.tab-content .bx-wrapper {
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/openhand.cur"), all-scroll;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.tab-content .bx-wrapper:active {
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
.tab-content .bx-wrapper img{
    width: 100%;
    height: auto;
    /*opacity: 0.7;*/
}
.tab-content .bx-wrapper .bx-viewport{
    /*mix-blend-mode: multiply;*/
    mix-blend-mode: darken;
}
.btn.btn_size {
	position: absolute;
    bottom: 0;
	width:auto;
}
@media (max-width: 991px){
	.btn.btn_size {
		position: relative;
		width: 100%;
		margin-top: 5em;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.btn.btn_absolute {
    position: absolute;
    bottom: 0;
    left: 0;
}
.over_img_cont{
    height: 100%;
    margin-right: -10vw;
}
.over_img_cont img{
    pointer-events: visible;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: grayscale(100%) brightness(1.2);
    mix-blend-mode: darken;
}
ul.nolist,
ul.list{
    margin-bottom: 2rem;
    list-style: none;
}
ul.list li{
    padding-left: 1.1rem;
    margin-left: 0;
    position: relative;
}
ul.nolist li{
    padding-left: 0;
    margin-left: 0;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.2;
}
ul.list li:before{
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
}
table.cost{
    width: 100%;
    margin-bottom: 3vw;
    border: none;
    border-collapse: collapse;
}
table.cost tr th{
    font-weight: bold;
    text-align: right;
    vertical-align: top;
}
table.cost tr th h5{
    font-weight: 600;
    line-height: 1.1;
}
table.cost tr th .text-small{
    font-weight: 400;
}
table.cost tr td{
    text-align: right;
	border: none;
	padding: 0.9rem 0 0.9rem 0;
	vertical-align: top;
    border-bottom: 1px solid #ababab;
    white-space: nowrap;
    width: 18%;
}
table.cost tr td:first-child{
    text-align: left;
    padding: 0.9rem 0 0.9rem 0;
    width: 28%;
}
table.cost tr td:last-child h4{
    font-weight: 500;
}
table.cost tr:last-child td{
    border-bottom: 0 none;
}
table.cost *{
    margin-bottom: 0;
}
table.cost h3 {
    text-transform: uppercase;
}
table.cost h3 > span{
    font-weight: 300;
    text-transform: none;
    white-space: nowrap;
	font-size: 1.36rem;
	line-height: 1.5;
}
.tabs label h3 > span{
	font-size: calc(1.4vw + 0.1rem);
    letter-spacing: 0.03vw;
	font-weight: 300;
    text-transform: none;
    white-space: nowrap;
	float:right;
	line-height: 2.6rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
	.tabs label h3 > span{
		display:none;
	}
	.detail span {
		font-size: 70%;
	}
	table.cost h3 > span {
		white-space: nowrap;
		font-size: 1.1rem;
		font-weight: 400;
		line-height: 2;
	}
}
@media (min-width: 992px) {
	table.cost h3 > span {
		float: right;
	}
}
@media (max-width: 991px){
	.tabs label h3 > span{
		font-size: calc(3.4vw + 0.1rem);
		letter-spacing: 0.05vw;
		font-weight: 500;
		text-transform: none;
		white-space: nowrap;
		float: right;
		line-height: 2.6rem;
		width: 30%;
	}
}
.annotcase{
    text-align: right;
}
.annotcase .annotation{
    margin-left: auto;
}
@media (max-width: 1199px) {
	.text_tree_col{
		display:block;
		width: 100%;
	}
	.text_tree_col > div{
		width:100%;
		height:auto;
		margin-bottom: 2rem;
	}
	.text_tree_col > *:last-child{
		margin-bottom: 0;
	}
}
@media (min-width: 1200px) {
	.text_tree_col{
		display:flex;
	}
	.text_tree_col > div{
		flex: 1 1 33.333%;
		margin-right: 2%;
	}
	.text_tree_col > *:last-child{
		margin-right: 0;
	}
}

.text_two_col{
    /*gap: 2rem;
    grid-template-columns: 1fr 1fr;
    display: grid;*/
	display:flex;
}
.text_two_col > *{
	margin-right: 2rem;
	width: 50%;
}
.text_two_col > *:last-child{
	margin-right: 0;
}
.cont-block.cont-flex{
    /*display: flex;
    gap: 4rem;*/
}
.cont-block.cont-flex .item:first-child{
    width: 26%;
    max-width: 225px;
}
.mobbtm {
    margin: 0 7vw 7vw 7vw;
    text-align: center;
    display: flex;
    justify-content: center;
}
.gallery .bx-viewport{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/openhand.cur"), all-scroll;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.gallery .bx-viewport:focus,
.gallery .bx-viewport:active{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
/*---БОКОВАЯ ПАНЕЛЬ---*/
body.sidebar-opened {overflow:hidden;}
.hidden-overley {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity:0;
    width:0;
    height:0;
    transition: opacity 1s;
}
.hidden-overley.show {
    height: 100%;
    width: 100%;
    opacity:0.5;
    transition: opacity 1s;
}
.sidebar{
    position: fixed;
    z-index:100;
    width: calc(300px + 6vw*2);
    height: calc(100% + 40px + 80px);
    right: calc(-300px - 6vw*2);
    padding: 40px 6vw 80px 6vw;
    box-sizing: border-box;
    top:0;
    background: #d1d1d1;
    transition: all 0.4s ease;
    overflow: auto;
    box-shadow: 0 0 0 0 rgba(0,0,0,0),0 0 0 0 rgba(0,0,0,0.0),0 0 0 0 rgba(0,0,0,0);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: radial-gradient(100% 100% at 0 0,#e2e2e2 0,hsla(0,0%,91%,.5) 100%);
}
.sidebar.show{
    right: 0px;
    box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12);
}
.sidebar .pushmenu.btn{
    margin-left: auto;
    padding: 0.65rem;
}
.sidebar .pushmenu.btn svg.close_icon {
    fill: currentColor;
    width: 1rem;
    height: 1rem;
    display: inline-block;
    font-size: 1rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.item_scope{
    background-color: #D9D9D9;
    height: 100%;
    margin-bottom: 0.5rem;
}
.scope_head{
    background-color: #4F4F4F;
    color:#D1D1D1;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
	min-height: calc(60px + 2rem * 2);
}
.scope_head h4{
    font-weight: 300;
    margin-bottom: -4px!important;
    margin-left: 7%;
    color: #D1D1D1;
	width: min-content;
}
.scope_head img{
    width: 60px;
    height: 60px;
}
.scope_body{
    padding-top: 1px;
    padding-bottom: 2rem;
}
.scope_body.scope_body_light{
    padding-top: 0;
    padding-bottom: 0;
}
.scope_body h5{
    margin: 2rem 2rem 0.75rem 2rem;
}
.scope_body.scope_body_light h5 {
    margin: 2rem 2rem 0.75rem 0;
}
.scope_body .module-subtitle{
    font-weight: 700;
    font-size: 1rem;
}
.scope_body.scope_body_light .scope_list li {
    margin-bottom: 0;
    padding: 0.5rem 2rem 0.5rem 0rem;
}
.fancybox-close-small {
    filter: invert(1);
}
@media (min-width: 1200px) {
	.item_scope.split{
		margin-right: 0;
		border-right: 1px solid #d1d1d1;
	}
	.item_scope.split .scope_head {
		margin-right: -1px;
	}
}
@media (max-width: 1200px) {
	.item_scope.split{
		margin-bottom: 0;
	}
	.item_scope.split + .item_scope .scope_head{
		display:none;
	}
	.item_scope.split .scope_body {
		padding-bottom: 0;
	}
}
ul.scope_list{
    border-top: 1px solid #D1D1D1;
    margin: 0;
    padding: 0;
    list-style: none;
}
.scope_list li{
    border-bottom: 1px solid #D1D1D1;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.5rem 2rem;
}
.scope_list.plus li,
.scope_list.minus li{
    padding-left: 3.1rem;
    position: relative;
}
.scope_list.plus li:before{
    content: '+';
    position: absolute;
    left:2rem;
    top:0.5rem;
}
.scope_list.minus li:before{
    content: '-';
    position: absolute;
    left:2rem;
    top:0.5rem;
}
.h100{
    min-height: 100vh;
}
.d-flex-center {
    display: flex;
    align-items: center;
}
.d-flex-end {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: flex-end;
}
.portrait{
    max-width: 460px;
    height: auto;
    width: 100%;
}
.title{
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
    margin-bottom: 3vw;
}
.title span{
    margin-top: 1rem;
    font-size: 0.89rem;
    display: block;
    font-weight: 400;
}
/*-----------------------------------------------------------------
---------------------------АДАПТИВКА ОТ----------------------------
-----------------------------------------------------------------*/
/*--SM (от 768px)--*/
@media (min-width: 768px) {
    /*--мобильное меню--*/
    .side-menu,
    .mobile_nav,
    .hamb{
        display: none;
    }
    /*--мобильное меню--*/
    .hero .bx-pager{
        display: none;
    }
    section.gallery{
        padding-left: 0;
    }
    section.gallery .bx-wrapper{
        height: 100vh;
    }
    section.gallery .bx-wrapper *{
        height: 100%!important;
    }
    section.gallery .bx-wrapper img {
        width: auto!important;
        height: 100%;
    }

}
/*--MD (от 992px)--*/
@media (min-width: 992px) {
    .col50{
        width: 50%;
        flex-basis: 50%;
    }
    .portrait_first{
        margin-top: calc(-7vw - 5.72rem)
    }
    .portrait_second{
        margin-top: 0;
    }
}
/*--LG  (от 1200px)--*/
@media (min-width: 1200px) {
	.prem {
        /*display: grid;
        gap: 3rem;
        grid-template-columns: 1fr 1fr;*/
		display:flex;
		flex-wrap: wrap;
        width: calc(100% + 3rem);
		margin-left: -1.5rem;
		margin-bottom: -3rem;
    }
	.prem_item{
		flex-basis: 50%;
		width: 50%;
		padding-left:1.5rem;
		padding-right:1.5rem;
		padding-bottom:3rem;
	}
}
/*--XL  (от 1400px)--*/
@media (min-width: 1400px) {
    
}
/*--HD  (от 1900px)--*/
@media (min-width: 1900px) {
    html{
        font-size: 0.86vw;
    }
    .slider_hero .item .description{
        font-size: 1rem;
    }
    .container {
        padding-left: 5.2vw;
        padding-right: 10.4vw;
    }
    .start{
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .cont_start{
        padding-top: 3.5vw;
        padding-bottom: 3.5vw;
    }
    .aside{
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .aside_right .absolute_right{
        right: 10vw;
        top: 5vh;
    }
    .block.carousel-horizont-block:before{
        left:-5.2vw;
        width: 4.2vw;
    }
    .title_block:before{
        left:-5.2vw;
        width: 4.2vw;
    }
    button.btn{
        padding: 0.65rem 2.4rem 0.65rem 2.4rem;
    }
    .social_block {
        padding-top: 5vh;
    }
    .cont_start .progress {
        bottom: calc(5vh * 2);
    }
    .cont_start .progress {
        padding-right: 5vw;
    }
    .hero .box_title {
        margin-bottom: calc(5vh + 5vh + 1rem);
    }
    .hero .bx-controls {
        bottom: calc(5vh + 5vh + 1rem);
    }
    .hero .down-arrow{
        bottom: calc(5vh + 5vh + 1rem + 0.75rem);
    }
    .over_img_cont {
        margin-right: -10.4vw;
    }
    .cont-block.cont-flex .item:first-child{
        width: 26.25%;
        max-width: 225px;
        min-width: 225px;
    }

    .sidebar{
        width: calc(300px + 6vw*2);
        height: calc(100% + 5vh + 10vh);
        right: calc(-300px - 6vw*2);
        padding: 5vh 5rem 10vh 5rem;
    }
    .about .title_block{
        max-width: 21vw;
    }
}
/*-----------------------------------------------------------------
-------------------------------END---------------------------------
-----------------------------------------------------------------*/



/*-----------------------------------------------------------------
-----------------------------АДАПТИВКА ДО--------------------------
-----------------------------------------------------------------*/
/*--LG  (до 1399px)--*/
@media (max-width: 1399px) {
    .slider_hero .item .content {
        padding-right: 40%;
        /*gap: 1rem;*/
        /*display: grid;
        row-gap: 1rem;
        grid-template-columns: repeat(1, 100%);*/
		display:flex;
		flex: 1 1 auto;
		flex-wrap:wrap;
		justify-content: flex-start;
    }
	.slider_hero .item .content > * {
		margin-bottom:1rem;
	}
	.slider_hero .item .content > *:last-child {
		margin-bottom:0;
	}
    .video_box {
        right: -5vw;
    }
    .container {
        padding-left: 5.2vw;
        padding-right: 5.2vw;
    }
    .cont_start .bx-controls {
        width: 70%;
    }
    .title_block:before{
        left:-5.2vw;
        width: 4vw;
    }
    .aside_right .absolute_right {
        right: 5.2vw;
    }
    .carousel-horizont-block:not(.outmore) .carousel-hero .item-detail .c_text p{
        display: none;
    }
    .title_autor {
        width: 70%;
    }
    .hero .box_title {
        padding-right: 5.2vw;
        margin-left: 10vw;
        padding-left: 5.2vw;
    }
    .hero .bx-controls {
        right: 5.2vw;
    }
    .arrow_block {
        left: calc(-10vw + 5.2vw + 4rem + 40% + 1vw);
    }
}
.cont_start .video_box:before{
	content:'';
	background: rgb(209,209,209);
	background: radial-gradient(circle, rgba(209,209,209,0) 0%, rgba(209,209,209,0) 35%, rgba(209,209,209,1) 75%, rgba(209,209,209,1) 100%);
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	z-index:1;
	margin: auto;
	aspect-ratio: 1 / 1;
}
/*--MD (до 1199px)--*/
@media (max-width: 1199px) {
    .prem {
        grid-template-columns: auto;
    }
    .btn.btn_absolute {
        position: relative;
        bottom: 0;
        left: 0;
        display: inline-block;
        width: auto;
        margin-left: auto;
        float: right;
        margin-top: 2rem;
    }
    .cont-block.cont-flex .item:first-child{
        width: 24.7%;
        max-width: 225px;
    }
	.brand_logo {
		max-width: 50px;
	}
}
/*--SM (до 991px)--*/
@media (max-width: 991px) {
    h1, .h1 {
        font-size: 2.5rem;
    }
    h5, .h5 {
        font-size: 1.1rem;
    }
    a.brand_link {
        padding: 0 2vw;
    }
    .block.d-flex {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .col1,
    .col2 {
        width: 100%;
        flex-basis: 100%;
        padding-right: 0;
        position: relative;
    }
    .carousel-hero .item {
        display: flex;
        flex-direction: column;
    }
    .carousel-horizont-block:not(.outmore) .carousel-hero .c_img {
        flex-basis: 100%;
    }
    .carousel-horizont-block:not(.outmore) .carousel-hero .item-detail {
        flex-basis: 100%;
    }
    .project_page .col2 .video_box video {
        margin-top: 0;
    }

    .group_tab {
        display: flex;
        flex-direction: column;
    }
    .tabs,
    .contents {
        position: relative;
        width: 100%;
        flex-basis: 100%;
        padding: 0;
    }
    .tabs label {
        border-right-color: #ababab;
    }
    .tabs input:checked + label {
        border-right: 1px solid #ababab /*#4f4f4f*/;
        border-bottom: 0 solid transparent;
    }
    .tab-content {
        left: 0;
    }
    .tabs{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .tab.current{
        order: 3;
    }
    .tab-content {
        padding: 1rem 1rem 1rem 1rem;
    }
    .detail {
        margin-bottom: 0;
    }
    table.cost h3 > span {
        white-space: nowrap;
        font-size: 1.1rem;
        display: block;
        font-weight: 400;
    }
    .cont-block.cont-flex .item:first-child{
        width: 24.25%;
        max-width: 225px;
        min-width: 225px;
    }
    .cont-block.cont-flex {
        /*gap: 2rem;*/
    }
    .scope_head img {
        width: auto;
        height: auto;
        max-width: 20%;
        max-height: 20%;
    }
    .portrait_first{
        margin-top: 0;
    }
    .arrow_block{
        display: none;
    }
}
/*--XS (до 767px)--*/
@media (max-width: 767px) {
    h1, .h1 {
        font-size: 2.2rem;
    } 
	.box_title h1 {
		font-size: 2.6rem;
	}
	h2, .h2 {
        font-size: 2.2rem;
    }
    h5, .h5 {
        font-size: 1.05rem;
    }
    .slider_hero .item .content {
        padding-right: 0;
    }
    .start {
        padding-top: 40px;
        padding-bottom: 40px;
        height: auto;
    }
    .container {
        padding-left: 7vw;
        padding-right: 7vw;
        /*overflow-x: hidden;*/
    }
    .video_box {
        top: 0;
        right: 0;
        width: calc(100% + 7vw*2);
        height: 100%;
        z-index: 0;
        position: relative;
        min-height: auto;
        display: block;
        margin-top: -10%;
        margin-bottom: -10%;
        margin-left: -7vw;
        margin-right: -7vw;
    }
    .cont_start .progress {
        bottom: 0;
        left: -7vw;
        position: relative;
        padding-right: calc(5vw + 8.2vw);
    }
    .hero .bx-controls {
        bottom: 7vw;
        right: 7vw;
        left: 7vw;
    }
    .hero .down-arrow{
        display: none;
    }
    .block.carousel-horizont-block:before{
        display: none;
    }
    .cont_start {
        position: relative;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
    .box_relative {
        position: relative;
    }
    .cont_start .bx-controls {
        width: 100%;
    }
    .cont_start .bx-wrapper {
        padding-bottom: 4rem;
    }
    .item-detail {
        padding: 2rem;
    }
    .item-header {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.8rem;
        align-items: start;
    }
    .c_cost {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
    }
    .c_title {
        width: 100%;
        margin-bottom: 1rem;
    }
    ul.c_list {
        width: 100%;
        flex-direction: column;
    }
    .c_stage {
        position: relative;
    }
    .block {
        position: relative;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    .main + .main_dark{
        margin-top: 4rem;
    }
    .main_dark .container:last-child .block {
        margin-bottom: 3rem;
    }
    .contact_slide {
        min-height: 320px;
    }
    .order1{
        order:1;
    }
    .order2{
        order:2;
    }
    .aside{
        display: none;
    }
    section {
        padding-left: 0;
        padding-right: 0;
		display: block;
		overflow-x: hidden;
    }
    .title_block:before{
        display: none;
    }
    .slider_home {
        height: 100%;
        min-height: 280px;
    }
    .hero {
        min-height: auto;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .hero .box_title {
        margin: 40px 7vw 20px 7vw;
        padding-right: 0;
        padding-left: 0;
        position: relative;
        z-index: 1;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
        display: block;
    }
    .hero .box_title h1{
        color: #4F4F4F;
        font-size: 2.4rem;
    }
    .hero .bx-wrapper{
        position: relative;
    }
    /*--мобильное меню--*/
    main > .toogle:not(.first) {
		position: relative;
		z-index: 10!important;
	}
    .hamb{
        cursor: pointer;
        padding: 40px 7vw;
        position: fixed;
        top: 0;
        right: 0;
        height: 36px;
        z-index: 1;
        display: flex;
        box-sizing: content-box;
        align-content: center;
        align-items: center;
        justify-content: space-between;
    }
    /* Style label tag */
    .hamb-line {
        background: #4f4f4f;
        display: block;
        height: 2px;
        position: relative;
        width: 36px;
     
    } /* Style span tag */
    .hamb-line:before,
    .hamb-line:after{
        background: #4f4f4f;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    /* Style label tag */
    .project_page .hamb-line {
        background: #d1d1d1;    
    } /* Style span tag */
    .project_page .hamb-line:before,
    .project_page .hamb-line:after{
        background: #d1d1d1;
    }
    .hamb-line:before{
        top: 8px;
    }
    .hamb-line:after{
        top: -8px;
    }
    .side-menu {
        padding: 40px 7vw;
        position: absolute;
        top: 0;
        right: 0;
        height: 116px;
        width: calc(36px + 7vw*2);
        z-index: 1;
        opacity: 0;
    } 
    /* Hide checkbox */
    /* Nav menu */
    .mobile_nav{
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: #333;
        overflow: hidden;
    }
    .mobile_nav{
        max-height: 0;
        transition: max-height .5s ease-out;
		
		display: flex;
		flex-direction: column;
		justify-content: space-between;
    }
    /* Toggle menu icon */
    .side-menu:checked ~ .mobile_nav{
        max-height: 100%;
    }
    .side-menu:checked ~ .hamb .hamb-line {
        background: transparent;
    }
    .side-menu:checked ~ .hamb .hamb-line:before {
        transform: rotate(-45deg);
        top:0;
        background: #d1d1d1;
    }
    .side-menu:checked ~ .hamb .hamb-line:after {
        transform: rotate(45deg);
        top:0;
        background: #d1d1d1;
    }
    .mobile_nav .menu_list{
        opacity: 1;
        margin-top: 110px;
        margin-bottom: 2rem;
		display:block;
    }
	.mobile_nav .menu_list li{
		margin-bottom:1.4rem;
	}
	.mobile_nav .menu_list li:last-child{
		margin-bottom:0;
	}
    .mobile_nav .menu_list a{
        color: #d1d1d1;
    }
    /*--мобильное меню--*/
    .aside_right .absolute_right {
        display: none;
    }
    .hero .bx-controls-direction{
        display: none;
    }
    .hero .bx-pager{
        /*display: flex;
        gap:9px;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        align-content: center;
        flex-wrap: nowrap;
        margin-left: auto;
        margin-right: auto;*/
        display: flex;
        justify-content: center;
        align-items: center;
        grid-auto-columns: min-content;
        grid-auto-flow: column;
    }
	.hero .bx-pager .bx-pager-item{
		margin-left: 5px;
		margin-right: 5px;
	}
    .hero .bx-pager a.bx-pager-link {
        text-indent: -9999px;
        display: block;
        width: 6px;
        height: 6px;
        background: #d1d1d1;
        border-radius: 50%;
        opacity: 0.3;
    }
    .hero .bx-pager a.bx-pager-link:hover, 
    .hero .bx-pager a.bx-pager-link.active {
        opacity: 1;
        width: 9px;
        height: 9px;
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    .mobile.brand_link {
        padding: 20px 7vw;
		position: absolute!important;
		top: 0;
		left: 0;
		height: 116px;
		z-index: 3!important;
    }
    .mobile .brand_logo {
        width: auto;
        max-width: 60px;
        height: 100%;
    }
    .title_block {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        background: #d1d1d1;
        display: table-caption;
        padding-right: 1rem;
        position: relative;
        z-index: 1;
        width: fit-content;
    }
    .title_block:after {
        content: '';
        position: absolute;
        top: auto;
        right: -2000px;
        bottom: 0.42rem;
        z-index: -1;
        width: 2000px;
        height: 1px;
        display: inline-block;
        background-color: #4F4F4F;
    }
    .about .title_block{
        display: block;
        background: transparent;
    }
    .about .title_block:after {
        right: auto;
        left: 0;
    }
    .about .title_block span{
        background-color: #d1d1d1;
        padding-right: 1.4rem;
    }
    .main_dark .title_block {
        background: #4f4f4f;
    }
    .main_dark .title_block:after {
        background-color: #929292;
    }
    .title_module {
        font-size: 1.2rem;
    }
    .project_page .col2 .video_box {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .descr_project {
        margin-top: 0;
    }
    .bx-caption {
        width: 50%;
    }
    .over_img_cont {
        height: 100%;
        margin-right: -7vw;
        margin-left: -7vw;
        margin-top: 3rem;
    }
    .text_two_col{
        display: block;
    }
	.text_two_col > *{
		margin-right: 0;
		width: 100%;
	}
    table.cost td, table.cost tr { display: block; }
    /* Hide table headers (but not display: none;, for accessibility) */
    table.cost thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    table.cost tr {  }
    table.cost tr + tr { margin-top: 1.5em; }
    table.cost td {
        /* make like a "row" */
        border: none;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
    table.cost td:before {
        content: attr(data-label);
        line-height: 1.5;
        font-weight: 400;
        white-space: normal;
		text-align: left;
		display: inline-block;
		width: 40%;
		font-size: 95%;
    }
    table.cost tr td {
        text-align: right;
        border: none;
        padding: 0.5rem 0 0.5rem 0;
        vertical-align: top;
        border-bottom: 1px solid #ababab;
        white-space: nowrap;
        width: 100%;
    }
    table.cost tr td:first-child {
        padding: 0.5rem 0 0.5rem 0;
        width: 100%;
        text-align: left;
    }
    table.cost tr td h4 {
        font-weight: 600;
		display: inline-block;
		width: 60%;
		white-space: normal;
		font-size: 120%;
    }
    table.cost tr td:last-child h4 {
        font-weight: 600;
    }
    table.cost tr:last-child td {
        border-bottom: 1px solid #ababab;
    }
    table.cost tr td:first-child:before{
        display: none;
    }
    table.cost {
        margin-bottom: 3rem;
    }

    .annotation {
        width: 100%;
        font-size: 0.86rem;
    }
    .portrait {
        max-width: 100%;
        height: auto;
    }
}

/*--XS (до 560px)--*/
@media (max-width: 560px) {
    .cont-block.cont-flex {
        /*gap: 2rem;*/
    }
    .cont-block.cont-flex .item:first-child {
        width: 26.25%;
        max-width: 88px;
        min-width: auto;
    }
}
/*--XSS (до 360px)--*/
@media (max-width: 360px) {
    .btn.btn_absolute {
        display: block;
        float: none;
        text-align: center;
    }
    .cont-block .brand_logo{
        margin-top: 1rem !important;
    }
}
table.cost tr td h4 {
	margin-top: 4px;
	font-weight:400;
}
/*-----------------------------------------------------------------
-------------------------------END---------------------------------
-----------------------------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1399px) {
    .scope_head h4,
    .scope_list li {
        font-size: 90%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .annotation {
        width: 100%;
        font-size: 90%;
    }
    table.cost tr td h4 {
		font-size: 1.2rem;
		margin-top: 6px;
    }
    .scope_head h4,
    .scope_list li {
        font-size: 90%;
    }
	.slider_interior img {
		aspect-ratio: 16 / 10!important;
	}
}
@media (min-width: 766px) and (max-width: 991px) {
    .over_img_cont {
        margin-right: 0;
    }
    table.cost tr td h4 {
        font-size: 1.2rem;
		margin-top: 6px;
    }
}
@media (max-width: 991px) {
    .annotation,
	.annotcase{
		text-align: left;
	}
	.annotcase .annotation {
		margin-left: 0;
	}
}
#tr-popup[data-hidden="true"]{
	top: 0;
}
.img-full{
	position:relative;
}
.img-full .absolute-sticky{
	position: absolute;
	top: 40px;
	left: calc(10vw + 100px);
    right: 10vw;
	bottom: 40px;
	z-index: 1;
}
.img-full .sticky{
	position:sticky;
    top: 40px;
	text-align: right;
}
.img-full .absolute-bottom{
	position: absolute;
	bottom: 40px;
	left: calc(10vw + 100px);
    right: 10vw;
	bottom: 40px;
	z-index: 1;
}
.img-full .absolute-bottom .box_title h1 {
    color: #f1f1f1;
    margin-bottom: 0;
}

@media (max-width: 1399px){
	.img-full .absolute-sticky,
	.img-full .absolute-bottom{
		left: calc(5.2vw + 10vw);
		right: 5.2vw;
	}
}
@media (min-width: 1900px){
	.img-full .absolute-sticky {
		left: 5.2vw;
		right: 10.4vw;
		bottom: 5vh;
	}
}
@media (max-width: 768px){
	.img-full .absolute-sticky {
		position: absolute;
		top: 7vw;
		left: 7vw;
		right: 7vw;
		bottom: 7vw;
		z-index: 1;
	}
	.img-full .absolute-sticky,
	.img-full .absolute-bottom{
		left: calc(7vw);
	}
}
.house3d {
    display: flex;
    align-items: center;
    /*height: calc(100% + 12vw)!important;
    width: calc(100% + 12vw)!important;*/
	width: calc(100% + 30vw)!important;
    margin: -15vw!important;
	position:relative;
	max-height: none!important;
}
.house3d:before {
	content:'';
	margin:auto;
	top:27%;
	bottom:0;
	left:0;
	right:0;
	border-radius:50%;
    position: absolute;
	width: 72%;
    height: 36%;
	background: #CACACA;
	border: 1px solid #909090;
	z-index: -1;
}
.house3d:after {
    content: '';
    position: absolute;
    top: calc(27% + 36% + 14% + 4px);
    height: 6px;
    width: 6px;
    background-color: #4F4F4F;
    border-radius: 50%;
    left: calc(50% - 3px);
	
	transform-origin: 0 -46vw;
	animation: Ball 1s linear infinite alternate;
}
@media (max-width: 1399px){
	.house3d:after {
		top: calc(27% + 36% + 14% + 3px);
	}
}
@media (max-width: 1199px) {
	.house3d:after {
		top: calc(27% + 36% + 18% + 1px);
	}
}
@media (max-width: 768px){
	.house3d:after {
		top: calc(0% + 82% + 0vw - 4px);
	}
}
@keyframes Ball {
  0% {
    transform: rotate(1deg);
  }
  
  50% {
    transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(-1deg);
  }
}

.spiner {
    flex: 0 1 auto;
}
.threesixty .threesixty_images img {
    top: 0;
    bottom: 0;
    margin: auto;
	z-index: 9;
	position:absolute;
}
.threesixty .spinner {
    margin: 0 auto!important;
}

.threesixty .threesixty_images{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/openhand.cur"), all-scroll;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.threesixty .threesixty_images:focus,
.threesixty .threesixty_images:active{
    cursor: url("https://www.google.com/intl/en_ALL/mapfiles/closedhand.cur"), all-scroll;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
.threesixty {
	aspect-ratio: 108 / 70;
}

.pseudo_btn {
    background-image: url(../../../../assets/images/ar_icon_b.svg);
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 12px 50%;
    background-color: transparent;
    color: #4F4F4F;
    left: 50%;
    transform: translateX(-50%);
    padding: 1px 16px 0px 40px;
	position: relative;
    display: inline-block;
	opacity: 0.72;
}

@media (min-width: 1200px){
	.house3d {
		height: calc(100% + 12vw)!important;
		width: calc(100% + 12vw)!important;
		margin: -6vw!important;
	}
	.house3d:before {
		top:20%;
	}
	.threesixty {
		aspect-ratio: 108 / 70;
	}
	/*.threesixty {
		height: 25vw!important;
	}*/
}
@media (max-width: 1199px){
	.threesixty {
		height: auto!important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.house3d {
		height: calc(100% + 12vw)!important;
		width: calc(100% + 12vw)!important;
		margin: -6vw!important;
	}
}
/*
.modal_info {
    background: #4F4F4F;
    color: #d1d1d1;
    height: 1.3em;
    width: 1.3em;
    display: inline-block;
    border-radius: 50%;
    margin: 0 0.5rem 0 0.5rem;
    line-height: 1.3em;
    text-align: center;
    font-size: 0.6em;
    position: relative;
    top: -2px;
    font-weight: 600;
}
.modal_info:hover {
	background: #5e5e5e;
	color: #d1d1d1;
}
*/
.modal_info {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAiElEQVR4nGNgwAPs7e1ZtLU0n8IwA7nA2NiYVVtL8z8MMzAwMA6sQSCgp6amCMMMAwK0tdV9tbQ0P2DDDCQaFIwcLtrkhpGWlpaNtpbGHjDW1Ng7uGLNeNSgIRJGmpqa/lqaGl9gGNkgZHEdDQ1vvAbhS9nIGGQhAYPUrLU0NXcQwhoaGhbIGgGThnpS7V23YwAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
	background-position:center;
	background-size: 12px;
    height: 12px;
    width: 12px;
	display: inline-block;
	border-radius: 50%;
    margin: 0 0.5rem 0 0.5rem;
	position: relative;
    top: 4px;
	transform: scale(1) translateY(-5%);
    padding: 10px;
    background-color: #bbb;
	transition: 0.15s;
	/*
	background-color: #d1d1d1;
    border: 1px solid #ababab;
	*/
}
.modal_info:hover {
	transform: scale(1.15) translateY(-5%);
	background-color: #adadad;
}
.gallery {
	position:relative;
}
.gallery .bx-controls{
	position:absolute;
	bottom:5vh;
	z-index: 1;
	right: 7vw;
}
.modal_head{
	margin: -44px -44px 0 -44px;
    background-color: #4F4F4F;
    color: #D1D1D1;
    padding: 2rem 44px;
}
.icon_link.btn{
    padding: 0.65rem;
	transition: all 0.4s;
}
.icon_link.btn + .icon_link.btn{
    margin-left: 0.65rem;
}
.icon_link.btn:hover{
	background-color: rgb(79, 79, 79);
	transition: all 0.4s;
}
.icon_link.btn img{
	transition: all 0.4s;
}
.icon_link.btn:hover img{
	filter: invert(100%);
	transition: all 0.4s;
}
body.contact section.main{
    min-height: calc(100vh - 4rem - 2rem - 1.2rem - (0.75rem * 2));
	height: 100%;
	overflow-x: visible;
	    display: flex;
}
body.contact > main {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
	align-content: space-between;
}
body.contact footer {
    width: 100%;
}
@media (max-width: 1199px){
	.gallery .bx-viewport {
		overflow: visible!important;
	}
	.slider_interior img {
		aspect-ratio: 1 / 1;
		height: initial;
		object-fit: cover;
		object-position: 50%;
	}
	.gallery .bx-controls {
		bottom: 7vw;
	}
	.d-xl-flex > .col1,
	.d-xl-flex > .col2{
		width: 100%;
		flex-basis: 100%;
		padding-right: 0;
		position: relative;
	}
	.modal_info {
		background-size: 12px;
		height: 12px;
		width: 12px;
		top: 4px;
		transform: translateY(-5%);
		padding: 10px;
	}
}
@media (max-width: 991px){
	.slider_interior {
		position: relative;
		overflow: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 0;
    	padding-bottom: 0;
	}
	.slider_interior img {
		height: 320px;
		max-width: none;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center;
		object-position: center;
		aspect-ratio: auto;
	}
	.slider_interior > li{
		display: block;
		padding: 0 10px 0 0;
	}
	.slider_interior::-webkit-scrollbar {
		display: none;
	}
}
@media (min-width: 992px){
	.slider_interior > li,
	.slider_interior li > a{
		cursor: url(https://www.google.com/intl/en_ALL/mapfiles/openhand.cur), all-scroll;
		cursor: -webkit-grab;
		cursor: -moz-grab;
		cursor: -o-grab;
		cursor: -ms-grab;
		cursor: grab;
	}
}
@media (min-width: 1200px){
	.gallery .bx-controls {
		/*left: 5.2vw;*/
		/*right: 10.4vw;*/
	}
	.slider_interior img {
		height: 100vh;
		width:auto!important
	}
	.slider_interior > li,
	.slider_interior li > a{
		width:auto!important
	}
}
@media (min-width: 1200px) and (max-width: 1899px){
	.threesixty.house3d{
		/*margin-top: auto !important;
		margin-bottom: auto !important;*/
	}
}
@media (min-width: 1400px) and (max-width: 1699px){
	.threesixty.house3d{
		/*margin-top: -3vw !important;
		margin-bottom: -3vw !important;*/
	}
}
@media (min-width: 1900px){
	.d-xl-flex > .col1,
	.d-xl-flex > .col2{
		flex-grow: 1!important;
	}
	.scope_head {
		min-height: calc(3.2rem + 2rem * 2);
	}
	.scope_head img {
		width: auto;
		height: 3.2rem;
		min-height: 3.2rem;
	}
	.modal_info {
		top: 0.2rem;
		background-size: 0.6rem;
		height: 0.8rem;
		width: 0.8rem;
		padding: 0.6rem;
	}
}
/*
@media (min-width: 769px){
	.first {
	  position: fixed;
	  top: 0; right: 0; left: 0;
	  transition: visibility ease 300ms, opacity ease 300ms;
	  visibility: visible;
	  width: 100%;
	  z-index: 0;
	  opacity: 1;
	}
	.first.inactive {
	  visibility: hidden;
	  opacity: 0;
	}
	.first.active {
	  visibility: visible;
	  opacity: 1;
	}
	.second {
		position: relative;
		z-index: 1;
		-webkit-transition: margin 300ms ease;
		-moz-transition: margin 300ms ease;
		-o-transition: margin 300ms ease;
		-ms-transition: margin 300ms ease;
		transition: margin 300ms ease;
	}
	.first.inactive + .second {
		margin-top: 160px;
	}
	.first:not(.inactive){
		top: 0!important;
	}
	.first:not(.inactive) + .second {
		margin-top: 100vh!important;
	}
	main > *{
		background-color: rgb(209, 209, 209);
		z-index: 1;
		position: relative;
	}
}
@media (max-width: 768px){
	main > *:not(.first) {
		background-color: rgb(209, 209, 209);
		z-index: 7!important;
		position: relative!important;
	}
}
html {
  scroll-behavior: smooth;
}
*/
