/* Font Start */

@font-face {
    font-family: Fahkwang-Regular;
    font-display: swap;
    src: url(fonts/Fahkwang/Fahkwang-Regular.ttf) format('truetype');
}

@font-face {
    font-family: Fahkwang-Medium;
    font-display: swap;
    src: url(fonts/Fahkwang/Fahkwang-Medium.ttf) format('truetype');
}

@font-face {
    font-family: Poppins-Light;
    font-display: swap;
    src: url(fonts/Poppins/Poppins-Light.ttf) format('truetype');
}

@font-face {
    font-family: Poppins-Regular;
    font-display: swap;
    src: url(fonts/Poppins/Poppins-Regular.ttf) format('truetype');
}

@font-face {
    font-family: Poppins-Medium;
    font-display: swap;
    src: url(fonts/Poppins/Poppins-Medium.ttf) format('truetype');
}

/* Font End */

/* Variable Start */
:root {

    /* Color Start */
    --white: #fff;
    --primary: #0c0c12;
    --secondary: #0c0f15;
    --light: #fffcfc;
    --secondary-opacity: rgba(35, 62, 122, .7);
    --gold: #d4a951;

    --primary-mask: rgba(0, 0, 0, .55);
    /* Color End */

    /* Font Start */
    --primary-font-size: 16px;
    --primary-font-family-light: Poppins-Light, sans-serif;
    --primary-font-family-regular: Poppins-Regular, sans-serif;
    --primary-font-family-medium: Poppins-Medium, sans-serif;
    /* Font End */

    /* Transition Start */
    --primary-transition: all .3s ease-in-out;
    --secondary-transition: all .5s ease-in-out;
    /* Transition End */

    /* Background Start */
    --secondary-background: #eff1f6;
    /* Background End */

    /* Background Start */
    --primary-box-shadow: rgb(0 0 0 / 8%) 0px 6px 16px;
    /* Background End */

}

/* Variable End */


/* Default Start */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 16px;
}

body {
    box-sizing: border-box;
    font-family: var(--primary-font-family-light);
    color: var(--primary);
    background-color: rgb(255 252 252);
}

.bg-secondary {
    background-color: var(--primary) !important;
}

ul {
    list-style: none !important;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
    user-select: none;
}

a:hover {
    color: var(--gold);
}

/* Default End */

@media (min-width:768px) {

    /* Scroll Start */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--gold) var(--white);
    }

    *::-webkit-scrollbar {
        width: 12px;
    }

    *::-webkit-scrollbar-track {
        background: var(--white);
    }

    *::-webkit-scrollbar-thumb {
        background-color: var(--gold);
        border-radius: 20px;
        border: 3px solid var(--white);
    }
}


/* Scroll End */

.text-justify {
    text-align: justify;
}

.bg-primary {
    background-color: var(--gold) !important;
}

.badge.bg-primary {
    background-color: #fff !important;
    color: var(--gold) !important;
}

.main-title {
    font-size: 14px !important;
    margin: 0 !important;
}

.header-top {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.fixed .header-top {
    height: 0;
    transition: all 0.5s ease-in-out;
}

.header-top-right-icon {
    width: 15px;
    height: 15px;
    display: flex;
    margin-left: 10px;
    margin-right: 5px;
}

.header-top-right-icon img {
    filter: brightness(0) invert(1);
}

.header-top-right-item span {
    font-size: 14px;
}

.header-top .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top .container-fluid .header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    height: 30px;
}

.header-top * {
    color: var(--white);
}

h2,
h3 {
    display: inline !important;
    margin: 0 !important;
    font-size: unset !important;
}

.button {
    width: 196px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gold) !important;
    font-family: Poppins-Medium, sans-serif;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--gold) !important;
}

.button.button-primary:hover {
    background: transparent !important;
    color: var(--gold) !important;
}

.button.button-primary.black {
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
    width: 50% !important;
}

.button.button-primary-outline.black {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    width: 50% !important;
}

.bold {
    font-family: Poppins-Medium, sans-serif;
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .container.narrow {
        max-width: 900px !important;
    }
}

