@import url("//cdn.web-fonts.ge/fonts/bpg-arial/css/bpg-arial.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "BPG Arial", sans-serif;
}

body {
    color: #2f2f2f;
}

img {
    background-size: cover;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
}

h1 {
}

h1.center-text {
    font-size: 54px;
    color: white;
}

h3 {
}

.scroll-downs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;

    width: 34px;
    height: 55px;
}
.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}
.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
}
@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.wrapper {
    width: 1170px;
    margin: 0 auto;
}

.wrapper.mt-200 {
    margin-top: 200px;
}

header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 100;
    width: 1170px;
    top: 20px;
    background: #00000057;
    border-radius: 50px;
    padding: 5px 20px;
}

header.transparent {
    background: none;
}

img.logo {
    width: 50%;
}

img.q__i {
    width: auto;
    height: 80px;
}

ul.menu {
    display: flex;
    align-items: center;
}

ul li {
    list-style: none;
    color: white;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 700;
}

ul li.dark {
    color: black !important;
}

.header_right_bar.dark {
    color: black;
}

.header_right_bar {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

li.menu__items {
    margin-right: 50px;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #8ec640;
}

.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 60%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #8ec640;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

li.menu__items.active {
    border-bottom: 2px solid #8ec640;
}

.logo__img {
    width: 20%;
    opacity: 0.5 !important;
}

.input_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

span.text-danger {
    padding: 10px 0px 10px 0px;
    color: red;
}

span.text-success {
    text-align: center;
    padding: 20px 0px 0px 0px;
    font-size: 18px;
    color: #8ec640;
}

.video-container {
    height: 100vh;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    background-color: rgba(52, 50, 31, 0.712);
}

.gallery {
    margin: 100px 0px;
    overflow: hidden;
}

.gallery img.g__item {
    margin-right: 1px;
}

.wallpaper-container {
    background-image: url("/public/assets/img/buildings/main.jpg");
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    background-image: url("/public/assets/img/buildings/about_us_wp.jpg");
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
}

.service-container {
    background-image: url("/public/assets/img/buildings/service_bg.jpg");
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
}

.contact-container {
    background-image: url("/public/assets/img/buildings/montaj.jpg");
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
}

.wallpaper-container .cover {
    background-color: rgba(0, 0, 0, 0.3);
    height: 700px;
    width: 100%;
}

.video-container .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-container .video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-container .video:after,
.video-container .video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    /* Any overlay color that you want, here I use black with 25% opacity */
    background-color: rgba(0, 0, 0, 0.3);
}

.video-container .content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 1200px;
    margin-right: 0;
}

.video-container .content h1 {
    font-size: 50px;
    color: #fff;
    padding-bottom: 30px;
    margin-bottom: 100px;
    text-transform: uppercase;
    width: 760px;
}

span.bold_text {
    font-size: 90px;
    color: white;
}

span.bold_text_t {
    font-weight: 900;
}

.video-container .content img.layer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.block__a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
}

h3.h3 {
    font-size: 26px;
    font-weight: 500;
    color: #494949;
}

.h3.bg_font_size {
    font-size: 36px;
    color: #003a42;
    font-weight: 700;
}

.mt {
    margin-top: 60px;
}

.mb {
    margin-bottom: 60px;
}

h4.h4 {
    font-weight: 600;
    font-size: 36px;
    color: #494949;
}

h5.h5 {
    font-size: 20px;
}

span.bold {
    font-weight: 700;
    color: orangered;
}

span.light_text {
    color: white;
}

span.green {
    font-weight: 700;
    color: #003a42;
}

span.orange {
    color: rgb(255, 91, 31);
}

span.red {
    font-weight: bolder;
    color: red;
}

.block__a img {
    margin-right: -100px;
}

.flex__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px;
    position: relative;
}

p.p {
    font-weight: 400;
    font-size: 16px;
    line-height: 159.02%;
    color: #747474;
}

.flex__block > img {
    width: 100%;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service__block.left__block {
}

.left__block {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0px;
}

.left,
.right {
    width: 50%;
}

.btn {
    padding: 24px 40px;
    border: 1px solid #747474;
    font-weight: 400;
    font-size: 14px;
    line-height: 159.02%;
    color: #494949;
    max-width: 287px;
    margin: 40px 0px;
    box-shadow: 5px 5px gray;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background-color: #ffffff;
    color: #494949;
    border: 1px solid gray;
    transition: 0.3s ease-in-out all !important;
    box-shadow: 0px 0px gray;
}

form.form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

input {
    background: none;
    border: none;
}

input::placeholder {
    font-weight: 200;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.39);
}

