:root {
    --primary-color: #dc7a46;
    --secondary-color: #088589;
    --yellow-color: #f7890f;
    --accent-color: #088589;
    --accent-hover-color: #dc7a46;
    --light: #dbdee5;
    --cyan-light: #f2f9f9;
    --text-color: #54595F
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    outline: none;
    transition: all 0.2s ease-in
}

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

strong {
    font-weight: 600
}

p {
    font-size: 16px;
    line-height: 23px
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

h1 {
    font-weight: 500;
    color: #080808;
    font-size: 40px;
    line-height: 55px;
    margin: 0 0 15px
}

h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 12px
}

h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px
}

h4 {
    font-size: 20px;
    font-weight: 400
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0
}

.container {
    display: block;
    width: 100%
}

.row {
    max-width: 1170px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap
}

.full-width {
    width: 100%
}

.half-width {
    width: 50%;
    min-width: 330px
}

.col-3 {
    width: 33.333%;
    min-width: 300px
}

.col-4 {
    width: 25%;
    min-width: 150px
}

.col-7 {
    width: 66%;
    min-width: 300px
}

.button {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    line-height: 1.3;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer !important;
    transition: all 0.3s ease;
    &:hover

{
    background: var(--primary-color)
}

}

.content-sec {
    margin: 40px 0
}

.bg-light-cyan {
    padding: clamp(30px, 6vw, 50px) 0;
    background-color: var(--cyan-light)
}

.editor-content {
    margin: 20px 0
}

    .editor-content h2 {
        font-size: 28px;
        margin-bottom: 12px
    }

    .editor-content h3 {
        font-weight: 500;
        margin-bottom: 8px
    }

    .editor-content h4 {
        font-weight: 500;
        margin-bottom: 8px
    }

    .editor-content p, .full-width > p {
        margin: 0 0 22px 0;
        line-height: 25px
    }

    .editor-content ul, .editor-content ol {
        padding: 0 0 15px 35px;
        list-style: disc
    }

    .editor-content ol {
        list-style: decimal
    }

        .editor-content ul li, .editor-content ol li {
            padding: 0 0 6px;
            line-height: 24px
        }

    .editor-content figure.img {
        margin: 20px 0
    }

.header {
    box-shadow: 0 0 3px 2px rgb(0 0 0 / 10%);
    padding: 10px 0;
    position: sticky;
    background-color: #fff;
    position: -webkit-sticky;
    top: 0;
    z-index: 99999
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

    .header-row .site-logo {
        width: 163px;
        height: 57px
    }

        .header-row .site-logo a, .header-row .site-logo a img {
            display: block;
            width: 100%;
            height: 100%
        }

    .header-row .right-side {
        display: flex;
        height: 80px;
        margin: -10px 0;
        align-items: stretch;
    }

ul.nav-bar {
    display: flex;
    margin-right: 70px
}

    ul.nav-bar > li {
        padding: 15px 18px;
        cursor: pointer;
        margin: 0;
        position: relative;
        list-style: none;
        align-content: center;
        transition: .3s ease-in-out;
    }

        ul.nav-bar > li > a {
            font-size: 14px;
            line-height: 30px;
            display: block;
            font-weight: 500;
            text-transform: uppercase
        }

        ul.nav-bar > li:before {
            content: " ";
            position: absolute;
            width: 3px;
            height: 4px;
            left: 50%;
            border-radius: 50px;
            bottom: 0px;
            transform: translateX(-50%);
            transition: .5s
        }

        ul.nav-bar > li:not(:last-child):after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            height: 2px;
            width: 2px;
            background-color: #444
        }

        ul.nav-bar > li.active, ul.nav-bar > li:hover {
            color: #d37643
        }

            ul.nav-bar > li.active::before, ul.nav-bar > li:hover::before {
                width: 45%;
                transform: translate(-50%);
                opacity: 1;
                background: #d37643
            }

        ul.nav-bar > li ul {
            background: #fff;
            position: absolute;
            opacity: 0;
            pointer-events: none;
            top: 124%;
            left: 10px;
            z-index: 999;
            width: 200px;
            box-shadow: 0 4px 3px 2px rgb(0 0 0 / 10%);
            padding: 0 0 5px;
            transition: .3s ease-in-out;
            border-top: 4px solid #d37643;
            border-radius: 0 0 8px 8px
        }

        ul.nav-bar > li:hover ul {
            opacity: 1;
            pointer-events: fill;
            top: calc(100% - 4px);
        }


        ul.nav-bar > li ul li {
            display: block;
            margin: 0;
            color: black;
            padding: 0 15px
        }

            ul.nav-bar > li ul li:hover {
                color: #d37643;
                ;
            }

            ul.nav-bar > li ul li a {
                font-size: 14px;
                line-height: 24px;
                font-weight: 500;
                padding: 7px 5px;
                display: block;
                border-bottom: 1px solid #ddd
            }

                ul.nav-bar > li ul li a:hover {
                    color: #d37643;
                    border-bottom: 1px solid #d37643
                }

