*, *::before, *::after {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box
}

:root {
    --headerheight: 107px;
    --headerfixed: 62.44px;
    --pink: #dfb157;
    --blue: #04231c;
    --bluelight: #3E52A3;
    --yellow: #F9EA3F;
    --green: #52A448;
    --purple: #913D98;
    --orange: #FF8025;
    --light-pink: #d5c5b8;
    --light-brown: #72522c;
    --brown: #04231c;
    --white: #fff;
    --black: #000;
    --text: #666;
    --textlight: #A3A3A3;
    --primary: #dfb157;
    --secondary: #F4DF8C;
    --gradient: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 54%);
    --gradient2: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 54%);
    --container: 1300px
}

@media(max-width: 675px) {
    :root {
        --headerheight: 71px
    }
}

body::-webkit-scrollbar {
    width: 10px;
    background: var(--black)
}

body::-webkit-scrollbar-track {
    box-shadow: none
}

body::-webkit-scrollbar-thumb {
    background-color: var(--light-brown)
}

body.overflow-hidden {
    overflow: hidden;
    margin-right: 10px
}

@media(max-width: 991px) {
    body.overflow-hidden {
        margin-right: 0
    }
}

body.overflow-hidden header {
    width: calc(100% - 10px)
}

@media(max-width: 991px) {
    body.overflow-hidden header {
        width: 100%
    }
}

body, html {
    font-size: 16px;
    line-height: 1.5;
    font-family: "Poppins",sans-serif;
    font-weight: 400
}

    body.hidden {
        overflow: hidden;
        margin-right: 10px
    }

a[href] {
    text-decoration: none;
    cursor: pointer;
    transition: .5s ease
}

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto
}

@media(max-width: 1300px) {
    .container {
        padding: 0 25px
    }
}

@media(max-width: 767px) {
    .container {
        padding: 0 15px
    }
}

.container-fluid {
    padding: 0 2rem;
    display: block;
    margin: 0 auto
}

@media(max-width: 1152px) {
    .container-fluid {
        padding: 0 1rem
    }
}

@media(max-width: 991px) {
    .container-fluid {
        padding: 0 15px
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: .6px
}

h1, h2, h3 {
    font-family: Luxia
}

h4 {
    font-weight: 600
}

h5, h6 {
    font-weight: 500
}

h1 {
    font-size: 53px;
    line-height: 1.25
}

@media(max-width: 1152px) {
    h1 {
        font-size: 60px
    }
}

@media(max-width: 675px) {
    h1 {
        font-size: 32px
    }
}

h2 {
    font-size: 42px;
    line-height: 1.25
}

h3 {
    font-size: 35px;
    line-height: normal
}

.heading h3, .heading h2 {
    font-size: 36px;
    line-height: 46px
}

@media(max-width: 675px) {
    .heading h3, .heading h2 {
        font-size: 30px;
        line-height: 40px;
        text-align: center
    }
}

.heading.heading2 h3 {
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-size: 28px
}

@media(max-width: 1366px) {
    .heading.heading2 h3 {
        font-size: 24px
    }
}

h4 {
    font-size: 24px;
    line-height: 1.1
}

@media(max-width: 767px) {
    h4 {
        font-size: 18px
    }
}

h5 {
    font-size: 20px;
    line-height: 1
}

@media(max-width: 1300px) {
    h5 {
        font-size: 18px
    }
}

h6 {
    font-size: 18px;
    line-height: 24px
}

@media(max-width: 1024px) {
    h6 {
        font-size: 16px;
        line-height: 22px
    }
}

.text-center {
    text-align: center
}

.grid {
    display: grid
}

.flex {
    display: flex;
    flex-wrap: wrap
}

.inline-flex {
    display: inline-flex;
    align-items: center;
    gap: 0 9px
}

img {
    max-width: 100%
}

.invert-img {
    transform: scaleX(-1)
}

input, button, select {
    font-family: inherit;
    font-size: inherit
}

[hidden] {
    display: none
}

input {
    border-radius: 0
}

    input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0
    }

    input[type=number] {
        -moz-appearance: textfield
    }