input[type="text"]:focus {
    transition: 0.3s ease-in-out all !important;
    outline: none !important;
    border: 1px solid #8ec640;
}

input[type="email"]:focus {
    transition: 0.3s ease-in-out all !important;
    outline: none !important;
    border: 1px solid #8ec640;
}

input[type="tel"]:focus {
    transition: 0.3s ease-in-out all !important;
    outline: none !important;
    border: 1px solid #8ec640;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 588px;
    height: 70px;
    border: 1px solid white;
    text-align: center;
    font-size: 17px;
    color: #fff;
}

input.input_contact_book[type="text"],
input.input_contact_book[type="email"],
input.input_contact_book[type="tel"] {
    border: 1px solid #494949;
    color: #494949;
}

input.input_contact_book::placeholder {
    font-weight: 200;
    font-size: 17px;
    color: #494949;
}

button {
    border: none;
    background: none;
}

button[type="submit"] {
    width: 588px;
    height: 70px;
    border: 1px solid white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.233);
    box-shadow: 5px 5px gray;
}

button[type="submit"]:hover {
    box-shadow: 0px 0px #003a42;
    transition: 0.3s ease-in-out all !important;
    background-color: #003a42;
    cursor: pointer;
}

img.vertical__img {
    box-shadow: -15px -15px #efeae3;
    object-fit: cover;
    max-height: 750px;
}

img.horizontal__img {
    box-shadow: 15px 15px #efeae3;
}

img.horizon {
    width: 450px;
    height: 500px;
    object-fit: cover;
}

.wide {
    height: 300px;
    object-fit: cover;
    margin-top: 80px;
}

img.vertical__img:hover,
img.horizontal__img:hover {
    box-shadow: 0px 0px #efeae3;
    transition: 0.3s ease-in-out all !important;
}

.white__btn {
    background-color: #ffffff;
}

.white__btn:hover {
    color: #494949;
}

/* Timeline Container */
.timeline {
    background: transparent;
    padding: 20px 0px;
}

/* Outer Layer with the timeline border */
.outer {
    border-left: 2px solid #ffffff;
}

.white {
    color: white !important;
}

/* Card container */
.card {
    position: relative;
    margin: 0 0 80px 20px;
    padding: 10px;
    color: rgb(51, 51, 51);
    border-radius: 8px;
    max-width: 400px;
}

/* Information about the timeline */
.info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sold-out:hover .floor-frame {
    fill: rgba(255, 0, 0, 0.405);
}


/* Title of the card */
.title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    position: relative;
}

/* Timeline dot  */
.title::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    left: -21.3%;
    background: #003a42;
    border: 6px solid white;
}

.section-3 {
    background-color: #00292f;
    padding: 50px 0px;
}

.flex__block.flex__start {
    align-items: flex-start;
}

.section-4 {
    padding: 50px 0px;
}

.item img.footer__logo {
    width: 70%;
    cursor: pointer;
}

.flex__box__center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px;
    flex-wrap: wrap;
}

.b__card {
    width: 27%;
    height: 370px;
}

.b__card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #191a1a;
    margin: 10px 0px;
}

img.b__card__i {
    width: 55px;
}

.b__card__p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #757676;
}

.section-5 {
    height: auto;
    background-color: #323232;
    padding: 50px 0px;
}

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

.icons {
    text-align: right;
}

.item > h2.h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 96.52%;
    /* or 48px */

    color: rgba(255, 255, 255, 0.5);
}

.section-6 {
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("/public/assets/img/layer__green.png");
    background-color: #222222;
    height: auto;
    padding: 50px 0px;
}

.contact__block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 40px 0px;
}

.h1.white {
    color: white;
}

.section-7 {
    background-color: #003a42;
    padding: 50px 0px;
}

footer.footer {
    background-color: #00292f;
    color: rgba(255, 255, 255, 0.459);
}

li.footer__item__list {
    margin-bottom: 20px;
}