.header-row .header-btns {
    display: flex;
    gap: 17px;
    align-items: center;
}

    .header-row .header-btns a {
        width: 40px;
        height: 40px
    }

        .header-row .header-btns a img {
            width: 100%;
            height: 100%
        }

.menu-icon-btn {
    background: #fff;
    width: 41px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #9bced0;
    z-index: 11111
}

.float-left-box {
    position: relative;
    min-height: 200px
}

    .float-left-box::before {
        content: '';
        position: absolute;
        z-index: -1;
        inset: 0;
        width: 47.5%;
        height: 100%;
        background-color: var(--primary-color)
    }

    .float-left-box .float-bx {
        z-index: 1;
        width: 46%;
        padding: 50px;
        padding-left: 0;
        text-align: left
    }

.more-links-wraper {
    margin: 40px 0
}

    .more-links-wraper .float-left-box::before {
        background-color: #f8e4da
    }

    .more-links-wraper .tour-more-list {
        margin-top: 10px;
        display: flex;
        gap: 6px 0;
        flex-wrap: wrap;
        justify-content: space-between
    }

        .more-links-wraper .tour-more-list li a {
            color: #088589
        }

            .more-links-wraper .tour-more-list li a:hover {
                color: #dc7a46
            }

.editor-content .full-width > p:last-child, .editor-content .full-width > img:last-child {
    margin: 0
}

.hero-section {
    position: relative;
    min-height: 600px;
    margin-bottom: 30px
}

    .hero-section h1, .search-holder h1 {
        color: #fff;
        text-shadow: 2px 4px 3px #101010;
        margin: 0
    }

    .hero-section .main-img {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        z-index: -1;
        object-fit: cover
    }

    .hero-section .float-left-box {
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        z-index: 1;
        overflow-x: hidden;
        padding-bottom: 55px;
        min-height: 320px
    }

    .hero-section .breadcrumb-bar {
        width: 100%;
        padding: 5px 20px;
        background-color: var(--secondary-color);
        position: absolute;
        bottom: 30px;
        margin-left: 0
    }

        .hero-section .breadcrumb-bar p {
            color: #fff
        }

        .hero-section .breadcrumb-bar > ul {
            display: flex;
            flex-wrap: wrap
        }

            .hero-section .breadcrumb-bar > ul li::after {
                content: "/";
                color: #ffc6a8;
                margin: 0 5px
            }

            .hero-section .breadcrumb-bar > ul li:last-child::after {
                content: ""
            }

            .hero-section .breadcrumb-bar > ul li {
                color: #ffc6a8;
                font-size: 15px
            }

                .hero-section .breadcrumb-bar > ul li a {
                    color: #fff
                }

                    .hero-section .breadcrumb-bar > ul li a:hover {
                        color: var(--accent-hover-color)
                    }

.text-centered {
    text-align: center;
    max-width: 1050px;
    margin: auto
}

.footer {
    padding: 50px 0 10px;
    background: url(../images/bottom-bg.webp) center bottom no-repeat
}

.footer-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.footer-logo {
    padding-right: 20px
}

.ft-right {
    border-left: 2px solid #d37643;
    padding: 10px 0 10px 20px;
    display: flex;
    min-width: 300px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden
}

