/* header */
.header_icon_lg {
    width: 10rem;
}

.header {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    color: white;

    &.on-green {
        color: #015533;
    }

    &.on-hide {
        .header_nav {
            transform: translateY(-1000%);
        }
    }

    a {
        color: inherit;
        transition: color .4s ease;
    }
}

.header_nav {
    display: flex;
    gap: 6rem;
    transition: transform .6s ease;
}

.haeder_logo {
    pointer-events: all;
    width: 25rem;

    svg {
        width: 100%;
        
    }
}

.header_inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-left: 7rem;
    padding-right: 15rem;
    padding-block: 3.5rem;
}

.header_nav_item {
    pointer-events: all;
    display: block;
    text-decoration: none;
    font-weight: 600;
}

.header_lang_wrap {
    display: flex;
    gap: 1rem;
}

.header_lang_item {
    transition: .4s ease color;
    cursor: pointer;
    pointer-events: all;

    &.active,
    &:hover {
        color: #C09C6B;
    }
}

.navbar-toggler-icon-wrap {
    width: 5rem;
    padding: 1.6rem 1rem;
    height: 5rem;
    border-radius: 50%;
    position: fixed;
    right: 4.4rem;
    z-index: 10000;
    top: 3rem;
    background-color: #EBE0D0;
    cursor: pointer;
    pointer-events: all;
}

body .navbar-toggler-icon {
    background: transparent;
    width: 100%;
    height: 100%;
    /* margin-bottom: 5px; */
    transition: 0.3s ease all;
    position: relative;

}

body .navbar-toggler-icon>span {

    display: block;
    width: 100%;
    height: .2rem;
    border-radius: .4rem;
    background-color: #015533;
    position: absolute;
    transition: 0.3s ease all;
}

