/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Marcellus",  sans-serif;
  --nav-font: "Marcellus",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f6f6f6; /* Background color for the entire website, including individual sections */
  --default-color: #222222;; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #353434; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFD700; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #f1f1f1; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #353535;; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --call-us-background-color: #fcfcfc;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #2b3904; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #d7d7d7; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5d6164; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fafa24; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

* {
    box-sizing: border-box;
}

body {
    /* color: #666; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background:var(--background-color);
}


@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
        font-weight: 400;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--default-color);
    color: var(--heading-color);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    border-radius: 0;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top:hover {
    color: var(--default-color);
    background: var(--heading-color);
}

.back-to-top i {
    padding-top: 10px;
}


@media (max-width: 575.98px) {
    #header .logo {
        padding-left: 5px;
    }

    #header .phone {
        display: none;
    }

    #header .mobile-menu-btn {
        padding-right: 5px;
        display: block;
        text-align: right;
        font-size: 20px;
        line-height: 55px;
    }

    .main-menu {
        padding: 0 30px;
    }
}
@media (max-width: 1199.98px) {
    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ================================================= */
/* --------------- Header Slider CSS --------------- */
/* ================================================= */

#headerSlider {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    margin: 0 auto;
    text-align: center;
}

#headerSlider img {
    width: 100%;
    height: 100vh;
    
}

#headerSlider .carousel-caption {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(0,0,0,.5);
    z-index: 1;
}

#headerSlider .carousel-caption h1 {
    color: #FFD700;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media (max-width: 767.98px) {
    #headerSlider .carousel-caption h1 {
        font-size: 35px;
        font-weight: 700;
        letter-spacing: 3px;
    }
}

@media (max-width: 575.98px) {
    #headerSlider .carousel-caption h1 {
        font-size: 25px;
        font-weight: 500;
        letter-spacing: 1;
    }
}

#headerSlider .animated {
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
}


/* ================================================= */
/* ---------------- Welcome Section ---------------- */
/* ================================================= */

#welcome {
    position: relative;
    padding: 45px 0 60px 0;
    background: var(--surface-color);
    text-align: center;
}

#welcome h3 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#welcome p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    #welcome h3 {
        font-size: 40px;
        font-weight: 700;
    }
    
    #welcome p {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
    }
}

@media (max-width: 575.98px) {
    #welcome h3 {
        font-size: 30px;
        font-weight: 600;
        letter-spacing: 0;
    }
    
    #welcome p {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
    }
}

#welcome a {
    display: inline-block;
    padding: 7px 30px;
    color: var(--accent-color);
    background: var(--default-color);
}

#welcome a:hover {
    color: var(--default-color);
    background: var(--accent-color);
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */

.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 700;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 0;
    }
}

/* ================================================= */
/* ----------------- Amenities Style --------------- */
/* ================================================= */

#amenities {
    position: relative;
    padding: 45px 0 15px 0;
    text-align: center;
}

#amenities.home-amenities {
    max-height: 100%;
    /* background-image: url(/images/img-otel/amenities-bg.jpg); */
    background-image: url(/images/Oba-otel.jpg);

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

#amenities.home-amenities:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#amenities .container {
    position: relative;
    z-index: 1;
}

#amenities.home-amenities h2,
#amenities.home-amenities h3,
#amenities.home-amenities p {
    color: #ffffff;
}

#amenities h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#amenities .icons {
    margin-bottom: 30px;
}

#amenities .icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

#amenities .icon.icon-1 {
    background-image: url(/images/img-otel/icon/shield-hover.png);
}

#amenities .icon.icon-1:hover {
    background-image: url(/images/img-otel/icon/shield.png);
}

#amenities .icon.icon-2 {
    background-image: url(/images/img-otel/icon/air-conditioner-hover.png);
}

#amenities .icon.icon-2:hover {
    background-image: url(/images/img-otel/icon/air-conditioner.png);
}

#amenities .icon.icon-3 {
    background-image: url(/images/img-otel/icon/bathtub-hover.png);
}

#amenities .icon.icon-3:hover {
    background-image: url(/images/img-otel/icon/bathtub.png);
}

#amenities .icon.icon-4 {
    background-image: url(/images/img-otel/icon/shower-hover.png);
}

