/*
Theme Name: Top Construct
Theme URI: https://min-code.com
Author: MinCode Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: topconstruct.md
*/

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 62.5%;
}

:root {
    --grey: #313131;
    --orange: #E36F2C;
}

body {
    font-size: 2rem;
    line-height: 150%;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    width: 100%;
    color: #3F3F3F;
}

.sticky_position {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    align-self: flex-start;
}

.d-flex {
    flex-wrap: wrap;
}

.h1,
h1 {
    font-size: 5.6rem;
    line-height: 130%;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.h2,
h2 {
    font-size: 4rem;
    line-height: 130%;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}

.h3,
h3 {
    font-size: 3rem;
    line-height: 130%;
    font-weight: 500;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    text-transform: uppercase;
}

.h4,
h4 {
    font-size: 2.4rem;
    line-height: 130%;
    font-weight: 500;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    text-transform: uppercase;
}

.h5,
h5 {
    font-size: 2.2rem;
    line-height: 130%;
    font-weight: 500;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
}

.h6,
h6 {
    font-size: 2rem;
    line-height: 150%;
    font-weight: 500;
    font-family: "Brother1816", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0
}

p {
    font-size: 2rem;
    line-height: 150%;
    margin-bottom: 24px;
    color: #3F3F3F;
}

a {
    color: #3F3F3F;
    font-size: 2rem;
    line-height: 150%;
    transition: 0.3s;
    text-decoration: none;
}

a:hover {
    color: var(--orange);
    transition: 0.3s;
}

ul {
    margin-bottom: 0;
}

li {
    font-size: 1.8rem;
    line-height: 150%;
    color: #3F3F3F;
}

img {
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1630px;
    padding: 0 15px;
    margin: auto;
}

.mg-12 {
    margin: 12rem 0;
}

.mg-10 {
    margin: 10rem 0;
}

.mg-8 {
    margin: 8rem 0;
}

.mt-12 {
    margin-top: 12rem;
}

.mb-12 {
    margin-bottom: 12rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mb-8 {
    margin-bottom: 8rem;
}

.main_button {
    background: var(--orange);
    color: white;
    padding: 16px 24px 16px;
    font-size: 1.8rem;
    font-weight: 400;
    width: fit-content;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.main_button:hover {
  background: var(--grey);
  color: white;
}

.main_button.dark_button {
  background: #313131;
  color: white;
  padding: 19px 24px 19px;
}

.main_button.dark_button:hover {
  background: var(--orange)
}

.main_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 40px;
}

.main_menu ul li.current_page_item a {
  color: var(--orange)
  } {

}

.main_menu ul li a {
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    padding: 6px 0;
}

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

.mobile__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    padding: 80px 30px 30px;
}

.mobile__nav.active {
    right: 0;
}

.mobile__nav .menu {
    list-style: none;
    padding: 0;
    justify-content: center;
    flex-direction: column;
    margin: 0;
}

.mobile__nav .menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile__nav .menu li:last-child {
    border-bottom: none;
}

.mobile__nav .menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: center;
    color: #3F3F3F;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.mobile__nav .menu a:hover {
    color: var(--orange);
    padding-left: 10px;
}


.close__mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    color: var(--orange)
}

.close__mobile:hover {
    background: red
    color: white;
    transform: rotate(90deg);
}

/* Mobile overlay */
.mobile__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

/* ===== 404 PAGE ===== */

.not_found_page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.not_found_page .not_content {
    max-width: 650px;
    margin: 0 auto;
}

/* 404 TEXT */
.text_not {
    font-size: 160px;
    line-height: 1;
    font-weight: 700;
    margin: 0;
    position: relative;
    color: var(--orange)
}

/* TITLES & TEXT */

.not_content h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.not_content p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}