.flex__block img.big_opa__img {
    position: absolute;
    right: 0;
    opacity: 0.1;
    bottom: 0;
    top: 180px;
    width: 30%;
}

/*Loader*/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #00292f;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
    visibility: visible;
}

.done {
    opacity: 0;
    visibility: hidden;
    transition: height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: none;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
    margin: 0 auto;
    animation: 0.2s infinite linear;
    flex-direction: column;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
}

.loader-img {
    display: block;
    width: 25%;
    animation: fade 0.5s linear;
}

a.arrow {
    color: black;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.long-arrow-left {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    margin-right: 10px;
}

.long-arrow-left {
    transform: rotate(-45deg);
}

.long-arrow-left::after {
    content: "";
    display: block;
    width: 2px;
    height: 25px;
    background-color: black;
    transform: rotate(-45deg) translate(8px, 2px);
    left: 0;
    top: 0;
}

.info_app_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/*New Drop Button*/

.dropbtn.drp_btn {
    width: auto;
    background: white;
    border: 1px solid black;
}

.drp_dwn_content {
    width: 100% !important;
    text-align: center !important;
}

.drp_dwn_content a:hover {
    background-color: #e2e2e2 !important;
}

/* Dropdown Button */
.dropbtn {
    color: white;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 50px;
    border-top-left-radius: 30px;
    height: 50px;
    border-top-right-radius: 30px;
}

.dropbtn.dark {
    color: black;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    width: 50px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    z-index: 1;
    border-radius: 0px 0px 30px 30px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    border-radius: 30px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    transition: 0.3s ease-in-out all !important;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #8dc540;
    transition: 0.1s ease-in-out all !important;
}

.floor-section {
    display: flex;
    justify-content: space-between;
}

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

span.bold_bold {
    font-weight: 900;
}

.image2d img {
    width: 100%;
}

.image3d img {
    width: 100%;
}

a.active,
.switch-apart-image a:hover {
    background-color: #0c1d3d;
    color: #fff;
}

.switch-apart-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.switch-apart-image {
    display: inline-block;
    background-color: #d8d3c9;
    font-size: 0;
    height: 46px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 30px;
    border-radius: 23px;
}

.switch-apart-image a.active,
.apartment-container .switch-apart-image a:hover {
    background-color: #003a42;
    color: #fff;
}

.switch-apart-image a {
    display: inline-block;
    line-height: 46px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2f2f2f;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    min-width: 46px;
    text-align: center;
    border-radius: 23px;
}

.top__render__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apartment-section {
    display: flex;
    justify-content: space-between;
}

.info__sq__meters {
    font-size: 80px;
    color: #003a42;
}

.hide {
    display: none;
}

.info__sq__meters span {
    font-size: 50px;
}

.price__footer--title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 36px;
    color: #003a42;
    font-weight: 700;
}

.info__sq__meters span sup {
    font-size: 20px;
}

.info__items__blocks {
    display: flex;
    justify-content: space-between;
    margin: 40px 0px;
}

ul.info__ul__items {
    margin-bottom: 40px;
}

.price__footer--buttons {
    margin-top: 40px;
}

.apartment-container {
    padding: 100px 0px;
}

.center-floor-image.apartment-image {
    padding: 0px 20px;
}

