@charset "utf-8";

@font-face {
    font-family: "Aptima";
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/UTM-Aptima.ttf");
}

@font-face {
    font-family: "Aptima";
    font-weight: 700;
    font-style: normal;
    src: url("../fonts/UTM-AptimaBold.ttf");
}

:root {
    --d-transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    --d-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    --d-gutter: 2rem;
    --d-padding: var(--bs-gutter-x,.75rem);
    --d-padding-xl: var(--bs-gutter-x,.75rem);
    --fz-16: 14px;
    --fz-18: 16px;
    --fz-20: 18px;
    --fz-26: 20px;
    --fz-30: 20px;
    --fz-42: 22px;
    --fz-50: 25px;
    --color-1: #09656C;
    --color-2: #D09B3E;
    --iz-1: 42px;
}

@media (min-width:768px) {
    :root {
        --fz-16: 14px;
        --fz-18: 16px;
        --fz-20: 18px;
        --fz-26: 20px;
        --fz-30: 20px;
        --fz-42: 24px;
        --fz-50: 27px;
    }
}

@media (min-width:1200px) {
    :root {
        --d-padding: 5.989583333333333vw;
        --d-padding-xl: 8.229166666666667vw;
        --fz-16: 0.8333333333333333vw;
        --fz-18: 0.9375vw;
        --fz-20: 1.041666666666667vw;
        --fz-26: 1.354166666666667vw;
        --fz-30: 1.5625vw;
        --fz-42: 2.1875vw;
        --fz-50: 2.604166666666667vw;
        --iz-1: 2.916666666666667vw;
    }
}


@media (max-width:1199px) {
    :root {
    }
}

html::-webkit-scrollbar {
    width: 8px;
    background-color: var(--color-1);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--color-2);
    border-radius: 4px;
}
/*FOR IE*/
html {
    scrollbar-base-color: var(--color-2);
    scrollbar-face-color: var(--color-2);
    scrollbar-3dlight-color: var(--color-2);
    scrollbar-highlight-color: var(--color-2);
    scrollbar-track-color: var(--color-1);
    scrollbar-arrow-color: var(--color-2);
    scrollbar-shadow-color: var(--color-2);
    scrollbar-dark-shadow-color: var(--color-2);
}
/*FOR FF*/
html {
    scrollbar-color: var(--color-2) var(--color-1);
    scrollbar-width: 8px;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    font-size: var(--fz-16);
    line-height: 1.4;
    overflow-x: hidden;
    font-weight: 400;
    color: #4b4e53;
}

/*----------------------
1.1. Typography
------------------------------*/
.font2 {
    font-family: 'Aptima', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Aptima', sans-serif;
    margin: 0 auto 15px;
    font-weight: 700;
    line-height: 1.4;
}

h1 {
    font-size: var(--fz-50);
}

    h2, h1.sm {
        font-size: var(--fz-42);
    }

        h2.lg, h3.xxl {
            font-size: var(--fz-26);
        }

        h3, h2.md {
            font-size: var(--fz-20);
        }

            h4, h2.sm, h3.md {
                font-size: var(--fz-18);
                margin-bottom: 0.8em;
            }

h5 {
    font-size: var(--fz-16);
    margin-bottom: 0.8em;
}

h6 {
    font-size: var(--fz-16);
    margin-bottom: 0.8em;
}

p { /*font-size: 15px;
margin-bottom: 20px;*/
}

a {
    transition: var(--d-transition);
    text-decoration: none;
    color: #000;
}

    a:hover, a:focus {
        text-decoration: none;
        outline: none;
        color: var(--color-1);
    }

ul, ol {
    margin: 0 auto 1rem;
}

    ul li, ol li {
        margin: 0 auto 0.5rem;
    }

    ul.style-1 {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }

        ul.style-1 li {
            color: #6D6D6D;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
            display: flex;
            flex: 0 0 100%;
            padding: 0px 0px 1rem;
            margin: 0px 0rem 1rem;
        }

            ul.style-1 li strong {
                margin-left: auto;
                color: #000;
                padding-left: 10px;
            }


blockquote {
    background: #f5f5f5;
}

*:focus, button:focus {
    outline: none;
}

.white-text,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text.section-header p {
    color: #fff;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.divider {
    border-bottom: 1px solid #dcd9d9;
    clear: both;
    margin: 40px auto;
}

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