.button_cta {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.button_cta a {
  background: var(--grey);
}

.button_cta a:hover {
  background: var(--orange)
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1101px) {
    .mobile__menu {
        display: none;
    }
    .mobile__nav {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .header_menu .col-md-9 {
        display: none !important
    }
    .mobile__nav .menu .current_page_item a {
      color: var(--orange)
    }
    .header {
      display: flex;
      align-items: center;
      padding-right: 15px!important
    }
    .mobile__nav__cta {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    .sub-menu {
      list-style: none;
    }
    .mobile__nav .menu a {
      font-size: 22px;
      font-weight: 500;
    }
    .mobile__nav .menu .sub-menu a {
      font-size: 15px;
      padding: 10px 0;
      font-weight: 500;
    }
    .mobile__nav .phone_menu {
      text-align: center;
      margin-top: 30px
    }

    .mobile__nav .phone_menu a {
      font-size: 24px;
      font-weight: 500;
    }

    .header_menu .main_menu,
    .header_menu .right_menu {
        display: none;
    }

    .header_menu {
        position: relative;
    }

    .header_menu .logo_site {
        flex: 1;
    }

    .mobile__menu {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 46px;
        width: 46px;
        background: var(--orange);
        flex-shrink: 0;
        cursor: pointer;
        z-index: 99;
        transition: 0.3s;
        font-size: 0;
        gap: 4px;
        border-radius: 0;
        margin-left: 20px;
    }

    .menu-second-menu-container{
        border-top: 1px solid #f0f0f0;
    }

    .mobile__nav .menu li{
        width: 100%;
    }

    .menu-second-menu-container ul{
        gap: 0;
    }

    .mobile__menu:hover {
        background: red;
    }

    .mobile__menu span {
        display: block;
        height: 1px;
        width: 16px;
        background: white;
        transition: 0.3s;
    }

    .mobile__menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile__menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile__menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .header_icons {
        position: relative;
        padding-right: 52px;
        margin-top: -8px;
    }

    .menu__primary {
        display: none;
    }

    .header_menu > .d-flex {
        justify-content: space-between;
    }

    /* Mobile nav visible */
    .mobile__nav {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .mobile__nav {
        width: 100%;
        max-width: 100%;
    }
}

.header {
  background: #313131;
  padding: 18px 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  width: 100%;
}

.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 100%;
}

.header.is-hidden {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

.align-center {
  align-items: center;
}

.logo_site,
.right-menu {
  width: 255px;
}

.logo_site img {
  width: 240px;
}

.header_menu {
  justify-content: space-between;
}

.phone_menu a {
  font-size: 1.8rem;
  line-height: 100%;
  color: var(--orange);
  border-bottom: 1px solid;
  transition: 0.3s
}

.phone_menu a:hover {
  color: white;
}

.lang_menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang_menu .trp-ls-language-name {
  font-size: 14px;
  color: #848484;
  font-weight: 400;
  transition: 0.2s
}

.lang_menu .trp-ls-language-name:hover {
  color: white;
}

.lang_menu .current-language-menu-item .trp-ls-language-name {
  color: white;
  font-weight: 700;
}

.lang_menu .current-language-menu-item {
  position: relative;
}

.lang_menu .current-language-menu-item:after {
  content: '/';
  color: #848484;
  font-size: 14px;
  position: absolute;
  right: -11px;
  top: 3px;
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
}

footer {
  background: #313131;
  padding-top: 64px;
}

.footer_logo img {
  height: 48px;
  width: auto;
}

.footer_contacts h6,
.footer_menu h6 {
  color: #848484;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer_contacts a {
  font-size: 24px;
  line-height: 100%;
  color: white;
  font-weight: 400;
  transition: 0.3s;
  position: relative;
}

.footer_contacts a:hover {
  color: var(--orange)
}

.phone_flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.phone_flex a:before {
  content: '|';
  color: white;
  position: absolute;
  left: -22px;
  top: 1px;
}

.phone_flex a:first-child:before {
  display: none;
}

.email {
  margin: 32px 0;
}

.email p {
	margin-bottom: 5px;
}

.socials img {
  width: auto;
  height: 24px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: #3F3F3F;
  border: 1px solid #848484;
  transition: 0.3s
}

.socials a:hover {
  background: #313131
}

.copyrights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--orange);
  margin-top: 64px;
}

.copyrights p,
.copyrights a {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 0;
  transition: 0.3s
}

.copyrights a:hover,
.footer_menu ul li a:hover {
  color: var(--orange);
}

.footer_links {
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
}

:lang(ru) .footer_links {
	padding-left: 20px;
}

:lang(ru) .project_hero .col-lg-5,
:lang(ru) .project_hero .col-lg-7{
	width: 50%;
}

.footer_menu ul {
  margin-top: 16px;
  list-style: none;
  padding-left: 0;
}

.footer_menu ul li {
  line-height: 1;
  margin-bottom: 10px;
}

.footer_menu ul li:last-child {
  margin-bottom: 0;
}

.page-template-contact {
  background: #E8E8E8
}

.footer_menu ul li a {
  color: white;
  font-weight: 300;
  font-size: 14px;
  transition: 0.3s
}

.map_contact {
  margin-bottom: -8px;
}

.breadcrumbs ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.breadcrumbs ul li {
  position: relative;
  color: #000;
  font-weight: 350;
  font-size: 16px;
  line-height: 100%;
}

.breadcrumbs ul li a {
  position: relative;
  color: #848484;
  font-weight: 350;
  font-size: 16px;
  line-height: 100%;
  transition: 0.3s
}

.breadcrumbs ul li a:hover {
  color: var(--orange)
}

.breadcrumbs ul li a:after {
  content: '/';
  position: absolute;
  right: -26px;
  color: #848484;
}

.breadcrumbs {
  margin: 40px 0;
}

.contact_info {
  padding-top: 40px;
  padding-bottom: 80px;
}

.general_cf p {
  color: #000;
}

.general_cf h2 {
  margin-bottom: 24px;
}

.contact_frm {
  background: white;
  padding: 48px;
  width: calc(50% - 64px);
  margin-left: 64px;
}

.intro_text {
  margin-bottom: 64px;
}

.general_cf input {
  width: 100%;
  padding: 11px 16px 16px;
  border: 1px solid #848484;
}

.general_cf label {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.general_cf ::placeholder {
  font-size: 18px;
  color: #00000080;
  line-height: 150%;
}

.general_cf .submit_button input {
  background: var(--orange);
  border: 0;
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  transition: 0.3s;
}

.general_cf .submit_button input:hover {
  background: var(--grey);
}

.general_cf .submit_button {
  position: relative;
}

.general_cf .submit_button .wpcf7-spinner {
  position: absolute;
  left: 12px;
  top: 16px;
}

.acceptance p,
.acceptance p a {
  font-size: 14px;
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 0;
}

.acceptance p a {
  text-decoration: underline;
}

.submit_button p {
  margin-bottom: 8px;
}

.submit_button {
  margin-top: 32px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.form_social img {
  height: 32px;
  width: auto;
}

.form_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #848484;
  padding: 12px;
  background: white;
}

.form_social a:hover {
  background: #E8E8E8
}

.form_big .form_social a {
  background: transparent
}

.form_big .form_social a:hover {
  background: white;
}

.form_social .or {
  text-align: center;
  margin-bottom: 16px;
}

.form_social .or:after {
  content: '';
  position: absolute;
  width: 44%;
  right: 0;
  height: 1px;
  background: #848484;
  top: 14px;
}

.form_social .or:before {
  content: '';
  position: absolute;
  width: 44%;
  left: 0;
  height: 1px;
  background: #848484;
  top: 14px;
}

.form_social {
  margin-top: 48px;
}

.p_intro {
  margin-top: 32px;
  margin-bottom: 64px;
}

.contact_items h6 {
  color: #848484;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact_items a {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #000;
  transition: 0.3s
}

.contact_items a:hover {
  color: var(--orange)
}

.phone_contact .d-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.phone_contact a {
  position: relative;
}

.phone_contact a::after {
  content: '|';
  color: #000000;
  position: absolute;
  right: -24px;
  top: 0px;
}

.phone_contact a:last-child:after {
	display: none;
}

.address {
  margin: 40px 0;
}

.social_imgs a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: #E8E8E8;
  border: 1px solid #848484;
  transition: 0.3s;
}

.social_imgs a:hover {
  background: #dcdcdc;
}

.social_imgs img {
  height: 24px;
  width: auto;
}

.contact_items {
  padding-right: 80px;
}

.social_imgs .d-flex {
  gap: 8px;
}

.project_section {
  padding-top: 20px;
  margin-bottom: 140px;
}

.project_section .page_title {
  margin-bottom: 40px;
}

.project_card_image img {
  height: 540px;
  object-fit: cover;
  object-position: center;
}

.project_card_content {
  margin-top: 32px;
}

.project_card_content h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #000;
}

.project_card_content p {
  margin-bottom: 0;
  margin-top: 8px;
  color: #3F3F3F;
  font-weight: 350;
  font-size: 16px;
  line-height: 150%;
}

.project_grid.grid3 {
  row-gap: 64px;
}

.project_filters {
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.filter_btn {
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 400;
  color: #313131;
  background: #E8E8E8;
  padding: 19px 24px 19px;
  border: 0;
  min-width: 202px;
}

.filter_btn.active {
  background: var(--orange);
  color: #fff;
}

.project_card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project_card.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

.form_bg {
  background-position: center!important;
  background-size: cover!important;
  background-repeat: no-repeat!important;
}

.form_big .general_cf {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.form_big {
  background: #E8E8E8;
  padding: 120px 15px;
}

.page_bg_img .breadcrumbs {
  margin-top: 0;
  padding-top: 40px;
  margin-bottom: 111px;
}

.page_bg_img .breadcrumbs ul li {
  color: white;
}

.page_bg_img h1 {
  color: white;
  position: relative;
  padding-bottom: 40px;
}

.page_bg_img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog_section {
  margin: 140px 0;
}

.page_bg_img:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: #00000099;
  width: 100%;
  height: 100%;
}

.blog_card_image img {
  height: 400px;
  object-fit: cover;
}

.blog_category {
  background: var(--orange);
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
  padding: 16px 17px 16px 15px;
  margin-bottom: 0;
}

.blog_card_content h2 {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 8px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s
}

.blog_card_content p {
  margin-bottom: 0;
  color: #3F3F3F;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  gap: 8px;
}

.blog_card_content {
  background: #E8E8E8;
  padding: 24px;
}

.blog_pagination > * {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  background: #E8E8E8;
  color: #3F3F3F;
}

.page-numbers.current {
  background: var(--orange);
  color: white;
}

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

.blog_card:hover .blog_card_content h2 {
  color: var(--orange)
}

.blog_title {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 32px;
}

.blog_title p {
  background: var(--orange);
  color: white;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 16px 16px 16px;
  margin-bottom: 0;
}

.blog_title h1 {
  text-transform: uppercase;
}

.featured_image img {
  height: 640px;
  object-fit: cover;
  width: 100%;
}

.featured_image {
  margin-bottom: 64px;
}

.post_content {
  column-count: 2;
  column-gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 80px;
}

.featured_title {
  font-size: 20px;
  font-weight: 300;
  line-height: 100%;
  color: #000;
  margin-bottom: 48px;
  position: relative;
  padding-left: 28px;
  text-transform: none;
}

.featured_title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--orange)
}