video {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

button {
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer
}

.item-md {
    position: relative
}

    .item-md figure {
        overflow: hidden;
        line-height: 0
    }

        .item-md figure img, .item-md figure video {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            transition: .5s ease
        }

    .item-md::before, .item-md::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        pointer-events: none;
        z-index: 1
    }

    .item-md::after {
        content: none
    }

    .item-md figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1
    }

    .item-md .link-md {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2
    }

.bradN {
    margin-bottom: 20px
}

    .bradN img {
        max-width: 110px;
        display: block;
        margin: 0 auto
    }

.model {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 7;
    width: 100%
}

    .model .close {
        position: absolute;
        top: 0;
        right: 0
    }

.overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 6;
    opacity: 0;
    background: rgba(0,0,0,.6);
    transform: translateY(100%);
    transition: opacity 1s ease;
    cursor: pointer
}

@media(max-width: 991px) {
    .overlay {
        z-index: 2
    }
}

@media(max-width: 675px) {
    .overlay {
        display: none
    }
}

.overlay.is-open {
    opacity: 1;
    transform: translateY(0%)
}

.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px 0;
    --background: var(--white);
    --theme: #fff;
    --label: rgb(256 256 256 / .6);
    --color: #fff;
    --font: 300;
    --border: var(--blue)
}

@media(max-width: 675px) {
    .form {
        gap: 25px 0
    }
}

.form .form-group {
    --inputsize: 42px;
    --lrgap: 15px;
    --tbgap: 20px;
    position: relative;
    flex: 0 1 100%;
    --selectheight: var(--inputsize)
}

    .form .form-group.flex50 {
        flex: 0 1 48%
    }

@media(max-width: 675px) {
    .form .form-group.flex50 {
        flex: 0 1 100%
    }
}

.form .form-group label {
    font-weight: var(--font);
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 0;
    color: var(--theme);
    line-height: 1;
    transition: .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none
}

.form .form-group input, .form .form-group textarea {
    height: var(--inputsize);
    border: none;
    border-bottom: 1px solid #666;
    resize: none;
    border-radius: 0px !important;
    width: 100%;
    background: none;
    color: var(--color);
    font-size: inherit;
    font-family: inherit
}

    .form .form-group input.valid, .form .form-group textarea.valid {
        border-color: var(--brown)
    }

    .form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
        outline: none
    }

        .form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
            top: 0;
            font-size: 14px;
            color: var(--label)
        }

.form .form-group textarea {
    min-height: var(--inputsize);
    padding-top: 10px;
    line-height: 1.2
}

    .form .form-group textarea ~ label {
        background: var(--sectionbackground)
    }

.form .form-group.message-bx textarea {
    min-height: 86px;
    height: 100%;
    padding-top: 15px
}

.form .form-group.message-bx label {
    top: 12px;
    translate: 0 0
}

.form .form-group.message-bx textarea {
    padding-right: 15px
}

    .form .form-group.message-bx textarea::-webkit-scrollbar {
        width: 2px;
        background: none
    }

    .form .form-group.message-bx textarea::-webkit-scrollbar-track {
        box-shadow: none
    }

    .form .form-group.message-bx textarea::-webkit-scrollbar-thumb {
        background-color: var(--white);
        border-radius: 15px
    }

    .form .form-group.message-bx textarea:focus ~ label, .form .form-group.message-bx textarea.valid ~ label {
        top: 0;
        font-size: 14px;
        translate: 0 -50%
    }

