body {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #252525;
    background: #fff;
    margin: 0;
    padding: 0;
}

:root{
    --color--black: #252525;
    --color--white: #FFFFFF;
    --color--theme: #DFC29B;
    --color--theme-hover: #D2B389;
    --color--light-gray: #F5F6F6;
    --color--light: #FAF7F1;
    
    --color--theme-green: #0E8981;
    --color--theme-dark-green: #054E4B;
    --color--theme-gray: #B2B6C2;

    --transition--main: all 300ms;
}

.p-white {
    color: var(--color--white);
}

.p-theme {
    color: var(--color--theme);
}

.p-md {
    font-size: 1.125em;
}

.p-sm {
    font-size: 0.875em;
    line-height: 1.3;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

body.no_scroll {
    height: 100% !important;
    overflow: hidden !important;
}

a {
    text-decoration: none;
}

:active, :hover, :focus {
	outline: 0 !important;
	outline-offset: 0 !important;
}

span, a, label, ul, div {
	-webkit-tap-highlight-color: transparent;
}

h1, .h1 {
    font-family: "Mulish", sans-serif;
    font-size: 4.125em;
    line-height: 1.242;
    font-weight: 800;
}

.h2, h2{
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-size: 2.25em;
    line-height: 1.3;
}

h2 span {
    color: var(--color--theme-green);
}

.h3, h3 {
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-size: 1.625em;
    line-height: 1.25;
}

.h4, h4 {
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-size: 1.5em;
    line-height: 1.25;
}

.h3_big {
    font-size: 2em;
    line-height: 0.875;
}

.regular {
    font-weight: 400;
}

.gap-40 {
    gap: 40px;
}

a {
    outline: none;
}

section {
    padding: 50px 0;
}

.button {
    display: inline-flex;
    border-radius: 40px;
    border: 1px solid var(--color--theme);
    background-color: var(--color--theme);
    color: var(--color--white);
    font-weight: 400;
    padding: 15px 34px;
    line-height: 1.25;
    justify-content: center;
    align-items: center;
    transition: var(--transition--main);
}


.button.g-button {
    border: 1px solid var(--color--theme-green);
    background-color: var(--color--theme-green);
}

.button:hover {
    background-color: var(--color--theme-hover);
    border: 1px solid var(--color--theme-hover);
    color: var(--color--white);
}

.button.g-button:hover {
    border: 1px solid var(--color--theme-dark-green);
    background-color: var(--color--theme-dark-green);
}

.dotted-link {
    color: var(--color--theme-white-green);
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 14%;
    text-underline-offset: 20%;
    text-underline-position: from-font;
}

.dotted-link:hover {
    color: var(--color--theme-dark-green);
    transition: var(--transition--main);
}

.theme_link {
    color: var(--color--theme);
    transition: var(--transition--main);
}

.theme_link:hover {
    color: var(--color--theme);
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 14%;
    text-underline-offset: 20%;
    text-underline-position: from-font;
}

.button_wrapper {
    gap: 10px;
}

/* header */

header {
    position: fixed;
    left: 50%;
    right: 50%;
    top: 35px;
    transform: translateX(-50%);
    padding: 25px 40px;
    border-radius: 20px;
    background: rgba(14, 137, 129, 0.70);
    backdrop-filter: blur(10px);
    z-index: 99;
}

.main_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.main_menu ul li a {
    color: var(--color--white);
}

.main_menu ul li a:hover {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-skip: 25%;
    text-underline-offset: 20%;
    text-decoration-thickness: 12.5%;
    transition: var(--transition--main);
}

.mobile_phone {
    color: var(--color--white);
    text-decoration: none;
    transition: var(--transition--main);
}

.mobile_phone img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.mobile_phone:hover {
    color: var(--color--white);
}

.mobile_phone:hover span {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-skip: 25%;
    text-decoration-thickness: 12.5%;
    text-underline-offset: 20%;
    transition: var(--transition--main);
}

/* first screen */

.first_screen {
    height: 100%;
    padding-top: 0;
}

.first_screen__slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.first_slider__item {
    position: relative;
    max-height: 946px;
}

.first_slider__item .slide_shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(14, 137, 129, 0.60) 0%, rgba(10, 108, 102, 0.00) 50%, rgba(5, 78, 75, 0.60) 100%);
}

.slide_item__wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
 .first_slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide_item__wrapper .container {
    padding-top: 15%;
    height: 100%;
    padding-bottom: 5%;
}