#amenities .icon.icon-4:hover {
    background-image: url(/images/img-otel/icon/shower.png);
}

#amenities .icon.icon-5 {
    background-image: url(/images/img-otel/icon/towel-hover.png);
}

#amenities .icon.icon-5:hover {
    background-image: url(/images/img-otel/icon/towel.png);
}

#amenities .icon.icon-6 {
    background-image: url(/images/img-otel/icon/television-hover.png);
}

#amenities .icon.icon-6:hover {
    background-image: url(/images/img-otel/icon/television.png);
}

#amenities .icon.icon-7 {
    background-image: url(/images/img-otel/icon/wifi-hover.png);
}

#amenities .icon.icon-7:hover {
    background-image: url(/images/img-otel/icon/wifi.png);
}

#amenities .icon.icon-8 {
    background-image: url(/images/img-otel/icon/call-hover.png);
}

#amenities .icon.icon-8:hover {
    background-image: url(/images/img-otel/icon/call.png);
}

#amenities .icon.icon-9 {
    background-image: url(/images/img-otel/icon/minibar-hover.png);
}

#amenities .icon.icon-9:hover {
    background-image: url(/images/img-otel/icon/minibar.png);
}

#amenities .icon.icon-10 {
    background-image: url(/images/img-otel/icon/kitchen-hover.png);
}

#amenities .icon.icon-10:hover {
    background-image: url(/images/img-otel/icon/kitchen.png);
}
#amenities .icon.icon-11 {
    background-image: url(/images/img-otel/icon/24-circle.png);
}
#amenities .icon.icon-11:hover {
    background-image: url(/images/img-otel/icon/24-circle-hover.png);
}
#amenities .icon.icon-12 {
    background-image: url(/images/img-otel/icon/breakfast-hover.png);
}
#amenities .icon.icon-12:hover {
    background-image: url(/images/img-otel/icon/breakfast.png);
}


/* ================================================= */
/* ------------------ Rooms Style ------------------ */
/* ================================================= */

#rooms {
    position: relative;
    padding: 0px 0 5px 0;
}

#rooms .room-img,
#rooms .room-des,
#rooms .room-rate {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#rooms .room-des {
    width: 100%;
    text-align: center;
}

#rooms .room-img {
    overflow: hidden;
}

#rooms .room-img img {
    transition: 0.3s;
}

#rooms .room-img:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.box12 .icon li a {
    margin-right: 0;
}

#rooms h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

#rooms .room-size {
    margin: 0 0 25px 0;
    padding: 0;
}

#rooms .room-size li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    list-style-type: none;
}

#rooms .room-size li i {
    margin-right: 6px;
}

#rooms .room-icon {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

#rooms .room-icon li {
    list-style-type: none;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
}

@media (max-width: 575.98px) {   
    #rooms .room-icon li {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

#rooms .room-icon li.icon-1 {
    background-image: url(/images/img-otel/icon/shield.png);
}

#rooms .room-icon li.icon-1:hover {
    background-image: url(/images/img-otel/icon/shield-hover.png);
}

#rooms .room-icon li.icon-2 {
    background-image: url(/images/img-otel/icon/air-conditioner.png);
}

#rooms .room-icon li.icon-2:hover {
    background-image: url(/images/img-otel/icon/air-conditioner-hover.png);
}

#rooms .room-icon li.icon-3 {
    background-image: url(/images/img-otel/icon/bathtub.png);
}

#rooms .room-icon li.icon-3:hover {
    background-image: url(/images/img-otel/icon/bathtub-hover.png);
}

#rooms .room-icon li.icon-4 {
    background-image: url(/images/img-otel/icon/shower.png);
}

#rooms .room-icon li.icon-4:hover {
    background-image: url(/images/img-otel/icon/shower-hover.png);
}

#rooms .room-icon li.icon-5 {
    background-image: url(/images/img-otel/icon/towel.png);
}

#rooms .room-icon li.icon-5:hover {
    background-image: url(/images/img-otel/icon/towel-hover.png);
}

#rooms .room-icon li.icon-6 {
    background-image: url(/images/img-otel/icon/television.png);
}

#rooms .room-icon li.icon-6:hover {
    background-image: url(/images/img-otel/icon/television-hover.png);
}