ul.ft-nav {
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
    width: 100%
}

    ul.ft-nav li {
        position: relative
    }

        ul.ft-nav li a {
            color: #282828;
            padding-right: 20px;
            font-weight: 500
        }

            ul.ft-nav li a:hover {
                color: #dc7a46
            }

        ul.ft-nav li:after {
            content: "";
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            height: 10px;
            width: 2px;
            background-color: #282828
        }

        ul.ft-nav li:last-child::after {
            display: none
        }

.copy-write-text {
    width: 100%;
    padding: 15px 0 0;
    position: relative;
    margin: 15px 0 0 15px;
    text-align: right
}

    .copy-write-text p {
        font-size: 14px
    }

    .copy-write-text:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 1px;
        background: rgb(0 0 0 / .2);
        width: 100%
    }

.inquiry-form {
    padding: clamp(30px, 6vw, 50px) 0;
    background-color: #088589;
    color: #fff;
    position: relative;
    margin-bottom: 65px
}

select {
    -webkit-appearance: none;
    -moz-appearance: window;
    background-image: url(../images/icons/arrow-down.webp) !important;
    background-repeat: no-repeat !important;
    background-position: 96% center !important;
    background-size: 12px !important;
    background-color: #fff0
}

.inquiry-form .text-centered {
    margin-top: 0
}

.inquiry-form::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -30px;
    width: 47.5%;
    height: 30px;
    background-color: var(--primary-color)
}

.inquiry-form .bottom-form {
    display: flex;
    flex-wrap: wrap;
    margin: 35px 0 0;
    gap: 25px 20px;
    position: relative;
    padding-right: 130px
}

.inquiry-form .feild-holder {
    position: relative;
    width: calc(33% - 11px);
    min-width: 250px
}

    .inquiry-form .feild-holder input, .inquiry-form .feild-holder select {
        width: 100%;
        padding: 17px 10px 0 13px;
        border: 2px solid rgb(255 255 255 / .2);
        height: 55px;
        color: #000;
        font-size: 17px;
        background: #fff
    }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.inquiry-form .feild-holder select {
    padding: 17px 10px 0 9px
}

.inquiry-form .feild-holder input::placeholder, textarea::placeholder {
    color: #000;
}

.inquiry-form .feild-holder input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0
}

.inquiry-form .feild-holder label {
    font-size: 12px;
    color: #929292;
    position: absolute;
    left: 15px;
    top: 8px;
    z-index: 1
}

.inquiry-form .button {
    position: absolute;
    bottom: 0;
    background-color: #f7890f;
    height: 55px;
    right: 0;
    width: 110px;
    cursor: pointer
}

    .inquiry-form .button:hover {
        background-color: #dc7a46
    }

.float-btns {
    position: fixed;
    right: 0;
    bottom: 90px;
    transition: all 0.5s ease-in-out;
    z-index: 999
}

    .float-btns .back-top-btn {
        transform: translateX(105%)
    }

    .float-btns.active .back-top-btn {
        transform: translateX(0%)
    }

    .float-btns a.whatsapp-btn, .float-btns .back-top-btn, .float-btns .getOffers {
        display: flex;
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
        background: #25d366;
        justify-content: center;
        align-items: center;
        line-height: 0;
        border: none;
        color: #fff;
        cursor: pointer
    }

    .float-btns .back-top-btn {
        background: #bfbfbf
    }

        .float-btns .back-top-btn:hover {
            background: #d37643
        }

    .float-btns .getOffers {
        background: #d37643;
        line-height: 1.2;
        text-align: center
    }

        .float-btns .getOffers:hover {
            background: #994a20
        }

    .float-btns a.whatsapp-btn:hover {
        background: #14ab4b
    }

    .float-btns a.whatsapp-btn img {
        width: 40px
    }

a.whatsapp-btn:hover img {
    transform: rotate(10deg)
}

.float-btns .back-top-btn img {
    width: 24px;
    transform: rotate(180deg)
}