.form .form-group.captcha-box {
    --size: 120px
}

    .form .form-group.captcha-box input {
        width: calc(100% - var(--size))
    }

        .form .form-group.captcha-box input:focus ~ .captcha-question, .form .form-group.captcha-box input.valid ~ .captcha-question {
            border-color: var(--brown)
        }

    .form .form-group.captcha-box .captcha-question {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        height: var(--inputsize);
        width: var(--size);
        font-weight: 600;
        border-bottom: 1px solid #666;
        text-align: center;
        color: var(--theme);
        display: flex;
        align-items: center;
        justify-content: flex-end
    }

.swiper-nav .swiper-prev svg, .swiper-nav .swiper-prev img {
    transform: scaleX(-1)
}

.swiper-nav.in-title {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 0 16px
}

    .swiper-nav.in-title .swiper-prev, .swiper-nav.in-title .swiper-next {
        width: 56px;
        height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0 6px;
        color: var(--black);
        line-height: 56px;
        overflow: hidden;
        border-radius: 25px;
        background: var(--white);
        border: 1px solid var(--black);
        padding: 0 0;
        position: relative;
        z-index: 0;
        text-transform: capitalize;
        transition: .7s;
        font-weight: 500;
        background: none
    }

        .swiper-nav.in-title .swiper-prev svg, .swiper-nav.in-title .swiper-prev path, .swiper-nav.in-title .swiper-next svg, .swiper-nav.in-title .swiper-next path {
            transition: .5s ease
        }

        .swiper-nav.in-title .swiper-prev:hover, .swiper-nav.in-title .swiper-next:hover {
            background: var(--blue);
            color: var(--white);
            border-color: var(--blue)
        }

        .swiper-nav.in-title .swiper-prev::before, .swiper-nav.in-title .swiper-prev::after, .swiper-nav.in-title .swiper-next::before, .swiper-nav.in-title .swiper-next::after {
            opacity: 0
        }

        .swiper-nav.in-title .swiper-prev:hover::after, .swiper-nav.in-title .swiper-next:hover::after {
            opacity: 1
        }

        .swiper-nav.in-title .swiper-prev.disabled, .swiper-nav.in-title .swiper-next.disabled {
            opacity: .4;
            cursor: no-drop
        }

.swiper-nav.center-full {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

    .swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
        pointer-events: all;
        -webkit-user-select: auto;
        -moz-user-select: auto;
        user-select: auto
    }

.boxes {
    --color1: var(--green);
    --color2: var(--yellow);
    position: absolute;
    white-space: nowrap
}

    .boxes .box {
        aspect-ratio: 1;
        display: inline-block
    }

        .boxes .box:first-child {
            width: 47px;
            transform: translateY(48px);
            background: var(--color1)
        }

@media(max-width: 991px) {
    .boxes .box:first-child {
        width: 27px;
        transform: translateY(23px)
    }
}

.boxes .box:last-child {
    width: 57px;
    margin-left: 17px;
    background: var(--color2)
}

@media(max-width: 991px) {
    .boxes .box:last-child {
        width: 37px
    }
}

@media(max-width: 991px) {
    .boxes .box:last-child {
        margin-left: 12px
    }
}

.content-common-wrap {
    max-width: 548px;
    margin: 0 auto;
    color: var(--white)
}

@media(max-width: 991px) {
    .content-common-wrap {
        max-width: 100%
    }
}

.content-common-wrap p {
    margin: 22px 0 60px;
    color: #666
}

@media(max-width: 991px) {
    .content-common-wrap p {
        margin: 20px 0 40px
    }
}

@media(max-width: 675px) {
    .content-common-wrap p {
        text-align: center
    }
}

.content-common-wrap .btm-wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 18px
}

@media only screen and (max-width: 365px) {
    .content-common-wrap .btm-wrp {
        gap: 15px
    }
}

