/* ============================================================ */
/* FONTS — Google Fonts                                         */
/* ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Open+Sans:wght@400;600&display=swap');

/* ============================================================ */
/* FONT AWESOME 5 — local font files                           */
/* ============================================================ */
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: normal;
    src: url("font/fa-brands-400.eot");
    src: url("font/fa-brands-400.eot?#iefix") format("embedded-opentype"),
        url("font/fa-brands-400.woff2") format("woff2"),
        url("font/fa-brands-400.woff") format("woff"),
        url("font/fa-brands-400.ttf") format("truetype");
}

.fab {
    font-family: 'Font Awesome 5 Brands';
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    src: url("font/fa-solid-900.eot");
    src: url("font/fa-solid-900.eot?#iefix") format("embedded-opentype"),
        url("font/fa-solid-900.woff2") format("woff2"),
        url("font/fa-solid-900.woff") format("woff"),
        url("font/fa-solid-900.ttf") format("truetype");
}

.fa,
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    src: url("font/fa-regular-400.eot");
    src: url("font/fa-regular-400.eot?#iefix") format("embedded-opentype"),
        url("font/fa-regular-400.woff2") format("woff2"),
        url("font/fa-regular-400.woff") format("woff"),
        url("font/fa-regular-400.ttf") format("truetype");
}

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.fa,
.fas,
.far,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* ============================================================ */
/* DESIGN TOKENS                                               */
/* --navy:   #1E3A5F   headings, buttons, navbar text          */
/* --sea:    #1E5A8A   deeper accents                          */
/* --amber:  #E8A020   gold CTA (Enquire)                      */
/* --orange: #D4601A   ownership / secondary CTA               */
/* --cream:  #F5EFE6   page bg, footer bg                      */
/* --sand:   #EDE5D8   alternating section bg                  */
/* --text:   #2C2C2C   body text                               */
/* --muted:  #6B7280   sub-text                                */
/* ============================================================ */

/* ============================================================ */
/* GLOBAL RESET & BASE                                         */
/* ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F5EFE6;
    color: #2C2C2C;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #1E3A5F;
    text-decoration: none;
    transition: color 0.25s;
}

a:hover,
a:focus {
    color: #E8A020;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================ */
/* PRELOADER                                                   */
/* ============================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F5EFE6;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sonar-emitter {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1E3A5F;
    position: relative;
}

.sonar-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid #1E3A5F;
    animation: sonar 1.4s ease-out infinite;
}

@keyframes sonar {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

/* ============================================================ */
/* TOP PANEL                                                   */
/* ============================================================ */
.top-panel {
    background: #fff;
    height: 44px;
    border-bottom: 1px solid #E5DDD0;
    overflow: hidden;
}

.top-panel-left {
    float: left;
    line-height: 44px;
}

.top-panel-left a {
    color: #5A5A5A;
    font-size: 13px;
    margin-right: 16px;
}

.top-panel-left a i {
    margin-right: 5px;
    color: #1E3A5F;
}

.top-panel-left a:hover {
    color: #1E3A5F;
}

.top-panel-right {
    float: right;
    height: 44px;
}

.top-bar-social .fa-social {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 44px;
    font-size: 15px;
}

.top-bar-social .fa-social li {
    display: inline-block;
    margin: 0 7px;
}

.top-bar-social .fa-social a {
    color: #8A8A8A;
    vertical-align: middle;
}

.top-bar-social .fa-social a:hover {
    color: #1E3A5F;
}

/* ============================================================ */
/* NAVBAR                                                      */
/* ============================================================ */
.topmenu.navbar {
    margin-bottom: 0;
    background: rgba(43, 66, 87, 0.95);
    /* Adjusted to match design */
    border: none;
    border-radius: 4px;
    /* Added slight radius since it shouldn't touch edges initially */
    min-height: 68px;
    position: absolute;
    top: 30px;
    /* Restored top margin per user request */
    left: 15px;
    /* Slight horizontal margin */
    right: 15px;
    /* Slight horizontal margin */
    z-index: 9999;
    /* Increased heavily to stay above booking bar and hero section stacking context */
    transition: all 0.3s ease;
}

/* Navbar after scrolling past carousel — sticky and hugging top edge */
.topmenu.navbar.sticked {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: #fff;
    border-bottom: 1px solid #E5DDD0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 30;
}

/* Logo + brand */
#logo.navbar-brand {
    padding: 0 15px;
    /* Remove vertical padding to let logo expand */
    height: 68px;
    /* Match min-height of navbar */
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-img {
    height: 58px;
    /* Take up most of the 68px navbar height */
    width: auto;
    object-fit: contain;
}

.brand-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.brand-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

/* Sticky state — revert brand colors to dark */
.sticked .brand-name {
    color: #1E3A5F;
}

.sticked .brand-sub {
    color: #8A8A8A;
}

/* Hamburger */
.navbar-default .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    transition: border-color 0.3s;
    position: relative;
    z-index: 1070;
    /* Stay above the .navbar-collapse.in menu (1060) */
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
    transition: background-color 0.3s;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: rgba(255, 255, 255, 0.15);
}