.video_link__block .video_link {
    width: 82px;
    height: 76px;
    background-image: url(../img/video_btn_def.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: var(--transition--main);
    margin-right: 20px;
}

.video_link__block .video_link:hover {
    background-image: url(../img/video_btn_hover.svg);
}

.video_link__block span {
    color: var(--color--theme);
}

.first_screen .slick-dots {
    bottom: 0;
}

.first_screen .slick-slider-dots {
    position: absolute;
    width: 100%;
    bottom: 4vh;
    z-index: 9;
}

.first_screen .slick-slider-dots .slick-dots {
    position: relative;
    display: flex;
    border-radius: 10px;
    background: rgba(245, 246, 246, 0.20);
}

.first_screen .slick-slider-dots .slick-dots li {
    margin: 0;
    width: 100%;
    height: 4px;
}

.first_screen .slick-slider-dots .slick-dots li.slick-active {
    border-radius: 10px;
    background: var(--color--light-gray);
}

.first_screen .slick-slider-dots  .slick-dots li button {
    display: none;
}

.slick-arrow {
    left: 3%;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    background-image: url(../img/slider_arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: var(--transition--main);
    z-index: 10;
}

.slick-arrow.slick-next {
    right: 3%;
    left: auto;
    top: calc(50% - 22px);
    transform: rotate(-180deg);
}

.slick-arrow:before {
    display: none;
}

.slick-arrow:hover {
    background-image: url(../img/slider_arrow_hover.svg);
}

.slick-prev:focus, .slick-next:focus {
    background-image: url(../img/slider_arrow_hover.svg);
}

/* info block */

.info_list__wrap {
    padding: 60px 85px 60px;
    background: var(--color--theme-green);
}
.info_list__wrap ul {
    padding: 0 0 0 20px;
    margin: 0;
}

.info_list__wrap ul li {
    position: relative;
    list-style: none;
}

.info_list__wrap ul li:before {
    content: "";
    position:absolute;
    left:-16px;
    top: 10px;
    background-color:var(--color--theme);
    display:inline-block;
    width:6px;
    height:6px;
    border-radius:8px;
}

/* about block */

.about_block {
    background-color: var(--color--light);
    padding: 100px 0;
}

.about_block .f_image {
    position: absolute;
    bottom: 0;
    width: 42.8%;
    max-width: 828px;
    height: auto;
    z-index: 2;
}

.about_block .s_image {
    position: absolute;
    right: 0;
    width: 23%;
    max-width: 460px;
    height: auto;
    bottom: 60px;
    z-index: 1;
}

.about_block .t_image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.about_block .container {
    z-index: 3;
}


/* projects block */

.projects_block {
    padding: 100px 0;
}

.projects_main__slider {
    margin-bottom: 80px;
}

.projects_main__slider .projects_main__slide {
    border-radius: 30px;
    background: var(--color--light);
    overflow: hidden;
}

.projects_block .small_descr {
    font-size: 0.75em;
    text-align: right;
}

.project_item__descr {
    max-width: 354px;
    width: 100%;
}

.project_item__slider {
    height: 100%;
}

.project_item__slider .slick-slide {
    /*height: 710px;*/
    height: 438px;
}
.ready_projects__block .project_item__slider .slick-slide {
    height: 700px;
}

.project_item__slider .slick-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.project_item__slider .slick-arrow {
    background-image: url(../img/slider_arrow_theme.svg);
    background-size: contain;
    bottom: 40px;
    top: auto;
}

.project_item__slider .slick-arrow.slick-next {
    bottom: 62px;
}

.project_item__slider .slick-arrow:hover {
    background-image: url(../img/slider_arrow_theme_hover.svg);
    background-size: contain;
}

.project_video__link {
    position: absolute;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background-image: url(../img/project_video_link.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: var(--transition--main);
    z-index: 11;
}

.project_video__link:hover {
    background-image: url(../img/project_video_link_hover.svg);
}

.house_video__link {
    position: absolute;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background-image: url(../img/project_video_link.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: var(--transition--main);
    z-index: 11;
}

.house_video__link:hover {
    background-image: url(../img/project_video_link_hover.svg);
}

.project_full__slider {
    padding: 0;
}

.project_full__slider .slick-list {
    padding-top: 31px !important;
}

.project_item__slide {
    margin: 0 15px;  
    text-align: center;
    cursor: pointer;
}

.project_item__slide .img_wrap {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.project_item__slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project_item__slide.slick-current {
    transform: translateY(-30px);
}

.project_item__slide .img_wrap:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    transition: var(--transition--main);
}

.project_item__slide:hover .img_wrap:after {
    background: rgba(5, 78, 75, 0.50);
}


/* spec block */

.spec_block__slider {
    background-color: #135D55;
    margin-bottom: 0 !important;
}

.spec_block__slider .slick-dots {
    display: none !important;
}

.spec_block__slider .container {
    padding-top: 60px;
    padding-bottom: 60px;
    height: 100%;
    z-index: 3;
}
.spec_block__slider .slick-slide {
    height: 460px;
}

.spec_block__slider .slick-slide:after,
.spec_block__slider .slick-slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 67.7%;
    height: 100%;
    background: linear-gradient(270deg, #0E8981 0%, rgba(11, 120, 113, 0.00) 29.5%);
}

.spec_block__slider .slick-slide:after {
    z-index: 1;
    left: auto;
    right: 0;
    width: 67.8%;
    background: linear-gradient(270deg, #0E8981 0%, rgba(11, 120, 113, 0.00) 29.5%, rgba(10, 108, 102, 0.00) 71.96%, #135D55 100%);
}

.spec_block__slider .slick-slide:before {
    z-index: 0;
}

.spec_block__slider .slick-slide img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: 67.7%;
}

.spec_block__slider .slick-slide .h-fixed {
    min-height: 48px;
    font-size: 0.8em;
}

.spec_char__row {
    display: flex;
    gap: 30px;
}

.spec_char__item {
    display: flex;
    flex-direction: column;
}

.spec_char__item .p-white {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec_char__item._small .h4 {
    width: 75px;
    height: 76px;
    background-image: url(../img/spec_bg_small.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.spec_char__item._big .h4 {
    width: 143px;
    height: 76px;
    background-image: url(../img/spec_bg_big.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


/* genplan block */

.genplan_block {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.genplan_block img.w-100 {
    margin-top: -280px;
}

.genplan_block .genplan_map {
    display: flex;
    margin-right: 0;
    /*margin-left: 4.7vw;*/
    width: calc(100% - 4vw);
    /*margin-top: -33.2%;*/
    margin-top: -13%;
    /*margin-bottom: 100px;*/
}

.genplan_block .container {
    position: relative;
    z-index: 3;
}

/* build block */

.ready_projects__block {
    padding: 100px 0;
    background: var(--color--light);
}

#projects_ready__slider {
    position: unset;
}

.ready_projects__block .projects_main__slider .projects_main__slide {
    background: var(--color--white)
}

.ready_projects__block .projects_main__slider .projects_main__slide .project_item__descr {
    max-width: 472px;
}

.floor_tabs_content .floor_tab__content {
    display: none;
}

.floor_tabs_content .floor_tab__content.active {
    display: flex;
}

.floor_tab__content .floor_rep_icon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floor_tabs_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
} 

.floor_tabs_wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color--black);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--color--theme-green);
    cursor: pointer;
}

.floor_tabs_wrap a.active {
    background-color: var(--color--theme-green);
    color: var(--color--white);
}

.ready_projects__block > img {
    position: absolute;
    width: 100%;
    max-width: 490px;
    /*max-height: 720px;*/
    max-height: 640px;
    height: 100%;
    right: 2%;
    /*top: -18%;*/
    top: -12%;
    z-index: 2;
}

/* about arcadia block */ 

.about_arcadia__block {
    padding: 120px 0;
    /*padding: 190px 0 30px;*/
    background-color: var(--color--theme-green);
}

.about_arcadia__block .z-index {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    left: 0;
    z-index: 2;
}

.about_arcadia__block .z-index.z-index-bottom {
    bottom: 0;
}

.main_photo__video .video_link__block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 48px));
    z-index: 3;
}

.main_photo__video .video_link__block .video_link {
    margin-right: 0;
    margin-bottom: 12px;
}

.main_photo__video .video_link__block span {
    color: var(--color--white);
}

.main_photo__video .photo_shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3;
    background: var(--color--black);
    z-index: 2;
}

.gallery_slider .slick-slide img {
    height: 160px;
}

.gallery_slider .slick-slide {
    margin: 0 5px;
}

/* callback block */

.about_block .c_f_image {
    position: absolute;
    top: 0;
    width: 34.8%;
    max-width: 667px;
    height: auto;
    z-index: 2;
}

.about_block .c_s_image {
    position: absolute;
    right: 0;
    width: 29.2%;
    max-width: 560px;
    height: auto;
    top: 0;
    z-index: 1;
}

.about_block .c_t_image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    object-fit: cover;
}