.content-common-wrap .btm-wrp .btn {
    width: auto;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    color: var(--black);
    line-height: 40px;
    overflow: hidden;
    border-radius: 25px;
    background: var(--light-pink);
    border: 1px solid none;
    padding: 0 40px;
    position: relative;
    z-index: 0;
    text-transform: capitalize;
    transition: .7s;
    font-weight: 500;
    background: var(--white);
    border: 1px solid #333
}

    .content-common-wrap .btm-wrp .btn svg, .content-common-wrap .btm-wrp .btn path {
        transition: .5s ease
    }

    .content-common-wrap .btm-wrp .btn:hover {
        background: var(--pink);
        color: var(--white);
        border-color: var(--pink)
    }

    .content-common-wrap .btm-wrp .btn:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary)
    }

@media only screen and (max-width: 365px) {
    .content-common-wrap .btm-wrp .btn {
        flex: 0 1 100%
    }
}

.content-common-wrap .btm-wrp .wtsp {
    width: auto;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    color: var(--white);
    line-height: 40px;
    overflow: hidden;
    border-radius: 25px;
    background: none;
    border: 1px solid var(--white);
    padding: 0 40px;
    position: relative;
    z-index: 0;
    text-transform: capitalize;
    transition: .7s;
    font-weight: 500
}

    .content-common-wrap .btm-wrp .wtsp svg, .content-common-wrap .btm-wrp .wtsp path {
        transition: .5s ease
    }

    .content-common-wrap .btm-wrp .wtsp:hover {
        background: var(--green);
        color: var(--white);
        border-color: var(--green)
    }

@media only screen and (max-width: 365px) {
    .content-common-wrap .btm-wrp .wtsp {
        flex: 0 1 100%
    }
}

.btn-gradient {
    position: relative;
    overflow: hidden;
    font-weight: 500
}

    .btn-gradient span {
        position: relative;
        z-index: 1
    }

    .btn-gradient::before, .btn-gradient::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transition: .5s ease
    }

    .btn-gradient::before {
        background: var(--gradient)
    }

    .btn-gradient::after {
        background: var(--gradient2);
        opacity: 0
    }

    .btn-gradient:hover::before {
        opacity: 0
    }

    .btn-gradient:hover::after {
        opacity: 1
    }

body * .btn-bg {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    transition: .5s ease;
    font-weight: 500
}

    body * .btn-bg:hover {
        color: var(--black);
        background: var(--white)
    }

.swiper .swiper-slide img {
    width: 100%
}

.boxes {
    display: none
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5
}

    header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--brown);
        height: 0;
        z-index: -1;
        transition: .7s ease
    }

    header.header-fill::before, header.header-fixed::before {
        height: 100%
    }

    header.header-fixed .header-wrapper {
        padding: 8px 0
    }

        header.header-fixed .header-wrapper .colC li .enquire-btn:hover {
            background: var(--pink)
        }

    header .header-wrapper {
        padding: 14px 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        transition: .7s ease
    }

        header .header-wrapper .colA {
            flex: 0 1 200px;
            transition: .5s ease
        }

@media(max-width: 1152px) {
    header .header-wrapper .colA {
        flex: 0 1 190px
    }
}

@media(max-width: 675px) {
    header .header-wrapper .colA {
        flex: 0 1 180px
    }
}

header .header-wrapper .colA a.logo {
    display: block;
    line-height: 0
}

header .header-wrapper .colB {
    flex: 1;
    padding-left: 4rem
}

@media(max-width: 1152px) {
    header .header-wrapper .colB {
        padding-left: 2rem
    }
}

header .header-wrapper .colB .nav-li {
    display: inline-block;
    vertical-align: middle;
    color: var(--white)
}

    header .header-wrapper .colB .nav-li:not(:last-child) {
        margin-right: 35px
    }

@media(max-width: 1152px) {
    header .header-wrapper .colB .nav-li:not(:last-child) {
        margin-right: 25px
    }
}

header .header-wrapper .colC {
    flex: 0 1 auto
}

@media(max-width: 1007px) {
    header .header-wrapper .colC {
        flex: 1;
        text-align: right
    }
}