.info__items__blocks__i {
    background-color: white;
    padding: 20px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.center-floor-image {
    position: relative;
    text-align: center;
}

.info__block__apartment {
    width: 45%;
    background-color: #f9f7f5;
    padding: 40px;
}

li.info__li__imtes {
    margin-bottom: 5px;
    color: #191a1a;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}

.floor-container {
    padding: 100px 0px;
}

svg.floor-svg {
    position: absolute;
    left: 0;
    top: 0;
    height: auto;
    width: 100%;
}

.floor-frame {
    fill: transparent;
    cursor: pointer;
}

.floor-frame-odd {
    fill: transparent;
    cursor: pointer;
}

.floor-frame-even {
    fill: rgb(0 0 0 / 12%);
    cursor: pointer;
}

.floor-frame.is_active {
    fill: rgba(255, 0, 0, 0.342);
    pointer-events: none;
}

.floor-frame.is_active:hover {
    fill: rgba(255, 0, 0, 0.445);
    pointer-events: none;
}

.is_single_active {
    color: red;
}

header {
    transition: all 0.3s ease-in-out;
}

.hide-header {
    height: 0;
    overflow: hidden;
}

.hide-header {
    opacity: 0;
    transition: opacity 0.5s;
}

.images a {
    cursor: default;
}

.floor-frame:hover {
    fill: #8dc54059;
    stroke: #edededc4;
    stroke-width: 1px;
    transition: ease 0.5s;
    cursor: pointer;
    border-radius: 10px;
}

span.apart_nums {
    padding: 5px 10px;
    background: #003a42;
    color: white;
    margin-right: 5px;
}

img.main-building {
    width: 100%;
    height: 100%;
}

img.floor-img {
    width: 100%;
    height: auto;
}

header.header__a {
    height: 100px;
    margin: 0 auto;
}

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

ul li.black {
    color: #2a2a2a;
}

.tool_box {
    padding: 20px;
    text-align: left;
    min-width: 240px;
}

.text_box {
    margin-bottom: 20px;
}

.left__block .text {
    padding: 0px 40px;
}

.text {
    width: 100%;
}

.text_half {
    width: 50%;
}

.left__block__content {
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text > p.p {
    padding: 20px 0px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #808181;
}

.tool_box h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content_box_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

span.a_ap {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 700;
}

span.s_ap {
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 700;
}

/***************************************************
 * Generated by SVG Artista on 10/25/2022, 6:13:54 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-1 {
    -webkit-animation: animate-svg-fill-1 0.7s linear 0.8s both;
    animation: animate-svg-fill-1 0.7s linear 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-2 {
    -webkit-animation: animate-svg-fill-2 0.7s linear 0.9s both;
    animation: animate-svg-fill-2 0.7s linear 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-3 {
    -webkit-animation: animate-svg-fill-3 0.7s linear 1s both;
    animation: animate-svg-fill-3 0.7s linear 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-4 {
    -webkit-animation: animate-svg-fill-4 0.7s linear 1.1s both;
    animation: animate-svg-fill-4 0.7s linear 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-5 {
    -webkit-animation: animate-svg-fill-5 0.7s linear 1.2000000000000002s both;
    animation: animate-svg-fill-5 0.7s linear 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-6 {
    -webkit-animation: animate-svg-fill-6 0.7s linear 1.3s both;
    animation: animate-svg-fill-6 0.7s linear 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-7 {
    -webkit-animation: animate-svg-fill-7 0.7s linear 1.4000000000000001s both;
    animation: animate-svg-fill-7 0.7s linear 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-8 {
    -webkit-animation: animate-svg-fill-8 0.7s linear 1.5s both;
    animation: animate-svg-fill-8 0.7s linear 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-9 {
    -webkit-animation: animate-svg-fill-9 0.7s linear 1.6s both;
    animation: animate-svg-fill-9 0.7s linear 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

@keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(141, 197, 64);
    }
}

.svg-elem-10 {
    -webkit-animation: animate-svg-fill-10 0.7s linear 1.7000000000000002s both;
    animation: animate-svg-fill-10 0.7s linear 1.7000000000000002s both;
}

.shapes__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    position: absolute;
}

.shapes__container img {
    z-index: 2;
    width: 100%;
}

.video-container .shapes__container .shapes__left .shape {
    width: 90px;
    height: 90px;
    background-color: white;
    position: relative;
    z-index: 2;
}

.video-container .shapes__container .shapes__right .shape {
    width: 90px;
    height: 90px;
    background-color: white;
    position: relative;
    z-index: 2;
}

.quttro__container {
    display: flex;
    justify-content: space-between;
    height: 82vh;
    min-height: 300px;
    align-items: center;
    background-image: none;
}

.quattro__item {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
    width: 25%;
    background-image: none !important;
    border-left: 1px solid #e5e5e5 !important;
    background-size: cover;
}

.quattro__item:hover:nth-child(1) {
    background-image: url("/public/assets/img/about/better.jpg") !important;
    animation-name: FadeIn;
    animation-duration: 1.1s;
    transition-timing-function: linear;
    color: white !important;
}

.quattro__item:hover:nth-child(2) {
    background-image: url("/public/assets/img/about/fully.jpg") !important;
    animation-name: FadeIn;
    animation-duration: 1.1s;
    transition-timing-function: linear;
    color: white !important;
}

.quattro__item:hover:nth-child(3) {
    background-image: url("/public/assets/img/about/naturally.jpg") !important;
    animation-name: FadeIn;
    animation-duration: 1.1s;
    transition-timing-function: linear;
    color: white !important;
}

.quattro__item:hover:nth-child(4) {
    background-image: url("/public/assets/img/about/carefree.jpg") !important;
    animation-name: FadeIn;
    animation-duration: 1.1s;
    transition-timing-function: linear;
    color: white !important;
}

.quattro__item:hover > .q__i:nth-child(1) {
    transform: rotate(45deg);
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.filter-option {
    display: inline-block;
    background-color: #00292f;
    min-width: 206px;
    font-size: 0;
    margin-top: 50px;
}

.filter-option li {
    display: inline-block;
    list-style: none;
}
.filter-option li + li {
    margin-left: -5px;
}
.filter-option li a {
    display: inline-block;
    min-width: 130px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    text-align: center;
    background: transparent;
    padding: 15px 0;
}
.filter-option li a.active {
    background: #003a42;
    color: #ffffff;
    border-color: #003a42;
}
.filter-option li:last-of-type a {
    border-right: none;
}

.gallery-ul .slick-arrow {
    position: absolute;
    z-index: 10;
    font-size: 0;
    border: 0;
    width: 50px;
    height: 50px;
}

.gallery-ul .slick-arrow.slick-prev {
    left: 20px;
    top: 50%;
    background: url("/public/assets/img/icons/arrow-black.png") 0 0 / 100% no-repeat;
}

.gallery-ul .slick-arrow.slick-next {
    right: 20px;
    top: 48%;
    background: url("/public/assets/img/icons/arrow-black.png") 0 0 / 100% no-repeat;
    transform: rotate(180deg);
}

.gallery .slick-arrow {
    position: absolute;
    z-index: 10;
    font-size: 0;
    border: 0;
    width: 50px;
    height: 50px;
}

.gallery .slick-arrow.slick-prev {
    left: 20px;
    top: 50%;
    background: url("/public/assets/img/icons/arrow-black.png") 0 0 / 100% no-repeat;
}

.gallery .slick-arrow.slick-next {
    right: 20px;
    top: 48%;
    background: url("/public/assets/img/icons/arrow-black.png") 0 0 / 100% no-repeat;
    transform: rotate(180deg);
}

.gallery-ul li {
    margin: 50px 15px;
}
.gallery-ul li img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.gallery-container {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.contact-section .map {
    width: 100%;
    height: auto;
}

.contact-section .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    padding: 30px 0px 0px 30px;
}

.contact-section .info {
    width: 80%;
    background-color: rgb(0 58 66);
    height: 450px;
}

.info__item {
    margin-bottom: 20px;
}

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

.info__item__item a.inof__a {
    font-weight: 400;
    font-size: 16px;
    line-height: 159.02%;
    color: #747474;
}

.livenow {
    width: 30px;
    padding: 10px 40px 12px 40px;
    margin: 0 auto;
    display: inline-block;
}

.livenow > div {
    vertical-align: middle;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    position: absolute;
    margin: 0 auto;
    border: 3px solid rgb(255, 0, 0);
    -webkit-animation: live 1.4s infinite ease-in-out;
    animation: live 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.livenow > div:nth-child(1) {
    background-color: rgba(255, 255, 255, 0.3);
    background-color: rgb(255, 0, 0);
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}
.livenow > div:nth-child(2) {
    -webkit-animation-delay: 0.16s;
    animation-delay: 0.16s;
}
.livenow > div:nth-child(3) {
    -webkit-animation-delay: 0.42s;
    animation-delay: 0.42s;
    border: 3px solid rgba(255, 255, 255, 0.5);
}
.livenow > div:nth-child(4) {
    border: 3px solid rgb(255, 0, 0);
    -webkit-animation-delay: -0.42s;
    animation-delay: -0.42s;
}

@-webkit-keyframes live {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.6);
    }
    40% {
        -webkit-transform: scale(1);
    }
}
@keyframes live {
    0%,
    80%,
    100% {
        transform: scale(0.6);
        -webkit-transform: scale(0.6);
    }
    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

ul.mobile_menu {
    display: none;
}

.burger_icon {
    width: 30px;
    background-image: url("/public/assets//img/icons/burger.svg");
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.burger_icon.active_menu {
    transform: rotate(90deg);
}

.burger_menu {
    display: none;
}

.burg_container {
    display: none;
}

.mobile_project__container {
    display: none;
}

.pin1 {
    position: absolute;
    margin-left: -115px;
    width: 38px;
    height: 38px;
    transform: rotate(-45deg) !important;

}

img.pin{
    transform: rotate(45deg) !important;
}

.house-name {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    background-color: #fff;
    font-size: 18px;
    font-weight: 500;
    color: #0d5d5d;
    text-align: center;
    line-height: 38px;
    -webkit-box-shadow: 0 9px 29px 0 rgb(1 1 1 / 68%);
    box-shadow: 0 9px 29px 0 rgb(1 1 1 / 68%);
    z-index: 1;
}

.pin1.A {
    top: 10%;
    left: 37%;
}

.pin1.B {
    top: 8%;
    left: 52%;
}

.pin1.C {
    top: 25%;
    left: 29%;
}

.pin1.D {
    top: 47%;
    left: 17%;
}

.title-floor {
    font-size: 12px;
    margin-bottom: 20px;
}

.select-floor {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 300px;
    z-index: 1;
}

.select-floor .title {
    font-size: 16px;
    line-height: 1.32;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.select-floor .floors-list {
    background-color: #00292f;
    width: 53px;
    margin: 0 auto;
    border-radius: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select-floor .floors-list a {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 70px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select-floor .floors-list a.active_floor_circle,
.floors-list a:hover {
    background-color: #fff;
    color: #0d5d5d;
}

/* Dropdown Button */
.dropbtn_choose {
    color: white;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: auto;
    border-top-left-radius: 15px;
    height: 50px;
    border-top-right-radius: 15px;
}

.dropbtn_choose.dark {
    color: black;
}

/* The container <div> - needed to position the dropdown content */
.dropdown_choose {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content_choose {
    width: 50px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content_choose a {
    color: black;
    padding: 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.justify {
    width: 33%;
    text-align: center;
}

/* Change color of dropdown links on hover */
.dropdown-content_choose a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown_choose:hover .dropdown-content_choose {
    display: block;
    transition: 0.3s ease-in-out all !important;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown_choose:hover .dropbtn_choose {
    background-color: #8dc540;
    transition: 0.1s ease-in-out all !important;
}

.text__floor_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text__floor_container_item h3 {
    font-weight: 700;
}

.text__floor_container_item h4 {
    font-weight: 500;
    font-size: 14px;
    color: #6e6e6e;
}

.justify img.icon {
    width: 20%;
}

hr.hr {
    width: 100%;
    margin: 20px auto;
    height: 0px;
    border: 1px solid #dbdbdb;
}
hr.hr_r {
    width: 30%;
    margin: 0 auto;
    height: 3px;
    background-color: #808080;
}

.filter-section {
    background: #003a42;
    background-size: cover;
    position: relative;
    height: 305px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.floor-slider {
    position: absolute;
    z-index: 1000;
}

.filter-section {
    color: #fff;
    text-align: center;
    padding-bottom: 0;
}

.block-filter {
    display: flex;
    justify-content: space-around;
    margin-top: 2em;
    margin-bottom: 2em;
}

.block-filter .block-filter-1 {
    width: 20%;
}

.table-filter-section {
    background-color: #edeae5;
}

.filter-header.h1 {
    font-size: 40px;
}

.filter-floors {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.block_circle {
    width: 30px;
    height: 30px;
    padding: 10px;
    background-color: #8dc540;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#apartments {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

tr {
    cursor: pointer;
}

tr th {
    font-weight: 700;
    height: 52px;
    font-size: 17px;
    line-height: 36px;
    background-color: #e0dbd2;
    text-align: center;
}

tr:hover {
    background-color: rgb(255, 255, 255);
}

tr td {
    border-bottom: 1px solid #dad4c9;
    border-right: 1px solid #dad4c9;
    height: 94px;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
}

tr th:last-child {
    width: calc((100% - 1200px) / 2);
}

td {
    text-align: center;
}

.point {
    width: 25px;
    height: 25px;
    border-radius: 5%;
    background-color: #008060;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.point-tooltip {
    display: none;
    position: absolute;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 5px;
}

.point-tooltip .name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
  }