.related_posts {
  margin-bottom: 140px;
}

.form_big .general_cf input {
  background: transparent;
}

.form_big .general_cf .submit_button input {
  background: var(--orange);
  transition: 0.3s;
}

.form_big .general_cf .submit_button input:hover {
  background: var(--grey);
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 100%;
  color: #000;
  margin-bottom: 32px;
  position: relative;
  padding-left: 28px;
  text-transform: none;
}

.subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--orange)
}

.service_intro {
  margin: 140px 0;
}

.service_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
  margin-top: 48px;
}

.service_content div p:last-child {
  margin-bottom: 0;
}

.bg_img {
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.icon_content img {
  height: 56px;
  width: 56px;
}

.content_text h2 {
  margin-bottom: 32px;
  margin-top: 36px;
}

.button_service {
  margin-top: 32px;
}

.d-flex.bg_grey {
  background: #E8E8E8;
  align-items: center;
}

.content_text {
  padding: 30px 120px;
}

.faq-item {
    border-top: 1px solid #E8E8E8;
    overflow: hidden;
}

.faq-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.is-open .faq-content {
    max-height: 1000px;
}

.icon-minus { display: none; }
.faq-item.is-open .icon-plus { display: none; }
.faq-item.is-open .icon-minus { display: block; }

.faq_section .grid2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 64px;
}

.mg-14 {
  margin: 140px 0;
}

.description_p {
  margin-bottom: 0;
  margin-top: 16px;
  color: #3F3F3F;
  font-weight: 300;
}

.cta_faq {
  background: #313131;
  color: white;
  margin-top: 140px;
  padding: 32px;
}

.cta_faq .d-flex {
  justify-content: space-between;
	row-gap: 20px;
}

.cta_faq p {
  margin-bottom: 0;
  color: white;
  font-weight: 300;
}

.cta_faq h3 {
  color: white;
  text-transform: none;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta_faq .d-flex {
  align-items: center;
}

.cta_faq a:hover {
  background: white;
  color: var(--orange)
}

.faq-header h5 {
  font-weight: 500;
  text-transform: none;
  font-size: 24px;
  line-height: 150%;
  color: #000;
  padding-right: 15px;
}

.faq-content p {
  margin-bottom: 0;
  margin-top: -4px;
  color: #3F3F3F;
  margin-bottom: 18px;
  padding-right: 72px;
}

span.icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion {
  margin-top: 50px;
}

.faq_section.mg-14 {
  margin-bottom: 120px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.about_us .grid2,
.statistics_section .grid2 {
  column-gap: 64px;
}

.about_title {
  margin-bottom: 48px;
}

.bg_img_about {
  height: 800px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.statistics_content {
  padding-right: 48px;
  margin-top: 32px;
}

.single_nr {
  padding: 24px;
  width: calc(100% - 241px);
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
}

.single_nr p {
  margin-bottom: 0;
  color: white;
}

.single_nr h6 {
  color: #000000;
  font-size: 32px;
  line-height: 130%;
  font-weight: 500;
  margin-bottom: 56px;
  color: white;
	width: 100%;
}

.statistics_nr {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.single_nr:nth-child(2),
.single_nr:nth-child(3),
.single_nr:nth-child(5) {
  width: 225px;
}

.single_nr:nth-child(5) {
	width: 100%;
}

.single_nr:nth-child(1) h6,
.single_nr:nth-child(3) h6{
  color: #000;
}

.single_nr:nth-child(1) p,
.single_nr:nth-child(3) p{
  color: #3F3F3F
}

.partners .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.partners .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .swiper-slide img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.partners .swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partners .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .swiper-slide img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners .swiper-wrapper {
    transition-timing-function: linear !important;
}

.company_name {
  background: #E8E8E8;
  padding: 16px;
  text-align: center;
}

.company_name p {
  margin-bottom: 0;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 100%;
}

.company_name h6 {
  color: #000;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page_bg_img.about_intro .breadcrumbs {
  margin-bottom: 64px;
}

.page_bg_img.about_intro {
  height: 90vh;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding-bottom: 80px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about_hero_nr .grid4 {
  column-gap: 80px;
  position: relative;
  z-index: 99;
  border-top: 1px solid var(--orange);
  padding-top: 24px;
  margin-top: 32px;
}

.single_hero_nr h5,
.single_hero_nr p {
  color: white;
}

.single_hero_nr p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}

.single_hero_nr h5 {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 130%;
  font-weight: 500;
  margin-bottom: 16px;
}

.arrows_slider .swiper-button-prev,
.arrows_slider .swiper-button-next {
  position: initial
}

.arrows_slider {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}

.arrows_slider .swiper-button-prev,
.arrows_slider .swiper-button-next {
  background: #313131;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.arrows_slider .swiper-button-prev img,
.arrows_slider .swiper-button-next img {
  width: 24px;
  height: 24px;
}

.arrows_slider .swiper-button-prev img {
  transform: rotate(-180deg);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.arrows_slider .swiper-button-disabled {
  background: #E8E8E8;
  opacity: 1;
}

.about_years {
  background: #E8E8E8;
  padding: 32px;
  width: 625px;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-start;
  align-content: space-between;
  position: absolute;
  top: 32px;
  right: 32px;
  height: calc(100% - 64px);
}

.about_years h3 {
  font-size: 48px;
  color: #000;
  font-weight: 500;
  line-height: 130%;
}

.about_years p {
  margin-bottom: 0;
  color: #3F3F3F;
  font-weight: 300;
}

.company_years img {
  height: 480px;
  object-fit: cover;
}

.history-years-pagination {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}

.history-years-pagination .swiper-pagination-bullet {
  background: #E8E8E8;
  font-weight: 400;
  cursor: pointer;
  font-size: 18px;
  height: auto;
  width: auto;
  line-height: 100%;
  color: #3F3F3F;
  margin: 0!important;
  opacity: 1;
  padding: 19px 26px 19px;
  border-radius: 0;
}

.history-years-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  color: white;
  background: var(--orange);
}

.title_section {
  padding-left: 8px;
  margin-bottom: 64px;
}

.col-md-8.title_section h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}

.col-md-8.title_section h2 span {
  padding-left: 120px;
}

.col-md-8.title_section p {
  max-width: 800px;
  color: #3F3F3F;
  margin-bottom: 0;
}

.nr_home .position-relative h3 {
  font-size: 32px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.col-md-8.title_section .no-bg-button {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  color: #848484;
  width: fit-content;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 24px;
  text-decoration: underline;
}

.no-bg-button img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
  transform: translateY(2px);
}

.no-bg-button:hover img {
  transform: rotate(45deg);
}

.col-md-8.title_section .no-bg-button:hover {
  color: var(--orange)
}

.review_icon {
  width: 56px;
  height: 56px;
}

.review_content {
  border: 1px solid #E8E8E8;
  padding: 24px;
}

.review_text {
  margin-top: 56px;
  margin-bottom: 56px;
  font-weight: 300;
  color: #3F3F3F;
	height: 210px;
	overflow-y: auto
}

.about_member img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  margin-right: 16px;
}

.name_location h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #000;
}

.name_location h6 {
  font-size: 16px;
  line-height: 100%;
  font-weight: 300;
  color: #3F3F3F;
  text-transform: none;
}

.about_member {
  align-items: center;
}

.reviews_slider {
  margin-top: 48px;
}

.cta_bg_img .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #E36F2C!important
}

.cta_bg_img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.cta_bg_img .subtitle {
  color: white;
  margin-bottom: 0;
}

.cta_bg_img h2 {
  color: white;
  margin-top: 115px;
  margin-bottom: 24px;
}

.cta_bg_img p {
  margin-bottom: 0;
  color: white;
  font-weight: 300;
}

.cta_intro_form {
  max-width: 560px;
	padding-bottom: 8px;
}

.cta_form_white {
  max-width: 560px;
}

.cta_form_white input {
  width: 100%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 11px 16px 16px;
}

.cta_form_white ::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
}