/* Sticky hamburger — dark */
.sticked .navbar-default .navbar-toggle,
.sticked.navbar-default .navbar-toggle {
    border-color: #1E3A5F;
}

.sticked .navbar-default .navbar-toggle .icon-bar,
.sticked.navbar-default .navbar-toggle .icon-bar {
    background-color: #1E3A5F;
}

/* Nav links — white over carousel */
.topmenu .navbar-nav>li>a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 12px;
    /* Reduced vertical padding brings border closer to text */
    margin: 14px 0;
    /* Margin replaces the padding space to keep vertical centering */
    transition: all 0.2s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid transparent;
}

.topmenu .navbar-nav>li.active>a {
    color: #fff !important;
    border-bottom: 2px solid #E8A020;
    /* Brand gold active indicator */
    background: transparent !important;
}

.topmenu .navbar-nav>li>a:hover,
.topmenu .navbar-nav>li>a:focus {
    color: #fff !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent !important;
}

/* Sticky state — dark links */
.topmenu.sticked .navbar-nav>li>a {
    color: #1E3A5F;
    text-shadow: none;
}

.topmenu.sticked .navbar-nav>li.active>a {
    color: #E8A020 !important;
    border-bottom-color: #E8A020;
    background: transparent !important;
}

.topmenu.sticked .navbar-nav>li>a:hover,
.topmenu.sticked .navbar-nav>li>a:focus {
    color: #E8A020 !important;
    border-bottom-color: #E8A020;
}

/* "Enquire" CTA */
.nav-cta-wrap {
    display: flex;
    align-items: center;
    height: 68px;
    /* Match typical navbar height for perfect vertical centering */
    padding: 0;
    margin-left: 8px;
}

.btn-nav-enquire {
    display: inline-block;
    background: #F0B933;
    /* Adjusted gold to match design */
    color: #1A365D !important;
    /* Dark text on gold */
    font-family: 'Raleway', sans-serif;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border-radius: 4px;
    /* Slightly rounded per design */
    padding: 10px 18px !important;
    border: none;
    transition: background 0.3s ease;
}

.btn-nav-enquire:hover,
.btn-nav-enquire:focus,
.topmenu .navbar-nav>li.nav-cta-wrap>a.btn-nav-enquire:hover,
.sticked .topmenu .navbar-nav>li.nav-cta-wrap>a.btn-nav-enquire:hover {
    background: #FFD566 !important;
    /* Brighter gold for clear hover state */
    transform: none !important;
    color: #1A365D !important;
    border-bottom: none !important;
}