header .header-wrapper .colC li {
    display: inline-block;
    vertical-align: middle
}

    header .header-wrapper .colC li:not(:last-child) {
        margin-right: 40px
    }

@media(max-width: 1152px) {
    header .header-wrapper .colC li:not(:last-child) {
        margin-right: 25px
    }
}

header .header-wrapper .colC li .enquire-btn {
    width: auto;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    color: var(--black);
    line-height: 40px;
    overflow: hidden;
    border-radius: 25px;
    background: var(--light-pink);
    border: 1px solid none;
    padding: 0 24px;
    position: relative;
    z-index: 0;
    text-transform: capitalize;
    transition: .7s;
    font-weight: 500
}

    header .header-wrapper .colC li .enquire-btn svg, header .header-wrapper .colC li .enquire-btn path {
        transition: .5s ease
    }

    header .header-wrapper .colC li .enquire-btn:hover {
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue)
    }

@media(max-width: 1007px) {
    header .header-wrapper .colC li .enquire-btn {
        display: none
    }
}

header .header-wrapper .colC li .call-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    vertical-align: middle
}

@media(max-width: 1152px) {
    header .header-wrapper .colC li .call-btn {
        font-size: 16px
    }
}

@media(max-width: 675px) {
    header .header-wrapper .colC li .call-btn {
        display: none
    }
}

header .header-wrapper .ham-btn {
    flex: 0 1 auto;
    line-height: 0;
    height: 22px;
    width: 42px;
    margin-left: auto;
    display: none;
    flex-direction: column;
    gap: 8px;
    --lineheight: 2px
}

@media(max-width: 991px) {
    header .header-wrapper .ham-btn {
        display: flex
    }
}

header .header-wrapper .ham-btn span {
    display: block;
    height: var(--lineheight);
    width: inherit;
    background: var(--white)
}

footer {
    background: var(--brown);
    position: relative;
    overflow: hidden
}

    footer::before {
        content: "";
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        height: 16px;
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-repeat: no-repeat;
        background-size: 100% 100%
    }

    footer::before {
        bottom: auto;
        top: 0
    }

    footer .upper-footer {
        padding: 60px 0
    }

@media(max-width: 675px) {
    footer .upper-footer {
        padding: 55px 0 35px
    }
}

footer .upper-footer .logo {
    max-width: 250px;
    display: block;
    margin: 0 auto
}

footer .upper-footer .grid {
    grid-template-columns: 1fr auto 1fr
}

@media(max-width: 1007px) {
    footer .upper-footer .grid {
        display: flex;
        flex-wrap: wrap;
        gap: 45px 0
    }
}

@media(max-width: 1007px) {
    footer .upper-footer .grid .colA {
        order: 2;
        flex: 0 1 50%
    }
}

@media(max-width: 675px) {
    footer .upper-footer .grid .colA {
        flex: 0 1 100%
    }
}

footer .upper-footer .grid .colA address {
    max-width: 388px;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: #9c9a9a
}

    footer .upper-footer .grid .colA address:not(:last-child) {
        margin-bottom: 16px
    }

@media(max-width: 675px) {
    footer .upper-footer .grid .colA address {
        font-size: 14px
    }
}

footer .upper-footer .grid .colA address b {
    color: var(--white);
    display: block;
    font-weight: 500
}

footer .upper-footer .grid .colA address p a {
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: #9c9a9a;
    transition: .5s ease
}

    footer .upper-footer .grid .colA address p a:hover {
        color: var(--white)
    }

@media(max-width: 1152px) {
    footer .upper-footer .grid .colB {
        padding: 0 1rem
    }
}

@media(max-width: 1007px) {
    footer .upper-footer .grid .colB {
        flex: 0 1 100%;
        order: 1;
        padding: 0
    }
}

footer .upper-footer .grid .colB a.logo {
    display: block;
    text-align: center;
    margin-bottom: 50px
}