.gutter-50 {
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

    .gutter-50 > [class*='col-'] {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

.gutter-40 {
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

    .gutter-40 > [class*='col-'] {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

.gutter-20 {
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

    .gutter-20 > [class*='col-'] {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

.gutter-10 {
    margin-left: -10px;
    margin-right: -10px;
}

    .gutter-10 > [class*='col-'] {
        padding-right: 10px;
        padding-left: 10px;
    }

.gutter-5 {
    margin-left: -5px;
    margin-right: -5px;
}

    .gutter-5 > [class*='col-'] {
        padding-right: 5px;
        padding-left: 5px;
    }

.gutter-2 {
    margin-left: -2px;
    margin-right: -2px;
}

    .gutter-2 > [class*='col-'] {
        padding-right: 2px;
        padding-left: 2px;
    }

.gutter-0 {
    margin-left: 0px;
    margin-right: 0px;
}

    .gutter-0 > [class*='col-'] {
        padding-right: 0px;
        padding-left: 0px;
    }

@media (min-width:1200px) {
    .gutter-50 {
        margin-left: -2.604166666666667vw;
        margin-right: -2.604166666666667vw;
    }

        .gutter-50 > [class*='col-'] {
            padding-right: 2.604166666666667vw;
            padding-left: 2.604166666666667vw;
        }

    .gutter-40 {
        margin-left: -2.083333333333333vw;
        margin-right: -2.083333333333333vw;
    }

        .gutter-40 > [class*='col-'] {
            padding-right: 2.083333333333333vw;
            padding-left: 2.083333333333333vw;
        }

    .gutter-20 {
        margin-left: -1.041666666666667vw;
        margin-right: -1.041666666666667vw;
    }

        .gutter-20 > [class*='col-'] {
            padding-right: 1.041666666666667vw;
            padding-left: 1.041666666666667vw;
        }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hide {
    overflow: hidden;
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 1em auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%; /* Image does not overflow the content area */
    text-align: center;
}

    .wp-caption.alignnone {
        margin: 5px 20px 20px 0;
    }

    .wp-caption.alignleft {
        margin: 5px 20px 20px 0;
    }

    .wp-caption.alignright {
        margin: 5px 0 20px 20px;
    }

    .wp-caption img {
        border: 0 none;
        height: auto;
        margin: 0;
        max-width: 100%;
        padding: 0;
        width: auto;
    }

    .wp-caption p.wp-caption-text {
        font-size: 13px;
        margin: 0;
        padding: 5px 5px 0px;
    }

/*End core*/
.editor-content {
    font-size: var(--fz-18);
    line-height: 1.8em;
}

    .editor-content img {
        max-width: 100%;
        height: auto;
    }

        .editor-content img.media-object {
            max-width: none;
        }

    .editor-content a {
        color: var(--color-1);
    }

    .editor-content h2, .editor-content h3, .editor-content h4 {
        font-weight: 700;
        color: #000000;
    }

    .editor-content h4 {
        font-size: var(--fz-18);
    }

    .editor-content h3 {
        font-size: var(--fz-26);
    }

    .editor-content h2 {
        font-size: var(--fz-30);
        color: #fff;
    }

/*-----------------
1.2. Button
-------------------------*/
.btn {
    background: var(--color-1);
    color: #fff;
    font-size: var(--fz-18);
    margin: auto;
    padding: 0.4rem 1.5rem;
    transition: var(--d-transition);
    text-decoration: none;
    font-weight: 400;
    border: 0;
    border-radius: 10px;
}

    .btn:hover {
        background: var(--color-2);
    }

    .btn.btn-rounded {
        border-radius: 0px 30px;
    }

    .btn.btn-icon {
        padding-left: 60px;
    }

    .btn.btn-primary {
        background: var(--color-2);
    }

        .btn.btn-primary:hover,
        .btn.btn-primary.active {
            background: var(--color-1);
            color: #fff;
        }


        .btn.btn-primary.md {
            padding: 10px 35px 8px;
        }

.btn-download i {
    margin-left: 5px;
}

.btn .fa {
    font-size: 22px;
    margin-right: 5px;
    vertical-align: text-top;
}

.btn.btn-lg {
    font-size: 24px;
    line-height: 30px;
    padding: 22px 50px;
}

.btn.btn-sm {
    font-size: var(--fz-18);
    padding: 0.4rem 1.5rem;
    border-radius: 0.4rem;
}

.btn:hover, .btn:focus {
    color: #fff;
    outline: none;
    box-shadow: none; /*background: transparent;*/
}

.btn.btn-icon:hover {
}

.btn-link {
    font-weight: 800;
    font-size: 17px;
    color: #602314;
}

.btn.outline-btn {
    background: none;
    color: #006838;
    border: #602314 solid 1px;
    padding: 5px 25px 5px 10px;
    font-weight: 400;
    position: relative;
}

    .btn.outline-btn:after {
        position: absolute;
        right: 6px;
        top: 12px;
        content: "\f103";
        font: normal normal normal 14px/1 FontAwesome;
    }

    .btn.outline-btn:hover {
        background: #602314;
        color: #fff;
    }

.btn-transparent {
    background: transparent;
}

    .btn-transparent:hover {
        background: transparent;
        border: 0;
    }

.btn-back-home {
}

.btn-viewall {
    background: rgba(145, 145, 145, 0.5);
    border-radius: 0px 30px;
    padding: 10px 20px;
    color: #000;
}

    .btn-viewall i {
        margin-left: 10px;
    }

.btn-outline {
    background: transparent;
    border: solid 1px var(--color-1);
    color: var(--color-1);
}

    .btn-outline i {
        margin-right: 5px;
    }

    .btn-outline:hover {
        background: transparent;
        border: solid 1px var(--color-2);
        color: var(--color-2);
    }
/*-------------------------
1.3. dark-overlay
---------------------------------*/
.div_zindex {
    position: relative;
    z-index: 3;
}

    .div_zindex > * {
        position: relative;
        z-index: 1;
    }

.dark-overlay {
    background: rgba(0, 0, 0, 0.85) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.color-overlay {
    background: rgba(205, 56, 96, 0.9) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
/*-------------------------------------
1.4. Space margins and padding
------------------------------------------------*/

/*-----------------
1.5. Form
---------------------------*/
.form-group {
    margin-bottom: 20px;
    position: relative;
}

    .form-group.has-error .help-block {
        color: #FCE3A3;
        opacity: 0.6;
    }

.form-label {
    color: #111111;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto 8px;
}

.form-control {
    background: #fff;
    border: 0 none;
    border-radius: 10px;
    border: #ccc solid 0px;
    box-shadow: none;
    color: #000000;
    font-size: var(--fz-18);
    height: 3rem;
    padding: 0 15px;
}

textarea.form-control {
    padding: 12px 15px;
    height: 6rem;
}

.form-control:hover {
    box-shadow: none;
    outline: none;
}

.form-control:focus {
    box-shadow: none;
    background: #fff;
    border-color: var(--color-2);
    outline: none;
    color: ##000000;
}

.select {
    position: relative;
}

    .select select {
        appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
        -webkit-appearance: none;
        -ms-appearance: none;
    }

    .select::after {
        color: #878787;
        content: "";
        cursor: pointer;
        font-family: fontawesome;
        font-size: 15px;
        padding: 12px 0;
        pointer-events: none;
        position: absolute;
        right: 15px;
        top: 0;
    }

.form-control option {
    padding: 10px;
}

.control-label {
    color: #555;
    font-size: 15px;
    font-weight: 700;
}

.radio label, .checkbox label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    padding-left: 26px;
    position: relative;
}

.radio input[type=radio],
.checkbox input[type=checkbox] {
    display: none;
}

.radio label:before {
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 15px;
    left: 0;
    top: 4px;
    position: absolute;
    width: 15px;
}

.checkbox label::before {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #111111;
    content: "";
    display: inline-block;
    height: 16px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 16px;
}

.radio input[type=radio]:checked + label:before {
    content: "\2022";
    font-size: 15px;
    text-align: center;
    line-height: 11px;
}

.checkbox input[type=checkbox]:checked + label:before {
    content: "\2713";
    font-size: 12px;
    text-align: center;
    line-height: 14px;
}

.black_input .form-control {
    background: #222;
    border-radius: 3px;
    color: #fff;
    border: #222 solid 1px;
    font-size: 17px;
}

.checkbox, .radio {
    padding-top: 5px;
}
/*-----------------
1.6. Table
---------------------------*/
table {
    margin: 0 0 30px;
    width: 100%;
}

    table th, table td {
        border: 1px solid #cccccc;
        padding: 15px;
        padding: 18px;
    }

        table th img, table td img {
            max-width: 100%;
        }

    table thead {
        background: #eee;
    }

        table thead th, table thead td {
            text-transform: uppercase;
            font-weight: 900;
            color: #111;
        }
/*-----------------
1.7. Accordion
---------------------------*/
.accordion .accordion-button {
    font-size: var(--fz-26);
    font-weight: 700;
}

    .accordion .accordion-button::after {
        width: var(--iz-1);
        height: var(--iz-1);
        border: 1px solid rgba(145, 145, 145, 0.25);
        border-radius: 50%;
        background-position: center;
        box-shadow: none;
    }

    .accordion .accordion-button:focus {
        border: 0;
        box-shadow: none;
    }

    .accordion .accordion-button:not(.collapsed) {
        color: #fff;
        background: var(--color-1);
        border-color: transparent;
        box-shadow: none;
    }

.accordion-button:not(.collapsed)::after {
    border-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}


.modal .input-group {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
}

    .modal .input-group .input-group-text {
        border: 0px;
        background: transparent;
    }

.modal .modal-header .btn-close {
    position: absolute;
    border: solid 1px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    margin: 0;
    padding: 0.4rem;
    width: 1rem;
    height: 1rem;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

    .modal .modal-header .btn-close:hover {
        background: var(--color-1) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
        border-color: var(--color-1);
    }

.modal .bookingForm textarea {
    height: 3rem;
}

.modal .form-select {
    border: 1px solid #D9D9D9;
    height: 3rem;
    border-radius: 10px;
}

.modal.modal-form .modal-header {
    border-bottom: 0;
}

@media (min-width:992px) {
    .modal.modal-form .modal-dialog {
        max-width: 600px;
    }

    .modal.modal-form .modal-body {
        padding: 2rem 3rem;
    }
}

.slide-control .swiper-button-next, .slide-control .swiper-button-prev {
    width: var(--iz-1);
    height: var(--iz-1);
    background-size: auto 50%;
    background-repeat: no-repeat;
    background-position: center center;
    flex: 0 0 var(--iz-1);
    margin: 0px;
    border: solid 1px var(--color-2);
    border-radius: 50%;
    margin: 0px 10px;
    transition: var(--d-transition);
}

.slide-control .swiper-button-prev {
    margin-left: 0;
}

.slide-control .swiper-button-next {
    margin-right: 0;
}

    .slide-control .swiper-button-next:after, .slide-control .swiper-button-prev:after {
        color: #000;
        font-size: 1.5em;
    }

    .slide-control .swiper-button-next:hover {
        background-color: var(--color-2);
    }

.slide-control .swiper-button-prev:hover {
    background-color: var(--color-2);
}

    .slide-control .swiper-button-next:hover:after, .slide-control .swiper-button-prev:hover:after {
        color: #fff;
    }


.nav-tabs {
    border: 0;
}

    .nav-tabs .nav-item {
        padding: 0;
        background: transparent;
        padding-right: 35px;
        margin: 0;
        position: relative;
        border-bottom: solid 2px rgba(217, 217, 217, 0.4);
    }

        .nav-tabs .nav-item:not(:last-child):before {
            content: '';
            position: absolute;
            right: 17px;
            top: 50%;
            width: 1px;
            height: 60%;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(217, 217, 217, 0.4);
        }

    .nav-tabs .nav-link {
        padding: 0px 0px 10px 0px;
        border-radius: 0;
        margin-bottom: 0;
        border: 0;
        color: rgba(0, 0, 0, 0.7);
        font-size: var(--fz-20);
        font-weight: 700;
        position: relative;
        text-transform: uppercase;
        background: transparent;
    }

        .nav-tabs .nav-link:before {
            content: '';
            position: absolute;
            left: 0px;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--color-2);
            transition: var(--d-transition);
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-link:hover {
            color: var(--color-2);
            background: transparent;
        }

            .nav-tabs .nav-link.active:before {
                width: 100%;
            }

    .nav-tabs.style-2 li a {
        background: #6D6D6D;
        border-radius: 10px;
        padding: 0.6rem 1.5rem;
        color: #fff;
    }

    .nav-tabs.style-2 .nav-item {
        border-bottom: 0;
    }

    .nav-tabs.style-2 .nav-link:hover,
    .nav-tabs.style-2 .nav-link.active {
        background: var(--color-1);
        color: #fff;
    }

    .nav-tabs.style-2 .nav-link:before {
        display: none;
    }



.item-thumb.animation {
    overflow: hidden;
    position: relative;
    display: block;
}

    .item-thumb.animation img {
        transition: var(--d-transition);
    }

    .item-thumb.animation:hover img,
    .item:hover .item-thumb.animation img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.item-thumb.fit-ratio {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc(100% * 430 / 645);
}

    .item-thumb.fit-ratio img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.section-title {
    font-weight: 700;
    font-size: var(--fz-50);
    text-transform: uppercase;
    margin-bottom: 1em;
    color: rgba(0, 0, 0, 0.7);
}

.section-title-xs {
    font-size: var(--fz-26);
}

.section-parallax .section-title {
    color: #fff;
}

.section-padding-xxl {
    padding: 60px 0;
}

.section-padding {
    padding: 40px 0;
}

.section-padding-sm {
    padding: 20px 0;
}

.color-1 {
    color: var(--color-1);
}

.color-2 {
    color: var(--color-2);
}

.color-3 {
    color: #CD2323;
}

.color-gray {
    color: #6D6D6D;
}

.color-white {
    color: #fff;
}

.gray-bg {
    background: rgba(69, 108, 111, 0.1);
}

.section-parallax {
    background: rgba(0, 0, 0, 0.5);
}

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

.ellips {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


#header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 22;
    transition: var(--d-transition);
    padding: 0px var(--d-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

    #header .navbar {
        padding-left: 0px;
        padding-right: 0px;
        padding: 10px 0px;
    }

    #header .navbar-brand {
        margin: 0px 0;
        transition-duration: 0.3s;
        width: 84px;
        min-width: 84px;
        height: auto;
        padding: 0px;
        position: relative;
    }

@media (min-width:1200px) {
    #header .navbar-brand {
        width: 5.989583333333333vw;
        max-width: 115px;
    }

    .section-padding-xxl {
        padding: 6.25vw 0;
    }

    .section-padding {
        padding: 4.6875vw 0;
    }

    .section-padding-sm {
        padding: 2.083333333333333vw 0;
    }
}


.header-right {
    display: flex;
}

    .header-right ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

        .header-right ul li {
            display: inline-flex;
            margin: 0px 20px;
            position: relative;
            align-items: center;
            min-height: 50px;
        }

            .header-right ul li a {
                color: #fff;
                text-transform: uppercase;
                font-size: var(--fz-16);
                font-weight: 600;
            }

                .header-right ul li a i {
                    font-size: 1.2rem;
                }

            .header-right ul li.active a,
            .header-right ul li:hover a {
                color: var(--color-2);
            }

            .header-right ul li ul {
                position: absolute;
                top: 120%;
                white-space: nowrap;
                min-width: 290px;
                -webkit-transition: all 0.25s ease;
                -moz-transition: all 0.25s ease;
                transition: all 0.25s ease;
                opacity: 0;
                filter: alpha(opacity=0);
                display: block;
                visibility: hidden;
                background: #fff;
                box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);
                z-index: 100;
                padding: 20px 25px;
                border-radius: 0;
                flex-direction: column;
            }

                .header-right ul li ul li {
                    display: block;
                    margin: 20px 0px;
                    min-height: 20px;
                }

            .header-right ul li:hover ul {
                opacity: 1;
                filter: alpha(opacity=100);
                visibility: visible;
                top: 100%;
            }

.header-right-btn {
    display: flex;
}

    .header-right-btn .btn {
        display: flex;
    }

        .header-right-btn .btn img,
        .header-right-btn .btn svg,
        .header-right-btn .btn i {
            min-width: 20px;
            margin-right: 0.5rem;
        }

        .header-right-btn .btn.hotline img,
        .header-right-btn .btn.hotline svg
        .header-right-btn .btn.hotline i {
            min-width: 30px;
        }

        .header-right-btn .btn.hotline i {
            font-size: 1.6rem;
        }

        .header-right-btn .btn svg path {
            stroke: currentColor;
        }

        .header-right-btn .btn.btn-curved {
            border-radius: 22px 0px;
            padding: 5px;
            background: rgba(255, 255, 255, 0.3);
            font-weight: 600;
            font-size: var(--fz-16);
            margin-right: 5px;
        }

        .header-right-btn .btn .text {
            white-space: nowrap;
        }

        .header-right-btn .btn.btn-curved span:not(.text) {
            display: flex;
            border-radius: 20px 0px;
            background: var(--color-1);
            padding: 5px 15px;
            align-items: center;
            transition: var(--d-transition);
        }

        .header-right-btn .btn.btn-curved.btn-promotion span:not(.text) {
            background: var(--color-2);
        }

        .header-right-btn .btn.btn-curved:hover span:not(.text) {
            background: var(--color-2);
        }

        .header-right-btn .btn.btn-curved.btn-promotion:hover span:not(.text) {
            background: var(--color-1);
        }

        .header-right-btn .btn.hotline {
            margin-right: 35px;
            color: var(--color-2);
            font-size: var(--fz-20);
            font-weight: 700;
            align-items: center;
        }

#header.sticky {
    background: #fff;
}

    #header.sticky .header-right ul li a {
        color: #000;
    }

        #header.sticky .header-right ul li a:hover {
            color: var(--color-1);
        }

    #header.sticky .header-right-btn .btn.btn-curved {
        background: rgba(0, 0, 0, 0.1);
    }



.home-slide {
    height: calc(var(--vh, 1vh) * 100 );
}

    .home-slide .swiper-slide:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
        ;
    }

    .home-slide .slide-content {
        position: absolute;
        left: 50%;
        top: 60%;
        transform: translate(-50%,-50%);
        text-align: center;
        text-transform: uppercase;
        color: #fff;
    }

        .home-slide .slide-content .section-title {
            margin: 0 0px 0.3em;
            color: #fff;
        }

.section-home-slide .searchbox {
    position: absolute;
    bottom: 2rem;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

    .section-home-slide .searchbox form {
        display: flex;
        background: rgba(217, 217, 217, 0.25);
        border: 1px solid #D09B3E;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        padding: 15px 20px;
    }

    .section-home-slide .searchbox .form-group {
        margin: 0px 5px;
    }

.form-control-search,
.form-control-search:focus {
    background: #fff url('../images/icon-search.svg') no-repeat center left 1rem;
    background-size: auto 35%;
    padding-left: 3rem;
}

.section-home-slide .searchbox .btn {
    white-space: nowrap;
    border-radius: 10px;
    height: 3rem;
}

.section-home-slide .searchbox .dropdown .btn {
    background: #fff;
    color: #000;
    padding: 0.4rem 1rem;
}

    .section-home-slide .searchbox .dropdown .btn i {
        margin-right: 5px;
    }

.item-product {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    position: relative;
    transition-duration: 0s;
    display: flex;
    flex-direction: column;
}

    .item-product:before {
        content: '';
        position: absolute;
        left: -25px;
        top: 0px;
        width: 1rem;
        height: 1rem;
        background: url('../images/bt-product-item.png') no-repeat left top;
        background-size: contain;
    }

    .item-product .item-thumb {
        border-radius: 10px 10px 0px 0px;
        overflow: hidden;
        padding-top: calc(100% * 350 / 420);
    }

    .item-product .item-content {
        padding: 1rem 1.5rem;
        border-radius: 0px 0px 10px 10px;
        overflow: hidden;
        transition: var(--d-transition);
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

        .item-product .item-content h3 {
            margin-left: 0;
            color: #28626c
        }

        .item-product .item-content .address,
        .item-product .item-content .project-name {
            margin-bottom: 10px;
            display: flex;
        }

        .item-product .item-content .project-name {
            font-weight: 700;
            font-size: var(--fz-18);
        }

            .item-product .item-content .address i,
            .item-product .item-content .project-name i {
                min-width: 1.6rem;
                color: #D09B3E;
                font-size: 1rem;
            }

        .item-product .item-content .address,
        .item-product .product-direction {
            color: #8f8f8f;
        }

    .item-product .item-bottom {
        display: flex;
        margin-top: auto;
        padding: 10px 0px 0px;
    }

        .item-product .item-bottom .product-price {
            color: #c38d12;
            font-weight: 700;
            font-size: var(--fz-26)
        }

        .item-product .item-bottom .product-attribute {
            margin-left: auto;
            display: flex;
            align-items: center;
        }

        .item-product .item-bottom .attr,
        .item-product .attr {
            display: flex;
            margin-left: 15px;
            align-items: center;
        }

            .item-product .attr i {
                margin-right: 5px;
                color: #8f8f8f;
            }

        .item-product .item-bottom .product-size {
            position: relative;
        }

        .item-product .item-bottom .icon-size {
            width: 18px;
            min-height: 18px;
            top: 0px;
            background: url('../images/icon-size.svg') no-repeat center left;
            background-size: contain;
        }

    .item-product .item-stick .btn-label {
        position: absolute;
        left: 0;
        top: 0;
        background: linear-gradient(270deg, #D09B3E 0%, #F3D274 47.4%, #D09B3E 100%);
        box-shadow: 0px 2px 4px rgba(145, 145, 145, 0.25);
        border-radius: 0px 20px;
        color: #000000;
        font-weight: 600;
    }

    .item-product .item-stick .btn-wishlist {
        position: absolute;
        right: 0rem;
        top: 0rem;
        background: transparent;
        border: 0;
        font-size: 1.5rem;
        line-height: 0.5rem;
    }

    .item-product:hover h3 {
        color: #fff;
    }

    .item-product:hover .item-content {
        background: var(--color-1);
        color: #fff
    }

        .item-product:hover .item-content .product-direction,
        .item-product:hover .item-content .address,
        .item-product:hover .attr i {
            color: #fff;
        }

    .item-product:hover .item-bottom .product-size .icon-size {
        background-image: url('../images/icon-size-white.svg');
    }

.product-slide.swiper {
    padding: 2rem 0px;
    margin-left: -25px;
    margin-right: -25px;
}

    .product-slide.swiper .swiper-wrapper .swiper-slide {
        padding: 0px 25px;
        height: auto;
    }

    .product-slide.swiper .item-product,
    .product-list .item-product {
        height: 100%;
    }

.section-home-product .tab-pane {
    position: relative;
}

.section-home-product .slide-control {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    display: flex;
    transform: translateY(-100%);
}

    .section-home-product .slide-control .swiper-button-prev,
    .section-home-product .slide-control .swiper-button-next {
        position: static;
    }



.project-slide.swiper {
    padding: 2rem 0px;
    margin-left: -25px;
    margin-right: -25px;
}

    .project-slide.swiper .swiper-wrapper .swiper-slide {
        padding: 5px 25px;
        height: auto;
    }

    .project-slide.swiper .item-product {
        height: 100%;
    }

.section-home-project .tab-pane {
    position: relative;
}

.section-home-project .slide-control {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
    display: flex;
    transform: translateY(-100%);
}

    .section-home-project .slide-control .swiper-button-prev,
    .section-home-project .slide-control .swiper-button-next {
        position: static;
    }

.item-project {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .item-project .item-thumb {
        padding-top: calc(100% * 620 / 420);
        border-radius: 10px;
    }

    .item-project .item-content {
        padding: 1rem 1.4rem;
        flex-grow: 1;
    }

    .item-project h3 {
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .item-project .btn-detail {
        position: absolute;
        right: -15px;
        bottom: -15px;
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 10px;
    }

        .item-project .btn-detail i {
            margin-top: 1.5rem;
            font-size: 1.5rem;
        }

    .item-project:hover {
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    }

        .item-project:hover .item-thumb {
            border-radius: 0px 0px 10px 10px;
        }

        .item-project:hover .item-content {
            background: #fff;
            color: #000;
            border-radius: 10px 10px 0px 0px;
            transition: var(--d-transition);
        }

        .item-project:hover .btn-detail {
        }

.form-newsletter form {
    display: flex;
    justify-content: center;
}

    .form-newsletter form .form-group {
        margin: 0px 10px;
    }

    .form-newsletter form .btn {
        margin: 0;
        height: 3rem;
    }

.section-home-news {
}

    .section-home-news .swiper-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }

    .section-home-news .swiper-slide {
        padding: 0px 10px;
    }

.item-post {
    padding-top: calc(100% * 710 / 665);
    position: relative;
    display: block;
    border-radius: 10px;
}

    .item-post h3 {
        font-size: var(--fz-26);
    }

    .item-post .slide-content {
        position: absolute;
        width: 65%;
        top: 0px;
        left: 0px;
        padding: 4rem 1.5rem 2rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px 0px 0px 0px;
    }

    .item-post .arrow {
        width: calc( 2 * var(--iz-1));
        height: calc( 2 * var(--iz-1));
        align-items: center;
        display: flex;
        justify-content: center;
        background: var(--color-1);
        font-size: 2rem;
        color: #fff;
        position: absolute;
        right: 0;
        bottom: 0;
        transition: var(--d-transition);
        transform: translate(50%, 50%);
    }

    .item-post .datetime {
        margin-bottom: 0.8rem;
    }

        .item-post .datetime i {
            color: #D09B3E;
            font-size: 1rem;
            margin-right: 5px;
        }

    .item-post:hover {
        color: #000;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    }

        .item-post:hover .arrow {
            background: var(--color-2);
        }

@media (min-width:1200px) {
    .swiper-wrapper .swiper-slide:nth-of-type(odd) .item-post .slide-content {
        top: auto;
        left: auto;
        right: 0px;
        bottom: 0px;
    }

    .swiper-wrapper .swiper-slide:nth-of-type(odd) .item-post .arrow {
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}

.section-home-news .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: calc( 2 * var(--iz-1));
}

    .section-home-news .swiper-pagination .swiper-pagination-bullet {
        width: var(--iz-1);
        height: var(--iz-1);
        border-radius: 50%;
        border: 1px solid rgba(145, 145, 145, 0.15);
        color: #000;
        margin: 0px 0.5rem;
        background: transparent;
        font-size: var(--fz-20);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
    }

        .section-home-news .swiper-pagination .swiper-pagination-bullet:hover,
        .section-home-news .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            border-color: var(--color-2);
            background: transparent;
        }

.section-home-events .event-slide-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

    .section-home-events .event-slide-wrapper:before,
    .section-home-events .event-slide-wrapper:after {
        content: '';
        position: absolute;
        background: var(--color-2);
    }

    .section-home-events .event-slide-wrapper:before {
        bottom: -1.4rem;
        left: -1.4rem;
        width: 45px;
        height: 45px;
    }

    .section-home-events .event-slide-wrapper:after {
        right: -1.4rem;
        top: -1.4rem;
        width: 90px;
        height: 90px;
    }

.section-home-events .slide-control {
    position: absolute;
    right: 0px;
    top: -40px;
    z-index: 2;
    display: flex;
    transform: translateY(-100%);
}

    .section-home-events .slide-control .swiper-button-prev,
    .section-home-events .slide-control .swiper-button-next {
        position: static;
    }

@media (min-width:1200px) {
    .section-home-events .event-slide-wrapper:before {
        width: 5.520833333333333vw;
        height: 5.520833333333333vw;
    }

    .section-home-events .event-slide-wrapper:after {
        width: 11.30208333333333vw;
        height: 11.30208333333333vw;
    }
}

.section-home-events .swiper-wrapper {
}

.section-home-events .swiper-slide {
}

.item-event .item-thumb {
    padding-top: calc(100% * 354 / 652);
    position: relative;
    display: block;
    border-radius: 10px;
}

.section-home-why .items .item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: var(--fz-20);
}

    .section-home-why .items .item span {
        border: solid 1px var(--color-2);
        border-radius: 0px 15px;
        width: 45px;
        height: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        font-size: var(--fz-26);
        margin-right: 1.5rem;
        flex: 0 0 45px;
    }

.footer-top {
    background: #09656C;
    color: #fff;
}

    .footer-top .footer-menu {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-top .title {
        color: #fff;
        text-transform: uppercase;
    }

    .footer-top .item .title {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-top .item ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-top .item .title,
    .footer-top .item ul {
        padding-right: 1rem;
    }

        .footer-top .item ul li a {
            font-size: var(--fz-18);
            color: #fff;
        }

    .footer-top .footer-contact ul {
        list-style: none;
        padding: 0;
    }

        .footer-top .footer-contact ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

            .footer-top .footer-contact ul li i {
                min-width: 36px;
                color: var(--color-2);
                font-size: 1.3rem;
            }

            .footer-top .footer-contact ul li a {
                color: #fff;
                font-size: var(--fz-20);
            }

                .footer-top .footer-contact ul li a strong {
                    color: var(--color-2);
                    display: block;
                }

    .footer-top .social {
        display: flex;
        margin-left: -10px;
    }

        .footer-top .social a {
            width: var(--iz-1);
            height: var(--iz-1);
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border: solid 1px #fff;
            margin: 0px 10px;
            color: #fff;
            font-size: 1.2rem;
        }

            .footer-top .social a:hover {
                border-color: var(--color-2);
                background: var(--color-2);
            }

.footer-bottom {
    background: url('../images/bg-bottom.png') no-repeat right bottom;
    background-size: 100% auto;
}

    .footer-bottom .address-list ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

        .footer-bottom .address-list ul li {
            width: 50%;
            flex: 0 0 50%;
            padding-right: 1rem;
            display: inline-flex;
            color: #000;
        }

            .footer-bottom .address-list ul li:before {
                content: "\f3c5";
                font-family: "Font Awesome 5 Pro";
                font-weight: 300;
                margin-right: 0.5rem;
                color: var(--color-2);
            }

    .footer-bottom .section-title {
        color: var(--color-2);
    }

/*section .bg,
.section .bg{position: absolute; width: 237px; height: 377px;}
.bg.bg1{}
.bg.bg2{width: 443px; height: 706px;}
.bg.bg3{width: 167px; height: 267px;}*/

section,
.section {
    position: relative;
    overflow: hidden;
}

    section.section-top {
        overflow: visible;
        z-index: 4;
    }

    section .bg,
    .section .bg {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 12.34375vw;
        height: 19.63541666666667vw;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left top;
    }

        section .bg.right-top {
            left: auto;
            right: 0;
            background-position: right top;
        }

        section .bg.right-bottom {
            left: auto;
            top: auto;
            right: 0;
            bottom: 0;
            background-position: right bottom;
        }

        section .bg.left-bottom {
            top: auto;
            bottom: 0;
            background-position: left bottom;
        }

.section-banner-slide,
.section-padding-top-sm {
    padding-top: 86px;
}

.section-padding-top {
    padding-top: 120px
}

.banner-slide .item {
    height: 0px;
    padding-top: calc(100% * 462/643);
}

.svg path {
    fill: currentColor;
}

.svg.stroke path {
    fill: none;
    stroke: currentColor;
}

.project-nav-wrapper {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
}

.project-nav {
    display: flex;
}

    .project-nav .item {
        background: #F5F5F5;
        display: flex;
        flex-direction: column;
        color: rgba(0, 0, 0, 0.7);
        text-transform: uppercase;
        justify-content: center;
        align-items: center;
        width: calc(100% / 9);
        padding: 1rem 0.5rem;
        border-right: solid 1px rgba(0, 0, 0, 0.15);
    }

        .project-nav .item:first-child {
            background: #fff
        }

        .project-nav .item i {
            font-size: 1.5rem;
            min-height: 30px;
            margin-bottom: 10px;
            min-width: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .project-nav .item i .svg {
                max-height: 24px;
                width: auto;
            }

        .project-nav .item:hover {
            background: var(--color-1);
            color: #fff;
        }

        .project-nav .item:first-child:hover {
            background: #fff
        }

        .project-nav .item .project-logo {
            max-height: 90px;
        }



@media (min-width:1200px) {
    .project-nav .item .project-logo {
        position: absolute;
        max-width: 100%;
        max-height: calc(100% - 1.2rem);
    }
}

@media (min-width:992px) {
    body.sticky-nav .section-project-detail .section-content-wrapper {
        padding-top: 120px;
    }

    body.sticky-nav .project-nav-wrapper {
        position: fixed;
        top: 75px;
        left: 0px;
        width: 100%;
        z-index: 2;
        background: #fff;
    }
}

@media (min-width:1601px) {
    body.sticky-nav .project-nav-wrapper {
        top: 85px;
    }
}


.project-detail .project-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.project-detail .btn-viewmore {
    text-decoration-line: underline;
    color: rgba(0, 0, 0, 0.7);
}

.project-detail .project-section.heading {
    padding-bottom: 2rem;
}

.project-detail .project-section h3.title {
    font-size: var(--fz-26);
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

    .project-detail .project-section h3.title i {
        width: 30px;
        margin-right: 1.5rem;
        color: var(--color-2);
    }

.project-detail .project-info .section-content ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -1rem;
}

    .project-detail .project-info .section-content ul li,
    .project-detail .utilitie-list ul li {
        color: #6D6D6D;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
        display: flex;
        flex: 0 0 calc(50% - 2rem);
        padding: 0px 0px 1rem;
        margin: 0px 1rem 1rem;
    }

        .project-detail .project-info .section-content ul li strong,
        .project-detail .utilitie-list ul li strong {
            margin-left: auto;
            color: #000;
            padding-left: 10px;
        }

.project-detail .slide-with-thumb {
    margin-bottom: 3rem;
}

    .project-detail .slide-with-thumb .swiper-thumb-wrappper {
        padding: 1rem 150px 1rem;
        position: relative;
    }

    .project-detail .slide-with-thumb .swiper-thumb {
    }

    .project-detail .slide-with-thumb .swiper-button-next,
    .project-detail .slide-with-thumb .swiper-button-prev {
        transform: translateY(-50%);
        left: calc((150px - var(--iz-1)) / 2 );
    }

    .project-detail .slide-with-thumb .swiper-button-next {
        left: auto;
        right: calc((150px - var(--iz-1)) / 2 );
    }

    .project-detail .slide-with-thumb .swiper-slide .item-thumb {
        padding-top: calc(100% * 423 / 751);
    }

    .project-detail .slide-with-thumb.style-2 .swiper-slide .item-thumb {
        padding-top: calc(100% * 740 / 1113);
    }

    .project-detail .slide-with-thumb img {
        border-radius: 10px;
    }

    .project-detail .slide-with-thumb .swiper-thumb img {
        border-radius: 5px;
    }

.project-detail .utilitie-list .item {
    margin-bottom: 2rem;
}

.project-detail .utilitie-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .project-detail .utilitie-list ul li {
        flex: 1;
        margin: 0px 0px 1rem;
    }

.project-detail .utilitie-list .title {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    font-size: var(--fz-26)
}

    .project-detail .utilitie-list .title i {
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(9, 101, 108, 0.15);
        border-radius: 4px;
        color: #09656C;
        margin-right: 1.3rem;
        padding: 0.7rem;
        display: inline-flex;
    }

        .project-detail .utilitie-list .title i svg path {
            fill: currentColor;
        }

.project-detail .project-masterplan .nav-tabs {
    margin: 2rem 0;
}

.project-masterplan .slide-control {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

    .project-masterplan .slide-control .swiper-button-prev,
    .project-masterplan .slide-control .swiper-button-next,
    .project-masterplan .slide-control .swiper-pagination {
        position: static;
        border: 0;
    }

    .project-masterplan .slide-control .swiper-pagination {
        margin: 0px 15px;
        width: auto;
    }

    .project-masterplan .slide-control .swiper-pagination-bullet {
        background: #D9D9D9;
        opacity: 1;
    }

    .project-masterplan .slide-control .swiper-pagination-bullet-active {
        background: var(--color-1)
    }

.project-masterplan .item-masterplan img {
    width: 100%;
    height: auto;
}

.project-product {
    position: relative;
}

    .project-product .slide-control {
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: 2;
        display: flex;
    }

        .project-product .slide-control .swiper-button-prev,
        .project-product .slide-control .swiper-button-next {
            position: static;
        }

.project-document .document {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
}

    .project-document .document h4 {
        text-transform: uppercase;
        margin-bottom: 1.5rem;
    }

    .project-document .document .thumb {
        margin-bottom: 3rem;
    }

        .project-document .document .thumb img {
            max-width: 36%;
        }

.project-document .box {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
}

.project-document .document ul li {
    margin-bottom: 1.2rem;
}

.project-document .box-calc .form-group {
    margin-bottom: 1.4rem;
}

.project-document .box-calc .form-label,
.project-document .box-calc .form-check-label {
    font-weight: 600;
    color: #000;
    font-size: var(--fz-20)
}


.project-document .input-group-range,
.project-document .input-group-select {
    display: flex;
    align-items: center;
}

    .project-document .input-group-range .custom-range,
    .project-document .input-group-select .form-select {
        flex-grow: 1;
        width: auto;
    }

    .project-document .input-group-range .input-group,
    .project-document .input-group-select .input-group {
        width: 100px;
        border: 1px solid #D9D9D9;
        margin-left: 50px;
        flex: 0 0 100px;
    }

    .project-document .input-group-select .form-select {
        height: 2.2rem;
        border-radius: 0;
    }

.project-document .input-group .form-control {
    padding: 5px 10px;
    height: 2.2rem;
}

.project-document .input-group .input-group-text {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 5px 10px 5px 0px;
    color: #6D6D6D;
}

.input-group-range .rangeslider {
    height: 5px;
    background: #D9D9D9;
    border-radius: 20px;
}

.input-group-range .rangeslider__fill {
    background: var(--color-1);
    border-radius: 20px;
}

.input-group-range .rangeslider__handle {
    background: #fff;
    border: solid 2px var(--color-1);
    width: 20px;
    height: 20px;
    box-shadow: none;
}

    .input-group-range .rangeslider__handle:after {
        display: none;
    }

.input-group-range .rangeslider .rangeslider__handle:hover,
.input-group-range .rangeslider.rangeslider--active .rangeslider__handle {
    transform: scale(1.2);
    background: #fff;
    border-color: var(--color-2);
}

.project-document .box.box-result {
    background: #F5F5F5;
    font-size: var(--fz-20);
    font-weight: 600;
}

    .project-document .box.box-result .title {
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        padding-bottom: 1rem;
        color: #000;
        font-weight: 700;
        font-size: var(--fz-26);
        text-transform: uppercase;
    }

    .project-document .box.box-result .chart-container {
        width: 80%;
        position: relative;
    }

        .project-document .box.box-result .chart-container #chart {
        }

    .project-document .box.box-result .item {
        margin-bottom: 1.5rem;
    }

    .project-document .box.box-result .result-total {
        margin: 1.9rem 0px;
        padding: 1rem 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    }

        .project-document .box.box-result .result-total strong {
            font-size: var(--fz-42);
        }

.project-release .item-project {
    box-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
    border-radius: 10px;
}

    .project-release .item-project .item-thumb {
        padding-top: calc(100% * 350 / 521);
    }

    .project-release .item-project .item-content {
        background: #fff;
        border-radius: 0 0 10px 10px
    }

    .project-release .item-project:hover .item-content {
        background: var(--color-1);
        color: #fff
    }

.section-sticky-sidebar {
    margin-bottom: 3rem;
}

.sidebar .sidebar__inner {
    margin-left: 4rem;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 2rem 1.5rem;
}

    .sidebar .sidebar__inner .address {
        display: flex;
    }

        .sidebar .sidebar__inner .address i {
            margin-right: 5px;
            margin-top: 3px;
        }

.project-sidebar .attribute {
    padding: 1.2rem 0px;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

    .project-sidebar .attribute ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        .project-sidebar .attribute ul li label {
            min-width: 80px;
            ;
        }

.project-sidebar .btn-wrapper .btn {
    margin-bottom: 15px;
    white-space: nowrap;
}

.project-sidebar .title {
    font-size: var(--fz-30);
}

.project-sidebar .price strong {
    display: block;
    color: #CD2323;
    margin-top: 5px;
}

.project-sidebar .contact a {
    flex: 1;
    padding: 0px 10px;
}

    .project-sidebar .contact a:first-child {
        border-right: solid 1px rgba(0, 0, 0, 0.15);
        text-align: right;
    }



.product-detail .slide-with-thumb.style-2 .swiper-thumb-wrappper {
    padding: 1rem 0px;
}

.product-detail .slide-with-thumb.style-2 .swiper-button-next {
    right: 1rem;
}

.product-detail .slide-with-thumb.style-2 .swiper-button-prev {
    left: 1rem;
}

.slide-with-thumb.style-2 .slide-control .swiper-button-next:after,
.slide-with-thumb.style-2 .slide-control .swiper-button-prev:after {
    color: #fff;
}

.slide-with-thumb.style-2 .slide-control .swiper-pagination-bullet {
    background: #D9D9D9;
    opacity: 1;
}

.slide-with-thumb.style-2 .slide-control .swiper-pagination-bullet-active {
    background: var(--color-1)
}



.product-detail .product-info {
}

    .product-detail .product-info .section-content {
        margin-top: -1rem;
    }

    .product-detail .product-info .item {
        display: flex;
        align-items: center;
        padding-right: 10px;
        margin: 1rem 0px 2rem;
        height: 100%;
        border-bottom: solid 1px rgba(0, 0, 0, 0.15);
    }

        .product-detail .product-info .item .icon {
            flex: 0 0 40px;
            margin-right: 10px;
            color: var(--color-1);
        }

            .product-detail .product-info .item .icon svg {
                max-height: 40px;
            }

        .product-detail .product-info .item .content {
        }

            .product-detail .product-info .item .content strong {
                display: block;
                color: var(--color-1);
                font-size: var(--fz-30);
            }

.product-detail .product-finance .btn:not(:last-child) {
    margin-right: 1rem;
}

.product-sidebar .product-attribute {
    margin-bottom: 1rem;
}


    .product-sidebar .product-attribute .attr {
        display: flex;
        align-items: center;
    }

        .product-sidebar .product-attribute .attr i {
            margin-right: 5px;
        }

        .product-sidebar .product-attribute .attr:first-child {
        }

    .product-sidebar .product-attribute .product-size {
        position: relative;
    }

    .product-sidebar .product-attribute .icon-size {
        width: 18px;
        min-height: 18px;
        top: 0px;
        background: url('../images/icon-size.svg') no-repeat center left;
        background-size: contain;
    }

.product-sidebar .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

    .product-sidebar .price strong {
        display: inline;
        color: inherit;
    }

.product-sidebar h3.title {
    font-size: var(--fz-26)
}

.product-sidebar .attribute {
    border-bottom: 0;
}


.product-sidebar .icon-list {
    display: flex;
    margin-left: -10px;
}

    .product-sidebar .icon-list a {
        width: var(--iz-1);
        height: var(--iz-1);
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: solid 1px var(--color-1);
        margin: 0px 10px;
        color: var(--color-1);
        font-size: 1.2rem;
    }

        .product-sidebar .icon-list a i {
            max-height: 50%;
            display: flex;
            width: 60%;
            justify-content: center;
        }


        .product-sidebar .icon-list a:hover {
            border-color: var(--color-2);
            background: var(--color-2);
            color: #fff;
        }


.section-static-page-nav {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

    .section-static-page-nav .nav-tabs .nav-item {
        border-bottom: 0;
    }

        .section-static-page-nav .nav-tabs .nav-item .nav-link {
            text-transform: none;
            font-weight: 600;
        }

            .section-static-page-nav .nav-tabs .nav-item .nav-link.active {
                color: var(--color-1)
            }

    .section-static-page-nav .nav-tabs .nav-link:before {
        bottom: 0;
        height: 4px;
        background: var(--color-1);
    }

.section-static-page > .heading {
    padding: 4rem 1rem;
    background: rgba(69, 108, 111, 0.1);
    text-align: center;
}

.item-new {
    font-size: var(--fz-18);
    color: rgba(0, 0, 0, 0.7);
}

    .item-new .title {
        font-size: var(--fz-26);
        color: rgba(0, 0, 0, 0.7);
        line-height: 1.6;
    }

        .item-new .title:before {
            content: '';
            display: inline-block;
            width: 46px;
            height: 22px;
            background: url('../images/bg-new-title.png') no-repeat center;
            background-size: contain;
            margin-right: 1rem;
            vertical-align: middle;
        }

    .item-new .datetime {
        margin-bottom: 0.8rem;
    }

        .item-new .datetime i {
            color: #D09B3E;
            font-size: 1rem;
            margin-right: 5px;
        }

    .item-new .item-body {
        padding: 1rem 0px 2rem;
    }

    .item-new .item-thumb.fit-ratio {
        padding-top: calc(100% * 330 / 500);
    }

@media (min-width:992px) {

    .item-new .item-body {
        padding: 2rem 0px 2rem;
    }

    .news-featured-group .news-list .item {
        position: relative;
        margin-bottom: 1rem;
        display: block;
        color: #fff;
    }

    .news-featured-group .item-thumb.fit-ratio {
        padding-top: calc(100% * 330 / 632);
    }

    .news-featured-group .news-list .item-new .datetime {
        margin-bottom: 0;
    }

    .news-featured-group .news-list .item .title {
        color: #fff;
        font-size: var(--fz-20);
        background: transparent;
        text-transform: uppercase;
    }

        .news-featured-group .news-list .item .title:before {
            display: none;
        }

    .news-featured-group .news-list .item .item-body {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.25);
    }

    .news-featured-group .news-list .item .description {
        display: none;
    }

    .news-other-group .item-new .title {
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .news-other-group .item-new .description {
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination .page-item .page-link {
    width: var(--iz-1);
    height: var(--iz-1);
    border-radius: 50%;
    border: 1px solid rgba(145, 145, 145, 0.15);
    color: #000;
    margin: 0px 0.5rem;
    background: transparent;
    font-size: var(--fz-20);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
    border-color: var(--color-2);
    background: transparent;
}

.item-magazine {
    margin-bottom: 2rem;
    display: block;
}

    .item-magazine .title {
        font-size: var(--fz-20);
        color: rgba(0, 0, 0, 0.7);
        padding: 1rem 0rem 0rem;
    }

    .item-magazine .item-thumb.fit-ratio {
        padding-top: calc(100% * 490 / 350);
    }


.item-promotion {
    margin-bottom: 3rem;
}

    .item-promotion .item-body {
        padding: 1.5rem 1rem;
        background: var(--color-1);
        color: #fff;
    }

        .item-promotion .item-body .title {
            font-size: var(--fz-26);
            text-transform: uppercase;
            line-height: 1.6;
        }

            .item-promotion .item-body .title:before {
                content: '';
                display: inline-block;
                width: 46px;
                height: 22px;
                background: url('../images/bg-promotion-title.png') no-repeat center;
                background-size: contain;
                margin-right: 1rem;
                vertical-align: middle;
            }

    .item-promotion .datetime {
        margin-bottom: 0.8rem;
    }

        .item-promotion .datetime i {
            color: #D09B3E;
            font-size: 1rem;
            margin-right: 5px;
        }

    .item-promotion .item-thumb.fit-ratio {
        padding-top: calc(100% * 705 / 1190);
    }


@media (min-width:992px) {
    .item-promotion .item-body {
        padding: var(--d-padding) calc(var(--d-padding) / 2 );
    }

    .item-promotion .item-body {
        margin-left: calc(var(--d-padding) * -1.6 );
        position: relative;
        border-radius: 10px;
        z-index: 2;
    }

    .item-promotion .item-thumb {
        border-radius: 10px;
    }

    .promotion-list .item-promotion:nth-child(odd) .item-body {
        margin-right: calc(var(--d-padding) * -1.6 );
        margin-left: 0;
    }

    .promotion-list .item-promotion:nth-child(odd) .col-lg-9 {
        order: 2;
    }
}


.section-release {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 2rem;
    margin-top: 2rem;
}

    .section-release h3.title {
        font-size: var(--fz-26);
    }

.section-page-contact {
}

    .section-page-contact .contact-form .input-group {
        border: 1px solid #D9D9D9;
        border-radius: 10px;
    }

        .section-page-contact .contact-form .input-group .input-group-text {
            border: 0px;
            background: transparent;
        }

    .section-page-contact .section-content-wrapper {
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        overflow: hidden;
    }

    .section-page-contact .contact-info-wrapper {
        height: 100%;
        background: var(--color-1);
        color: #fff;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-page-contact .contact-form {
        padding: 3rem;
    }

    .section-page-contact .contact-info-wrapper h2.title {
        font-size: var(--fz-26);
        text-transform: uppercase;
        line-height: 1.6;
        margin: 3rem 0px 2.5rem;
    }

        .section-page-contact .contact-info-wrapper h2.title:before {
            content: '';
            display: inline-block;
            width: 46px;
            height: 22px;
            background: url('../images/bg-promotion-title.png') no-repeat center;
            background-size: contain;
            margin-right: 1rem;
            vertical-align: middle;
        }

.contact-info {
}

.section-page-contact .contact-info {
    list-style: none;
    padding: 0;
}

    .section-page-contact .contact-info li {
        display: flex;
        align-items: center;
        margin: 1rem 0rem;
    }

        .section-page-contact .contact-info li i {
            min-width: 36px;
            color: var(--color-2);
            font-size: 1.3rem;
        }

        .section-page-contact .contact-info li a {
            color: #fff;
            font-size: var(--fz-20);
        }

@media (max-width:991px) {
    .section-page-contact .contact-info-wrapper,
    .section-page-contact .contact-form {
        padding: 2rem 1rem;
    }

        .section-page-contact .contact-info-wrapper h2.title {
            margin: 1.5rem 0px 1.5rem;
            font-size: var(--fz-20);
        }

            .section-page-contact .contact-info-wrapper h2.title:before,
            .item-new .title:before,
            .item-promotion .item-body .title:before {
                width: 36px;
            }
}





.fixed-btn {
    position: fixed;
    right: 2px;
    z-index: 6;
    opacity: 0;
    transition: var(--d-transition);
    transform: translateY(100px);
}

    .fixed-btn.show {
        transform: translateY(0px);
        opacity: 1
    }

    .fixed-btn.center {
        top: 50%;
        transform: translateY(-50%);
    }

    .fixed-btn.top {
        top: 40px;
    }

    .fixed-btn.bottom {
        bottom: 2px;
        right: 2px;
        color: #fff;
        max-width: 30vw;
    }

.fixed-btn {
    display: flex;
    flex-direction: column;
}

    .fixed-btn .svg,
    .fixed-btn svg {
        width: 30px;
        height: auto;
    }

body.menu-open .fixed-btn.bottom {
    z-index: 22;
}

.fixed-btn .hotline svg path {
    fill: #EABF7D;
}

.fixed-social-btn {
    display: flex;
    margin-bottom: 0px;
    flex-direction: column;
}

    .fixed-social-btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        margin-top: 0.8rem;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px 0px;
        background: transparent;
        padding: 5px;
    }

        .fixed-social-btn a .inner {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 21px 0px;
            padding: 3px;
        }

    .fixed-social-btn .btn i {
        width: 46px;
        height: 41px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--color-1);
        border-radius: 18px 0px;
    }

    .fixed-social-btn a.register {
        height: 130px;
        width: 62px;
        background: var(--color-1);
        border-radius: 40px 0px;
        color: #fff;
        font-weight: 600;
    }

        .fixed-social-btn a.register:hover {
            background: var(--color-2);
        }

        .fixed-social-btn a.register span {
            transform: rotate(-90deg);
            white-space: nowrap;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .fixed-social-btn a.register span i {
                transform: rotate(90deg);
                margin-left: 10px;
            }

    .fixed-social-btn a img,
    .fixed-social-btn a svg {
        max-height: 100%;
    }


.bg.bg-left {
    background-image: url('../images/bg-left.png');
}

.bg.bg-right {
    background-image: url('../images/bg-right.png');
}

.bg.bg-left-big {
    width: 23.07291666666667vw;
    height: 36.77083333333333vw;
    background-image: url('../images/bg-left-big.png');
}

.bg.bg-left-color {
    width: 8.697916666666667vw;
    height: 13.90625vw;
    background-image: url('../images/bg-left-color.png');
}

@media (min-width:1200px) {
    section .bg,
    .section .bg {
        width: 12.34375vw;
        height: 19.63541666666667vw;
    }

    .bg.bg-left-big {
        width: 23.07291666666667vw;
        height: 36.77083333333333vw;
    }

    .bg.bg-left-color {
        width: 8.697916666666667vw;
        height: 13.90625vw;
    }

    .container-xxl {
        width: calc(100vw - 2 * var(--d-padding));
        max-width: calc(1920 - 2 * var(--d-padding) );
    }
}


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

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

@media (max-width:1299px) {
    .header-right ul li {
        margin: 0px 15px;
    }

    .header-right-btn .btn.hotline {
        margin-right: 25px;
    }
}

@media (max-width:1199px) {
    .header-right {
        display: none;
    }

    .header-right {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 21;
        background: #fff;
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /*backdrop-filter: blur(20px);*/
        overflow: hidden;
    }

    .header-right {
        transform: translateX(100%);
        transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
        padding-bottom: 0px;
    }

        .header-right ul {
            flex-direction: column;
        }

            .header-right ul li {
                margin: 0.5rem 0px;
            }

                .header-right ul li a {
                    font-size: var(--fz-50);
                    color: #000;
                }

    .header-right-btn {
        margin-top: 2rem;
        justify-content: center;
    }

        .header-right-btn .btn {
            margin: 0px 15px;
        }

            .header-right-btn .btn.hotline {
                margin-right: 15px;
                padding: 0;
            }

    body.menu-open .header-right {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
    }

    #header .navbar-brand,
    #header .navbar-toggler {
        z-index: 24;
    }


        #header .navbar-toggler,
        #header .navbar-toggler:focus {
            border: 0;
            box-shadow: none;
        }

    #header .navbar-toggler-icon {
        background: transparent;
        border: 0;
        position: absolute;
        right: var(--d-padding);
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 26px;
        cursor: pointer;
        /* margin-bottom: 5px; */
        transition: 0.3s ease all;
    }

        #header .navbar-toggler-icon > span {
            display: block;
            width: 100%;
            height: 4px;
            border-radius: 4px;
            background-color: #fff;
            position: absolute;
            transition: 0.3s ease all;
        }

    #header.sticky .navbar-toggler-icon > span {
        background-color: #000;
    }

    #header .navbar-toggler-icon > span:nth-of-type(1) {
        width: 100%;
        top: 0;
        left: 0%;
    }

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

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

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

    body.menu-open #header .navbar-toggler-icon > span {
        height: 3px;
        border-radius: 3px;
        background-color: #000;
    }

        body.menu-open #header .navbar-toggler-icon > span:nth-of-type(1) {
            transform: rotate(45deg) translateX(8px);
            width: 22px;
        }

        body.menu-open #header .navbar-toggler-icon > span:nth-of-type(2) {
            transform: translateX(-8px);
        }

        body.menu-open #header .navbar-toggler-icon > span:nth-of-type(3) {
            transform: rotate(-45deg) translateX(8px);
            width: 22px;
        }

    .item-post .slide-content {
        padding: 2rem 1rem 1rem;
    }

    .item-post .arrow {
        width: calc( var(--iz-1));
        height: calc( var(--iz-1));
    }

    .sidebar .sidebar__inner {
        margin-left: 2rem;
        padding: 1.5rem 1rem;
    }

    .project-detail .project-section {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .header-right ul li {
        flex-direction: column;
    }

        .header-right ul li ul {
            box-shadow: none;
            position: static;
            height: 0px;
        }

            .header-right ul li ul li {
                text-align: center;
            }

        .header-right ul li:hover ul {
            height: auto;
        }

        .header-right ul li ul li a {
            text-transform: none;
            font-size: 1em;
        }
}

@media (max-width:991px) {
    .nav-tabs.style-2 li a {
        font-size: var(--fz-16);
        padding: 0.5rem 1rem;
    }

    .nav-tabs .nav-item {
        padding: 0px 10px;
    }

    .header-right-btn .btn.hotline {
        display: none;
    }

    .footer-menu .item {
        margin-bottom: 2rem;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 2rem;
    }

        .footer-logo img {
            max-width: 30vw;
        }

    .section-home-slide .searchbox form {
        flex-wrap: wrap;
        max-width: calc(100% - 1.5rem);
    }

    .section-home-slide .searchbox .form-group {
        margin: 5px;
        width: calc(50% - 10px );
    }

        .section-home-slide .searchbox .form-group:first-child {
            width: 100%;
        }

    .section-home-slide .searchbox .btn {
        width: 100%;
    }

    .form-newsletter form {
        flex-wrap: wrap;
        max-width: calc(100% - 1.5rem);
    }

        .form-newsletter form .form-group {
            margin: 5px;
            width: calc(50% - 10px );
        }

        .form-newsletter form .btn {
            width: 100%;
            height: 3rem;
        }

    .section-home-product .slide-control,
    .section-home-project .slide-control {
        transform: none;
        top: 15px;
    }

    .product-slide.swiper,
    .project-slide.swiper {
        padding-top: 4rem;
        margin-left: calc(1.5rem * -.5);
        margin-right: calc(1.5rem * -.5);
    }

        .product-slide.swiper .swiper-wrapper .swiper-slide,
        .project-slide.swiper .swiper-wrapper .swiper-slide {
            padding: 0px calc(1.5rem * .5)
        }

    .item-product:before {
        display: none;
    }

    .scrolling-tabs {
        flex-wrap: nowrap;
        overflow: auto;
    }

        .scrolling-tabs li a {
            white-space: nowrap;
        }

    .section-home-why .items .item {
        font-size: var(--fz-18);
    }

        .section-home-why .items .item span {
            font-size: var(--fz-20);
            width: 40px;
            height: 40px;
        }

    .footer-top {
        padding-top: 5rem;
    }

    .section-home-events .slide-control {
        top: -10px;
        left: 0;
        right: auto;
    }

    .section-home-news .swiper-pagination {
        margin-top: 1rem;
    }

    .sidebar .sidebar__inner {
        margin-top: 2rem;
        margin-left: 0;
    }

    .project-document .box {
        margin-top: 1rem;
        height: auto;
    }

    .project-release .item-project {
        margin-bottom: 1rem;
        height: auto;
    }

    .project-product .slide-control {
        top: 30px;
    }

    .project-detail .project-info .section-content ul {
        margin: 0;
    }

        .project-detail .project-info .section-content ul li {
            flex: 0 0 100%;
            margin: 0px 0rem 1rem;
        }

    .project-detail .slide-with-thumb .swiper-thumb-wrappper {
        padding: 1rem calc(var(--iz-1) + 15px ) 1rem;
    }

    .project-detail .slide-with-thumb .swiper-button-next {
        right: 0
    }

    .project-detail .slide-with-thumb .swiper-button-prev {
        left: 0
    }

    .project-nav {
        flex-wrap: wrap;
    }

        .project-nav .item {
            width: 25%;
            border-top: solid 1px rgba(0, 0, 0, 0.15);
        }

            .project-nav .item:first-child {
                width: 100%;
                border: 0;
                padding: 2rem 1rem;
            }

                .project-nav .item:first-child img {
                    max-width: 25vw;
                }

            .project-nav .item:nth-child(2),
            .project-nav .item:nth-child(6) {
                border-left: solid 1px rgba(0, 0, 0, 0.15);
            }

    .project-detail .project-masterplan .nav-tabs {
        justify-content: center;
    }
}