/* Hide on middle sizes (Tablet and Small Desktop) */
@media (min-width: 768px) and (max-width: 1199px) {
    .bootsnav ul.nav>li.nav-cta-wrap {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .bootsnav ul.nav>li.nav-cta-wrap>a.btn-nav-enquire {
        display: none !important;
    }
}

.close-mobile-menu {
    display: none;
    /* Hidden globally, shown in mobile open menu only */
}

/* Mobile nav */
@media (max-width: 767px) {
    .top-panel {
        height: auto;
        padding: 8px 0;
    }

    .top-panel-left {
        float: none;
        line-height: 1;
    }

    .top-panel-left a {
        line-height: 28px;
        display: inline-block;
        font-size: 12px;
        margin-right: 10px;
    }

    .top-panel-right {
        float: none;
        height: auto;
    }

    .top-bar-social .fa-social {
        line-height: 32px;
    }

    .topmenu.navbar {
        min-height: 58px;
        left: 0;
        right: 0;
        top: 0;
        /* Align perfectly to top on mobile */
        border-radius: 0;
    }

    .navbar-header {
        /* Reset container to relative block to anchor our absolutely positioned children */
        display: block !important;
        position: relative !important;
        width: auto !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        height: 58px;
    }

    .navbar-default .navbar-toggle {
        margin-top: 13px;
        position: absolute !important;
        right: 15px !important;
        /* Flush right against the inner container padding edge */
        top: 0;
        margin-right: 0 !important;
    }

    #logo.navbar-brand {
        padding: 0;
        height: 58px;
        position: absolute !important;
        left: 15px !important;
        top: 0;
        margin-left: 0 !important;
        display: flex;
        align-items: center;
    }

    .brand-img {
        height: 48px;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 15px;
    }

    .topmenu .navbar-nav>li>a {
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-shadow: none;
        color: #ffffff !important;
    }

    .topmenu .navbar-nav>li>a:hover {
        color: #E8A020 !important;
    }

    nav.navbar.bootsnav.navbar-mobile ul.nav {
        border-top: none !important;
    }

    .close-mobile-menu {
        display: block;
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 26px;
        color: #fff;
        line-height: 1;
        cursor: pointer;
        z-index: 1080;
        font-weight: 300;
    }

    /* Push first nav link down so it clears the close button */
    .topmenu .navbar-nav>li:first-child {
        margin-top: 50px;
    }

    /* Mobile expanded menu — always dark bg for readability */
    .topmenu .navbar-collapse {
        background: rgba(15, 30, 55, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    /* Force background when at top of page (transparent) and opened */
    .topmenu.navbar-transparent .navbar-collapse.in {
        background: rgba(15, 30, 55, 0.97) !important;
        position: relative;
        z-index: 1060 !important;
    }

    .sticked .topmenu .navbar-collapse {
        background: #fff;
    }

    .sticked .close-mobile-menu {
        color: #9faab9;
    }

    .sticked .topmenu .navbar-nav>li>a {
        border-bottom-color: #F0EAE0;
    }

    /* Change hover and active colors in mobile menu to gold-orange */
    .topmenu.sticked .navbar-nav>li.active>a,
    .topmenu .navbar-nav>li.active>a {
        color: #E8A020 !important;
        border-bottom: 2px solid #E8A020 !important;
    }

    /* Non-active links: keep border 1px on hover, change to gold — no jumping */
    .topmenu .navbar-nav>li:not(.active)>a:hover,
    .sticked .topmenu .navbar-nav>li:not(.active)>a:hover {
        border-bottom-width: 1px !important;
        border-bottom-color: #E8A020 !important;
    }

    /* Active link on hover: stays 2px gold — no change in thickness */
    .topmenu .navbar-nav>li.active>a:hover,
    .sticked .topmenu .navbar-nav>li.active>a:hover {
        border-bottom: 2px solid #E8A020 !important;
    }

    .topmenu .navbar-nav>li:last-child>a {
        border-bottom: none;
    }

    .nav-cta-wrap {
        padding: 10px 15px;
        margin-left: 0;
    }

    .btn-nav-enquire {
        display: block;
        text-align: center;
    }

    .collapse.in {
        padding-bottom: 10px;
    }
}

/* Tablet Nav adjustments to prevent multi-line wrap */
@media (min-width: 768px) and (max-width: 991px) {
    #logo.navbar-brand {
        padding: 0 5px;
        /* Remove vertical padding */
        height: 68px;
    }

    .brand-img {
        height: 54px;
        /* Take up most of height while respecting reduced padding width */
    }

    .brand-icon {
        width: 30px;
        height: 30px;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-sub {
        font-size: 9px;
    }

    .topmenu .navbar-nav>li>a {
        padding: 10px 10px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .btn-nav-enquire {
        padding: 8px 10px !important;
        font-size: 10px !important;
    }

    .nav-cta-wrap {
        display: none !important;
        /* Force hide the button for tablet sizes */
    }
}

/* Small Desktop adjustments (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-cta-wrap {
        display: none !important;
        /* Force hide the button for small desktop sizes */
    }
}

/* ============================================================ */
/* HERO / BOOTSTRAP CAROUSEL                                   */
/* ============================================================ */

/* Bottom Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    /* Prevent 1px visual gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 25;
}

.hero-wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* Outer header wrapper */
.header-carousel {
    position: relative;
    background: #0D2340;
    overflow: hidden;
    z-index: 1;
    /* Explicit low z-index so navbar (9999) can overlap */
}

/* Bootstrap carousel slide fills full viewport height */
.header-carousel .carousel,
.header-carousel #carousel-original {
    position: relative;
}

.header-carousel .carousel-inner {
    width: 100%;
}

.header-carousel .carousel-inner>.item>img {
    width: 100%;
    height: 70vh;
    /* Reduced height to perfectly match design proportions */
    min-height: 500px;
    max-height: 750px;
    object-fit: cover;
    display: block;
}

/* Cream gradient overlay removed as per user request to show the full image */
.header-carousel .carousel-inner>.item::after {
    display: none;
}

/* Carousel caption — NO white box, just text over image */
.carousel-caption-custom {
    position: absolute;
    left: 5%;
    right: auto;
    bottom: auto;
    top: 70px;
    /* Fixed distance from top for proper alignment */
    transform: none;
    /* Removing transform that pushed it out of frame */
    text-align: left;
    max-width: 560px;
    z-index: 20;
}

/* Overlay content (booking bar + CTAs) sits below caption, above image */
.hero-overlay-content {
    position: absolute;
    bottom: 30px;
    /* Raised higher per user request */
    left: 0;
    right: 0;
    z-index: 10;
    /* Lowered so mobile menu (z-index: 1050) can sit on top */
    padding-bottom: 30px;
}

.hero-headline {
    font-family: 'Georgia', 'Playfair Display', serif;
    /* Changed to serif to match design */
    font-size: 38px;
    /* Increased to match design proportions */
    font-weight: 600;
    color: #1E3A5F;
    line-height: 1.25;
    margin: 0 0 15px;
}

.hero-headline em {
    font-style: italic;
    color: #1E3A5F;
    /* Keep text solid dark blue as per design */
}

.hero-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    /* Increased size to match design */
    color: #2C2C2C;
    margin: 0 0 25px 0;
    /* Extra margin before booking bar */
    line-height: 1.6;
    max-width: 480px;
}

/* Booking bar */
.booking-bar {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 6px;
    padding: 16px 16px 10px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    /* Limit width of search box per user request */
}

.booking-bar-row {
    margin: 0 -6px;
}

.booking-field-col {
    padding: 0 6px;
    margin-bottom: 10px;
}