.cta_form_white .submit_button input {
  background: var(--orange);
  border: 0;
  transition: 0.3s;
  padding: 19px 15px 19px;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
}

.cta_form_white .submit_button input:hover {
  background: var(--grey)
}

.cta_form_white label {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 12px;
}

.cta_bg_img .cta_form_white p {
  margin-bottom: 24px;
}

.cta_bg_img .cta_form_white .acceptance p {
	margin-bottom: 0
}

.cta_form_white .submit_button {
  margin-top: 32px;
  margin-bottom: 8px;
}

.cta_bg_img .cta_form_white .submit_button p {
  margin-bottom: 0;
}

.submit_button {
  position: relative;
}

.submit_button .wpcf7-spinner {
  position: absolute;
  left: 12px;
  top: 14px;
}

.cta_bg_img .acceptance a {
  color: white;
}

.services_home {
  background: var(--grey);
  padding: 140px 0;
}

.text-white {
  color: white;
}

.icon_service img {
  width: 56px;
  height: 56px;
}

.service_home_content h4 {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  margin-top: 35px;
}

.service_home_content p {
  margin-bottom: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  line-height: 150%;
  font-weight: 300;
}

.home-services.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.single_home_serv {
  background: rgba(63, 63, 63, 1);
  padding: 24px;
  border: 1px solid var(--orange);
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}

.workers {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}

.icon_absolute {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: auto;
  z-index: 99;
}

.workers:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(179.12deg, rgba(0, 0, 0, 0) 20.45%, rgba(111, 40, 0, 0.7) 99.24%);
}

.workers h3,
.workers p {
  position: relative;
  z-index: 9
}

.workers p,
.locations_home p,
.years_home p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
  margin-top: 16px;
}

.workers h3 {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 130%;
  text-transform: uppercase;
}

.locations_home,
.years_home {
  background: #313131;
  padding: 24px;
  margin-bottom: 16px;
}

.years_home {
  margin-bottom: 0;
}

.icon_relative {
  height: 204px;
  width: auto;
  margin-right: 0;
  margin-left: auto;
}

.text-right {
  margin-right: -24px;
  margin-top: -24px;
  text-align: right;
}

.nr_home .text-right {
  margin-bottom: -11px;
}

.home_hero {
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  position: relative;
}

.home_hero:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(252.91deg, rgba(38, 38, 38, 0) 19.38%, rgba(38, 38, 38, 0.8) 92.49%);
  background-blend-mode: multiply;
}

.home_hero .hero_content {
  position: absolute;
  z-index: 9;
  color: white;
  bottom: 100px;
}

.hero_content h1 {
  font-size: 64px;
  line-height: 130%;
  font-weight: 700;
  text-transform: uppercase;
}

.hero_content p {
  font-weight: 300;
  margin-bottom: 40px;
  margin-top: 40px;
  font-size: 20px;
  line-height: 150%;
}

.hero_buttons a img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
  transform: translateY(2px);
}

.hero_buttons a {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 100%;
}

.hero_buttons a:last-child img {
  display: none;
}

.hero_buttons a:last-child {
  background: transparent;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 32px 16px;
}

.hero_buttons a:last-child span {
  border-bottom: 1px solid white;
  padding-bottom: 1px;
}

.hero_buttons a:last-child:hover {
  color: var(--orange)
}

.hero_buttons a:last-child:hover span {
  border-color: var(--orange)
}

.proiect-hero {
  background-color: #333;
  overflow: hidden;
}

.proiect-text {
  color: white;
  padding-right: 80px;
}

.proiect-imagine img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  width: calc(100% + ( (100vw - 1600px) / 2 ) );
  margin-right: calc( ( (100vw - 1600px) / 2 ) * -1 );
}

.project_hero .row {
  height: 90vh;
}

@media (max-width: 1600px) {
  .proiect-imagine img {
      width: calc(100% + 15px);
      margin-right: -15px;
  }
}

.single_nr_project {
  background: #E8E8E8;
  padding: 24px 15px 18px;
  text-align: center;
}

.single_nr_project h3 {
  font-size: 48px;
  line-height: 100%;
  font-weight: 500;
  text-transform: uppercase;
}

.single_nr_project p {
  margin-bottom: 0;
  margin-top: 8px;
  font-weight: 300;
}

.about_gallery p:last-child {
  margin-bottom: 0;
}

.project_nr {
  margin-top: 16px;
}

.about_project_gallery {
  margin-top: 16px;
}

.about_project_gallery .swiper-slide img {
  height: 360px;
  object-fit: cover;
}

.text_about {
  padding-left: 6px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}

.custom-video {
  width: 100%;
  display: block;
  height: 288px;
  object-fit: cover;
}

.custom-video::-webkit-media-controls {
  display: none !important;
}

.photo_video img {
  height: 100%;
  object-fit: cover;
}

.video-wrapper:hover .custom-video::-webkit-media-controls {
  display: flex !important;
}

.custom-video {
  controls: none;
}
.video-wrapper:hover .custom-video {
  controls: auto;
}

.photo_video {
  padding-right: 10px;
}

.project_hero {
  background: #313131;
  border-top: 1px solid #848484;
}