#rooms .room-icon li.icon-7 {
    background-image: url(/images/img-otel/icon/wifi.png);
}

#rooms .room-icon li.icon-7:hover {
    background-image: url(/images/img-otel/icon/wifi-hover.png);
}

#rooms .room-icon li.icon-8 {
    background-image: url(/images/img-otel/icon/call.png);
}

#rooms .room-icon li.icon-8:hover {
    background-image: url(/images/img-otel/icon/call-hover.png);
}

#rooms .room-icon li.icon-9 {
    background-image: url(/images/img-otel/icon/minibar.png);
}

#rooms .room-icon li.icon-9:hover {
    background-image: url(/images/img-otel/icon/minibar-hover.png);
}

#rooms .room-icon li.icon-10 {
    background-image: url(/images/img-otel/icon/kitchen.png);
}

#rooms .room-icon li.icon-10:hover {
    background-image: url(/images/img-otel/icon/kitchen-hover.png);
}
#rooms .room-icon li.icon-12 {
    background-image: url(/images/img-otel/icon/breakfast.png);
}

#rooms .room-icon li.icon-12:hover {
    background-image: url(/images/img-otel/icon/breakfast-hover.png);
}
#rooms .room-rate {
    text-align: center;
}

#rooms .room-rate h3 {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    background: var(--default-color);
    margin: 0;
    text-transform: uppercase;
}

#rooms .room-rate h1 {
    color: var(--accent-color);
    font-size: 50px;
    font-weight: 900;
    padding: 15px 0;
    background: var(--contrast-color);
    margin: 0;
}

#rooms .room-rate p {
    display: block;
    padding: 7px 30px;
    color: var(--accent-color);
    background: var(--default-color);
}

#rooms .room-rate p:hover {
    color: var(--default-color);
    background: var(--accent-color);
}

#rooms hr {
    width: 300px;
    margin: 30px auto;
    text-align: center;
}

.modal .modal-header button {
    margin: 0 auto;
    padding: 0px 8px 5px 8px;
    font-size: 25px;
    border-radius: 20px;
    background: var(--background-color);
    color: var(--contrast-color)
}

.modal .modal-body img {
    height: 100%;
    width: 100%;
}

.modal .modal-body h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal .modal-body p {
    margin-bottom: 15px;
}

.modal .modal-body .modal-link {
    position: relative;
    text-align: center;
}

.modal .modal-body a {
    display: inline-block;
    margin: 0 auto;
    padding: 8px 16px;
    background: var(--default-color);
    color: var(--accent-color);
    cursor: pointer;
    border: none;
}

.modal .modal-body a:hover {
    color: var(--default-color);
    background: var(--accent-color);
}

.modal .port-slider-nav .slick-track {
    padding: 30px 0 15px 0;
}

.modal .port-slider-nav .slick-center img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* ================================================= */
/* ----------------- Call Us Style ----------------- */
/* ================================================= */

#call-us {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    
}

#call-us .section-header::after {
    background: var(--accent-color)
}
#call {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    
}

#call .section-header::after {
    background: #f2f2f2;
}

#call a {
    display: inline-block;
    padding: 15px 30px;
    background: var(--default-color);
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

#call a:hover {
    color: var(--default-color);
    background: var(--accent-color);
}

@media (max-width: 575.98px) {
    #call a {
        padding: 10px 30px;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
}

.breadcrumbs ol li a{
    color: #FFD700;
}

/* ================================================= */
/* ------------------ Footer Style ----------------- */
/* ================================================= */


.bg-footer-color{
    background-color: var(--default-color);
}
.footer h5{
    color: var(--accent-color);
}
.footer .h5{
    color: var(--accent-color);
}
.position-relative{
    position: relative;
}
.position-sticky{
    position: sticky;
    bottom:10px;
    z-index: 999;
    animation: up-down 1s ease-in-out infinite alternate-reverse both;
}
 @keyframes up-down {
            from {
                opacity: 0.7;
                scale: 0.8;
            }

            to {
                opacity: 1;
                
            }
        }
.icon-otel i{
    color: var(--accent-color);
}
.otel-text-primary{
    color: var(--accent-color) !important;
}