body .navbar-toggler-icon>span:nth-of-type(1) {
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

body .navbar-toggler-icon>span:nth-of-type(2) {
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

body .navbar-toggler-icon>span:nth-of-type(3) {
    width: 60%;
    top: 100%;
    left: 0;
    transform: translateY(-100%);
}

body .navbar-toggler-icon:hover>span {
    width: 100%;
    transition: 0.3s ease all;
}

body.menu-open .navbar-toggler-icon {
    margin: 0;
    transform: rotate(180deg);
    transition: 0.3s ease all;
    opacity: 1;
}

body.menu-open .navbar-toggler-icon>span {
    width: 100%;
    height: .2rem;
    transition: 0.3s ease all;
}

body.menu-open .navbar-toggler-icon>span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .navbar-toggler-icon>span:nth-child(2) {
    opacity: 0;
}

body.menu-open .navbar-toggler-icon>span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


@media screen and (max-width:991px) {
    .navbar-toggler-icon-wrap {
        width: 3.2rem;
        padding: 1rem .8rem;
        height: 3.2rem;
        right: 2rem;
        top: 1.2rem;
    }

    .header_inner {
        padding-inline: 2rem 8rem;
        padding-block: 1.6rem;
    }

    .haeder_logo {
        width: 20rem;
    }

    .header_icon_lg {
        width: 8rem;
    }

    .header_nav {
        display: none;
    }

}

@media screen and (max-width:767px) {
    .haeder_logo {
        width: 13rem;
    }
}

/* hero */
.cove_hero_slide_item.swiper-slide:first-child img {
    will-change: transform;
}
.cove_hero_slide_item {
    position: relative;

    img {
        object-position: center top;
    }
}

.cove_hero_overlay {
    position: absolute;
    inset: 0 0 50%;
    opacity: .3;
    background: linear-gradient(to bottom, #46301A 0%, #46301A00 100%);
    z-index: 5;
    pointer-events: none;
}

.cove_hero_overlay_right {
    opacity: .4;
    position: absolute;
    inset: 0 0 50%;
    background: linear-gradient(to bottom, #053722 0%, #05372200 100%);
    z-index: 5;
    pointer-events: none;
}

.cove_hero_slide_item_txt {
    font-family: "1FTV VIP Ramole";

    &:nth-child(2n) {
        margin-left: auto;
    }
}

.cove_hero_slide_item_txt_wrap {
    position: absolute;
    color: #fff;
    z-index: 10;
    width: 60rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;

    &.left {
        left: 31.1rem;
        top: 12.4rem;
    }

    &.right {
        top: 13.5rem;
        right: 13.9rem;
    }
}

.cove_hero {
    height: 100vh;
}

.cove_hero_inner {
    height: 100%;
}

.swiper-pagination-bullet {
    background-color: #E9DCB8 !important;
    opacity: .7 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

@media screen and (max-width:991px) {
    .cove_hero_slide_item_txt {
        &.right {
            top: 11.5rem;
            right: 2.1rem;
        }

        &.left {
            top: 35.5rem;
            left: 2.1rem;
        }

        span {
            font-size: 7rem;
        }
    }
}

@media screen and (max-width:767px) {
.cove_hero_inner {
    height: 44rem !important;
}
.cove_hero_slide_item_txt_wrap {
    gap: 0;
}
    .cove_hero {
        height: auto;
        margin-bottom: -.5rem;
    }
}
.on-hidden {
    display: none;
}
/* cove_model */
.cove_model {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: #0028188e;
    opacity: 0;
    pointer-events: none;
    transition: .6s ease opacity;

    &.active {
        opacity: 1;
        pointer-events: all;
    }

}

.cove_model_inner {
    background: url(../img/bg_model.webp) no-repeat top;
    background-size: cover;
    background-position: left;
    display: flex;
    padding-left: 27.2rem;
    padding-right: 17rem;
    justify-content: space-between;
    padding-top: 6rem;
    max-width: 120rem;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.cove_production_lowfloor_button .cove_production_floor_button_prev, .cove_production_lowfloor_button .cove_production_floor_button_next {
    transition: all .4s ease;
    &.disable {
        opacity: .4;
        pointer-events: none;
    }
}
.cove_model_list {
    max-width: 22.8rem;

    .cove_model_list_img:first-child {
        margin-bottom: .8rem;
    }
}

.cove_model_form {
    max-width: 39.5rem;
}

.cove_model_form_inner {
    p {
        width: 100%;
    }

    width: 100%;

    .input_group {
        position: relative;
        .form_message {
            position: absolute;
            top: calc(100% - 3.2rem);
            left: 0;
            color: rgb(141, 0, 0);
            transition: opacity .4s ease;
        }
    }

    input {
        width: 100%;
        background-color: transparent;
        border: 0;
        border-bottom: 2px solid #433E39;
        margin-bottom: 4rem;
        padding-block: 1.5rem .5rem;
        transition: border-color .4s ease;

        &.error {
            border-color: rgb(141, 0, 0);

            &+.form_message {
                opacity: 1;
            }
        }

        &:focus-visible {
            outline: none !important;
        }

        &::placeholder {
            font-family: 'Montserrat';
            font-size: 2rem;
            line-height: 3rem;
            color: #555;
        }
    }
}

.cove_model_form_title {
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cove_model_form_ggmap,
.cove_model_form_submit {
    color: #fff;
    background-color: #C09C6B;
    border: none;
    font-weight: 600;
    line-height: 4.5rem;
    padding-inline: 5.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-family: 'Montserrat';
    margin-bottom: 3rem;
    margin-top: -1rem;
    cursor: pointer;
    display: block;
    text-decoration: none;
    margin-inline: auto;
    position: relative;
}
.cove_model_form_submit.on_submit:after {
    content: '';
    width: 2rem;
    position: absolute;
    top: 1.4rem;
    right: 2.4rem;
    transform: translateY(-50%);
    transition: opacity .4s ease;
    height: 2rem;
    border: .3rem solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

.cove_model_form_tel {
    font-weight: bold;
    margin-bottom: 1rem;
}

.cove_model_form_subtitle {
    font-weight: 600;
    margin-bottom: .5rem;
}

.cove_model_form_location {
    margin-bottom: 2rem;
}

.cove_model_close {
    font-size: 3.2rem;
    font-family: 'Times New Roman';
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 1.5rem 2.5rem;
    color: #B6966F;
    cursor: pointer;
}

@media screen and (max-width:991px) {
    .cove_model_inner {
        max-width: 70rem;
        padding-inline: 3rem;
    }

    .cove_model_list_img {
        max-width: unset;
        width: 21.8rem;
    }

    .cove_model_form {
        max-width: 40.5rem;
    }

    .cove_model_form_inner {
        input {
            padding-block: 1rem .5rem;
            margin-bottom: 2rem;

            &::placeholder {
                font-size: 1.8rem;
                line-height: 3rem;
            }
        }
    }
}

@media screen and (max-width:767px) {
    .cove_model_list {
        display: none;
    }

    .cove_model_inner {
        max-width: 36rem;
        padding: 3rem 2rem 0;
        background-position: center;
    }

    .cove_model_form_inner {
        input {

            &::placeholder {
                font-size: 1.4rem;
                line-height: 2rem;
                font-weight: 600;
            }
        }
    }
.cove_model_form_inner {
    & .input_group {
        .form_message {
            position: absolute;
            top: calc(100% - 1.8rem);
            left: 0;
            color: rgb(141, 0, 0);
            transition: opacity .4s ease;
        }
    }
}
    .cove_model_form_submit {
        margin-bottom: 2rem;
    }

    .cove_model_form_submit,
    .cove_model_form_ggmap {
        font-size: 1.6rem;
        line-height: 3rem;
        margin-top: 1rem;
        padding-inline: 3rem;
        width: max-content;
        margin-left: 0;
    }

    .cove_model_form_ggmap {
        padding-block: .5rem;
    }
}

/*  inspiration */
.cove_inspiration_logo {
    width: 25rem;
    padding-top: 4rem;
    position: relative;
    z-index: 5;
    margin-left: 7rem;
}

.cove_inspiration_inner {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding: 13.8rem 32.8rem 0 11.7rem;

}

.cove_inspiration_info {
    max-width: 69rem;
    padding-top: 9.5rem;
}

.cove_inspiration_list {
    max-width: 65rem;
}

.cove_inspiration_info_title {
    margin-bottom: 2.5rem;
}

.cove_inspiration_info_des {
    margin-bottom: 1rem;
}

.cove_inspiration {
    background: url(../img/bg_inspirationion.png) no-repeat top;
    background-size: cover;
    background-position: right;
}

.cove_inspiration_list {
    display: flex;
    gap: 2rem;
}

.cove_inspiration_list_item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cove_inspiration_list_img {
    width: 32.3rem;

    &.on_hover {
        overflow: hidden;

        img {
            transition: .6s ease transform;
        }

        &:hover {
            img {
                transform: scale(1.3);
            }
        }
    }

    &.item1 {
        height: 43.2rem;
    }

    &.item2 {
        height: 42.2rem;
    }

    &.item3 {
        height: 56.1rem;
    }

    &.item4 {
        height: 29rem;
    }
}
.cove_inspiration_list_left{
    .cove_inspiration_list_img:first-child{
        height: 29rem;
    }
    .cove_inspiration_list_img:last-child{
        height: 56.1rem;
    }
}
.cove_inspiration_list_right{
    .cove_inspiration_list_img:first-child{
        height: 43.2rem;
    }
    .cove_inspiration_list_img:last-child{
        height: 42.2rem;
    }
}
@media screen and (max-width:991px) {
    .cove_hero_slide_item_txt_wrap {
        width: 50rem;

        &.left {
            left: 3rem;
            top: 20rem;
        }

        &.right {
            right: 3rem;
        }
    }

    .cove_inspiration_list_img {
        width: 16.3rem;
    }

    .cove_inspiration_inner {
        gap: 2.4rem;
        padding: 10rem 3rem 0 3rem;
    }

    .cove_inspiration_logo {
        width: 20rem;
    }

    .cove_inspiration_info {
        padding-top: 0;
    }

    .cove_inspiration_list {
        padding-top: 4rem;
        gap: 1rem;
    }

    .cove_inspiration_list_item {
        gap: 1rem;
    }

    .cove_inspiration_logo {
        margin-left: 3rem;
        padding-top: 4rem;
    }
}

@media screen and (max-width:767px) {
    .cove_inspiration_inner {
        padding-block: 6rem;
        flex-direction: column;
    }

    .cove_inspiration_list {
        padding-top: 0;
        justify-content: space-around;
    }

    .cove_inspiration_list_img {
        max-width: 17.5rem;
    }

    .cove_inspiration_logo {
        padding-top: 3rem;
    }

    .cove_inspiration_info_title {
        text-align: center;
    }

    .cove_inspiration_logo {
        width: 13rem;
    }
}

/* characteristic */

.cove_characteristic * {
    color: #fff;
}

.cove_characteristic {
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.cove_characteristic_inner_wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.cove_characteristic_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-color: #45321f45;
}

.cove_characteristic_bg {
    filter: blur(.7rem);
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr;
}

.cove_characteristic_bg_item {
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
    transition: 1s ease opacity;

    &.active {
        opacity: 1;
    }
}

.cove_characteristic_list_item_img {
    width: 4.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.cove_characteristic_list_item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10vh;
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 25%;
    min-height: 42.6rem;
    position: relative;
}

.cove_characteristic_list_item.active_prev .cove_characteristic_list_item_line {
    opacity: 0;
}

.cove_characteristic_list_item_line {
    height: 100%;
    position: absolute;
    width: .2rem;
    background-color: white;
    right: 0;
    top: 0;
}

.cove_characteristic_content_txt {
    color: #fff !important;
    max-width: 25.3rem;
    line-height: 1.4em;
    text-transform: uppercase;
    margin-top: auto;
    margin-bottom: 1.6rem;
}

.cove_characteristic_content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -5vh;
    margin-bottom: 10vh;
}

.cove_characteristic_content_num {
    font-size: 24rem;
    font-family: "Bona Nova";
    position: relative;
    line-height: 1;

    &::before {
        content: "";
        width: 7rem;
        height: 6.8rem;
        bottom: -2rem;
        right: 5rem;
        position: absolute;
        background: url(../img/characteristic_num.png) no-repeat;
        background-size: 100% 100%;
    }

}

.cove_characteristic_inner {
    display: flex;
    justify-content: center;
    margin-inline: 18rem;
}

.cove_characteristic_list_item_txt {
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
    p{
        margin:0;
    }
}

.cove_characteristic_list {
    position: relative;
    z-index: 2;
}

.img_clip_path {
    clip-path: url(#cam_hung1);
}

.cove_characteristic_list_item_bg {
    width: 41rem;
    height: 42.6rem;
    inset: 0;
    display: flex;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
    position: absolute;
    background: linear-gradient(238deg, #E9DCB8 6.19%, #C09C6B 105.96%);
    padding: .6rem;
    border-radius: 2rem;

    &.active {
        opacity: 1;
        pointer-events: all;
    }

    img {
        border-radius: 1.5rem;

    }

    &.active {
        opacity: 1;
    }

    .cove_characteristic_list_item_txt {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        top: 100%;
    }
}

@media screen and (max-width:991px) {
    .cove_characteristic_content {
        margin-bottom: 8rem;
    }

    .cove_characteristic_list_item_bg {
        flex-direction: column;
        position: relative;
        height: auto;
        width: 100%;
        padding: 2rem 2rem 4rem 2rem;
        opacity: 1;
        pointer-events: all;

        img {
            height: 48rem;
        }

        .cove_characteristic_list_item_txt {
            display: block !important;
            position: relative;
        }
    }

    .cove_characteristic_list_item_line {
        width: 100%;
        height: .2rem;
        display: none;
        bottom: 0;
        left: 0;
        transition: .4s ease opacity;
        top: unset;
    }

    .cove_characteristic_list_item_img,
    .cove_characteristic_list_item_txt {
        display: none !important;
    }

    .cove_characteristic {
        overflow: hidden;
    }

    .cove_characteristic_inner {
        display: flex;
        margin-top: 0rem;
        margin-inline: 3rem;
        flex-direction: column;
        gap: 4rem;
    }

    .cove_characteristic_content_num {
        font-size: 17rem;
        line-height: 1;

        &::before {
            width: 7.4rem;
            height: 4.8rem;
            bottom: -2rem;
            right: 4rem;
        }
    }


    .cove_characteristic_list_item_img_wrap {
        width: 6rem;
        height: 6rem;
    }

    .cove_characteristic_list_item_img {
        width: 3.2rem;
    }

    .cove_characteristic_content_txt {
        max-width: unset;
        margin-bottom: 0;
    }

    .cove_characteristic_list_item {
        margin-bottom: 0;
        width: 70%;
        margin-left: 15%;
        padding-bottom: 0;
    }

    .cove_contact_subtitle,
    .cove_contact_des {
        text-align: start;
    }

    .cove_contact_logo {
        margin-left: 0 !important;
    }
}

.cove_characteristic_inner_wrap .swiper-pagination-cus {
    display: none;
}

@media screen and (max-width:767px) {
        .cove_contact_logo {
        margin-left: auto !important;
    }
    .cove_contact_subtitle,
        .cove_contact_des {
            text-align: center;
        }
    .cove_characteristic_inner_wrap .swiper-pagination-cus {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .cove_characteristic_content_num {
        font-size: 6rem;
        line-height: 1.2;
        margin-right: .4rem;

        &::before {
            display: none;
        }
    }

    .cove_characteristic_content_txt {
        font-size: 2.8rem;
        line-height: 1.5;
        margin-bottom: -.4em;
        white-space: nowrap;
    }

    .cove_characteristic_list_item {
        width: 100%;
        flex: none;
    }

    .cove_characteristic_list_item_txt {
        margin-left: 0;
        width: calc(100% - 6rem);
    }

    .cove_characteristic_inner {
        margin-inline: 0rem;
        gap: 2.4rem;
        flex-direction: row;
        gap: 0;
        justify-content: start;
    }

    .cove_characteristic_wrap {
        padding-inline: 2rem !important;

        &.swiper {
            width: 100%;
        }
    }

    .cove_characteristic_list_item_txt {
        max-width: unset;
    }

    .cove_characteristic_content {
        margin-bottom: 4rem;
    }

    .cove_characteristic_list_item_img_wrap {
        width: 5rem;
        height: 5rem;
    }

    .cove_characteristic_list_item_img {
        width: 2.5rem;
    }

    .cove_characteristic_list_item {
        margin-bottom: 1rem;
    }

    .cove_characteristic_list_item {
        gap: 1rem;
        width: 100%;
        margin-left: 0;
    }

    .cove_characteristic_list_item_bg {
        border-radius: 1.6rem;
        padding: 1rem 1rem 2.4rem 1rem;

        .cove_characteristic_list_item_txt {
            width: 100%;
        }

        img {
            height: 32rem;
        }
    }

    .cove_characteristic_list_line {
        display: none;
    }
}

/* location1 */
.cove_location1 {
    position: relative;
    overflow: hidden;
}

.cove_location1_logo {
    width: 25rem;
    position: absolute;
    top: 3rem;
    left: 7rem;

}

.cove_location1_img {
    position: relative;
    width: max-content !important;
    .on-mob {
        display: none;
    }
}

.cove_location1_img,
.cove_location1_inner {
    width: 100%;
    height: 100%;

    img {
        
        object-position: left center;
        &.on-dk {
            height: auto;
        }
    }
}
.cove_location1_svg {
    position: absolute;
    inset:0;
    z-index: 10;
    .on-mob {
        display: none;
    }
    svg {
        path {
            animation: StrokeLine 8s infinite linear;
        }
    }
}
.cove_location1_content {
        position: absolute;
    z-index: 11;
    right: 11.2rem;
    top: 0;
    padding-left: 6rem;
    height: 100%;
    width: 18%;
    box-shadow: 0 86px 12rem 11rem #F3EEEA;
    background-color: #F3EEEA;
    display: flex;
    align-items: center;

}
.cove_location1_content_img {
    width: 100%;
}
@media screen and (max-width:767px) {
    .cove_location1_img {
        .on-mob {
            display: block;
        }

        .on-dk {
            display: none;
        }
    }

    .cove_location1_logo {
        width: 15rem;
        position: unset;
        padding-top: 3rem;
        margin-left: 3rem;
    }

    .cove_location1 {
        background-color: #FAF5EC;
    }
}

/* location */
.cove_location {
    background: url(../img/bg_inspirationion.png) no-repeat top;
    background-size: cover;
    background-position: right;
}

.cove_location_inner {
    display: flex;
    margin-block: auto;
    width: 100%;
    position: relative;
}

.cove_location_img {
    max-width: 134.4rem;
    mix-blend-mode: darken;
    height: 77vh;

    img {
        object-position: left;
    }
}

.cove_location_info {
    max-width: 65.5rem;
    margin-left: -14.5rem;
    padding-left: 8rem;
    padding-bottom: 9rem;
    z-index: 2;
    position: absolute;
    right: 17.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.cove_location_info_overlay {
    position: absolute;
    inset: 0;
    right: 50%;
    background-color: #FAF5EC;
    z-index: 1;
    pointer-events: none;
}

.cove_location_info_inner {
    position: relative;
    z-index: 2;
}

.cove_location_info_title {
    margin-bottom: 3rem;
    margin-top: 5rem;
}

.cove_location_info_des {
    margin-bottom: 1rem;
}

@media screen and (max-width:991px) {
    .cove_location_inner {
        flex-direction: column;
        padding-block: 10rem;
        padding-inline: 3rem;
    }

    .cove_location_img {
        width: 100%;
        max-width: unset;
        margin-right: 0;
        margin-bottom: 2.8rem;
    }

    .cove_location_info {
        order: 1;
        padding-block: 0;
        max-width: unset;
        width: 100%;
        position: unset;
        max-width: unset;
        width: 100%;
        margin-left: 0;
        padding: 0;
        margin-bottom: 4rem;
        transform: unset;
    }

    .cove_location_info_overlay {
        display: none;
    }

    .cove_location_info_title {
        margin-top: 0;
        margin-bottom: 2rem;
        text-align: start;
    }
}

@media screen and (max-width:767px) {
    .cove_location1_content {
        display: none;
    }
    .cove_location1_svg {
        .on-dk {
            display: none;
        }
        .on-mob {
            display: block;
        }
    }
    .cove_location1_img {
        width: 100% !important;
    }
    .cove_location_info_des {
        color: black;
    }
    .cove_location_info_title{
        line-height:1.3em;
    }
    .cove_location_info {
        padding-bottom: 4rem !important;
    }

    .cove_location,
    .cove_inspiration {
        background-position: 75%;
    }

    .cove_location_inner {
        margin-inline: 2rem;
        padding:0 0 6rem 0;
    }

    .cove_location_info_title {
        margin-bottom: 2.4rem;
    }

    .cove_location_info {
        margin-bottom: 2.4rem;
    }

    .cove_location_img {
        height: 28rem;
        margin-inline: -2rem;
        width: auto;
        img {
            object-position: left;
        }
    }
}

/* utilities */
.cove_utilities_popup {
    position: fixed;
    inset:0;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000c2;
    z-index: 1000000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    .cove_news_other_btn_item  {
        pointer-events: none;
    }
    &.active {
        opacity: 1;
        pointer-events: all;
        .cove_news_other_btn_item  {
            pointer-events: all;
        }
    }
}
[data-index] {
    cursor: pointer;
}
.cove_utilities_popup_swiper.swiper
 {
    width: 80%;
    height: 80%;
}
.cove_utilities_popup_swiper_item {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
}
.cove_utilities_popup_close {
       position: absolute;
    color: #015533;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    border-radius: 50%;
    background-color: #EBE0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 3rem;
    font-weight: 600;
    top: 3rem;
    font-size: 3rem;
    border: 1px solid #C09C6B;
}
.cove_utilities_popup_swiper_item_title{
    color: white;
    text-transform: uppercase;
}
.cove_utilities_popup_swiper_item_img {
    height: calc(100% - 8rem);
    padding: 1.5rem;
    position: relative;
    img {
        position: relative;
    }
    &::before {
        background: linear-gradient(to right, #C09C6B 0%, #E9DCB8 100%);
        position: absolute;
        content: "";
        inset: 0;
        z-index: 0;
    }
}

.cove_utilities {
    position: relative;
    overflow: hidden;
}

.fp-overflow {
    height: 100%;
}
.cove_utilities_tooltip {
    
    pointer-events: none;
    position: absolute;
    text-align: center;
    z-index: 5;
    height: auto;
    margin: 0 auto;
    color: #fff;
    opacity:0;
    transition: opacity .4s ease;
    background: #fff;
    border-radius: .5rem;
    align-items: center;
    padding: .5rem;
    &.active {
        opacity: 1;
    }
    .subdivision-maker {
        border-radius:.4rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    img {
        width: 23rem !important;
        aspect-ratio: 16 / 9;
        height: auto !important;
    }
    h5 {
        font-size: 1.6rem;
        color: black;
        margin: 0 !important;
        font-weight:700;
        text-align: center;
    }
}
.cove_outside_img {
    .on-dk {
        display: block;
    }
    .on-mb {
        display: none
    }
}
.cove_utilities_img {
    position: relative;
    width: 67.97%;
    height: auto;
    display: flex;
    justify-content: end;
    transform-origin: top;
    svg {
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text {
            fill: var(--textColor);
            font-size: 1.8rem;
            font-weight: 700;
        }

        circle {
            fill: var(--baseColor);
            stroke: var(--borderColor);
            stroke-width: 1;
            transition: fill ease .3s;
        }
        .item-maker:hover circle, .item-maker.active circle {
            fill: #C09C6B;
            stroke: #fff;
            stroke-miterlimit: 5;
            stroke-width: 2;
            stroke-dasharray: 5;
            stroke-dashoffset: 0;
            animation: StrokeLine 4s infinite linear
        }
    }
}
@keyframes StrokeLine {
    0% {
        stroke-dashoffset: 0
    }

    100% {
        stroke-dashoffset: -200
    }
}
.cove_utilities_title {
    position: absolute;
    color: #fff;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 4.5rem;
    z-index: 2;
}
.cove_utilities_internal{
    position: relative;
}
.cove_utilities_internal_info{
    padding-left: 4rem;
    position: absolute;
    height: 100vh;
    right: 0;
    top: 0;
    width: 32.03%;
    bottom: 0;
    background-color: #025633;
    flex-direction: column;
    justify-content: center;
    display: flex;
}
.cove_utilities_internal_info_wrap {
    margin-bottom: 2.35vh;
    &:last-child {
        margin-bottom: 0;
    }
    &:first-child {
        flex-direction: unset;
        flex-wrap: wrap;
        display: flex;
        column-gap: 3rem;
        .cove_utilities_internal_info_txt {
            min-width: calc(50% - 1.5rem);
            width: max-content;
        }
    }
}
.cove_utilities_internal_info_txt_num{
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #00834A;
    transition: color .4s ease ;
    flex: none;
}
.cove_utilities_internal_info_txt_des{
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 600;
    transition: color .4s ease ;
    color: #fff;
    &.other_color{
        color: rgb(221, 117, 6) ;
    }
}
.cove_utilities_internal_info_title{
    color: #fff;
    font-weight: 500;
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
    strong{
        font-size: 4.6rem;
    }
}
.cove_utilities_internal_info_txt{
    display: flex;
    align-items: center;
    margin-bottom:.5rem;
    gap: .8rem;
    &.active {
        .cove_utilities_internal_info_txt_des {
            color: #F38026;
        }
    }
}

.cove_utilities_internal_info_list_item_img{
    height: 4.5rem;
    color: #fff;
    display: flex;
    justify-content: center;
    transition: all .4s ease;
    &:hover{
        transform: translateY(-.8rem);
    }
    svg{
    transition: all .4s ease;
        width: 100%;
        height: 100%;
    }
}
.cove_utilities_internal_info_list{
    display: flex;
    flex-wrap: wrap;
    row-gap: 2.5rem;

}
.cove_utilities_internal_info_list_item{
    width: 33.33%;
    &:hover .cove_utilities_internal_info_list_item_img{
        color: #f9c468;
    }
}
.cove_utilities_internal_info_list_item_title{
    color: #91C644;
    text-align: center;
    font-size: 1.8rem;
    margin-top: 1rem;
    font-weight: 700;
    span{
        font-size: 1.4rem;
    }
}
.cove_utilities_internal_info_list_item_txt{
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
}
.cove_utilities_internal_info_list{
    border-top: 1px solid #fff;
    padding-top: 2.5rem;
    margin-top: 2.2rem;
    max-width: 40rem;
    width: 100%;
}
@media screen and (max-width:991px) {

    .cove_utilities_img {
        margin-inline: 0rem;
        img {
            width: 100%;
            height: 100%;
        }
    }
    
    .cove_utilities_title {
        margin-bottom: -2rem;
        
    }
}

@media screen and (max-width:767px) {
    .cove_utilities_internal_info_txt_num{
        font-size: 1.2rem;
    }
    .cove_utilities_internal_info_wrap {
        width: 100%;
        margin-bottom: 0;
        .cove_utilities_internal_info_txt {
            width: 100%;
        }
        &:nth-child(2), &:nth-child(3) {
        width: calc(50% - 1.5rem);
        }
        &:first-child {
            margin-top: 4rem;
            .cove_utilities_internal_info_txt {
                width: calc(50% - 1.5rem);
            }
        }
    }
    .cove_location_img {
        margin-bottom: 0;
    }
    .cove_utilities_title {
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 0;
        position: unset;
        font-size: 3rem;
        margin-bottom: 2.4rem;
        color: #015533;
    }

    .cove_utilities {
        background-color: #FAF5EC;
        overflow: hidden;
        position: relative;
    }

    .cove_utilities_img {
        margin: 0;
        height: 100%;
    }
    .cove_outside_img {
        .on-dk {
            display: none;
        }
        .on-mb {
            display: block;
        }
    }
}

/* production */
.cove_production {
    position: relative;
    overflow: hidden;
}

.cove_production_bg {
    position: absolute;
    inset: 0;
    z-index: 1;

    img {
        object-position: right;
    }
}

.cove_production_item {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    transition: opacity ease .4s;

    &.cove_production_item_building {
        background: url(../img/mat_bang_cao.png) no-repeat top;
        background-size: cover;
        background-position: right;
    }

    &.cove_production_item_house {
        background: url(../img/matbangthap.png) no-repeat top;
        background-size: cover;
        background-position: right;
    }
}

.cove_production_house:hover+.cove_production_item {
    opacity: 1;
}

.cove_production_building:hover+.cove_production_item {
    opacity: 1;
}

.cove_production_btn_wrap {
    display: flex;
    gap: 3rem;
    position: absolute;
    right: 16rem;
    z-index: 100;
    top: 2.8rem;
}
.cove_utilities_btn_wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    left: 7rem;
    z-index: 100;
    top: 16.6rem;
}
.cove_production_mat_bang {
    display: none;
}
.cove_production_high,.cove_production_mat_bang,
.cove_production_next, .cove_utilities_btn_item {
    padding: 1rem 3.5rem;
    background-color: #F2E9DC;
    border-radius: 1.5rem;
    border: 2px solid #015533;
    color: #015533;
    cursor: pointer;
    z-index: 13;
    position: relative;
    transition: all .4s ease;
    font-weight: 600;
    transition: color ease .4s, border-color ease .4s;
    overflow: hidden;

    span {
        position: relative;
        z-index: 2;
    }

    &::after {
        content: '';
        position: absolute;
        opacity: 0;
        transition: all ease .4s;
        inset: 0;
        background: linear-gradient(to right, #C09C6B 0%, #E9DCB8 100%);
    }

    &.active:after,
    &:hover:after {
        opacity: 1;
    }

    &.active {
        color: #643E1C;
        border-color: #643E1C;
    }

    &:hover {
        color: #643E1C;
        border-color: #643E1C;
    }
}

.cove_utilities_btn_item{
    padding-inline: 2.5rem;
    width: max-content;
}
.cove_production_content_title {
    font-family: "1FTV VIP Kiltier";
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.cove_production_content {
    position: relative;
    margin-left: 8rem;
    padding-top: 24vh;
    z-index: 10;
    padding-bottom: 40.8rem;

    * {
        color: #fff;
    }
}

.cove_production_content_des {
    max-width: 52.5rem;
    margin-bottom: 1rem;
}

.cove_production_overlay {
    position: absolute;
    background: linear-gradient(to right, #053522d8 0%, #053522ae 50%, #05352277 75%, #05352200 100%);
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    right: 55%;
    pointer-events: none;
}
.cove_news_swiper {
    width: 100%;
}
.cove_news_other_btn {
    position: absolute;
    top: 50%;
    left: 10rem;
    right: 10rem;
    display: flex;
    /* width: 100%; */
    transform: translateY(-50%);
    pointer-events: none;
    justify-content: space-between;
}
.cove_news_other_btn_item{
    cursor: pointer;
    width: 5.5rem;
    pointer-events: all;
    height: 5.5rem;
    transition: all ease .4s;
    &.swiper-button-disabled {
        opacity: .4;
        pointer-events: none;
    }
}
.cove_news_tab_item_tab {
    flex: 1;
    height:0;
    width: 100%;
}
.cove_news_tab_item {
    display: none;

    &.active {
        display: flex;
        align-items: center;
        width: 100%;
        height: 0;
        flex: 1;
        flex-direction: column;
    }
}

.cove_production_highfloor,
.cove_production_lowfloor,
.cove_production_floor {
    background: url(../img/bg_floor.webp) top no-repeat;
    background-size: 100% 100%;
    position: fixed;
    inset: 0;
    z-index: 10000000;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;

    .cove_production_lowfloor_content {
       display: none;
    }

    &.active {
        opacity: 1;
        pointer-events: all;

        .cove_production_lowfloor_content {
            pointer-events: all !important;
        }
    }
}
.swiper.cove_production_highfloor_swiper {
    width: 100%;
    flex: 1;
}
.cove_production_highfloor_inner {
    flex-direction: column;
    margin-inline: 21rem;
    height: 100vh;
    display: flex;
    padding-block: 10.8rem 4vh;
    position: relative;
}

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

.cove_production_highfloor_area {
    max-width: 51.5rem;
}

.cove_production_highfloor_info {
    max-width: 65.4rem;
}

.cove_production_highfloor_area_txt {
    font-weight: 600;
    margin-top: 1rem;
}
.cove_production_highfloor_title_swiper {
    width: 100%;
        margin-bottom: 2.5rem;
    padding-bottom: 2rem !important;
    pointer-events: none;
        border-bottom: .3rem solid #A9805C;

}
.cove_production_select {
    cursor: pointer;
    position: relative;
}
.cove_production_highfloor_title.swiper-slide-active.swiper-slide-thumb-active {
    pointer-events: inherit;
}
.cove_production_select_value {
    display: flex;
    min-height: 4.4rem;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    background: #e9e9e9;
    height: 100%;
}
.cove_production_select_list {
        min-width: 100%;
    position: absolute;
    top: calc(100% + 1rem);
    opacity: 0;
    pointer-events:none;
    transition: .4s ease opacity;
    z-index: 100;
    background: white;
    padding: 2rem;
    right: 0;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    max-height: 30rem;
    overflow: auto;
    border-radius: 1rem;
    box-shadow: 0 0 2rem #00000033;
    &.active {
        opacity: 1;
        pointer-events: all;
    }
}
.cove_production_select_item {
    cursor: pointer;
    white-space: nowrap;
    color: black;
    transition: color .4s ease;
    &:hover, &.active {
        color: #A9805C;
    }
}
.cove_production_highfloor_title {
    &.swiper-slide {
        opacity: 0 !important;
        width: max-content;
    &.swiper-slide-thumb-active {
        color: #A9805C;
        opacity: 1 !important;
    }
    }
    cursor: pointer;
    transition: ease color .4s;
}

.cove_production_highfloor_info_txt {
    position: relative;
    margin-bottom: .5rem;

    &::before {
        position: absolute;
        width: 1rem;
        height: 1rem;
        content: "";
        border-radius: 50%;
        background-color: #C09C6B;
        left: -1.5rem;
        top: 1rem;
    }
}

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

.cove_production_highfloor_list_img {
    max-width: 60.5rem;
}

.cove_production_highfloor_list_img1 {
    max-width: 66.6rem;
    mix-blend-mode: multiply;
    margin-top: 4rem;
}

.cove_production_highfloor_close,
.cove_production_lowfloor_close,
.cove_production_floor_close {
    position: absolute;
    color: #015533;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    border-radius: 50%;
    background-color: #EBE0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 4.4rem;
    font-weight: 600;
    top: 3rem;
    font-size: 3rem;
    border: 1px solid #C09C6B;

    svg {
        width: 2rem;
    }
}

.cove_production_lowfloor_content_wrap {
    display: flex;
    flex: 1;
    height:0;
    grid-template-columns: 1fr;
}
.cove_news_tab_item_title_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.6rem;
    gap: 9rem;
}
.cove_news_tab_item_title_wrap {
    margin-top: 2.8rem;
}
.cove_news_tab_item_title {
   font-family: 'Times New Roman';
    line-height: 1em;
    text-transform: uppercase;
    color: #555555;
    position: relative;
    z-index: 2;
    transition: all ease .4s;
    cursor: pointer;
    &.active, &:hover {
        color: #A9805C;
        .line-inner-hover {
                        transform: scaleX(1);
            transform-origin: left;
        }
    }
}
.cove_news_tab_item_video iframe {
    position: relative;
    z-index: 2;
    height: 100%;
}
.cove_production_highfloor_item
 {
    height: 100%;
    width: auto;
    border: 1.4rem solid #c09c6b9e;
    margin-inline: auto;
    &:hover:after {
        opacity: 1;
    }
}
/* .cove_production_highfloor_item:after {
    content: 'Hình 1440/860';
    position: absolute;
    background: #0000008c;
    inset: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 4rem;
    color: white;
    font-weight: 400;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
} */
.cove_news_tab_item_file {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4.4rem;
    .thu-vien-card{
        width: 54rem;
        max-width: 100%;
    }
}
@media only screen and (min-width: 991px){
.cove_news_tab_item_video {
    width: 122rem;
    margin-inline: auto;
    height: calc(122rem * 9 / 16);
    padding: 1.5rem;
    position: relative;
        &::before {
        background: linear-gradient(to right, #C09C6B 0%, #E9DCB8 100%);
        position: absolute;
        content: "";
        inset: 0;
        z-index: 0;
    }
}
}
.cove_news_tab_item_inner_swiper.swiper {
    overflow: visible;
    height: 100%;
    max-width: 122rem;
}
.cove_news_tab_item_inner {
    height: 100%;
    padding-inline: 20rem;
    display: none;
    .cove_production_highfloor_button{
        right: 16rem;
        left: 16rem;
    }
    &.active {
        display: block;
    }
}
.cove_production_lowfloor_content {
    width: 100%;
    height: 100%;
    margin-top: auto;
    position: relative;
    transition: all ease .4s;

    &.active {
        display: block;
    }
}

.cove_production_lowfloor_content_item {
    margin-top: 11rem;
}


.cove_production_lowfloor_content_des {
    font-weight: bold;
    margin-top: 4.5rem;
}

.cove_production_lowfloor_title_txt {
    &.swiper-slide {
        width: max-content;
        opacity: 0 !important;
        &.swiper-slide-active {
            opacity: 1 !important;
        }
    }
    text-transform: uppercase;
    transition: color .3s ease;
    cursor: pointer;

    &:hover {
        color: #A9805C;
    }

    &.swiper-slide-thumb-active {
        position: relative;
        color: #A9805C;
    }
}
.cove_production_lowfloor_title {
    display: flex;
    padding-bottom: 2rem;
}

.cove_production_lowfloor_inner {
    margin-inline: 21rem;
    padding-block: 10.8rem 4vh;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    .swiper {
        width: 100%;
        padding-top: 3rem;
        height: 100%;
        .swiper-slide img {
            object-fit: contain !important;
            object-position: top;
        }
    }
}
.cove_production_lowfloor_content_img {
    height: 100%;
}
.cove_production_floor_inner {
    margin-inline: 26rem;
    position: relative;
    height: 100%;
    display: flex;
    padding-block: 15vh 13vh;

    .swiper-slide img {
        height: 100%;
        object-position: left;
        object-fit: contain
    }
}

.cove_production_floor_img {
    mix-blend-mode: multiply;
    margin: auto;
}
.cove_production_highfloor:not(.active), .cove_production_lowfloor:not(.active), .cove_production_floor:not(.active){
    .cove_production_floor_button,
.cove_production_highfloor_button,
.cove_production_lowfloor_button {
        .img_fullfill {
            pointer-events: none !important;
        }
}
}
.cove_production_floor_button,
.cove_production_highfloor_button,
.cove_production_lowfloor_button {
    position: absolute;
    justify-content: space-between;
    display: flex;
    height: max-content;
    inset: 50% -12rem 0;
    z-index: 100;
    transform: translateY(-50%);
    pointer-events: none;

    .swiper-button-disabled, .is-disabled {
        opacity: .2;
        pointer-events: none !important;
    }

    .img_fullfill {
        cursor: pointer;
        width: 5.5rem;
        pointer-events: all;
        height: 5.5rem;
        transition: all ease .4s;
    }
}

.cove_production_building {
    opacity: 0;
    position: absolute;
    width: 129.4rem;
    height: 39vh;
    top: 35%;
    right: 5.5%;
    transition: opacity .3s ease;
    cursor: pointer;
    z-index: 15;

    &:hover {
        opacity: 1;
    }
}

.cove_production_house {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    width: 133rem;
    height: 20vh;
    top: 72.5%;
    right: 8%;
    z-index: 15;
    transition: opacity .3s ease;

    &:hover {
        opacity: 1;
    }
}
    .cove_production_lowfloor_title_swiper{
        pointer-events: none;
        border-bottom: 3px solid #A9805C;
        .swiper-title{
            overflow:unset !important;
            padding-top: 0;
        }
        .swiper-slide{
            pointer-events: inherit !important;
        }
    }

@media screen and (max-width:991px) {
    .cove_news_tab_item.active, .cove_news_tab_item_tab {
        height: auto;
    }
    .cove_production_content {
        padding-block: 10rem;
        margin-left: 3rem;
    }

    .cove_production_btn_wrap {
        right: 2rem;
    }

    .cove_production_highfloor,
    .cove_production_lowfloor,
    .cove_production_floor {
        .cove_production_btn_wrap {
            right: 10rem;
            top: 3rem;
        }
    }

    .cove_production_next,
    .cove_production_high {
        padding-inline: 2rem;
    }

    .cove_production_building {
        width: 46.4rem;
        top: 14.8rem;
        right: 4.5rem;
    }

    .cove_production_house {
        width: 52.8rem;
        bottom: .4rem;
        right: 6.3rem;
    }

    .cove_production_highfloor_close,
    .cove_production_lowfloor_close,
    .cove_production_floor_close {
        right: 1.4rem;
    }

    .cove_production_floor_inner,
    .cove_production_highfloor_inner,
    .cove_production_lowfloor_inner {
        margin-inline: 7rem;
    }

    .cove_production_floor_button_next,
    .cove_production_floor_button_prev {
        width: 4rem;
        height: 4rem;
    }

    .cove_production_highfloor_info {
        max-width: 41rem;
    }

    .cove_production_highfloor_button,
    .cove_production_lowfloor_button,
    .cove_production_floor_button {
        inset: 50% -5rem;
    }

    .cove_production_content_title {
        margin-bottom: 2rem;
    }

    .cove_production_content_des {
        max-width: 33.5rem;
    }

    .cove_production_lowfloor_content_img {
        margin-inline: 0;
    }

    .cove_production_lowfloor_content_item {
        margin-top: 4rem;
    }

    .cove_production_lowfloor_content_des {
        margin-top: 2rem;
    }

    .cove_production_lowfloor_content {
        padding-bottom: 4rem;
    }

    .cove_production_lowfloor_title {
        gap: 2rem;
        padding-inline: 0;
    }

    .cove_production_lowfloor_title_txt {
        &.active {
            &::before {
                width: 1rem;
                height: 1rem;
                left: 40%;
                bottom: -1.4rem;
            }
        }
    }
      .cove_news_tab_item_inner {
        padding-inline: 3rem;
    }
}

@media screen and (max-width:767px) {
    .cove_utilities_popup_swiper_item_img {
    height: calc(100% - 6rem); 
    }
    .cove_utilities_popup_close {
        width: 4rem;
        height: 4rem; 
        font-size: 2.2rem;
    }
    .cove_utilities_popup {
        flex-direction: column;
        padding-inline: 2rem
    }
    .cove_utilities_popup_swiper.swiper {
        width: 100%;
        height: 44vh;
    }
    .cove_news_other_btn {
    position: static;
    margin-top: 4rem;
    justify-content: center;
    gap: 2rem; 
    }
    .cove_news_other_btn_item {
    width: 4rem;
    height: 4rem;
    }
    .cove_production_select_list {
        right: unset;
        left: 0;
    }
    .cove_news_tab_item_title_wrap {
        gap: 3rem;
    }
    .cove_news_tab_item_inner {
        padding-inline: 2rem;
    }
    .cove_news_tab_item_video iframe{
        height: 30rem
    }
    .cove_production_lowfloor_title {
        border: none;
    }
    .cove_production_highfloor_content {
        flex-direction: column;
        gap: 2rem;
    }

    .cove_production_highfloor_info {
        padding-left: 2rem;
    }

    .cove_production_highfloor_info_txt {
        &::before {
            width: .6rem;
            height: .6rem;
            top: .6rem;
        }
    }

    .cove_production_highfloor_list {
        flex-direction: column;
        gap: 2rem;
    }

    .cove_production_btn_wrap {
        flex-direction: column;
        gap: 1rem;
        right: unset;
        left: 2rem;
        top: 3.2rem;

        .cove_production_high , .cove_production_next, .cove_production_select_value, .cove_production_mat_bang {
            width: max-content;
             font-size: 1.4rem;
            padding-inline: 1.6rem;
        }
    }

    .cove_production_highfloor,
    .cove_production_lowfloor,
    .cove_production_floor {
        padding-bottom: 6rem;

        .cove_production_btn_wrap {

            left: 2rem;
            right: unset;
            flex-wrap: wrap;
            top: 5rem;
            flex-direction: unset;
        }
    }

    .cove_production_lowfloor_title {
        gap: 0;
    }

    .cove_production_lowfloor_title_swiper.swiper {
        /* width: 100%; */
        border-bottom: 3px solid #A9805C;

        .swiper-slide {
            width: max-content;
        }
    }

    .cove_production_lowfloor_title_txt {
        white-space: no-wrap;
        flex: none;
    }
   
    .cove_production_floor_inner,
    .cove_production_highfloor_inner,
    .cove_production_lowfloor_inner {
        margin-inline: 2rem;
        margin-top: 18.8rem;
        padding-bottom: 4rem;
        padding-top: 0;
        height: auto;
    }

    .cove_production_highfloor_close,
    .cove_production_lowfloor_close,
    .cove_production_floor_close {
        right: 1.4rem;
        top: 1rem;
        width: 4rem;
        height: 4rem;
    }

    .cove_production_next,
    .cove_production_high {
        padding-inline: 1.6rem;
    }

    .cove_production_highfloor_button,
    .cove_production_lowfloor_button,
    .cove_production_floor_button {
        position: static;
        display: flex;
        justify-content: center;
        gap: 2rem;
        transform: none;
        margin-top: 4rem;
    }
}

/* cove_news */
.cove_news {
    background: url(../img/bg_inspirationion.png) no-repeat top;
    background-size: cover;
    background-position: right;
    position: relative;
    padding-top: 7.8vh;
    padding-bottom: 8vh;
}
.new_slide{
    padding:1.5rem;
    &::before{
        background: linear-gradient(to right, #C09C6B 0%, #E9DCB8 100%);
        position: absolute;
        content: "";
        inset: 0;
        z-index: -1;
    }
}
.new_slide_overlay{
        position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, #05352272 0%, #05352200 100%);
}
.new_slide_txt{
    text-transform: uppercase;
    position: absolute;
    bottom: 4rem;
    color: #fff;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}
.cove_news_title_wrap {
    display: flex;
    gap: 6rem;
    justify-content: center;
}

.cove_news_title {
    font-family: 'Times New Roman';
    font-weight: bold;
    line-height: 1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease-out;
    padding-bottom: .8rem;

    &.active {
        color: #C09C6B;

        .line-inner-hover {
            transform: scaleX(1);
            transform-origin: left;
        }

    }

    &:hover {
        color: #C09C6B;
    }
}

.btn-outline {
    color: #C09C6B !important;
    border: 1px solid #C09C6B;
    transition: .4s ease background-color, .4s ease color;
    overflow: hidden;
    position: relative;

    span {
        position: relative;
        z-index: 2;
    }

    &:after {
        content: '';
        position: absolute;
        inset: 0;
        transform: translateX(-100%);
        transition: .4s ease all;
        background-color: #C09C6B;
    }

    &:hover:after {
        transform: translateX(0);
    }

    &:hover {
        color: white !important;
    }
}

.btn-bg {
    background-color: #C09C6B;
    transition: background-color .4s ease;

    &:hover {
        background-color: #806847;
    }
}

.cove_news_content_info_seemore {
    display: block;
    text-transform: uppercase;

    line-height: 2.25em;
    padding-inline: 4rem;

    border-radius: 1rem;
    text-decoration: none;
    width: max-content;
    margin-block: 4rem 4.4rem;
}

.cove_news_other_info_seemore {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #C09C6B;
    line-height: 2.25em;
    padding-inline: 4rem;
    border: 1px solid #C09C6B;
    border-radius: 1rem;
    width: max-content;
    margin-top: 6rem;
}

.cove_news_content {
    max-width: 144.8rem;
    width: 100%;
    margin-inline: auto;
    position: relative;
    background-color: #015533;
    margin-top: 13rem;
    display: flex;
    justify-content: right;

    * {
        color: #fff;
    }
}

.cove_news_content_info {
    margin-right: 13rem;
    max-width: 59.2rem;
    padding-top: 6.5rem;
    width: 100%;
}

.cove_news_content_info_time {
    font-family: "Times New Roman";
    margin-bottom: 1.6rem;
    line-height: 1em;
}

.cove_news_content_img {
    background:  linear-gradient(238deg, #E9DCB8 6.19%, #C09C6B 105.96%);
    padding: 1rem;
    position: absolute;
    width: 62.3rem;
    height: 40rem;
    top: -5.4rem;
    left: 3.7rem;
}

.cove_news_other_img {
    width: 5.9rem;
    flex: none;
}

.cove_news_other {
    display: flex;
    padding-inline: 24rem;
    width: 100%;
    gap: 14.5rem;
    position: relative;
    padding-bottom: 11.1rem;
}

.cove_news_other_item {
    display: flex;
    margin-top: 10vh;
}

.cove_news_other_info {
    margin-top: 6rem;
}

.cove_news_other_info_day,
.cove_news_other_info_time {
    font-family: 'Times New Roman';
    font-weight: bold;
}

.cove_news_other_info_des {
    max-width: 59.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.cove_news_inner {
    display: none;

    &.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

@media screen and (max-width:991px) {
    .cove_news {
        padding-block: 10rem;
    }

    .cove_news_other {
        padding-inline: 3rem;
    }

    .cove_news_content_img {
        position: unset;
        width: 40rem;
        height: auto;
    }

    .cove_news_content {
        margin-top: 5rem;
        align-items: center;
        padding-inline: 3rem;
        gap: 4rem;
    }

    .cove_news_content_info {
        margin-right: 0;
    }

    .cove_news_other_info {
        margin-top: 0;
    }

    .cove_news_other {
        gap: 0;
        justify-content: space-between;
        padding-bottom: 3rem;
    }

    .cove_news_other_info_seemore {
        padding-inline: 2rem;
    }

    .cove_news_other_info_des {
        max-width: unset;
    }

    .cove_news_other_item {
        width: 48%;
    }

    .cove_news_other_img {
        width: 9.9rem;
    }
}

@media screen and (max-width:767px) {
    .cove_production_mat_bang {
    display: block;
} 
    .cove_news_other_info_seemore {
        line-height: 2em;
    }
    .new_slide_txt {
        width: 100%;
        bottom: 1rem;
        text-align: center;
        font-size: 1.4rem;
    }
    .cove_production_overlay {
        right: 0;
    }

    .cove_production_content {
        padding-block: 16rem 6rem;
        margin-left: 2rem;
        padding-right: 2rem;
    }

    .cove_news {
        padding-block: 6rem;
        background-position: 70%;
    }

    .cove_news_content {
        background-color: unset;
        gap: 0;
        flex-direction: column;
        margin-bottom: 2.4rem;
        padding-inline: 2rem;
        margin-top: 3.2rem;
    }

    .cove_news_title_wrap {
        gap: 2rem;
    }

    .cove_news_content_img {
        width: 100%;
    }

    .cove_news_content_info {
        background-color: #015533;

        padding-top: 2rem;
        padding-inline: 2rem;
    }

    .cove_news_content_info_seemore {
        margin-block: 2rem;
        padding-inline: 2rem;
    }

    .cove_news_other_info_seemore {
        margin-top: 1rem;
    }

    .cove_news_other_item {
        width: 100%;
    }

    .cove_news_other_info {
        margin-block: auto;
    }

    .cove_news_other_info_des {
        margin-top: 1rem;
        margin-bottom: 2.8rem;
    }

    .cove_news_other_info_day {
        margin-bottom: .4rem;
        font-size: 2.2rem;
    }

    .cove_news_other {
        padding-bottom: 0;
        padding-inline: 2rem;
        flex-direction: column;
    }

    .cove_news_other_item {
        margin-top: 2rem;
    }
}

/* partner */

.cove_partner {
    background: url(../img/bg-partner.webp) no-repeat top;
    background-size: cover;
    padding-top: 9.8vh;

    * {
        color: #fff;
    }
}

.cove_partner_title,
.cove_partner_title2,
.cove_partner_title1 {
    text-transform: uppercase;
    font-weight: 500;
}

.cove_partner_title {
    max-width: 75.8rem;
    margin-inline: auto;
    margin-bottom: 5.2rem;
}

.cove_partner_title2 {
    max-width: 75.8rem;
    margin-inline: auto;
    margin-bottom: 4.7rem;
    margin-top: 6.9rem;
}

.cove_partner_title1 {
    margin-top: 12rem;
    margin-bottom: 6rem;
}

.cove_partner_list_item {
    width: 18.1rem;
}

.cove_partner_list {
    display: flex;
    justify-content: space-between;
    max-width: 67.5rem;
    margin-inline: auto;
}

.cove_partner_list_partner_item_txt {
    font-weight: bold;
    text-transform: uppercase;
}
.cove_partner_list_inner{
    margin-inline:21.7rem;
    position:relative;
}
.cove_partner_list_partner_item{
    cursor: pointer;
}
.cove_partner_list_partner_wrap{
    margin-inline:21.8rem;
}
.partner_button{
    position: absolute;
    display: flex;
    justify-content: space-between;
    inset: 50% -8rem 0;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}
.partner_button_swiper_item{
    pointer-events: auto;
    width: 5rem;
    height: 6rem;
    padding: 1rem;
    cursor: pointer;
     transition: opacity .4s ease;
     &.swiper-button-disabled{
        opacity: .4;
        cursor: unset;
     }
}

.cove_partner_list_partner_item_img {
       max-width: 15.5rem;
    margin: auto;
}

.cove_partner_logo_img {
    width: 32.4rem;
    margin-inline: auto;
}

@media screen and (max-width:991px) {
    .cove_partner_list_inner {
        margin-inline: 3rem;
    }
    .cove_partner_list {
        margin-inline: 8rem;
    }

    .cove_partner_title1,
    .cove_partner_title2 {
        margin-top: 8rem;
        font-size: 2.4rem;
    }

    .cove_partner_list_partner {
        max-width: unset;
        margin-inline: 4rem;
        row-gap: 3rem;
        padding-bottom: 0;
    }

    .cove_partner {
        padding-block: 10rem;
    }
}

@media screen and (max-width:767px) {
    .cove_news_content_info_seemore {
        line-height: 2em;
    }
     .cove_partner_list_inner {
        margin-inline: 0rem;
    }
    .cove_partner {
        padding-block: 6rem;

        .kl_container {
            padding-inline: 2rem;
        }
    }

    .cove_partner_title2 {
        margin-inline: 2rem;

        br {
            display: none;
        }
    }

    .cove_partner_title {
        line-height: 1;
    }

    .cove_partner_title {
        margin-top: 3rem;
        margin-bottom: 2rem;
        font-size: 2.8rem;
    }

    .cove_partner_logo_img {
        margin-inline: 2rem;
        width: 70%;
        margin-left: 15%;
    }

    .cove_production_building,
    .cove_production_hourse {
        display: none;
    }

    .cove_partner_title2,
    .cove_partner_title1 {
        margin: 6rem 0rem 3.2rem 0;
        font-size: 2rem;
    }
    .cove_production_btn_wrap.first {
        flex-direction: unset;
        flex-wrap: wrap;
    }
    .cove_partner_list_partner_item_img {
        width: 10rem;
        margin-inline: auto;
    }

    .cove_partner_list_partner_item {
        width: 100%;
        max-width: 100%;
    }

    .cove_partner_list {
        margin-inline: 2rem;
    }

    .cove_partner_list_item {
        width: 10rem;
    }

    .cove_partner_list {
        align-items: center;
    }

    .cove_partner_list_partner {
        margin-inline: 0rem;
        gap: 0;
        row-gap: 2.8rem;
        padding-bottom: 2rem;
    }

.partner_button {
    inset: 50% -1rem 0;
}
.partner_button_swiper_item {
    width: 4rem ;
    height: auto;
}
    .cove_partner_list_partner_item_txt {
        margin-top: .6rem;
        line-height: 1.4;
    }
}

/* contact */
.cove_contact {
    background: url(../img/bg_inspirationion.png) no-repeat top;
    background-size: cover;
    background-position: right;
}

.cove_contact_list {
    display: flex;
    margin-right: 16rem;
}

.cove_contact_inner {
    display: flex;
    padding-inline: 16rem 12rem;
    padding-top: 10vh;
    height: 100%;
    align-items: center;
}

.cove_contact_inner_info_address_list_icon_path {
    transition: .4s ease all;
}

.cove_contact_list_img {
    width: 32.3rem;

    &.on_hover {
        overflow: hidden;

        img {
            transition: .6s ease transform;
        }

        &:hover {
            img {
                transform: scale(1.3);
            }
        }
    }
}
.cove_contact_list_img:nth-child(2) {
    flex: 1;
}
.cove_contact_inner_info_address_list_icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #9CB2A9;
    background-color: white;
    color: #015533;
    transition: border-color .4s ease, background-color .4s ease, color .4s ease;

    &:hover {
        color: white;
        border-color: #015533;
        background-color: #015533;

        .cove_contact_inner_info_address_list_icon_path {
            fill: #015533;
        }
    }
}

.cove_contact_info_title {
    font-family: 'Times New Roman';
    font-weight: bold;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.cove_contact_inner_info_address {
    flex: 1;
}

.cove_contact_inner_info_address_title {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.cove_contact_inner_info_address_title1 {
    font-weight: 600;
    margin-top: 2.5rem;
    white-space: nowrap;
    margin-bottom: 3rem;
}

.cove_contact_subtitle {
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.cove_contact_logo {
    margin-inline: auto;
    width: 14rem;
    margin-bottom: 2rem;
}

.cove_contact_info_inner {
    display: flex;
}

.wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% + 1.2rem);
}

.cove_contact_inner_info_form {
    width: 34rem;
    flex: none;
    margin-right: 7.5rem;

    .input_group {
        position: relative;

        .form_message {
            position: absolute;
            top: calc(100% - 4rem);
            left: 0;
            color: rgb(141, 0, 0);
            transition: opacity .4s ease;
        }
    }

    

    input {
        width: 100%;
        background-color: transparent;
        border: 0;
        border-bottom: 2px solid #8D8D8D;
        margin-bottom: 4rem;
        padding-block: 1.5rem;

        &.error {
            border-color: rgb(141, 0, 0);

            &+.form_message {
                opacity: 1;
            }
        }

        &::placeholder {
            font-family: 'Montserrat';
            font-size: 1.8rem;
            line-height: 4.5rem;
        }

        &:focus-visible {
            outline: none !important;
        }
    }
}
.form_success {
        color: green;
        font-weight: 600;
        /* border: 1px solid green; */
        margin-bottom: 2rem;
        display: none;
    }
.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}

.cove_contact_inner_info_form_submit {
    color: #fff;
    background-color: #C09C6B !important;
    border: none !important;
    font-weight: 600;
    line-height: 1.6;
    padding-inline: 5.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-family: 'Montserrat';
    width: max-content !important;
    margin-bottom: 2.5rem !important;
    padding-block: 1.2rem !important;

}

.cove_contact_inner_info_address_ggmap {
    color: #fff;
    background-color: #C09C6B;
    border: none;
    font-weight: 600;
    line-height: 4.7rem;
    padding-inline: 5.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    font-size: 2rem;
    font-family: 'Montserrat';
    margin-bottom: 2.5rem;
    display: block;
    width: max-content;
    text-decoration: none;
    margin-top: 1.5rem;
}

.cove_contact_inner_info_address_list {
    display: flex;
    gap: 1.3rem;
}

.cove_contact_des {
    margin-bottom: 1rem;
    margin-inline: auto;
    max-width: 70rem;

}

.cove_contact_list_img_wrap {
    margin-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.img_list {
    margin-bottom: 1rem;
}

@media screen and (max-width:991px) {
    .cove_contact_list_img_wrap {
        gap: 2rem;
    }

    .img_list {
        margin-bottom: 0;
    }

    .cove_contact_info_inner {
        flex-direction: column;
        gap: 4rem;
    }

    .cove_contact_list_img {
        width: 28.3rem;
    }

    .cove_contact_inner {
        padding-inline: 3rem;
        flex-direction: column;
        justify-content: center;
        padding-block: 10rem 4rem;
    }

    .cove_contact_list {
        margin-right: 0;
    }

    .cove_contact_inner_info_form {
        max-width: unset;

        p {
            width: 100%;
        }
    }

    .cove_contact_inner_info_address {
        max-width: unset;
    }

    .cove_contact_info {
        margin-top: 4rem;
    }

    .cove_contact_inner_info_address_ggmap,
    .cove_contact_inner_info_form_submit {
        padding-inline: 3rem;
    }

    .cove_contact_inner_info_address_list_icon {
        width: 6rem;
        height: 6rem;
    }
}

@media screen and (max-width:767px) {
    .cove_inspiration_list_img {
        &.item1 {
            height: 24.2rem;
        }

        &.item2 {
            height: 25.9rem;
        }

        &.item3 {
            height: 31.1rem;
        }

        &.item4 {
            height: 19rem;
        }
    }
    .cove_inspiration_list_left{
    .cove_inspiration_list_img:first-child{
        height: 19rem;
    }
    .cove_inspiration_list_img:last-child{
        height: 31.1rem;
    }
}
.cove_inspiration_list_right{
    .cove_inspiration_list_img:first-child{
        height: 24.2rem;
    }
    .cove_inspiration_list_img:last-child{
        height: 25.9rem;
    }
}

    .cove_contact {
        background-position: 65%;
    }

    .cove_contact_list_img {
        width: 17rem;
    }

    .cove_contact_list_img_wrap {
        row-gap: 1rem;
    }

    .cove_contact_inner {
        padding: 6rem 2rem 2rem 2rem;
    }

    .cove_contact_list_img_wrap {
        margin-right: 0;
    }

    .cove_contact_list {
        justify-content: space-between;
        column-gap: 1rem;
    }

    .cove_contact_info_inner {
        flex-direction: column;
    }

    .cove_contact_inner_info_form {
        margin-right: 0;

    }

    .cove_contact_info_title {
        margin-bottom: 2rem;
    }

    .cove_contact_inner_info_form {
        width: 100%;
        input {
            padding-block: .5rem;
            margin-bottom: 2rem;

            &::placeholder {
                font-size: 1.4rem;
                line-height: 3rem;
            }

        }
    }

    .cove_contact_inner_info_form_submit,
    .cove_contact_inner_info_address_ggmap {
        font-size: 1.6rem;
        padding-inline: 2rem;
        line-height: 3.2rem;
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    .cove_contact_inner_info_address {
        margin-top: 2rem;
    }

    .cove_contact_inner_info_address_title1 {
        margin-block: 1rem;
    }
}

/* btn */
.cove_btn {
    position: fixed;
    right: 4rem;
    top: 3rem;
    bottom: 0;
    z-index: 100;
}

.cove_btn_crolltop {
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;

    &.active {
        opacity: 1;
        pointer-events: all;
    }
}

.cove_btn_menu,
.cove_btn_list_item,
.cove_btn_crolltop {
    width: 5.5rem;
    cursor: pointer;
    display: block;
    right: 0;
    display: flex;
}

.cove_btn_list {
    right: 0;
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    transform: translateY(-50%);
}

.cove_btn_crolltop {
    position: absolute;
    bottom: 6.5rem;
}

@media screen and (max-width:991px) {

    .cove_btn_menu,
    .cove_btn_list_item,
    .cove_btn_crolltop {
        width: 4.5rem;
    }

    .cove_btn {
        right: 2rem;
        top: 2rem;
    }

    .cove_characteristic_content {
        margin-top: 0;
    }

    .cove_characteristic {
        padding-block: 4rem 10rem;
    }
}

@media screen and (max-width:767px) {

    .cove_btn_menu,
    .cove_btn_list_item,
    .cove_btn_crolltop {
        width: 4rem;
    }

    .cove_btn {
        right: 1rem;
        top: 2rem;
    }

    .cove_btn_crolltop {
        bottom: 3rem;
    }

    .cove_hero_slide {
        height: 40rem;
    }

    .cove_hero_slide_item_txt_wrap {
        width: 30rem;
        left: 2rem !important;
        right: unset !important;
        top: 50% !important;
        transform: translateY(-50%);

        .txt_90 {
            font-size: 4.4rem;
        }
    }

    .cove_hero_overlay,
    .cove_hero_overlay_right {
        height: 100%;
        opacity: 0;
    }

    .cove_characteristic {
        padding-bottom: 6rem;
    }
}

.main_menu {
    position: fixed;
    inset: 0;
    background: url(../img/bg_inspirationion.png) no-repeat top;
    background-size: cover;
    background-position: right;
    background-color: white;
    z-index: 1000;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

.main_menu_logo {
    width: 48rem;
    left: 50%;
    color: black;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);

    svg {
        width: 100%;
        height: 100%;
    }
}

.main_menu_nav {
    position: absolute;
    right: 12rem;
    top: 18vh;
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 4rem;
}

.main_menu_item_txt {
    text-align: right;
    text-decoration: none;
    text-transform: uppercase;
}

.main_menu_item {
    color: black;
    text-decoration: none;
    display: block;
    width: max-content;
}
.news_popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;
    &.active {
        opacity: 1;
        pointer-events: all;
    }
    .news_popup_overlay {
        position: absolute;
        inset: 0;
        background-color: #46301A;
        opacity: .6;
    }
    .news_popup_close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 3.2rem;
        cursor: pointer;
        line-height: 1;
        color: #B6966F;
        font-family: 'Times New Roman';
    }
    .news_popup_time {
        color: #C09C6B;
        margin-block: 2.5rem;
        text-align: center;
    }
    .news_popup_title {
        color: #015533;
        line-height: 1.3;
    }
    .news_popup_content {
        .wp-caption {
             margin-block: 3.2rem;
            width: 85% !important;
            margin-inline: auto;
            text-align: center;
        }
        * {
            max-width: 100%;
        }
        img {
            width: 100%;
           
        }
    }
    .news_popup_main {
        width: 100%;
        height:  100%;
        overflow: auto;
        display: flex;
        padding-top: 2.8rem;
        justify-content: center;
        position: relative;
        z-index: 10;
    }
    .news_popup_inner {
        position: relative;
        z-index: 10;
        
        height: max-content;
        width: 85%;
        max-width: 140rem;
        background-color: white;
        padding: 7rem 12rem;
    }
}
@media screen and (max-width:991px) {
    .cove_location {
        background-position: 73%;
    }
    .cove_contact {
        background-position: left;
    }
    .main_menu_logo {
        display: none;
    }
    .news_popup_title {
        font-size: 3.2rem;
    }
.news_popup .news_popup_inner {
    width: 90%;
    padding: 6rem 3rem;
}
    .main_menu_nav {
        display: flex;
        align-items: center;
        top: 50%;
        right: unset;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 3rem;
    }
}

@media screen and (max-width:767px) {
    .cove_production_floor .cove_production_floor_inner {
        flex-direction: column;
        height: max-content;
        margin-top : 17.8rem;
        .swiper {
            width: 100%;
        }
    }
    .cove_production_select {
        order: 1;
    }
    .cove_production_lowfloor_content_wrap {
        height: auto;
        flex-direction: column;
    }
    .cove_production_floor_button, .cove_production_highfloor_button, .cove_production_lowfloor_button {
    .img_fullfill {
        width: 4rem;
        height: 4rem;
    }
}
    .cove_production_lowfloor_content_img {
        width: 100%;
    }
     .cove_production_highfloor_item {
        border: 1rem solid #c09c6b9e;
    }
    .new_slide{
        padding : 1rem;
    }
    .news_popup {
        & .news_popup_content {
            .wp-caption {
                margin-block: 2rem;
                width: 100% !important;
            }
        }
    }
    .main_menu_nav {
        gap: 2rem;
    }

    .cove_news_other_img {
        width: 4.8rem;
    }
    .news_popup_title {
        font-size: 2.4rem;
    }
        .news_popup .news_popup_inner {
        width: calc(100% - 4rem);
        padding: 6rem 2rem;
    }
    .news_popup_close {
        font-size: 2.8rem !important;
    }
    .news_popup_time{
        margin-block: 1.6rem 2rem;
    }
    .cove_model_close{
        top: 0;
        right: 0;
        font-size: 2.8rem;
    }
    .cove_contact_inner_info_address_list_icon {
        width: 4rem;
        height: 4rem;
    }
    .cove_production_highfloor_item:after {
        display: none;
    }
}
@keyframes phonering{
    0%{transform:rotate(0deg)}
    10%{transform:rotate(-25deg)}
    20%{transform:rotate(25deg)}
    30%{transform:rotate(-25deg)}
    40%{transform:rotate(25deg)}
    50%{transform:rotate(0deg)}
    100%{transform:rotate(0deg)}
}
.cove_btn_list_item img {
     animation: phonering 1s infinite ease-in-out;
}
.outside{
    position: relative;
    display: flex;
    align-items: center;
    padding-inline: 23.5rem;
}
.outside_bg{
    position: absolute;
    inset: 0;
    z-index: -1;

}
.outside_item_img svg rect{
    fill: currentColor;
}
.outside_item_img{
    height: 9rem;
    color: #fff;
    transition: all .3s ease;
    svg{
        transition: all .3s ease;
        width: 100%;
        height: 100%;
    }
    &:hover{
        transform: translateY(-.8rem);
    }
}
.cove_utilities_inner {
    height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  .cove_utilities_item {
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    &.active {
      opacity: 1;
      pointer-events: all;
    }
  }
}
.outside_list {
      width: 100%;
     display: flex;
    flex-wrap: wrap;
    gap: 12rem;
    row-gap: 3rem;
}
.outside_inner{
    display: flex;
}
.outside_item{
    width: calc(20% - 9.6rem);
    &:hover .outside_item_img svg{
        color: #f9c468;
    }
}
.outside_item_txt{
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.7rem;
    /* text-transform: uppercase; */
    text-align: center;
    color: #fff;
}
@media screen and (max-width:991px) {
    .outside {
        padding-inline: 10rem;
    }
    .outside_item{
    width: calc(33.33% - 1rem);
    }
    .outside_list{
        gap: 1.5rem;
        justify-content: center;
        row-gap: 3rem;
    }
    .outside_item_img{
        height: 6rem;
    }
    .outside_item_txt{
        font-size: 1.4rem;
    }
    .cove_utilities_inner{
        display: block;
    }
    .cove_utilities_item{
        opacity: 1;
        pointer-events: all;
        display: none;
        &.active{
            display: block;
        }
    }
    .cove_utilities_internal_info{
        position: unset;
        height: auto;
        width: 100%;
        padding-inline: 4rem;
    }
    .cove_utilities_internal_info_txt{
        justify-content: center;
    }
    .cove_utilities_img {
        width: 100%;
    }
    .cove_utilities_internal_info_title {
        text-align: center;
        br{
            display: none;
        }
    }
    .cove_utilities_internal_info_txt_wrap{
        flex-wrap: wrap;
        display: flex;
        justify-content: left;
        padding-bottom: 3rem;
    }
    .cove_utilities_internal_info_txt{
        width: 50%;
        justify-content: left;
    }
    .cove_utilities_internal_info_list{
        width: 100%;
        max-width: unset;
    }
    .cove_utilities_internal_info_txt_des{
        font-size: 1.4rem;
    }
    .cove_utilities_internal_info_list{
        margin-top: 0;
        padding-bottom: 5rem;
    }
    .cove_utilities_internal_info_txt_wrap{
        row-gap: 1rem;
    }
    .cove_utilities_btn_wrap{
        top: 2.6rem;
        left: 4rem;
        flex-direction: row;
    }
    .cove_utilities_btn_item{
        width: auto;
    }
    .outside {
        padding-block: 9rem;
    }
}
@media only screen and (max-width: 767px) {
  .outside_list {
    row-gap: 3rem;
}
.outside{
    z-index: 1;
    padding-inline: 2rem;
}
.cove_utilities_btn_wrap{
    top: 33rem;
    left: 2rem;
}
.cove_utilities_internal_info{
    height: auto;
    padding-inline: 2rem;
    padding-top: 6rem;
}
.cove_utilities_internal_info_txt{
        align-items: center;
        width: 48%;
        align-self: flex-start;
    width: 48%;
}
    .cove_utilities_internal_info_txt_wrap {
        justify-content: space-between;
    }
.cove_utilities_internal_info_txt_des {
    font-size : 1.2rem;
    line-height: 1.3;
}
.cove_utilities_internal_info_list_item_txt {
    font-size: 1.1rem;
}
.cove_utilities_internal_info_title{
    font-size: 1.9rem;
    margin-top: 3rem;
    margin-bottom: 1.6rem;
    strong{
        font-size: 3.6rem;
    }
}
.cove_utilities_btn_item{
    padding-inline: 1.5rem;
    font-size: 1.4rem;
}
.outside {
    padding-bottom: 5rem;
}
}