/* short info block */

.short_info__block {
    padding: 100px 0 75px;
    background: var(--color--light);
}

/* contacts block */
 
#contacts_map {
    height: 550px;
    width: 100%;
}

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

.contacts_list li {
    display: flex;
    margin-bottom: 8px;
}

.contacts_list li span:first-child {
    margin-right: 14px;
}

.contacts_list li a {
    color: var(--color--theme);
    transition: var(--transition--main);
}

.contacts_list li a:hover {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 14%;
    text-underline-offset: 20%;
    text-underline-position: from-font;
}

.map_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* */

footer {
    padding: 40px 0;
    background-color: var(--color--theme-green);
}

footer .logo_wrapper .logo,
footer .logo_wrapper img {
    width: 100%;
}

/* popups */

.popup {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 500px;
	width: 100%;
	border-radius: 20px;
	background-color: var(--color--white);
	z-index: 102;
    padding: 30px;
}

.popup.order-popup {
    z-index: 103;
}

.popup.order-popup {
    padding-top: 68px;
}

.popup_close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: var(--transition--main);
}

.popup_close:hover svg path {
    stroke: var(--color--black);
}

.popup.show {
	display: block;
}

.popup_overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(32,32,32,0.9);
	z-index: 100;
}

.order-popup__overlay.popup_overlay {
    z-index: 101;
}