@media(max-width: 675px) {
    footer .upper-footer .grid .colB a.logo {
        margin: 0 auto 28px
    }
}

footer .upper-footer .grid .colB .btm-wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 0 18px
}

@media only screen and (max-width: 365px) {
    footer .upper-footer .grid .colB .btm-wrp {
        gap: 15px 0
    }
}

footer .upper-footer .grid .colB .btm-wrp .btn {
    width: auto;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    color: var(--black);
    line-height: 40px;
    overflow: hidden;
    border-radius: 25px;
    background: var(--light-pink);
    border: 1px solid none;
    padding: 0 40px;
    position: relative;
    z-index: 0;
    text-transform: capitalize;
    transition: .7s;
    font-weight: 500
}

    footer .upper-footer .grid .colB .btm-wrp .btn svg, footer .upper-footer .grid .colB .btm-wrp .btn path {
        transition: .5s ease
    }

    footer .upper-footer .grid .colB .btm-wrp .btn:hover {
        background: var(--pink);
        color: var(--white);
        border-color: var(--pink)
    }

    footer .upper-footer .grid .colB .btm-wrp .btn path {
        fill: var(--black)
    }

footer .upper-footer .grid .colB .btm-wrp .wtsp {
    width: auto;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    color: var(--white);
    line-height: 40px;
    overflow: hidden;
    border-radius: 25px;
    background: none;
    border: 1px solid var(--white);
    padding: 0 40px;
    position: relative;
    z-index: 0;
    text-transform: capitalize;
    transition: .7s;
    font-weight: 500
}

    footer .upper-footer .grid .colB .btm-wrp .wtsp svg, footer .upper-footer .grid .colB .btm-wrp .wtsp path {
        transition: .5s ease
    }

    footer .upper-footer .grid .colB .btm-wrp .wtsp:hover {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary)
    }

footer .upper-footer .grid .colC {
    text-align: right
}

@media(max-width: 1007px) {
    footer .upper-footer .grid .colC {
        order: 3;
        flex: 0 1 50%
    }
}

@media(max-width: 675px) {
    footer .upper-footer .grid .colC {
        flex: 0 1 100%;
        text-align: center
    }
}

footer .upper-footer .grid .colC .social {
    margin-bottom: 45px
}

@media(max-width: 675px) {
    footer .upper-footer .grid .colC .social {
        margin-bottom: 25px
    }
}

footer .upper-footer .grid .colC .social li {
    display: inline-block;
    vertical-align: middle
}

    footer .upper-footer .grid .colC .social li:not(:last-child) {
        margin-right: 25px
    }

@media(max-width: 1152px) {
    footer .upper-footer .grid .colC .social li:not(:last-child) {
        margin-right: 15px
    }
}

footer .upper-footer .grid .colC .social li a {
    display: block
}

    footer .upper-footer .grid .colC .social li a svg, footer .upper-footer .grid .colC .social li a path {
        transition: .6s ease
    }

    footer .upper-footer .grid .colC .social li a:hover svg, footer .upper-footer .grid .colC .social li a:hover path {
        fill: var(--pink)
    }

footer .upper-footer .grid .colC .contact-inf a {
    color: var(--white);
    display: block;
    font-weight: 500
}

@media(max-width: 675px) {
    footer .upper-footer .grid .colC .contact-inf a.mail-to {
        font-size: 24px
    }
}

footer .upper-footer .grid .colC .contact-inf a.call-btn {
    font-size: 32px;
    margin-top: 16px
}

@media(max-width: 1007px) {
    footer .upper-footer .grid .colC .contact-inf a.call-btn {
        font-size: 26px;
        margin-top: 12px
    }
}

footer .middle-footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1)
}

    footer .middle-footer p {
        color: rgba(255,255,255,.5);
        text-align: justify;
        font-size: 13px;
        line-height: 1.6
    }