.float-btns .back-top-btn:hover img {
    filter: brightness(0) invert(1)
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0
}

    .table table {
        width: 100%;
        border-collapse: collapse
    }

        .table th, .table table th {
            background: #dc7a46;
            color: #fff;
            padding: 10px;
            font-size: 17px;
            font-weight: 500;
            text-align: left
        }

        .table td, .table table td {
            padding: 10px;
            border-bottom: 1px solid #ddd
        }

figure.table {
    overflow-x: auto
}

.hero-section.plain-banner {
    min-height: auto;
    margin-bottom: 20px;
    ;
    background-color: #dc7a46
}

    .hero-section.plain-banner .text-holder {
        padding: 60px 0;
        text-align: center;
        width: 100%
    }

.my-dropdown {
    position: relative
}

    .my-dropdown::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        display: none;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background-image: url(../images/icons/arrow-down.webp);
        background-size: cover
    }

    .my-dropdown:has(input[readonly])::after {
        display: block
    }

    .my-dropdown .my-options {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        z-index: 99;
        display: none;
        box-shadow: 0 4px 12px rgb(0 0 0 / .1);
        max-height: 240px;
        overflow-y: auto
    }

    .my-dropdown.open .my-options {
        display: block
    }

    .my-dropdown .my-options li {
        padding: 9px 12px;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px
    }

        .my-dropdown .my-options li:hover, .my-dropdown .my-options li.active {
            background: #f2f9f9;
            color: #088589
        }

.form-background {
    width: 1600px;
    padding: 20px;
    background-color: var(--secondary-color);
    align-self: flex-end;
    margin-left: 15px;
    margin-right: -400px;
    margin-bottom: -30px
}

.search-banner-row {
    padding: 30px 0 20px;
    background-color: #F8F8F8
}

.search-results-number h3 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 400
}

.search-results-number p {
    margin: 0;
    color: #6b7280;
    margin-top: 12px
}

.search-holder {
    margin-top: -280px;
    z-index: 4
}

    .search-holder .float-left-box .float-bx {
        padding: 30px;
        padding-left: 15px
    }

.editor-more-links {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
    position: relative
}

    .editor-more-links::before {
        content: '';
        position: absolute;
        width: 46%;
        height: 100%;
        margin-left: -600px;
        padding-left: 600px;
        z-index: -1;
        left: 0;
        bottom: 0;
        background: #f8e4da
    }

    .editor-more-links ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    .editor-more-links .float-bx {
        width: 46%
    }

    .editor-more-links ul li {
        width: 46%;
        min-width: 120px
    }

.popup-wrapper {
    display: flex;
    position: fixed;
    inset: 0;
    background: #088589a6;
    z-index: -99;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease-in-out;
    pointer-events: none;
}

    .popup-wrapper.show {
        opacity: 1;
        visibility: visible;
        z-index: 99999;
        pointer-events: fill;
    }

.no-scroll {
    overflow: hidden;
}

.popup-box {
    background: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    max-height: 100vh;
    min-width: 50%;
    padding: 0;
    position: absolute;
    transform: translateX(100%);
    box-shadow: 0 20px 60px rgb(0 0 0 / .2);
}

    .popup-box .popup-content {
        height: 100vh;
        max-height: 100vh;
        width: 100%;
        overflow: auto;
    }

figure.image {
    margin: 20px 0 25px;
}

.popup-wrapper.show .popup-box {
    transform: translateX(0);
}

.popup-close-btn {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-70%, 50%);
    width: 45px;
    height: 45px;
    background: #ef4444;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    .popup-close-btn:hover {
        background: #a32424;
    }

.faqs-section {
    margin: 20px 0 30px;
}

.faq-item {
    border-left: 4px solid var(--secondary-color);
    border-bottom: 1px solid #dbdee5;
    background: #fff;
    margin-bottom: 15px;
    transition: border-color 0.2s ease;
}

    .faq-item.open {
        border-left-color: var(--primary-color);
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 20px;
    color: #080808;
    margin: 0;
    user-select: none;
}

    .faq-question:hover {
        color: var(--secondary-color);
    }

.faq-item.open .faq-question {
    color: var(--primary-color);
    background-color: #fdf3ec;
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
/*    transition: max-height 0.35s ease, padding 0.25s ease;*/
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 100%;
    padding: 0 20px 16px;
}