.popup_overlay.active {
	display: block;
}

.order-popup .h4 {
    color: var(--color--black);
    padding: 0 30px;
}

.order-popup .h3,
.order_time__pick {
    padding: 0 30px;
}

.order_time__pick a {
    color: var(--color--black);
}

.order_time__pick a.active {
    color: var(--color--theme-green);
}

.order_time__pick a:hover {
    color: var(--color--theme-green);
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 14%;
    text-underline-offset: 20%;
    text-underline-position: from-font;
}

.order_time__pick a.active:hover {
    text-decoration: none;
}

.order_time__pick .timepicker {
    appearance: none;
    display: none;
    width: 70px;
    border: none;
    color: #AE2A6D;
    justify-content: flex-start;
    background: transparent;
}

.timepicker::-webkit-calendar-picker-indicator {
    background: none;
}

.order_time__pick a.active + .timepicker {
    display: flex !important;
}

.order-popup form input[type=text],
.order-popup form input[type=tel] {
    padding: 19px 30px 19px 62px;
    color: var(--color--black);
    border-radius: 14px;
    border: 1px solid var(--color--theme-gray);
    background: var(--color--white);
    margin-bottom: 10px;
}

.order-popup form input[type=text]::placeholder,
.order-popup form input[type=tel]::placeholder {
    color: var(--color--theme-black);
}

.order-popup form input[type=text] {
    background-image: url(../img/input_name_icon.svg);
    background-position: 30px center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
}

.order-popup form input[type=tel] {
    background-image: url(../img/input_phone_icon.svg);
    background-position: 30px center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
}

.order-popup .checkbox_wrap span {
    margin-left: 8px;
    max-width: calc(100% - 26px);
    font-size: 0.875em;
    line-height: 1.3;
}

.order-popup form input[type=checkbox] {
    appearance: none;
    background-image: url(../img/checkbox_def.svg);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    cursor: pointer;
}

.order-popup form input[type=checkbox]:checked {
    background-image: url(../img/checkbox_active.svg);
}


.blueimp-gallery>.close {
    color: var(--color--white);
}

.blueimp-gallery>.close:hover {
    color: var(--color--white);
}


@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}


/*@media (min-width: 992px) {
    .pl-auto {
        padding-left: calc(((100vw - 960px) / 2) + var(--bs-gutter-x) * .5);
    }
}

@media (min-width: 1200px) {
    .pl-auto {
        padding-left: calc(((100vw - 1140px) / 2) + var(--bs-gutter-x) * .5);
    }
}*/




@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1360px;
    }

    .pl-auto {
        padding-left: calc(((100vw - 1360px) / 2) + var(--bs-gutter-x) * .5);
    }
}

@media (max-width: 992px) {
    .container, .container-sm {
        max-width: unset;
    }
}