footer .bottom-footer {
    padding: 28px 0
}

@media(max-width: 1007px) {
    footer .bottom-footer {
        padding: 28px 0 35px
    }
}

@media(max-width: 675px) {
    footer .bottom-footer {
        padding: 20px 0
    }
}

@media(max-width: 520px) {
    footer .bottom-footer {
        padding-bottom: 90px
    }
}

footer .bottom-footer .flex {
    align-items: center;
    justify-content: space-between
}

@media(max-width: 1024px) {
    footer .bottom-footer .flex {
        justify-content: center;
        text-align: center
    }
}

footer .bottom-footer .flex ul {
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px
}

    footer .bottom-footer .flex ul li {
        display: inline-block;
        vertical-align: middle;
        line-height: 1
    }

        footer .bottom-footer .flex ul li:not(:last-child) {
            border-right: 1px solid rgba(255,255,255,.5);
            margin-right: 15px;
            padding-right: 15px
        }

        footer .bottom-footer .flex ul li a {
            color: #9c9a9a
        }

            footer .bottom-footer .flex ul li a:hover {
                color: var(--white)
            }

footer .bottom-footer .flex span, footer .bottom-footer .flex p, footer .bottom-footer .flex a {
    font-size: 13px
}

@media(max-width: 860px) {
    footer .bottom-footer .flex span, footer .bottom-footer .flex p, footer .bottom-footer .flex a {
        font-size: 11px
    }
}

footer .bottom-footer .flex p {
    color: var(--white)
}

footer .bottom-footer .flex span {
    color: #9c9a9a;
    display: inline-block;
    line-height: 1;
    vertical-align: bottom
}

    footer .bottom-footer .flex span a {
        display: inline-block;
        vertical-align: middle;
        line-height: 0
    }

@media(max-width: 1007px) {
    header .header-wrapper .colB.mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 600px;
        width: 100%;
        height: 100%;
        display: block;
        background: var(--white);
        padding: 112px 70px 40px;
        transform: translateX(100%);
        transition: .7s ease
    }
}

@media(max-width: 520px) {
    header .header-wrapper .colB.mobile-nav {
        padding: 90px 40px 40px
    }
}

@media(max-width: 1007px) {
    header .header-wrapper .colB.mobile-nav.is-open {
        transform: translateX(0)
    }
}

@media(max-width: 1007px) {
    header .header-wrapper .colB.mobile-nav .close {
        position: absolute;
        right: 40px;
        top: 25px;
        display: block
    }
}

@media(max-width: 520px) {
    header .header-wrapper .colB.mobile-nav .close {
        right: 25px
    }
}

header .header-wrapper .colB.mobile-nav .close path {
    stroke: var(--black)
}

@media(max-width: 1007px) {
    header .header-wrapper .colB.mobile-nav .nav-li {
        display: block;
        font-size: 42px;
        color: var(--black);
        font-weight: 500
    }
}

@media only screen and (max-width: 365px) {
    header .header-wrapper .colB.mobile-nav .nav-li {
        font-size: 34px
    }
}

@media(max-width: 1007px) {
    header .header-wrapper .colB.mobile-nav .nav-li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px
    }
}

.enquire-pop {
    right: 0;
    max-width: 580px;
    background: var(--white);
    transform: translateX(100%);
    transition: .7s ease;
    position: relative;
    position: fixed
}

    .enquire-pop::before {
        content: "";
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        height: 16px;
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-repeat: no-repeat;
        background-size: 100% 100%
    }

    .enquire-pop::before {
        z-index: 2
    }

    .enquire-pop.is-open {
        transform: translateX(0%)
    }

    .enquire-pop .close {
        display: flex;
        align-items: center;
        gap: 0 10px;
        top: 40px;
        right: 40px
    }

@media(max-width: 675px) {
    .enquire-pop .close {
        top: 20px;
        right: 20px
    }
}