.project_address {
  margin-bottom: 16px;
  color: white;
  position: relative;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
  padding-left: 32px;
}

.project_address:before {
  content: '';
  background: url('/wp-content/uploads/2026/03/location_on-1.svg');
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
}

.hero_intro h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  color: white;
  margin-bottom: 32px;
}

.single-project .project_menu a {
  color: var(--orange)
}

.single-project .breadcrumbs ul li:last-child {
  color: white;
}

.project_excerpt {
  color: white;
  font-weight: 300;
}

.project_hero_button .main_button img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
  transform: translateY(1px);
}

.project_hero_button {
  display: flex;
  align-items: center;
}

.transparent_button {
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 400;
  color: white;
  padding: 19px 32px;
}

.is-apple .transparent_button {
  padding: 18px 24px 14px;
}

.is-apple.single-project .transparent_button {
  padding: 18px 32px 14px;
}

.is-apple .filter-btn {
  padding: 21px 10px 17px;
}

.transparent_button span {
  border-bottom: 1px solid white;
  padding-bottom: 1px;
}

.transparent_button:hover span {
  border-color: var(--orange)
}

.project_hero_button .main_button:hover {
  background: #848484
}

.main_button:hover img {
  transform: rotate(45deg);
}

.advantages {
  background: #313131;
  padding: 140px 0;
}

.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.advantage_single img {
  width: 56px;
  height: 56px;
  margin-bottom: 43px;
}

.advantage_single {
  border: 1px solid var(--orange);
  background: #3F3F3F;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  flex-direction: row;
}

.advantage_single h6 {
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
	width: 100%
}

.iframe_location iframe {
  width: 100%;
  height: 480px;
}

.single_include_cta {
  background: #313131;
  padding: 32px;
  height: 392px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.what_icon{
  width: auto;
  height: 40px;
  position: absolute;
  right: 32px;
  top: 32px;
}

.single_include_cta h5,
.single_what h5 {
  color: white;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 130%;
  font-weight: 500;
  margin-bottom: 24px;
}

.single_what h5 {
  margin-bottom: 0;
}

.content img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
  transform: translateY(1px);
}

.content a:hover {
  background: #848484;
}

.single_what {
  height: 392px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.include_grid .content {
  width: 100%;
  position: relative;
  z-index: 9;
}

.single_what:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000001A;
  background: linear-gradient(179.12deg, rgba(0, 0, 0, 0) 20.45%, rgba(111, 40, 0, 0.7) 99.24%);
}

.app_img {
  border: 1px solid #E8E8E8;
  height: 464px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.app_img img {
  height: 400px;
  object-fit: contain;
}

.apartments_items.grid4 {
  column-gap: 16px;
  row-gap: 80px;
}

.app_content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  text-transform: none;
  margin-bottom: 8px;
}

.app_content p {
  margin-bottom: 0;
  color: #3F3F3F;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}

.app_img a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-btn {
  cursor: pointer;
  margin-right: 11px;
  transition: all 0.3s ease;
  width: 180px;
  text-align: center;
  background: #E8E8E8;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  color: #313131;
  padding: 19px 10px 19px;
  border: 0;
  text-transform: uppercase;
}

.filter-btn.active {
  background: var(--orange);
  color: #fff;
}

.filter-item {
  transition: opacity 0.4s ease;
}

.apartment-filters {
  margin-bottom: 32px;
}

.filter-item {
  display: none;
}

.btn-load-more {
  background-color: #313131;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  color: white;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 400;
  padding: 19px 24px 19px;
}

.btn-load-more:hover {
  background: var(--orange)
}

.filter-btn:hover {
  background: var(--orange);
  color: white;
}

.btn-load-more:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  display: none;
}

.load-more-container {
  margin-top: 80px;
  text-align: center;
}

.proiect-text {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding-bottom: 80px;
}

.page_bg_img.simple_page:before {
  display: none;
}

.page_bg_img.simple_page {
  border-top: 1px solid #848484
}

.template_simple .container {
  margin-top: 80px;
  margin-bottom: 140px;
}

.template_simple .container h2,
.template_simple .container h3 {
  margin-bottom: 12px;
  margin-top: 50px;
	font-size: 2.6rem;
}

.template_simple .container h4 {
	margin-bottom: 12px;
  margin-top: 30px;
	font-size: 2rem
}

.template_simple .container ul {
	margin-bottom: 20px;
}

.template_simple .container ul li {
	font-size: 20px;
	margin-bottom: 3px;
}

.template_simple .container ul {
	padding-left: 30px;
}

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

.media-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    flex-grow: 1;
    position: relative;
    width: 100%;
    min-height: 100%;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.is-apple .main_button {
	padding: 18px 24px 14px;
}

.is-apple .btn-load-more {
  padding: 21px 24px 17px;
}

.is-apple .hero_buttons a img {
	transform: translateY(-1px);
}

.is-apple .no-bg-button img {
	transform: translateY(0px);
}

.is-apple .subtitle:before {
	top: 37%;
}

.is-apple .cta_form_white input,
.is-apple .general_cf input {
	padding: 15px 16px 12px;
}

.is-apple .cta_form_white .submit_button input,
.is-apple .general_cf .submit_button input {
	padding: 21px 15px 17px;
}

.is-apple .blog_category {
	padding: 18px 17px 14px 15px;
}

.is-apple .hero_buttons a:last-child {
	padding: 18px 32px 14px;
}

.review_section .review_title h2 {
	margin-bottom: 16px;
}

.is-apple .blog_title p {
	padding: 18px 16px 14px;
}

.is-apple .blog_title h1 {
	padding-top: 7px
}

.is-apple .history-years-pagination .swiper-pagination-bullet {
	padding: 21px 26px 17px;
}

.is-apple .main_button.dark_button {
	padding: 21px 24px 17px;
}

.cta_faq .cta_intro {
	width: calc(100% - 220px);
	padding-right: 30px;
}

.is-apple .filter_btn {
	padding: 21px 24px 17px;
}

.is-apple .project_hero_button .main_button img {
  transform: translateY(-1px);
}

.project_hero .breadcrumbs {
  width: 100%;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .breadcrumbs ul li:nth-child(1), .breadcrumbs ul li:nth-child(2) {
    flex: 0 0 auto;
  }
  .breadcrumbs ul li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumbs ul {
      display: flex;
      align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      gap: 24px;
      white-space: nowrap;
  }
  .breadcrumbs ul li a:after {
    right: -17px;
  }
}