@media (min-width: 1450px) {
    .container-fluid {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .container.narrow {
        max-width: 900px !important;
    }
}

@media (max-width: 991px) {

    .navbar-scroll {
        background-color: #fff;
    }

    .navbar-scroll .navbar-brand,
    .navbar-scroll .nav-link,
    .navbar-scroll .fa-bars {
        color: #4f4f4f !important;
    }

    .hero.about {
        padding: 10rem 0 20rem;
        height: 100vh !important;
    }

    .categories {
        border: none !important;
        height: unset !important;
        gap: 0 !important;
        flex-wrap: wrap !important;
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
    }

    .categories label {
        width: 50% !important;
    }

    .filters-inner {
        height: 0 !important;
        overflow: hidden !important;
        transition: var(--primary-transition);
    }

    .filters-inner.shown {
        height: 1175px !important;
        overflow: initial !important;
        transition: var(--primary-transition)
    }

    .filters-title {
        box-shadow: 0 4px 8px 0 rgb(80 39 14 / 20%) !important;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .filters-title img {
        width: 28px !important;
    }
}

.hero {
    width: 100% !important;
    height: 100vh !important;
    background-color: var(--primary);
    overflow: hidden;
}

.section-title {
    color: var(--white) !important;
    font-family: Fahkwang-Regular, sans-serif;
    font-size: 50px;
}

.section-title.large {
    font-size: 90px;
}

.section-title.text-black {
    color: var(--primary) !important;
}

.navbar-brand {
    letter-spacing: 3px;
    font-size: 2rem;
    font-weight: 500;
}

.navbar-scroll .navbar-brand,
.navbar-scroll .nav-link,
.navbar-scroll .fa-bars {
    color: #fff;
}

.navbar-scroll {
    box-shadow: none;
}

.navbar-scrolled {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
}

.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link,
.navbar-scrolled .fa-bars {
    color: #4f4f4f;
}

.navbar-scrolled {
    background-color: #fff;
}

@media (max-width: 450px) {
    #intro {
        height: 950px !important;
    }
}

@media (min-width: 550px) and (max-width: 750px) {
    #intro {
        height: 1100px !important;
    }
}

@media (min-width: 800px) and (max-width: 990px) {
    #intro {
        height: 600px !important;
    }
}

.display-1 {
    font-weight: 500 !important;
    letter-spacing: 40px;
}

@media (min-width: 1600px) {
    .display-1 {
        font-size: 5rem;
    }
}


.countdown-unit {
    width: unset !important;
    color: #fff !important;
}

.countdown-unit-separator {
    color: #fff !important;
}

.navbar-brand {
    padding: 0rem !important;
    width: 175px !important;
}

.navbar-brand img {
    max-width: 175px !important;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: var(--primary);
}

.obs.left {
    transition: all 1.5s ease-in-out;
    opacity: 0;
    transform: translateX(85%);
}

.obs.left.big {
    transition: all 1.5s ease-in-out;
    opacity: 0;
    transform: translateX(85%);
}

.obs.right {
    transition: all 1.5s ease-in-out;
    opacity: 0;
    transform: translateX(-85%);
}

.obs.visible {
    transition: all 1.5s ease-in-out;
    opacity: 0;
}

.obs.animate.left {
    opacity: 1;
    transform: translateX(0);
    transition: all 1.5s ease-in-out;
}

.obs.animate.left.big {
    opacity: 1;
    transform: translateX(10%);
    transition: all 1.5s ease-in-out;
}

.obs.animate.right {
    opacity: 1;
    transform: translateX(-10%);
    transition: all 1.5s ease-in-out;
}

.obs.animate.visible {
    opacity: 1;
    transition: all 1.5s ease-in-out;
}

.obs.visible.vehicle {
    transition: all 2.5s ease-in-out;
}

.obs.animate.visible.vehicle {
    transition: all 2.5s ease-in-out;
}

.absolute-image.obs.left {
    opacity: 1 !important;
}

.absolute-image.obs.left.animate {
    opacity: 1;
    transform: translateX(15%);
    transition: all 1.5s ease-in-out;
}

.dunes {
    transform: translateY(-80%);
    margin-bottom: -100px;
}

.py-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.pt-10 {
    padding-top: 10rem !important;
}

.pb-10 {
    padding-bottom: 10rem !important;
}

.car-title {
    font-family: Fahkwang-Medium, sans-serif;
    text-align: center;
}

.car-info-icon {
    width: 14px;
    height: 14px;
    display: flex;
}

.car-info-value {
    font-family: Poppins-Regular, sans-serif;
    font-size: 14px !important;
}

.car-info-value.small {
    font-family: Poppins-Regular, sans-serif;
    font-size: 12px !important;
}

.price-value {
    font-family: Poppins-Medium, sans-serif;
    font-size: 28px !important;
    line-height: 28px;
    color: var(--gold) !important;
}