.enquire-pop .close path {
    stroke: var(--black)
}

.enquire-pop .model-body {
    padding: 10px 42px 20px;
    height: 100%;
    overflow-y: auto
}

    .enquire-pop .model-body::-webkit-scrollbar {
        width: 6px;
        background: none
    }

    .enquire-pop .model-body::-webkit-scrollbar-track {
        box-shadow: none
    }

    .enquire-pop .model-body::-webkit-scrollbar-thumb {
        background-color: var(--pink);
        border-radius: 25px
    }

@media(max-width: 675px) {
    .enquire-pop .model-body {
        padding: 40px 25px 50px
    }
}

.enquire-pop .model-body .title {
    margin-bottom: 35px
}

@media(max-width: 675px) {
    .enquire-pop .model-body .title {
        margin-bottom: 25px
    }
}

.enquire-pop .model-body .title img {
    display: block;
    margin: 0 auto;
    max-width: 90px;
    margin-bottom: 20px
}

.enquire-pop .model-body .title h3 {
    text-align: center
}

.enquire-pop .model-body .title p {
    text-align: center;
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
    text-transform: capitalize;
    margin-top: 10px
}

.enquire-pop .model-body .form {
    --bacground: var(--white);
    --theme: var(--text);
    --label: rgb(0 0 0 / .6);
    --color: var(--text);
    --font: 400;
    --border: var(--pink);
    gap: 18px 0
}

    .enquire-pop .model-body .form .sbmit-btn {
        width: auto;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0 6px;
        color: var(--white);
        line-height: 40px;
        overflow: hidden;
        border-radius: 25px;
        background: var(--blue);
        border: 1px solid none;
        padding: 0 50px;
        position: relative;
        z-index: 0;
        text-transform: capitalize;
        transition: .7s;
        font-weight: 500;
        margin-left: auto;
        margin-right: auto
    }

        .enquire-pop .model-body .form .sbmit-btn svg, .enquire-pop .model-body .form .sbmit-btn path {
            transition: .5s ease
        }

        .enquire-pop .model-body .form .sbmit-btn:hover {
            background: var(--pink);
            color: var(--white);
            border-color: var(--pink)
        }

.video-pop {
    left: 0;
    right: 0;
    background: var(--blue);
    z-index: 9;
    transform: translateY(100%);
    transition: .7s ease;
    position: relative;
    position: fixed
}

    .video-pop::before {
        content: "";
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        height: 16px;
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-repeat: no-repeat;
        background-size: 100% 100%
    }

    .video-pop.is-open {
        transform: translateY(0%)
    }

    .video-pop .close-video {
        bottom: calc(100% + 20px);
        top: auto;
        right: -40px
    }

@media(max-width: 675px) {
    .video-pop .close-video {
        right: 0px
    }
}

.video-pop .close-video path {
    stroke: var(--white)
}

.video-pop .model-body {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    max-width: 50%
}

@media(max-width: 675px) {
    .video-pop .model-body {
        max-width: 95%
    }
}

.video-pop .model-body iframe {
    width: 100%;
    aspect-ratio: 1.9;
    border: 1px solid var(--white)
}

.footer-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: var(--black);
    display: none
}

@media(max-width: 520px) {
    .footer-strip {
        display: block
    }
}

.footer-strip ul {
    display: flex;
    flex-wrap: wrap
}

    .footer-strip ul li {
        flex: 1
    }

        .footer-strip ul li:not(:last-child) {
            border-right: 1px solid rgba(192,149,89,.5)
        }

        .footer-strip ul li a {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            gap: 5px;
            color: var(--white);
            font-weight: 500
        }

            .footer-strip ul li a svg {
                width: 25px;
                height: 25px;
                fill: var(--white)
            }

                .footer-strip ul li a svg path {
                    fill: var(--white)
                }
/*# sourceMappingURL=header.css.map */