@media (min-width: 1024px) and (max-width: 1365px) {
  .content_text {
    padding: 30px;
  }
  .h1, h1 {
    font-size: 4.6rem;
  }
  .statistics_content {
    padding-right: 0;
  }
  .cta_faq .cta_intro {
    width: 100%;
  }
  .project_card_content h2 {
    font-size: 20px;
  }
  .bg_img {
    height: 740px;
  }
  .icon_relative {
    height: 140px;
  }
  .service_home_content h4 {
    font-size: 20px;
  }
  .contact_frm {
    margin-left: 0px;
    width: 50%;
    padding: 32px;
  }
  .contact_items {
    padding-right: 40px;
  }
  .footer_links {
    padding-left: 0;
  }
  .col-md-6.footer_logo {
    width: 45%;
  }
  .col-md-6.footer_links {
    width: 55%;
  }
  .footer_contacts a {
    font-size: 20px;
  }
  .faq_section .grid2 {
    gap: 32px;
  }
  .cta_faq .d-flex {
    row-gap: 30px;
  }
  .h2, h2 {
    font-size: 3.6rem;
  }
  .intro_text {
    margin-bottom: 40px;
  }
  .post_content,
  .service_content {
    gap: 40px;
  }
  .not_found_page {
    height: auto;
    padding: 0;
    min-height: auto;
    margin: 140px 0;
  }
  .blog_card_image img {
    height: 280px
  }
  .about_hero_nr .grid4 {
    gap: 24px;
  }
  .single_hero_nr h5 {
    font-size: 24px;
  }
  .about_us .grid2,
  .statistics_section .grid2 {
    gap: 40px;
  }
  .history-years-pagination {
    overflow-x: auto;
    margin-bottom: 24px;
  }
  .company_years img {
    height: 400px;
  }
  .single_nr h6 {
    margin-bottom: 24px;
  }
  .form_big {
    padding: 80px 15px;
  }
  .hero_content h1 {
    font-size: 56px;
  }
  .home_hero {
    min-height: 640px;
  }
  .col-md-8.title_section h2 br {
    display: none;
  }
  .col-md-8.title_section h2 span {
    padding-left: 40px;
  }
  .project_card_image img {
    height: 300px;
  }
  .workers {
    padding: 24px;
  }
  .cta_bg_img:before {
    position: absolute;
    content: '';
    background: #3131319c;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .cta_bg_img {
    position: relative;
  }
  .cta_bg_img .container {
    position: relative;
    gap: 40px;
  }
  .project_hero .col-lg-5,
  .project_hero .col-lg-7 {
    width: 50%;
  }
  .proiect-text {
    padding-right: 20px;
  }
  .breadcrumbs ul li:nth-child(1), .breadcrumbs ul li:nth-child(2) {
    flex: 0 0 auto;
  }
  .breadcrumbs ul li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumbs ul {
      display: flex;
      align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      gap: 24px;
      white-space: nowrap;
  }
  .breadcrumbs ul li a:after {
    right: -16px;
  }
  .hero_intro h1 {
    font-size: 42px;
  }
  .project_hero_button a {
    font-size: 1.6rem;
    padding: 15px 15px;
  }
  .about_project_gallery .swiper-slide img {
    height: 320px;
  }
  .col-md-8.title_section h2 {
    font-size: 42px;
  }
  .grid5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .single_include_cta h5 br,
  .single_what h5 br {
    display: none;
  }
  .app_img {
    height: auto;
  }
  .app_img img {
    height: 320px;
  }
  .load-more-container {
    margin-top: 60px;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .history-years-pagination {
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 24px;
  }
  .is-apple .filter-btn {
    padding: 21px 30px 17px;
  }
  .filter_btn {
    padding-left: 12px!important;
    padding-right: 12px!important;
  }
  .project_card_content {
    margin-top: 20px;
  }
  .statistics_content {
    padding-right: 0;
    margin-top: 16px;
  }
  .title_section {
    padding-left: 0;
  }
  .history-years-pagination .swiper-pagination-bullet {
    padding: 15px 20px;
  }
  .about_years {
    width: 60%;
  }
  .about_title {
    margin-bottom: 32px;
  }
  .company_years img {
    height: 340px;
  }
  .footer_links {
    padding-left: 0;
  }
  .about_hero_nr .grid4 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 40px;
    margin-top: 80px;
  }
  .statistics_section .grid2,
  .about_us .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .bg_img_about {
    height: 400px;
    margin-bottom: 32px;
  }
  .statistics_title {
    margin-bottom: 10px;
  }
  .footer_logo,
  .footer_links {
    width: 100%;
  }
  .page_bg_img.about_intro {
    height: auto;
  }
  .footer_links {
    margin-top: 48px;
  }
  .footer_menu ul li a {
    font-size: 18px;
  }
  .copyrights p, .copyrights a {
    font-size: 10px;
  }
  .map_contact iframe {
    height: 400px;
  }
  .contact_info .d-flex .col-md-6 {
    width: 100%;
  }
  .contact_frm {
    margin-left: 0;
    margin-top: 48px;
    padding: 32px;
  }
  .contact_items {
    padding: 0;
  }
  .p_intro {
    margin-top: 16px;
  }
  .header {
    display: flex;
    align-items: center;
    padding-right: 15px;
  }
  .header_menu {
    padding-right: 30px;
  }
  .not_found_page {
    height: auto;
    padding: 0;
    min-height: auto;
    margin: 140px 0;
  }
  .h1, h1 {
    font-size: 4.2rem;
  }
  .page_bg_img .breadcrumbs {
    margin-bottom: 80px;
  }
  .h2, h2 {
    font-size: 3.2rem;
  }
  .lang_menu .trp-ls-language-name {
    font-size: 15px;
  }
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog_card_image img {
    height: 280px;
  }
  .blog_card_content h2 {
    font-size: 22px;
  }
  .blog_pagination {
    margin-top: 40px;
  }
  .blog_section {
    margin: 80px 0 100px
  }
  .blog_category {
    font-size: 16px;
    padding: 14px 16px;
  }
  .breadcrumbs ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 50px;
    white-space: nowrap;
  }
  .breadcrumbs ul li:nth-child(1),
  .breadcrumbs ul li:nth-child(2) {
    flex: 0 0 auto;
  }
  .featured_image img {
    height: 500px;
  }
  .breadcrumbs ul li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .post_content {
    column-count: 1;
    column-gap: 0px;
    padding-bottom: 56px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 80px;
  }
  .blog_title {
    flex-direction: column;
  }
  .related_posts .blog_grid article:last-child {
      display: none;
  }
  .form_full .col-md-6 {
    width: 100%;
  }
  .form_full .form_bg {
    height: 400px;
  }
  .form_big {
    padding: 80px 15px;
  }
  .form_big .general_cf {
    max-width: 100%;
  }
  .form_social .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .service_content {
    grid-template-columns: repeat(1, 1fr);
  }
  .content_text {
    padding: 40px 15px 80px;
  }
  .d-flex.bg_grey .col-md-6 {
    width: 100%;
  }
  .bg_img {
    height: 400px;
  }
  .spaces_section .d-flex,
  .production_section .d-flex {
    flex-direction: column-reverse;
  }
  .faq_section .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .cta_faq {
    margin-top: 30px;
  }
  .faq-accordion {
    margin-top: 0;
  }
  .mg-14,
  .service_intro {
    margin: 100px 0;
  }
  .faq_section.mg-14 {
    margin-bottom: 80px
  }
  .home-services.grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero_content h1 {
    font-size: 48px;
  }
  .home_hero {
    min-height: 500px;
  }
  .home_title {
    flex-direction: column;
  }
  .home_title .col-12 {
    width: 100%;
  }
  .col-md-8.title_section h2 br {
    display: none;
  }
  .col-md-8.title_section h2 span {
    padding-left: 0;
  }
  .title_section {
    margin-bottom: 48px;
  }
  .project_card_image img {
    height: 320px;
  }
  .project_card_content h2 {
    font-size: 20px;
  }
  .icon_relative {
    height: 140px;
  }
  .col-md-8.title_section h2 {
    font-size: 42px;
  }
  .home article.project_card:last-child {
    display: none;
  }
  .grid3.nr_home {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid3.nr_home > div:last-child {
    grid-column: 1 / -1;
    height: 300px;
  }
  .cta_bg_img:before {
    position: absolute;
    content: '';
    background: #3131319c;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .cta_bg_img {
    position: relative;
  }
  .cta_bg_img .container {
    position: relative;
    gap: 40px;
    flex-direction: column;
  }
  .cta_bg_img .container > div {
    width: 100%;
    max-width: 100%;
  }
  .cta_bg_img h2 {
    margin-top: 40px;
  }
  .filter_btn {
    min-width: auto;
    width: 100%;
    font-size: 15px;
    padding: 15px 10px
  }
  .project_hero .row {
    height: auto;
    flex-direction: column-reverse;
  }
  .intro_text {
    margin-bottom: 40px;
  }
  .general_cf label,
  .cta_form_white label {
    font-size: 16px;
  }
  .grid5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .proiect-text {
    padding: 0;
  }
  .proiect-imagine img {
    width: calc(100% + 30px);
    margin: 0 -15px;
    height: 500px;
    object-position: center;
  }
  .proiect-text .breadcrumbs {
    display: none;
  }
  .proiect-text {
    margin-top: 40px;
    padding-bottom: 50px;
    text-align: center;
    justify-content: center;
  }
  .project_hero_button {
    justify-content: center;
  }
  .project_address:before {
    display: none;
  }
  .hero_intro h1 {
    font-size: 42px;
  }
  .about_project_gallery .swiper-slide img {
    height: 500px;
  }
  .single_include_cta h5 br,
  .single_what h5 br {
    display: none;
  }
  .about_proiect_intro {
    flex-direction: column;
  }
  .photo_video {
    height: 500px;
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }
  .col-md-8.text_about {
    width: 100%;
    padding: 0;
  }
  h2 br {
    display: none;
  }
  .apartment-filters {
    display: flex;
    row-gap: 16px;
  }
  .apartments_items.grid4 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .load-more-container {
    margin-top: 40px;
  }
  .iframe_location iframe {
    height: 350px;
  }
  .filter-btn {
    width: auto;
    padding: 16px 20px;
  }
}