.booking-lbl {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #8A8A8A;
    margin-bottom: 4px;
    font-family: 'Raleway', sans-serif;
}

.booking-select-wrap {
    position: relative;
}

.booking-select {
    width: 100%;
    height: 38px;
    border: 1.5px solid #DDD;
    border-radius: 4px;
    background: #fff;
    padding: 0 10px;
    font-size: 13px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.booking-select:focus {
    border-color: #1E3A5F;
    outline: none;
}

.booking-btn-col {
    display: flex;
    align-items: flex-end;
}

.btn-search {
    background: #1A365D;
    /* Dark blue color as requested */
    color: #fff !important;
    padding: 0 15px;
    /* Adjust padding to rely on height */
    height: 38px;
    /* Force same height as inputs */
    line-height: 38px;
    /* Center text vertically */
    /* Push down to align with inputs (accounting for label space above) */
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    transition: background 0.25s, transform 0.25s;
}

.btn-search:hover {
    background: #112642;
    /* Darker blue on hover */
    transform: translateY(-1px);
    color: #fff !important;
}

/* Hero CTA row */
.hero-cta-row {
    margin-top: 4px;
    margin-bottom: 10px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    padding: 11px 22px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: all 0.25s;
    cursor: pointer;
}

.btn-hero-primary {
    background: #1E3A5F;
    color: #fff;
    border-color: #1E3A5F;
}

.btn-hero-primary:hover {
    background: #163052;
    border-color: #163052;
    color: #fff;
}

.btn-hero-secondary {
    background: #D4601A;
    color: #fff;
    border-color: #D4601A;
}

.btn-hero-secondary:hover {
    background: #B84E10;
    border-color: #B84E10;
    color: #fff;
}

.btn-arrow {
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
}

/* Hero responsive */
@media (min-width: 768px) {
    .header-carousel .carousel-inner>.item>img {
        min-height: 580px;
    }

    .carousel-caption-custom {
        left: 6%;
        max-width: 600px;
    }

    .hero-headline {
        font-size: 26px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .booking-bar {
        padding: 20px 20px 12px;
    }
}

@media (min-width: 992px) {
    .header-carousel .carousel-inner>.item>img {
        min-height: 640px;
    }

    .carousel-caption-custom {
        left: 20%;
    }

    .hero-headline {
        font-size: 30px;
    }

    .booking-bar {
        padding: 22px 24px 14px;
    }

    .booking-field-col {
        margin-bottom: 0;
    }

    .booking-btn-col {
        margin-top: 20px;
    }
}

/* ============================================================ */
/* SECTION HELPERS                                             */
/* ============================================================ */
.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1E3A5F;
    margin: 0;
    white-space: nowrap;
}

.section-title-line {
    flex: 1;
    max-width: 80px;
    height: 1.5px;
    background: #C8B89A;
    display: block;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .section-title-line {
        max-width: 120px;
    }
}

/* ============================================================ */
/* WHY SECTION                                                 */
/* ============================================================ */
.why-section {
    background: #F5EFE6;
    padding: 60px 0 50px;
}

.why-cards-row {
    margin: 0 -10px;
}

.why-card {
    padding: 0 10px;
    text-align: center;
    margin-bottom: 30px;
}

.why-icon-wrap {
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(30, 58, 95, 0.12);
}

.why-svg-icon {
    width: 36px;
    height: 36px;
}

.why-title {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 8px;
}

.why-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .why-section {
        padding: 60px 0;
    }

    .why-card {
        padding: 0 20px;
    }

    .why-card-mid {
        border-left: 1px solid #D8CEBD;
        border-right: 1px solid #D8CEBD;
    }

    .why-title {
        font-size: 16px;
    }
}

/* ============================================================ */
/* UNIT CARDS SECTION                                         */
/* ============================================================ */
.units-section {
    background: #EDE5D8;
    padding: 48px 0;
}

.units-row {
    margin: 0 -10px;
}

.unit-card-col {
    padding: 0 10px;
    margin-bottom: 24px;
}

.unit-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.unit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.unit-card-img-wrap {
    overflow: hidden;
    height: 200px;
}

.unit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.unit-card:hover .unit-card-img {
    transform: scale(1.06);
}

.unit-card-body {
    padding: 18px 18px 20px;
}

.unit-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 6px;
}

.unit-card-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.55;
    margin-bottom: 14px;
}

.btn-unit-detail {
    display: inline-block;
    background: #1E3A5F;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 7px 16px;
    border-radius: 3px;
    border: 2px solid #1E3A5F;
    transition: all 0.25s;
}

.btn-unit-detail:hover {
    background: transparent;
    color: #1E3A5F;
}

@media (min-width: 768px) {
    .units-section {
        padding: 60px 0;
    }

    .unit-card-img-wrap {
        height: 210px;
    }
}

@media (min-width: 992px) {
    .unit-card-img-wrap {
        height: 220px;
    }
}

/* ============================================================ */
/* OWN A UNIT SECTION                                         */
/* ============================================================ */
.own-unit-section {
    background: #EDE5D8;
}

.section-1 {
    background: #fff;
    padding: 5px 0 !important;
}