@media (max-width: 1300px) {
     .first_screen {
        position: relative;
        height: 100%;
        max-height: 100%;
        min-height: auto;
        padding-top: 0;
        padding-bottom: 20px;
    }

    .slide_item__wrapper {
        position: unset;
        width: 100%;
        min-height: 640px;
        height: 100%;
        display: flex;
        align-items: end;
        padding-bottom: 40px;
    }

    .slide_item__wrapper .container {
        position: relative;
        padding: 0 20px;
        z-index: 3;
    }

    .first_screen .slick-arrow,
    .first_screen .slick-slider-dots {
        display: none !important;
    }

    .first_screen:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .first_slider__item img {
        position: absolute;
        top: 0;
    }

    .first_screen h1 {
        font-size: 2.25em;
        line-height: 1.3;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 1200px) {
    .about_block {
        padding: 80px 0 290px;
    }

    .about_block.callback_block {
        padding: 80px 0;
    }

    .about_block .h1 {
        font-size: 1.625rem;
        max-width: 70%;
    }

    .about_block .f_image {
        width: 90%;
        max-width: 300px;
    }

    .about_block .t_image {
        object-fit: cover;
        object-position: -400px;
    }

    .about_block .s_image {
        position: absolute;
        right: 0;
        width: 40%;
        max-width: 156px;
        bottom: auto;
        top: -50px;
    }

    .about_block .video_link__block {
        position: absolute;
        right: 15%;
        max-width: 100px;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 30px !important;
    }

    .about_block .video_link__block .video_link {
        margin-right: auto;
        margin-bottom: 10px;
    }

    .gallery_block .slick-arrow,
    .ready_projects__block  .projects_main__slider > .slick-arrow,
    .spec_block .slick-arrow {
        display: none !important;
    }

    .about_block .c_s_image {
        display: none;
    }

    .about_block .c_f_image {
        right: 0;
        left: auto;
        max-width: 135px;
    }
}

@media (max-width: 992px) {
    .mb-4 {
        margin-bottom: 1.3rem!important;
    }

    .h2, h2 {
        font-size: 1.625em;
    }

    .h3, h3 {
        font-size: 1.5em;
    }

    .p-md {
        font-size: 1em;
    }

    .pt-80 {
        padding-top: 0;
    }

    .pb-80 {
        padding-bottom: 0;
    }

    .pt-40 {
        padding-top: 40px !important;
        padding-bottom: 0 !important;
    }

    .pb-20 {
        padding-bottom: 20px !important;
    }

    .-mt-120 {
        margin-top: -120px;
        margin-bottom: 40px;
    }

    .-mt-140 {
        margin-top: -140px;
        margin-bottom: 40px;
    }

    .s-p-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .button {
        font-size: 1em;
        line-height: 1.5;
    }

    header {
        padding: 16px 20px;
        top: 0;
        border-radius: 0;
        left: 0;
        transform: none;
    }

    header .mobile_phone img,
    header .mobile_phone span {
        display: none;
    }

    header .mobile_phone {
        width: 36px;
        height: 36px;
        background-image: url(../img/mobile_phone.svg);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        margin-left: auto;
        margin-right: -16px;
    }

    .logo_wrapper {
        text-align: center;
    }

    header .logo img {
        margin: 0 auto;
        height: 32px;
    }

    .main_menu_wrapper,
    header .main_menu {
        display: none;
    }

    .main_menu_wrapper {
        padding: 30px 20px 20px;
        flex-direction: column;
        text-align: center;
    }

    .main_menu_wrapper hr {
        background-color: var(--color--theme-green);
    }

    .main_menu,
    .main_menu ul {
        width: 100%;
    }

    .main_menu ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
    }

    .main_menu ul li a {
        color: var(--color--white);
        font-size: 1.125em;
        line-height: 1.5;
    }

    .mobile_burder {
        display: flex;
        width: 36px;
        height: 36px;
        background-image: url(../img/menu_burger.svg);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
    }

    header.active .main_menu_wrapper,
    header.active .main_menu {
        display: flex;
    }

    header.active .main_menu_wrapper {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: var(--color--theme-dark-green);
        height: calc(100vh - 68px);
        z-index: 99;
    }

    header.active .mobile_burder {
        background-image: url(../img/menu_close.svg);
        background-size: contain;
    }


    .video_link__block {
        margin-top: 2.5rem;
    }

    .video_link__block .video_link {
        width: 68px;
        height: 64px;
    }

    .info_block .container > .row {
        text-align: center;
    }

    .info_list__wrap {
        text-align: left;
        padding: 60px 50px 60px;
    }


    .projects_block {
        padding: 80px 0;
    }

    .projects_block .container > .row {
        text-align: center;
    }

    .projects_block .small_descr {
        font-style: italic;
        text-align: center;
    }

    .projects_main__slider .projects_main__slide {
        border-radius: 20px;
    }

    .project_item__slider {
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .project_full__slider .slick-list {
        padding-top: 20px !important;
    }

    .project_item__slider .slick-slide {
        height: 500px;
        border-radius: 20px;
    } 

    .projects_main__slider .projects_main__slide > .d-flex {
        flex-direction: column;
    }

    .project_item__slide {
        text-align: left;
    }

    .project_item__descr {
        padding: 0 20px;
        max-width: unset;
    }

    .project_item__slide img {
        height: 150px;
    }

    .project_item__slide.slick-current {
        transform: translateY(0);
    }

    .slick-arrow {
        width: 34px;
        height: 34px;
    }

    .project_item__slider .slick-arrow {
        bottom: 15px;
        transform: translate(0) rotate(-180deg);
    }

    .project_item__slider .slick-arrow.slick-next,
    .slick-arrow.slick-next {
        top: auto;
        bottom: 15px;
    }

    .project_item__slider .slick-arrow:hover {
        background-image: url(../img/slider_arrow_theme.svg);
        background-size: contain;
    }

    .project_video__link {
        width: 44px;
        height: 44px;
        bottom: 10px;
    }

    .house_video__link {
        width: 44px;
        height: 44px;
        bottom: 10px;
    }

    .spec_block__slider .container {
        padding: 30px 20px;
    }

    .spec_block__slider .slick-slide {
        height: 300px;
    }

    .spec_block__slider .slick-slide:before {
        display: none;
    }

    .spec_block__slider .slick-slide:after {
        width: 100%;
        background: linear-gradient(90deg, #0E8981 60%, rgba(11, 120, 113, 0.80) 75.5%, rgba(10, 108, 102, 0.00) 100%, #135D55 100%);
    }

    .spec_block__slider .slick-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .spec_block__slider .slick-dots li {
        width: 8px;
        height: 8px;
        border-radius: 100%;
        margin: 0 3px;
        background: var(--color--theme-gray);
    }

    .spec_block__slider .slick-dots li.slick-active {
        width: 10px;
        height: 10px;
        background: var(--color--theme-green);
    }

    .spec_block__slider .slick-dots li button {
        display: none;
    }

    .spec_block__slider .slick-slide .h-fixed {
        width: 70%;
        max-width: 200px;
    }

    .spec_block__slider .slick-slide img {
        width: 100%;
    }

    .spec_block__slider .slick-slide .p-theme {
        font-size: 0.75em;
        margin-bottom: 15px !important;
    }

    .spec_block__slider .slick-slide h2 {
        font-size: 1.5em;
        margin-bottom: 20px !important;
    }

    .spec_char__row {
        gap: 15px;
    }
    
    .spec_char__item._big .h4 {
        width: 84px;
        height: 40px;
        font-size: 0.75em;
    }

    .spec_char__item._big .h4 {
        width: 84px;
        height: 40px;
        font-size: 0.75em;
    }

    .spec_char__item._small .h4 {
        width: 40px;
        height: 40px; 
        font-size: 0.75em;
    }

    .spec_char__item .p-white {
        font-size: 0.5em;
    }

    .genplan_block {
        padding-top: 0;
        margin-top: -40px;
        overflow: auto;
    }

    .genplan_scroll__block {
        overflow: scroll;
    }

    .genplan_block .container {
        padding-top: 80px;
        text-align: center;
    }

    .genplan_block img.w-100 {
        position: unset;
        margin-top: -450px;
        width: 1671px !important;
        height: 871px;
        object-position: 0 80px;
    }

    .genplan_block .genplan_map {
        /*position: absolute;
        margin-right: 0;
        left: 90px;
        width: 1586px;
        height: 438px;
        bottom: 30px;
        margin-bottom: 0;
        margin-left: 0;*/
        width: 1920px!important;
        height: 1022px;
        margin-top: -100%;
        margin-bottom: 0;
    }

    .genplan_block .video_link__block {
        flex-direction: column;
    }

    .genplan_block .video_link__block .video_link {
        margin: 0 auto 10px;
    }

    .ready_projects__block {
        padding: 80px 0;
    }

    .ready_projects__block > img {
        display: none;
    }

    .ready_projects__block .projects_main__slider .projects_main__slide .project_item__descr {
        max-width: unset;
    }

    .floor_tabs_content .floor_tab__content > img:not(.floor_rep_icon) {
        width: 100%;
    }

    .about_arcadia__block {
        /*padding: 80px 0 120px;*/
        padding: 180px 0 120px;
        margin-top: 20px;
    }

    .about_arcadia__block .z-index {
        position: relative !important;
        padding: 0;
    }

    section.pb-80.s-p-0 {
        padding-bottom: 80px;
    }

    .about_arcadia__item {
        padding: 40px 0;
        flex-direction: column;
    }

    section .container .row > .col-12:nth-child(2) .about_arcadia__item,
    .about_arcadia__item + .about_arcadia__item {
        padding-top: 0;
    }

    .about_arcadia_item__icon {
        width: 40px;
        height: 30px;
    }

    .about_arcadia_item__icon img {
        width: 100%;
    }

    .gallery_slider .slick-slide img {
        height: 90px;
    }

    .main_photo__video .video_link__block {
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .main_photo__video .video_link__block .project_video__link {
        position: unset;
        margin: 0 auto 10px;
        transform: none;
    }

    .main_photo__video .video_link__block .house_video__link {
        position: unset;
        margin: 0 auto 10px;
        transform: none;
    }

    .contacts_block .order-button,
    .about_block .order-button {
        width: 100%;
    }

    .short_info__block {
        padding: 80px 0 40px;
        text-align: center;
    }

    .button_wrapper {
        width: 100%;
        flex-direction: column;
    }

    .contacts_block {
        text-align: center;
    }

    .contacts_list li {
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .contacts_list li.flex-lg-row span:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contacts_list li a,
    .contacts_list li span {
        font-size: 1.125em;
    }

    footer {
        padding: 40px 0 0;
    }

    footer .logo_wrapper {
        width: 100% !important;
    }

    footer .logo_wrapper .logo img {
        margin: 0 auto;
        max-width: 186px;
    }

    footer .main_menu > ul {
        margin-top: 40px;
        padding-top: 0px;
        gap: 20px;
    }

    .p-sm,
    .link_footer {
        font-size: 1em;
    }

    .footer_add {
        background-color: var(--color--theme-dark-green);
    }

}

@media (max-width: 768px) {
    .popup {
        padding: 32px 16px;
        border-radius: 10px;
    }

    .popup.order-popup {
        padding-top: 32px;
    }

    .popup_close {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 600px) {
    .project_item__slider .slick-slide {
        height: 300px;
    }   

    .order-popup .h3, .order_time__pick {
        padding: 0;
    }

    .order_time__pick .timepicker,
    .order_time__pick a {
        font-size: 0.8em;
    }
}

.blueimp-gallery .next {
    display: block !important;
}

.blueimp-gallery-single .next {
    display: none !important;
}

/*new genplan*/
g#_описание_иконки > g,
g#_описание_иконки_00000044146017312164684670000005663208249798943122_ > g,
g#_описание_участки > g > g,
g#_описание_участки > g > * {
    display: none;
}
g#_описание_участки > g > *:nth-child(1) {
    display: block;  
    opacity: 0;
}
g#_описание_участки > g > *:nth-child(2) {
    display: block;  
    opacity: 0;
}
g#_описание_участки > g:hover > g,
g#_описание_участки > g:hover > * {
    display: block;
    opacity: 1;
}
g#_описание_участки > g > .cls-14,
g#_описание_участки > g > .cls-5,
g#_описание_участки > g > .cls-17 {
    opacity: 0;
}
g#_описание_участки > g:hover > .cls-14,
g#_описание_участки > g:hover > .cls-5,
g#_описание_участки > g:hover > .cls-17 {
    opacity: 1;
}
g#_описание_участки > g#_40 path.st15,
g#_описание_участки > g#_x31_5 path.st15,
g#_описание_участки > g#_x31_7_1_ path.st15{
    display: none!important;
}
.cls-101,
.st101 {
    fill: #e3bd76;
}