.card {
    border-radius: 0 !important;
    box-shadow: 0 4px 8px 0 rgba(80, 39, 14, 0.2) !important;
    transition: all 0.5s ease-in-out;
}

.card:hover {
    box-shadow: 0 10px 16px 0 rgba(80, 39, 14, 0.2) !important;
    transition: all 0.5s ease-in-out;
}

.card-button {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    font-family: Poppins-Medium, sans-serif;
    text-transform: uppercase;
}

.card-button:hover {
    color: var(--primary);
    background-color: var(--gold);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.card-info {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}

.card-info p {
    margin: 0 !important;
}

.card.no-shadow {
    box-shadow: none !important;
}

.bg-transparent {
    background: transparent !important;
}

.bg-primary-dark {
    background: var(--primary);
}

.absolute-image {
    position: absolute;
    right: 0;
    width: 50%;
    bottom: 0;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

.footer-logo {
    width: 175px;
}

.why-us-icon {
    width: 50px;
    height: 50px;
}

.why-us-text {
    text-align: justify;
}

.why-us-item-title {
    font-family: Poppins-Medium, sans-serif;
    font-size: 16px !important;
}

.line-height {
    line-height: 1;
}

.dropdown-menu {
    background-color: var(--white) !important;
}

.nav-link {
    text-transform: uppercase;
    transition: all 0.2s ease-in-out !important;
}

.mega-menu-link {
    line-height: 1;
    text-align: left;
    border-right: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.mega-menu-link.border-none {
    border-right: 0 !important;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    transition: all 0.2s ease-in-out !important;
}

.arrow {
    margin: 4px;
    display: inline-block;
    height: 6px;
    position: relative;
    width: 6px;
}

.arrow::after {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: "";
    display: inline-block;
    height: 8px;
    left: 0;
    position: absolute;
    top: -6px;
    width: 8px;
    transition: all 0.2s ease-in-out;
    transform: rotate(0deg);
    transform-origin: center;
}

.nav-link.show .arrow::after {
    transition: all 0.2s ease-in-out;
    transform: rotate(180deg);
    transform-origin: center;
    left: 3px;
    top: -3px;
}

.arrow.is-bottom {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dropdown-toggle:after {
    display: none !important;
}

.categories {
    height: calc(100vh - (95px + 6rem));
}

.form-check-input:checked:focus:before {
    box-shadow: none !important;
}

.category-icon {
    width: 80% !important;
    margin: auto;
}

.category-icon img {
    width: 60%;
    display: block;
    margin: auto;
}

.small-icon {
    width: 14px;
    height: 14px;
    display: flex;
    margin-right: 5px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        height: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }
}

.multi-carousel .multi-carousel-inner .multi-carousel-item img {
    border-radius: .3rem !important;
}

.multi-carousel .multi-carousel-inner {
    border-radius: .3rem !important;
}


/* Footer Bottom Start */
.footer-bottom {
    background-color: white;
    font-size: 14px;
    padding: 25px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding-top: 1.5rem;
}

.footer-inner {
    display: flex;
    align-items: center;
}

.footer-inner-left {
    justify-content: flex-start;
}

.footer-inner-right {
    justify-content: flex-end;
}

.footer-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    margin-right: 10px;
}

.footer-image a img {
    width: 40px;
}

.footer-details {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0 !important;
}

.footer-link {
    display: inline-block !important;
    text-align: center !important;
    transition: color .2s ease-in-out;
    color: #fff !important;
}

.footer-link:hover {
    color: var(--gold) !important;
    transition: color .2s ease-in-out;
}

.footer-heading {
    margin-bottom: 0 !important;
    font-size: 14px;
}

.footer-link {
    transition: color .2s ease-in-out;
}

.footer-link h5 {
    font-size: 14px;
    text-align: left;
}

.footer-link:hover h5 {
    color: var(--gold) !important;
    transition: color .2s ease-in-out;
}

.footer-link:last-of-type {
    margin: 0 !important;
}

.footer-row * {
    color: #fff;
}

h6 {
    margin: 0 !important;
}

@media (max-width: 1300px) {

    .nav-link h2 {
        font-size: 14px !important;
    }

    .button {
        width: 150px;
    }

    .navbar-brand img {
        max-width: 150px;
    }
}

@media (max-width: 1260px) {
    .footer-inner-right {
        flex-direction: column;
    }

    .footer-inner-right .footer-line {
        display: none;
    }

    .footer-bottom .footer-inner-right>* {
        margin-bottom: 10px !important;
    }

    .footer-bottom .footer-inner-right .footer-heading {
        margin-bottom: 0 !important;
    }


    h1 {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-bottom: 0;
        max-width: 100%;
    }

}


@media (max-width: 1150px) {
    .footer-inner-left {
        flex-direction: column;
    }

    .footer-image {
        margin-bottom: 10px;
    }

    .footer-top-column:not(:last-of-type) {
        margin-bottom: 3rem;
    }

    .section-title.large {
        font-size: 70px !important;
    }

    .nav-link h2 {
        font-size: 10px !important;
    }
}

@media(max-width: 550px) {

    .nav-tabs-vehicle .nav-item .nav-link {
        height: 50px !important;
    }
}


@media (max-width: 992px) {
    .footer-inner-left {
        margin-bottom: 10px;
    }

    .nav-link h2 {
        font-size: 16px !important;
    }
}

@media (max-width: 410px) {
    .footer-details {
        flex-direction: column;
    }

    .footer-inner-left .footer-line {
        display: none;
    }

    .footer-details :not(:last-child) {
        margin-bottom: 10px !important;
    }

    .back-time,
    .take-time {
        font-size: 14px !important;
    }

    .select-wrapper .form-control {
        font-size: 14px !important;
    }

    .car-info-value.small {
        font-size: 10px !important;
    }
}

.margin-top-section {
    margin-top: 94px !important;
    transition: all 0.5s ease-in-out;
}

.margin-top-section.fixed {
    margin-top: 65px !important;
    transition: all 0.5s ease-in-out;
}

.carousel-title {
    text-align: center;
    font-size: 16px;
    font-family: Fahkwang-Regular, sans-serif;
}

.multi-carousel-item {
    opacity: 0.3 !important;
    transition: all 0.5s ease-in-out;
    width: 75% !important;
    margin: 0 auto;
}

.multi-carousel-item:nth-of-type(2) {
    opacity: 1 !important;
    transition: all 0.5s ease-in-out;
    width: 100% !important;
    margin: 0 auto;
}

.multi-carousel.vertical .carousel-control-prev {
    height: 33% !important;
    opacity: 0 !important;
}

.multi-carousel.vertical .carousel-control-next {
    height: 33% !important;
    opacity: 0 !important;
}

.sticky-div {
    position: sticky;
    top: calc(3rem + 95px);
}

.section-title.small {
    font-size: 30px !important;
}

.contact-content {
    box-shadow: 0 5px 10px 0 rgba(80, 39, 14, 0.2);
    min-height: 500px;
    transform: translateY(-55vh);
    background-color: var(--white);
    margin-bottom: -50vh;
}

.contact-icon {
    width: 30px;
    height: 30px;
    display: flex;
    margin-right: 15px;
}

.nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 8%);
}