@media only screen and (max-width: 640px) {
  .faq_section .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
	.template_simple .container ul li {
    font-size: 18px;
    margin-bottom: 5px;
}
	.template_simple .container ul {
		margin-top: 0;
	}
	:lang(ru) .footer_links {
    padding-left: 0px;
}
	.col-md-8.title_section .no-bg-button {
		font-size: 16px;
	}
  .phone_contact .d-flex {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }
  .single_include_cta,
  .single_what {
    padding: 24px;
  }
  .phone_contact a::after {
    display: none;
  }
  .filter_btn {
    padding-left: 12px!important;
    padding-right: 12px!important;
  }
  .cta_faq {
    margin-top: 30px;
  }
  .cta_faq .cta_intro {
    width: 100%;
  }
  .faq-accordion {
    margin-top: 0;
  }
  .service_content {
    grid-template-columns: repeat(1, 1fr);
  }
  .content_text {
    padding: 40px 15px 80px;
  }
  .d-flex.bg_grey .col-md-6 {
    width: 100%;
  }
  .bg_img {
    height: 300px;
  }
  .spaces_section .d-flex,
  .production_section .d-flex {
    flex-direction: column-reverse;
  }
  .breadcrumbs {
    margin: 20px 0 30px;
  }
  .breadcrumbs ul li a,
  .breadcrumbs ul li {
    font-size: 12px;
  }
  .breadcrumbs ul {
    gap: 20px;
  }
  .breadcrumbs ul li a:after {
    right: -14px;
  }
  .h1, h1 {
    font-size: 3.2rem;
  }
  .contact_items {
    padding-right: 0;
  }
  .p_intro {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  p {
    font-size: 1.8rem;
  }
  .contact_info {
    padding-top: 20px;
  }
  .contact_items a {
    font-size: 22px;
  }
  .contact_frm {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
    padding: 24px;
  }
  .h2, h2 {
    font-size: 2.8rem;
  }
  .general_cf h2 {
    margin-bottom: 12px;
  }
  .intro_text {
    margin-bottom: 40px;
  }
  .general_cf label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .submit_button {
    margin-top: 0px;
  }
  .contact_items h6 {
    font-size: 15px;
  }
  .form_social {
    margin-top: 30px;
  }
  .form_social img {
    height: 24px;
  }
  .form_social .grid3 {
    gap: 4px;
  }
  .map_contact iframe {
    height: 300px;
  }
  .footer_links {
    padding-left: 0;
    flex-direction: column;
    margin-top: 50px
  }
  footer {
    padding: 50px 0 24px;
  }
  .footer_contacts a {
    font-size: 18px;
  }
  .phone_flex {
    gap: 20px;
  }
  .phone_flex a:before {
    left: -13px;
  }
  .col-md-8.title_section p {
    max-width: 100%;
  }
  .socials {
    margin-bottom: 40px;
  }
  .home_hero:before {
    background: #262626b3;
  }
  .hero_content p br {
    display: none;
  }
  .hero_content p {
    font-size: 18px;
  }
  .copyrights {
    flex-direction: column-reverse;
    text-align: center;
    padding-bottom: 0;
    margin-top: 40px;
  }
  .copyrights p {
    margin: 8px 0;
  }
  .copyrights p, .copyrights a {
    font-size: 10px;
  }
  .email {
    margin: 24px 0;
  }
  .footer_menu ul li a {
    font-size: 16px;
  }
  .not_found_page {
    height: auto;
    padding: 0;
    min-height: auto;
    margin: 80px 0;
  }
  .container {
    max-width: 100%;
  }
  .text_not {
    font-size: 130px;
  }
  .page_bg_img .breadcrumbs {
    margin-bottom: 48px;
    padding-top: 20px;
  }
  .template_simple .container {
    margin-bottom: 80px;
    margin-top: 60px;
  }
  .right-menu .phone_menu {
    display: none;
  }
  .header_menu .logo_site {
    flex: auto;
    width: 80%;
  }
  .right-menu {
    width: 20%;
  }
  .mobile__menu {
    margin-left: 10px;
    width: 34px;
    height: 34px;
  }
  .logo_site img {
    width: 180px;
  }
  .header {
    padding: 12px 0;
  }
  .general_cf input {
    padding: 12px 16px;
  }
  .general_cf .submit_button input {
    padding: 16px 10px;
    font-size: 16px;
  }
  p {
    margin-bottom: 18px;
  }
  .grid2,
  .grid3,
  .grid4,
  .grid5 {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog_section {
    margin: 50px 0 80px;
  }
  .blog_card_image img {
    height: 280px;
  }
  .blog_category {
    font-size: 16px;
    padding: 12px 16px;
  }
  .blog_card_content h2 {
    font-size: 22px;
  }
  .blog_pagination {
    margin-top: 40px
  }
  .blog_pagination > * {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .blog_title {
    flex-direction: column;
  }
  .blog_title p {
    font-size: 16px;
    padding: 12px 16px;
  }
  .featured_image img {
    height: 300px;
  }
  .post_content {
    column-count: 1;
    column-gap: 0px;
    margin-bottom: 60px;
    padding-bottom: 40px;
  }
  .featured_image {
    margin-bottom: 40px;
  }
  .featured_title {
    margin-bottom: 30px;
  }
  .related_posts {
    margin-bottom: 80px;
  }
  .form_bg {
    height: 260px;
  }
  .form_big {
    padding: 50px 15px 60px;
  }
  .form_social .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .breadcrumbs ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 24px;
    white-space: nowrap;
  }
  .breadcrumbs ul li:nth-child(1),
  .breadcrumbs ul li:nth-child(2) {
    flex: 0 0 auto;
  }

  .breadcrumbs ul li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .service_intro {
    margin: 80px 0;
  }
  .service_content {
    margin-top: 30px;
  }
  .subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .subtitle:before {
    top: 0;
  }
  .mg-14 {
    margin: 80px 0;
  }
  .faq_section.mg-14 {
    margin-bottom: 60px;
  }
  .cta_faq {
    padding: 24px;
  }
  .cta_faq h3 {
    font-size: 2.5rem;
  }
  .cta_faq .d-flex {
    justify-content: center;
    row-gap: 20px;
    text-align: center;
  }
  .cta_button {
    width: 100%;
  }
  .main_button,
  .transparent_button,
  .hero_buttons a,
  .cta_form_white .submit_button input {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 1.6rem;
    padding: 16px 10px;
  }
  .faq-header h5 {
    font-size: 20px;
    line-height: 130%;
  }
  .faq-content p {
    padding-right: 0;
  }
  .faq_section .grid2 {
    gap: 40px;
  }
  .page_bg_img h1 {
    padding-bottom: 20px;
  }
  .mobile__nav .menu a {
    font-size: 22px;
  }
  .hero_content h1 {
    text-align: center;
    font-size: 36px;
  }
  .hero_content h1 br {
    display: none;
  }
  .home-services.grid4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .page_bg_img.about_intro {
    height: auto;
    padding-bottom: 40px;
  }
  .page_bg_img h1 br {
    display: none;
  }
  .single_hero_nr h5 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .about_hero_nr .grid4 {
    row-gap: 32px;
  }
  .page_bg_img.about_intro .breadcrumbs {
    margin-bottom: 48px;
  }
  .about_hero_nr .grid4 {
    margin-top: 50px;
  }
  .about_title {
    margin-bottom: 32px;
  }
  .bg_img_about {
    height: 400px;
  }
  .about_content {
    margin-top: 32px;
  }
  .statistics_content {
    padding-right: 0;
  }
  .single_nr {
    width: calc(50% - 8px)!important;
    padding: 15px;
  }
  .single_nr h6 {
    margin-bottom: 24px;
  }
  .statistics_content {
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .about_years {
    width: 100%;
  }
  .company_years {
    height: auto;
  }
  .about_years {
    position: initial;
    height: auto;
    padding: 24px;
  }
  .company_years img {
    height: 260px;
  }
  .about_years h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .history-years-pagination {
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 24px;
  }
  .history-years-pagination .swiper-pagination-bullet {
    font-size: 15px;
    padding: 14px 15px;
  }
  .home_hero {
    height: auto;
    min-height: 600px;
  }
  .home_hero .hero_content {
    position: relative;
    bottom: 0;
    padding-top: 80px;
    text-align: center;
  }
  .hero_content p {
    margin-top: 24px;
  }
  .d-flex.hero_buttons {
    row-gap: 16px;
  }
  .col-md-8.title_section h2 span {
    padding-left: 0;
  }
  .col-md-8.title_section h2 br {
    display: none;
  }
  .col-md-8.title_section h2 {
    font-size: 2.8rem;
  }
  .title_section {
    margin-bottom: 40px;
    padding-left: 0
  }
  .project_card_image img {
    height: 280px;
  }
  .project_card_content h2 {
    font-size: 20px;
  }
  .project_card_content {
    margin-top: 20px;
  }
  .project_grid.grid3 {
    row-gap: 32px;
  }
  .workers {
    height: 300px;
    padding: 24px;
  }
  .icon_relative {
    height: 130px;
  }
  .cta_form_white label {
    font-size: 14px;
  }
  .services_home {
    padding: 80px 0;
  }
  .review_text {
    margin: 32px 0;
  }
  .single_nr:nth-child(5) {
    width: 100%!important
  }
  .about_slider .arrows_slider {
    margin-top: 0;
  }
  .reviews_slider {
    margin-top: 32px;
  }
  .cta_bg_img:before {
    position: absolute;
    content: '';
    background: #3131319c;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .cta_bg_img {
    position: relative;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .cta_bg_img .container {
    position: relative;
    gap: 40px;
    flex-direction: column;
  }
  .cta_bg_img .container > div {
    width: 100%;
    max-width: 100%;
  }
  .cta_bg_img h2 {
    margin-top: 40px;
  }
  .project_filters {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
  }
  .filter_btn {
    min-width: auto;
    width: 100%;
    font-size: 15px;
    padding: 15px 10px
  }
  .project_section {
    margin-bottom: 80px;
  }
  .project_hero .row {
    height: auto;
    flex-direction: column-reverse;
  }
  .grid5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .proiect-text {
    padding: 0;
  }
  .proiect-imagine img {
    width: calc(100% + 30px);
    margin: 0 -15px;
    height: 340px;
    object-position: center;
  }
  .proiect-text .breadcrumbs {
    display: none;
  }
  .proiect-text {
    margin-top: 40px;
    padding-bottom: 50px;
    text-align: center;
    justify-content: center;
  }
  .project_hero_button {
    justify-content: center;
    flex-direction: column;
    row-gap: 16px;
  }
  .project_address:before {
    display: none;
  }
  .hero_intro h1 {
    font-size: 32px;
  }
  .photo_video {
    height: 340px;
    margin-bottom: 32px;
    padding: 0;
  }
  .text_about {
    padding: 0;
  }
  .about_project_gallery .swiper-slide img {
    height: 300px;
  }
  .advantages {
    padding: 80px 0;
  }
  .grid5.advantages_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .single_include_cta h5 br,
  .single_what h5 br {
    display: none;
  }
  .single_include_cta h5 {
    font-size: 20px;
  }
  .single_what,
  .single_include_cta {
    height: 320px;
  }
  .filter-btn {
    width: 100%;
  }
  .apartment-filters {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
  }
  .apartments_items.grid4 {
    row-gap: 40px;
  }
  .load-more-container {
    margin-top: 40px;
  }
  #loadMore {
    width: 100%;
  }
  .project_locations iframe {
    height: 300px;
  }
}