.own-unit-row {
    align-items: flex-start;
    margin-left: -5px;
    margin-right: -5px;
}

.own-unit-row>[class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.own-unit-left {
    margin-bottom: 30px;
}

.own-unit-headline {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1E3A5F;
    line-height: 1.3;
    margin: 0 0 14px;
}

.own-unit-headline em {
    font-style: italic;
    color: #D4601A;
}

.own-unit-desc {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-learn-ownership {
    display: inline-block;
    background: #D4601A;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    width: 250px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 10px 22px;
    border-radius: 4px;
    border: 2px solid #D4601A;
    margin-bottom: 22px;
    transition: all 0.25s;
}

.btn-learn-ownership:hover {
    background: transparent;
    color: #D4601A;
}

/* ── Own a Unit banner (pool image as background, white→transparent gradient) ── */
.own-banner {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1200&q=80');
    background-size: cover;
    background-position: center right;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 12px;
    min-height: 200px;
    display: flex;
    align-items: stretch;
}

/* White-to-transparent gradient overlay from left */
.own-banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #EDE5D8 0%, #EDE5D8 45%, rgba(237, 229, 216, 0.5) 62%, rgba(237, 229, 216, 0) 72%);
    z-index: 1;
}

/* Text container sits above the gradient */
.own-banner-text {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Two smaller side-by-side images below */
.own-unit-gallery {
    margin: 0 -5px;
}

.own-gallery-col {
    padding: 0 5px;
}

.own-gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

@media (min-width: 768px) {
    .own-banner {
        min-height: 200px;
    }

    .own-banner-text {
        max-width: 50%;
        padding: 32px 28px;
    }

    .own-gallery-img {
        height: 170px;
    }
}

@media (min-width: 992px) {
    .own-banner {
        min-height: 200px;
    }

    .own-banner-text {
        max-width: 72%;
        padding: 36px 32px;
    }

    .own-gallery-img {
        height: 180px;
    }
}

/* Enquiry card */
.enquiry-card {
    background: #F5EFE6;
    border-radius: 0;
    padding: 26px 22px;
    box-shadow: none;
}

.enquiry-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E8A020;
}

.enquiry-form .form-group {
    margin-bottom: 12px;
}

.enq-field {
    width: 100%;
    height: 40px;
    border: 1.5px solid #DDD;
    border-radius: 0;
    padding: 0 12px;
    font-size: 13px;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
    background: #fff;
}

.enq-field:focus {
    border-color: #1E3A5F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.enq-field::placeholder {
    color: #AAA;
}

.enq-select-group {
    position: relative;
}

.enq-select {
    padding-right: 28px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.enq-select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #8A8A8A;
    pointer-events: none;
}

.btn-send-enquiry {
    width: 100%;
    height: 42px;
    background: #1E3A5F;
    color: #fff;
    border: 2px solid #1E3A5F;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-send-enquiry:hover {
    background: transparent;
    color: #1E3A5F;
}

@media (min-width: 768px) {
    .section-1 {
        padding: 60px 0;
    }
}

@media (min-width: 992px) {
    .own-unit-left {
        padding-right: 20px;
    }
}

/* ============================================================ */
/* AMENITIES STRIP                                             */
/* ============================================================ */
.amenities-section {
    background: #fff;
    padding: 28px 0;
    border-top: 1px solid #E5DDD0;
    border-bottom: 1px solid #E5DDD0;
}

.amenities-row {
    margin: 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 10px;
    color: #1E3A5F;
}

.amenity-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F5EFE6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1E3A5F;
    flex-shrink: 0;
}

.amenity-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2C2C2C;
}