.nav-tabs .nav-item {
    flex: 1;
}

.nav-tabs .nav-item a {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px !important;
    padding: 15px 0 !important;
    font-family: Poppins-Medium, sans-serif;
}

.table>:not(:last-child)>:last-child>* {
    font-family: Poppins-Medium, sans-serif;
}

.table>:not(caption)>*>* {
    font-size: 16px !important;
}

.form-outline .form-control~.form-notch {
    display: none !important;
}

.form-control {
    border: 0 !important;
    border-bottom: 1px solid var(--primary) !important;
    border-radius: 0 !important;
    height: 45px !important;
    font-family: Poppins-Medium, sans-serif;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.invalid-feedback,
.invalid-tooltip {
    position: relative !important;
}

textarea.form-control {
    border: 0 !important;
    border-bottom: 1px solid var(--primary) !important;
    border-radius: 0 !important;
    height: 135px !important;
    font-family: Poppins-Medium, sans-serif;
    padding: 0 !important;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    margin-bottom: 1rem;
    background-image: none;
    border-bottom: 1px solid #00b74a !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    margin-bottom: 1rem;
    background-image: none;
    border-bottom: 1px solid #f93154 !important;
}

.select-arrow:before {
    display: none !important;
}

.choose-location-arrow,
.choose-time-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    display: flex;
}

.model label input,
.reservation label input {
    border: none;
    box-sizing: border-box;
    outline: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    padding: 0 !important;
}

.modal-body {
    overflow-y: auto;
    height: 90vh;
}

.modal-body a {
    color: var(--gold) !important;
}

.modal-body a:hover {
    color: var(--black) !important;
}

.back-time,
.take-time {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 45px !important;
    align-items: center;
    border-bottom: 1px solid var(--primary);
    font-family: Poppins-Medium, sans-serif;
}