/* VIDEO */
#video {
  background: url(../video/video-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 60px 0 70px;
}
.video-title {
  color: #fff;
  margin-bottom: 80px;
}
.video-slider__link {
  display: inline-block;
  overflow: hidden;
  margin: 20px;
  max-width: 235px;
  height: 280px;
  -webkit-box-shadow: 0px 5px 36px -10px rgb(0, 0, 0);
  -moz-box-shadow: 0px 5px 36px -10px rgb(0, 0, 0);
  box-shadow: 0px 5px 36px -10px rgb(0, 0, 0);
}
.video-slider__item {
  height: 290px;
  width: 235px;
  background: center center no-repeat;
  background-size: cover;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}
.video-slider .slick-current .video-slider__link {
  max-width: 450px;
  height: 540px;
  margin: 30px;
  margin-top: 40px;
  margin-right: 110px;
}
.video-slider .slick-current .video-slider__item{
  height: 540px;
  width: 450px;
}
.video-desc__text {
  font-size: 15px;
  font-weight: 300;
  max-width: 450px;
}
.video-desc {
  max-width: 450px;
  height: 130px;
  position: absolute;
  bottom: 120px;
  right: 90px;
}
.video-desc .slick-slide {
  max-width: 450px;
  margin-right: 20px;
  color: #fff;
}
.video-arrows {
  position: absolute;
  right: 383px;
  bottom: 37px;
}
.video-arrow {
  /*width: 80px;*/
  /*height: 60px;*/
  /*background: #fff url(video/arrow.png) center center no-repeat;*/
  cursor: pointer;
}
.custom_paging-video {
  left: 170px;
  top: 180px;
  color: #fff;
}
.video-arrow_right {
  transform: rotate(180deg);
  margin-left: 2px;
}
.modal-v__video {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.modal-v__dark {
  background-color: #000; 
}
.modal-v__close {
  width: 60px;
  position: absolute;
  top: 30px;
  right: 20px;
}
.modal-v__close span {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #e3bd76;
  border-radius: 5px;
  transform: rotate(45deg);
}
.modal-v__close span::after {
  content: '';
  top: 0;
  transform: rotate(90deg);
  width: 100%;
  margin: 0;
}
.modal-v__close > span,
.modal-v__close > span::after {
  display: block;
  position: absolute;
  height: 4px;
  background-color: #e3bd76;
  border-radius: 5px;
}

.entry-content {
  color: #000;
}

.inftr > a {
  color: #fff;
}
#popUp {
  top: 12%; 
  left: 50%; 
  height: auto;
  position: fixed;
  width: 300px;  
  border-radius: 11px;
  background: rgba(123, 24, 75, 0.8) none repeat scroll 0 0; 
  margin-left: -150px;  
  margin-top: calc(-1vh * 25);
  display: none; 
  opacity: 0;
  padding: 17px 30px 17px 17px;
  z-index: 6;
}
#popUp #close {
  cursor: pointer;
  position: absolute;
  width: 23px;
  height: 23px;
  top: 8px;
  right: 0px;
  display: block;
}
#popUp p {
  display: none;
}
#overlay {
  z-index:4; 
  background-color:#010; 
  position:fixed; 
  opacity:0.86;
  width:100%; 
  height:100%;
  display:none; 
  top:0;
  left:0;
}
#primary {
  color:#000;     
}
.page-header {
  color:#000;     
}
article {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

article h2.entry-title {
    text-align: left;
    margin-bottom: 10px

}

article h2.entry-title a {
color:#0b6660;

}

article .post-thumbnail {
    float:left;
    margin-right:50px;

}

article .entry-content {
    min-height: 150px;
}


.copy {
  display: none;
  padding-top: 8px;
  font-size: 10px;
}


/* ------ Media Queries VIDEO ------- */

/* 992-1200px - Large */

@media screen and (max-width: 1200px) {
  .video-slider__link {
    max-width: 200px;
  }
  .video-slider__item {
    width: 200px;
  }
  .video-slider .slick-current .video-slider__link {
    max-width: 380px;
    margin-right: 45px;
  }
  .video-slider .slick-current .video-slider__item {
    width: 380px;
  }
  .video-desc {
    right: 20px;
  }
  .video-arrows {
    right: 300px;
  }
  .custom_paging-video {
    left: 190px !important;
  }
  .project__arrows {
    margin-top: 135px;
  }
}

/* 768-992px - Medium */

@media screen and (max-width: 992px) {
  .video-slider__link {
    max-width: 150px;
    height: 180px;
    margin: 17px;
  }
  .video-slider__item {
    width: 150px;
    height: 180px;
  }
  .video-slider .slick-current .video-slider__link {
    max-width: 280px;
    margin-right: 30px;
    height: 330px;
  }
  .video-slider .slick-current .video-slider__item {
    width: 280px;
    height: 330px;
  }
  .video-desc {
    right: 20px;
  }
  .video-arrows {
    right: 240px;
  }
  .custom_paging-video {
    left: 190px !important;
  }
  .video-slider__ico {
    max-width: 70px; 
  }
  .video-arrow {
    width: 50px;
    height: 37px;
    -webkit-background-size: 50%;
    background-size: 50%;
  }
  .video-desc {
    right: 20px;
    height: 40px;
    max-width: 325px;
  }
  .video-desc__text {
    max-width: 325px;
  }
  .custom_paging-video {
    top: 110px !important;
    left: 120px !important;
  }
}

/* 576-768px - Small */

@media screen and (max-width: 768px) {
  #video {
    padding-bottom: 80px;
  }
  .video-title {
    margin-bottom: 40px;
  }
  .video-slider .slick-current .video-slider__link {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .video-slider__link {
    box-shadow: none;
  }
  .video-slider .slick-current .video-slider__item {
    width: 100%;
  }
  .video-desc {
    right: 0;
    bottom: 0;
    height: auto;
    max-width: 100%;
    position: relative;
    margin-top: 20px;
  }
  .video-desc__text {
    max-width: 100%;
  }
  .video-desc .slick-slide {
    max-width: 100%;
  }
  .video-arrow {
    width: 60px;
    height: 60px;
    background-size: auto;
  }
  .video-arrows {
    left: 0;
    bottom: -50px;
  }
  .custom_paging-video {
    top: 40px !important;
    left: 170px !important;
  }
  .modal-v__video {
    width: 90%;
  }
  .custom_paging-video span {
    font-size: 25px;
  }
}

/* 320-576px - Extra small */

@media screen and (max-width: 576px) {
  .video-arrows {
    right: 140px;
    left: 20px;
  }
  .custom_paging-video {
    top: 70px !important;
    left: 180px !important;
  }
}

.mobile {
    display: none;
}
.nomobile {
    display: block;
}

@media screen and (max-width: 992px) {
  .order1 {
    order: 1;
    margin-top: 0;
  }
  .order0 {
    order: 0;
    margin-top: 0;
  }
  .about_arcadia__block {
    padding: 40px 0 120px;
  }
  .banya {
    margin-top: 20px;
  }
  .mobile {
    display: block;
  }
  .nomobile {
    display: none;
  }
}