@media (max-width: 767px) {
    .amenity-item {
        border-bottom: 1px solid #EDE5D8;
        justify-content: flex-start;
        padding: 14px 0;
    }

    .amenity-item:last-child {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .amenities-section {
        padding: 36px 0;
    }

    .amenity-item {
        border-right: 1px solid #E5DDD0;
    }

    .amenity-item:last-child {
        border-right: none;
    }
}

/* ============================================================ */
/* FOOTER — source structure preserved                         */
/* bg → matches new design page bg (#F5EFE6)                   */
/* text → inverted to dark                                     */
/* ============================================================ */
.footer-container {
    background-color: #F5EFE6;
    background-image: none;
    border-top: 1px solid #D8CEBD;
    padding-top: 36px;
    padding-bottom: 0;
    min-height: 260px;
}

.footer-menu-section {
    padding: 10px 15px;
}

/* Footer headings */
.footer-menu-section .Contactus {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E3A5F;
    /* inverted — was white */
    padding: 0 0 8px;
    margin: 0 0 10px;
    border-bottom: 2px solid #E8A020;
}

/* Footer links */
.footer-menu-section .SubMenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-section .SubMenu li {
    margin-bottom: 6px;
}

.footer-menu-section .SubMenu li a {
    font-size: 13px;
    color: #3A3A3A;
    /* inverted — was light gray */
    transition: color 0.2s;
}

.footer-menu-section .SubMenu li a:hover {
    color: #1E3A5F;
}

/* Contact dl */
.dl-horizontal.dl-contact {
    margin: 0;
}

.dl-contact dt {
    float: left;
    width: 24px;
    clear: left;
    font-size: 14px;
    color: #1E3A5F;
    /* inverted */
    margin-bottom: 10px;
    padding-top: 2px;
}

.dl-contact dd {
    margin-left: 32px;
    font-size: 13px;
    color: #3A3A3A;
    /* inverted */
    margin-bottom: 10px;
    line-height: 1.5;
}

.dl-contact dd a {
    color: #1E5A8A;
}

.dl-contact dd a:hover {
    color: #E8A020;
}

/* Newsletter */
.footer-container .form-control {
    border: 1.5px solid #C8B89A;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    border-radius: 3px;
}

.footer-container .form-control:focus {
    border-color: #1E3A5F;
}

.btn-danger-reverse {
    background: transparent;
    color: #1E3A5F;
    /* inverted */
    border: 2px solid #1E3A5F;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s;
}

.btn-danger-reverse:hover,
.btn-danger-reverse:focus {
    background: #1E3A5F;
    color: #fff;
}

/* Social icons */
.fa-social {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    font-size: 20px;
}

.fa-social li {
    display: inline-block;
    margin: 0 6px;
}

.fa-social a {
    color: #5A5A5A;
}

/* inverted — was white */
.fa-social a:hover {
    color: #1E3A5F;
}

.fa-social a.facebook:hover {
    color: #3C5A98;
}

.fa-social a.twitter:hover {
    color: #34CBFF;
}

.fa-social a.instagram:hover {
    color: #c728da;
}

.fa-social a.youtube-play:hover {
    color: #e10000;
}

/* Footer copyright */
.footer-copyright {
    font-size: 12px;
    color: #5A5A5A;
    /* inverted */
    padding: 20px 0 6px;
    line-height: 1.5;
}

.bottomfooter-container {
    min-height: 48px;
}

.bottomfooter {
    font-size: 12px;
    color: #5A5A5A;
    /* inverted */
    line-height: 48px;
}

.bottomfooter a {
    color: #1E5A8A;
}

.bottomfooter a:hover {
    color: #E8A020;
}

/* ============================================================ */
/* SCROLL-TO-TOP                                               */
/* ============================================================ */
.scroll-top-wrapper {
    position: fixed;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    background: rgba(30, 58, 95, 0.85);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.scroll-top-wrapper.show {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}

.scroll-top-wrapper:hover {
    background: #1E3A5F;
    color: #fff;
}

/* ============================================================ */
/* UTILITIES                                                   */
/* ============================================================ */
.letter-spacing-1 {
    letter-spacing: 0.5px;
}



@media (max-width: 767px) {
    .text-center-xs {
        text-align: center !important;
    }
}

/* ============================================================ */
/* FONT AWESOME ICON CODES                                     */
/* ============================================================ */
.fa-phone:before {
    content: "\f095";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-map-marker:before {
    content: "\f3c5";
}

.fa-map-marker-alt:before {
    content: "\f3c5";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-facebook:before {
    content: "\f39e";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-swimmer:before {
    content: "\f5c4";
}

.fa-concierge-bell:before {
    content: "\f562";
}

/* ============================================================ */
/* NEW ELEGANT FOOTER                                           */
/* ============================================================ */
.new-elegant-footer {
    background: #112642;
    /* Even darker blue than navbar for solid grounding */
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0 0;
    border-top: 4px solid #D0A760;
    /* Elegant gold top border */
}

.footer-top-row {
    padding-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

/* Brand Column */
.footer-col-brand .footer-brand {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-col-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-col-brand .brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-col-brand .brand-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #D0A760;
    /* Gold */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 90%;
}

.footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.footer-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social li a:hover {
    background: #D0A760;
    /* Gold hover */
    color: #112642;
    transform: translateY(-2px);
}

/* Headings */
.footer-heading {
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #D0A760;
    padding-left: 5px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: #D0A760;
    margin-top: 4px;
    width: 25px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: #fff;
}

/* Newsletter */
.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    height: 45px;
    border-radius: 4px 0 0 4px;
    box-shadow: none;
}

.footer-newsletter .form-control:focus {
    border-color: #D0A760;
    outline: none;
}

.footer-newsletter .btn-footer-subscribe {
    height: 45px;
    background: #D0A760;
    color: #112642;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 20px;
    transition: background 0.3s;
}

.footer-newsletter .btn-footer-subscribe:hover {
    background: #E8B96D;
}

/* Bottom Copyright Bar */
.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    color: #D0A760;
    text-decoration: none;
}

.footer-credit a:hover {
    color: #fff;
}

/* ============================================================ */
/* MOBILE & TABLET (<=991px) ADJUSTMENTS FOR BOOKING FORM       */
/* ============================================================ */
@media (max-width: 991px) {
    .header-carousel {
        display: flex;
        flex-direction: column;
    }

    .hero-wave-divider {
        position: relative !important;
        bottom: 0 !important;
        order: 2;
        margin-top: -69px;
        /* Pull wave up over the image */
    }

    .hero-overlay-content {
        position: relative !important;
        bottom: 0 !important;
        left: auto !important;
        right: auto !important;
        order: 3;
        background-color: #F5EFE6;
        /* Match wave color */
        padding-top: 20px;
        padding-bottom: 30px;
        z-index: 10;
    }

    .header-carousel>#carousel-original {
        order: 1;
    }
}/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */


/*
 *  Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}


/* No Js */

.no-js .owl-carousel {
    display: block;
}


/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

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


/*
 *  Owl Carousel - Auto Height Plugin
 */

.owl-height {
    transition: height 500ms ease-in-out;
}


/*
 *  Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}


/*
 *  Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}




/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */


/*
 *  Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/************ Custom by john ***************/
.owl-carousel .owl-thumbnail {

  overflow: hidden;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.owl-carousel .owl-thumbnail img {
    height: 100px;
    width: auto !important;
    margin-right: auto;
    margin-left: auto;
    max-width: 125px;
}
.owl-carousel .caption h4 {

  line-height: 1.3;
}

.owl-theme .owl-nav {


}

.owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next {  
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  background-color: transparent;
  font-size: 1px;
  color: transparent;


}
.owl-theme .owl-nav .owl-prev {
    left: -40px;
}
.owl-theme .owl-nav .owl-next {
    right: -40px;
}
.owl-theme .owl-nav .owl-prev::before { 
    content: "\f053";
    margin-right:10px;
    
}
.owl-theme .owl-nav .owl-next::before {  
    content: "\f054";
    margin-right:0;
    
}
.owl-theme .owl-nav .owl-prev:hover, .owl-theme .owl-nav .owl-next:hover {

  background-color: transparent;
}
.owl-theme .owl-nav .owl-prev:before, .owl-theme .owl-nav .owl-next:before {

  font: normal normal normal 50px/1 'Font Awesome 5 Solid';
  color: #ffffff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  transition: 0.3s all;
  background-color: #4692e7;
  padding-right: 3px;
  padding-left: 3px;
}
.owl-theme .owl-nav .owl-prev:hover:before, .owl-theme .owl-nav .owl-next:hover:before {

  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}


/*.owl-theme .owl-nav .owl-prev {
  right: -50px;
}
.owl-theme .owl-nav .owl-next {
  left: -50px;
}*/

@media (min-width: 1200px) {

    .owl-carousel .caption {
      height: 250px;
      overflow: hidden;
    }
    .owl-carousel .caption h4 {
      height: 70px;
      overflow: hidden;
    }
    .owl-carousel .caption p.brief {
      height: 95px;
      overflow: hidden;
    }
}
@media (min-width:992px ) and (max-width: 1199px) {
  
    .owl-carousel .caption {
      height: 250px;
      overflow: hidden;
    }
    .owl-carousel .caption h4 {
      height: 70px;
      overflow: hidden;
    }
    .owl-carousel .caption p.brief {
      height: 95px;
      overflow: hidden;
    }
}
@media (min-width: 768px) and (max-width: 991px) {

    .owl-carousel .caption {
      height: 250px;
      overflow: hidden;
    }
    .owl-carousel .caption h4 {
      height: 70px;
      overflow: hidden;
    }
    .owl-carousel .caption p.brief {
      height: 95px;
      overflow: hidden;
    }
}


@media (max-width: 767px) {

    .owl-carousel .caption {
      height: 200px;
      overflow: hidden;
    }
    .owl-carousel .caption h4 {
      height: 45px;
      overflow: hidden;
    }
    .owl-carousel .caption p.brief {
      height: 70px;
      overflow: hidden;
    }

    .owl-carousel .owl-nav {

        display: none;
    }
}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

.dropzone,
.dropzone * {
    box-sizing: border-box;
}

.dropzone {
    position: relative;
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    width: 110px;
    margin: 0.3em;
}

.dropzone .dz-preview .dz-progress {
    display: block;
    height: 15px;
    border: 1px solid #aaa;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    display: block;
    height: 100%;
    width: 0;
    background: green;
}

.dropzone .dz-preview .dz-error-message {
    color: red;
    display: none;
}

.dropzone .dz-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-error .dz-error-mark {
    display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    display: block;
}

.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
    position: absolute;
    display: none;
    left: 30px;
    top: 30px;
    width: 54px;
    height: 58px;
    left: 50%;
    margin-left: -27px;
}



/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-moz-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.dropzone,
.dropzone * {
    box-sizing: border-box;
}

.dropzone {
    min-height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px 20px;
}

.dropzone.dz-clickable {
    cursor: pointer;
}

.dropzone.dz-clickable * {
    cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
    cursor: pointer;
}

.dropzone.dz-started .dz-message {
    display: none;
}

.dropzone.dz-drag-hover {
    border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}

.dropzone .dz-message {
    text-align: center;
    margin: 2em 0;
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
    min-height: 100px;
}

.dropzone .dz-preview:hover {
    z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
    background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 110px;
    height: 110px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white;
}

.dropzone .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626;
}


/****************************************************/

.dropzone {
    border: 2px dashed #0087F7;
    border-radius: 5px;
    background: white;
}

.dropzone .dz-message {
    font-weight: 400;
}

.dropzone .dz-message .note {
    font-size: 0.8em;
    font-weight: 200;
    display: block;
    margin-top: 1.4rem;
}
.dropzone .dz-preview .dz-remove {

  text-align: center;
  display: block;
  position: absolute;
  bottom: 5px;
  left: 5px;
  cursor: pointer;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.97);
  text-align: center;
  line-height: 25px;
  z-index: 99;
  font-size: 0px;
  color: transparent;

}
.dropzone .dz-preview .dz-remove::before {

  font-family: 'Font Awesome 5 Solid';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 25px; 
    font-size: 16px;
    
  text-align: center;
  content: "\f00d" !important;
  color: red;
}/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 1200px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
  padding-right:0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
  box-shadow: none !important;
  color: inherit !important;
}
.bootstrap-datetimepicker-widget a[data-action]:hover,
.bootstrap-datetimepicker-widget a[data-action]:focus {
  box-shadow: none !important;
  color: inherit !important;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.hour,
.bootstrap-datetimepicker-widget table td.minute {
  font-size: 1em;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #eeeeee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #337ab7;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: silver;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/********************************/
.fa-clock-o:before {
  content: "\f017";
}
.fa-calendar:before {
  content: "\f073";
}

.fa-arrow-up:before {
  content: "\f077";
}
.fa-arrow-down:before {
  content: "\f078";
}
.fa-angle-left:before {
  content: "\f053";
}
.fa-angle-right:before {
  content: "\f054";
}
.fa-close:before {
  content: "\f2d4";
} Page Language="VB" %>
  

/* ============================================================ */
/* Dynamic Arabic/English CSS overrides */
/* ============================================================ */
body { direction: ltr; text-align: left; }
.top-panel-left { float: left; text-align: left; }
.top-panel-right { float: right; }
.hero-caption-card { text-align: left; }
.dl-contact dt { float: left; clear: left; }
.dl-contact dd { margin-left: 32px; margin-right: 0; }
.own-gallery-col:first-child { padding-right: 5px; padding-
    left: 15px; }
.own-gallery-col:last-child { padding-left: 5px; padding-
    right: 15px; }


#owlcarousel.owl-theme .owl-nav .owl-prev {
    Left: -30px;
}
#owlcarousel.owl-theme .owl-nav .owl-next {
    Right: -40px;
}