.xdsoft_calendar tr {
    display: flex;
}

.xdsoft_calendar tr td {
    width: 40px !important;
    height: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.xdsoft_datetimepicker .xdsoft_datepicker,
.xdsoft_datetimepicker .xdsoft_timepicker {
    width: auto !important;
    box-shadow: 0 5px 10px 0 rgba(80, 39, 14, 0.2) !important;
    background-color: #fff;
    border: 0 !important;
    padding: 1rem !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td>div {
    padding: 0 !important;
}

.xdsoft_datetimepicker {
    border: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
    float: none;
    background-position: -40px -15px;
    height: 15px;
    width: 30px;
    display: block;
    margin: auto !important;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
    height: 240px !important;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div {
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 12px;
    text-align: center;
    border-collapse: collapse;
    cursor: pointer;
    border-bottom-width: 0;
    height: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 25px;
    width: 150px !important;
}

.extras-item {
    height: 45px !important;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary);
}

.accordion-box.p-0 {
    padding: 0 !important;
}

.form-label {
    color: var(--primary);
    font-family: Poppins-Medium, sans-serif;
    text-transform: uppercase;
    font-size: 16px !important;
}

.form-label.noup {
    text-transform: unset !important;
}

.border-bottom-2 {
    border-bottom: 2px solid var(--primary);
}

.border-top-black {
    border-top: 1px solid var(--primary);
}

label.category {
    opacity: 0.5;
}

input.form-check-input:checked[type=checkbox]+label.category {
    opacity: 1;
}

.text-white a {
    color: var(--white) !important;
}

.text-white a:hover {
    color: var(--gold) !important;
}

.seo-links {
    max-height: 0 !important;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

.seo-links.visible {
    max-height: 500px !important;
    transition: all 0.5s ease-in-out;
}

/* Footer Bottom End */
@media (max-width:992px) {
    .car-options-wrapper {
        justify-content: space-between !important;
    }

    .mobile-nav-button {
        width: 23px;
        position: absolute;
        right: 77px;
    }

    .mobile-nav-button.phone {
        right: 125px;
        filter: brightness(0) invert(1);
    }

    .psm-3 {
        padding: 1rem !important;
    }

    .margin-top-section {
        margin-top: 90px !important;
        transition: all 0.5s ease-in-out;
    }

    .margin-top-section.fixed {
        margin-top: 60px !important;
        transition: all 0.5s ease-in-out;
    }

    .header-top-right {
        display: none !important;
    }


    .section-title {
        font-size: 35px !important;
    }

    .section-title {
        text-align: center;
    }

    .hero {
        width: 100% !important;
        height: unset !important;
        background-color: var(--primary);
        overflow: hidden;
        padding: 12rem 0 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero.contact {
        width: 100% !important;
        height: 100vh !important;
        background-color: var(--primary);
        overflow: hidden;
        padding: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .obs.animate.right {
        opacity: 1;
        transform: translate(0%, -21px) !important;
        transition: all 1.5s ease-in-out;
    }

    .button.button-primary {
        margin: 3rem auto 0 auto;
    }

    .obs.left {
        display: none !important;
    }

    .small-title {
        text-align: center !important;
    }

    .section-title.large {
        font-size: 50px !important;
    }

    .py-10 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pb-10 {
        padding-bottom: 3rem !important;
    }

    .pt-10 {
        padding-top: 3rem !important;
    }

    .nav-item-button {
        display: none !important;
    }

    .about-us-content {
        padding-right: 0 !important;
    }

    .row>*,
    .cta .container-fluid {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .why-us-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .col-md-6 .row {
        margin: 0 !important;
    }

    .small-title {
        margin-bottom: 1rem !important;
    }

    .cta .text-white {
        text-align: justify !important;
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }

    .w-75 {
        width: 100% !important;
        text-align: justify !important;
    }

    .navbar-nav .dropdown-menu {
        position: fixed !important;
        top: 90px;
        height: calc(100vh - 90px);
        transform: translateX(100vw);
        transition: all 0.5s ease-in-out;
        display: block !important;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 0;
        margin-top: 20px;
        transition: all 0.5s ease-in-out;
        opacity: 1 !important;
        visibility: visible !important;
        background-color: var(--primary) !important;
    }

    .navbar-nav .dropdown-menu.show {
        transform: translateX(0);
        transition: all 0.5s ease-in-out;

    }

    .navbar-nav {
        height: calc(100vh - 90px);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 0;
        margin-top: 0;
        position: fixed !important;
        width: 100%;
        background: var(--primary);
        z-index: 1;
        left: 0;
        padding: 0 15px;
        top: 90px;
        transition: all 0.5s ease-in-out;
        opacity: 1 !important;
    }

    .fixed .navbar-nav,
    .fixed .navbar-nav .dropdown-menu {
        height: calc(100vh - 60px);
        top: 60px;
        transition: all 0.5s ease-in-out;
        overflow-y: scroll;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #fff !important;
    }

    .dropdown-menu {
        background-color: var(--primary) !important;
    }

    .mega-menu-link {
        font-size: 16px !important;
        line-height: 1;
        text-align: left;
        font-family: Poppins-Light, sans-serif;
        border-right: 2px solid var(--primary);
        color: #fff;
    }

    .nav-link,
    .mega-menu-link {
        padding: 0 !important;
        height: 75px !important;
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    }

    .arrow::after {
        left: -4px !important;
        top: 2px !important;
        transform: rotate(-90deg) !important;
    }

    .navbar {
        height: 60px;
    }

    .dropdown-menu .row>* {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .msm-0 {
        margin: 0 !important;
    }

    .psm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mobile-show {
        display: flex !important;
    }

    .fade-in {
        -webkit-animation-name: '' !important;
        animation-name: '' !important;
    }

    .fade-out {
        -webkit-animation-name: '' !important;
        animation-name: '' !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-1 {
        order: 1 !important;
        margin-bottom: 15px;
    }

    .section-title.small {
        font-size: 20px !important;
    }


}

.about-us-content ul,
.about-us-content li {
    list-style: disc !important;
    list-style-position: inside;
}

.error-message {
    position: absolute;
    bottom: 50px;
    padding: 40px;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-photo {
    min-height: 1px;
    position: relative;
}

.special-list {
    position: relative;
}

.special-list .icon {
    width: 10px;
    height: 10px;
    margin-right: 2px;
    display: flex;
}

.error-link {
    color: var(--gold) !important;
}

.error-link:hover {
    color: var(--white) !important;
}

.absolute-button {
    position: absolute !important;
    bottom: 25px;
    width: 100%;
}

a.text-white:hover {
    color: var(--gold) !important;
}

.about-us-content p a {
    color: var(--gold) !important;
    font-weight: 600 !important;
}

.about-us-content p a:hover {
    color: var(--primary) !important;
}

.small {
    font-size: 12px !important;
}

.fs-17 {
    font-size: 17px !important;
}

/* Preloader Start */
.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    background-color: #fff;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.preloader.hidden {
    transition: all .3s ease-in-out;
    opacity: 0;
    user-select: none;
    visibility: hidden;
}

.preloader img {
    width: 150px;
}

.swal2-popup {
    border-radius: 0 !important;
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0 !important;
    background: initial;
    color: #fff;
    font-size: 1.0625em;
    width: 150px;
    outline: none !important;
    box-shadow: none !important;
}

footer a,
footer p,
.footer-bottom a,
.footer-bottom p {
    font-size: 14px !important;
}

footer .fs-17 {
    font-size: 15px !important;
}

.card-info a {
    color: var(--gold);
    transition: color .3s ease-in-out;
}

.card-info a:hover {
    color: var(--primary);
    transition: color .3s ease-in-out;
}

.icon-inactive {
    width: 87px;
    height: 87px;
}

.icon-inactive.large {
    width: 147px;
    height: 147px;
}

.red-notice {
    background-color: #c3423f !important;
    padding: 0.2rem 1rem;
    margin-top: 15px !important;
    font-size: 12px;
    width: 75%;
}

.red-text {
    color: #c3423f !important;
}

.primary-text {
    color: var(--ceruleanHover) !important;
}

.text-white {
    color: white !important;
}

.icon-md {
    width: 24px !important;
}

.mb-1 {
    margin-bottom: .5rem !important;
}

.border-x {
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.fs-xsm {
    font-size: 14px !important;
}

@media (max-width:991px) {
    .mobile-fixed-navv.fixed {
        transform: translateY(0)
    }

    .mobile-fixed-navv {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transition: all .3s ease-out;
        transform: translateY(70px);
        z-index: 100;
        background-color: #c3423f !important
    }

    .mobile-fixed-navv .col-4 {
        padding: 0 !important;
    }
}

@media (min-width:991px) {
    .mobile-fixed-navv {
        display: none;
    }
}