.owl-theme .owl-nav .owl-prev {
    Left: -50px;
}
.owl-theme .owl-nav .owl-next {
    Right: -50px;
}
.scroll-top-wrapper {
    Right:10px;
}
.dl-horizontal dt {
    float: Left;
}

.footer-menu-section .Contactus {
    text-align: Left;
}
.dl-horizontal dt {
    text-align: Left;
}
.sonar-emitter {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
}
.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: -1;
    pointer-events: none;

    animation: sonarWave 2s linear infinite
}

@keyframes sonarWave {
    from {
        opacity: 0.4;
    }
to {
    transform: scale(2);
    opacity: 0;
}
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: #21292e;
}

.spinner {
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
    transform: translate(-35px,-35px);


}
.spinner:before {
    content:'';
    box-sizing:border-box;
    position:absolute;
    top:50%;
    left:50%;
    width:70px;
    height:70px;
    margin-top:0;
    margin-left:0;
    border-radius:50%;
    border:5px solid #9f8a3f;
    border-top-color:black;
    animation:spinner 0.9s linear infinite;


}
@-webkit-@keyframes spinner {
    to {
        transform:rotate(360deg)
    }
}
@keyframes spinner {
    to {
        transform:rotate(360deg)
    }
}


#SubscribeSuccess {
    top: 130px;
}



body, td {
    font-family: 'Poppins', sans-serif;
    direction: ltr;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.open-sans {
    font-family: 'Poppins', sans-serif;
}
.letter-spacing-1 {
    letter-spacing: 1px;
}
.letter-spacing-2 {
    letter-spacing: 2px;
}
.letter-spacing-3 {
    letter-spacing: 3px;
}
header#header p {
    letter-spacing: .2rem;
}
header#header h1 {
    font-size: 64px;
}

.location h5 {letter-spacing: 2px; }

.sort-info ul li::before {
    margin-right: 10px;
}

.owl-theme .owl-nav .owl-prev:before {
    content: "\f104";
}

.owl-theme .owl-nav .owl-next:before {
    content: "\f105";
}

@media (min-width: 768px)
{

}
@media (max-width: 767px)
{
    header#header h1 {
        font-size: 30px;
    }
}



/********************** Bootstrap two AR/EN Lang support
**************/
.topmenu .Social a
{
    float:Left;
}


.topmenu .navbar-nav > li
{

    /*float:Left;*/


}


@media (min-width: 768px)
{
    .topmenu .navbar-nav > li > a
    {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 5px;
        padding-right: 5px;

    }
}
@media (max-width: 767px)
{
    .topmenu .navbar-nav
    {
        padding-right: 10px;
        padding-left: 10px;
    }
    .topmenu .navbar-nav > li > a
    {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
    }
}
