@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700");

:root {
    --main-color: #fbb03b;
    --footer-bg: #ededed;
    --black-color: #000000;
    --white-color: #ffffff;
    --icon-color: #4d433a;
    --hover-color: #b5a085;
    --btn-color: #c87a00;
}

body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
.row {
    gap: 24px 0px;
}
.common-section {
    padding: 40px 0px;
}
.common-btn {
    background-color: var(--main-color);
    border-radius: 50px;
    padding: 10px 30px;
    transition: all ease-in-out 0.5s;
    color: var(--white-color);
}
.common-btn:hover {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.common-btn-res {
    background-color: var(--btn-color);
    border-radius: 50px;
    padding: 10px 30px;
    transition: all ease-in-out 0.5s;
    color: var(--white-color);
}
.common-btn-res:hover {
    border: 1px solid var(--btn-color);
    color: var(--white-color);
}
.common-btn-black {
    background-color: var(--black-color);
    border-radius: 50px;
    padding: 10px 30px;
    transition: all ease-in-out 0.5s;
    color: var(--white-color);
}
.common-btn-black:hover {
    border: 1px solid var(--black-color);
    color: var(--black-color);
}
/******************************** Header Section ****************************************/
header {
    position: absolute;
    inset: 0;
    width: 100%;
    height: max-content;
    z-index: 10;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9999;
    width: 100%;
}
.navbar.header-fixed {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    transition: all ease-in-out 0.2s;
    padding: 20px 0px;
    backdrop-filter: blur(5px);
    animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.navbar-brand {
    height: 80px;
}

.navbar-brand img {
    width: 150px;
    height: 107%;
    object-fit: cover;
}

@media (max-width: 577px) {
    .navbar-brand img {
        width: 85px;
    }
}


.navbar-nav {
    display: flex;
    gap: 10px;
}
.navbar-nav .nav-item .nav-link {
    font-weight: 400;
    font-size: 18px;
    color: var(--white-color);
    text-transform: uppercase;
}
.navbar-nav .nav-item .nav-link:hover {
    color: var(--main-color);
}
.navbar-nav .nav-item .nav-link.active {
    color: var(--main-color);
}

.head-brand-menu .common-btn {
    font-size: 16px;
    padding: 4px 8px;
}
.navbar-toggler-icon {
    filter: invert(1);
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-icons .nav-icon-cart {
    color: var(--white-color);
    font-size: 24px;
    position: relative;
}

/************************************* Banner Section**************************************/
.banner-section {
    min-height: 100vh;
    height: 100%;
    position: relative;
}
.social-bg {
    position: absolute;
    top: -9%;
    right: -12%;
    height: 396px;
    z-index: 1;
}
.social-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-banner-section {
    min-height: 80vh;
    height: 100%;
    position: relative;
}
.banner-slider .item {
    background: no-repeat center center / cover;
    position: relative;
}
.banner-slider .item::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    inset: 0%;
    width: 100%;
    height: 100%;
}
.banner-content {
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    padding: 120px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.inner-banner-content {
    display: flex;
    width: 100%;
    min-height: 80vh;
    height: 100%;
    padding: 50px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.banner-content h1 {
    font-size: 90px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}
.inner-banner-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}
.banner-content h5,
.inner-banner-content h5 {
    font-size: 34px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
}
.banner-content p,
.inner-banner-content p {
    font-size: 24px;
    font-weight: 400;
    color: var(--white-color);
}
.banner-content a {
    font-size: 24px;
}
.banner-slider {
    position: relative;
}
.banner-slider.owl-carousel .owl-nav {
    position: absolute;
    bottom: 15%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-slider.owl-carousel .owl-nav button.owl-prev,
.banner-slider.owl-carousel .owl-nav button.owl-next {
    color: var(--black-color);
    background: var(--white-color);
    padding: 4px 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: -2px -4px 13px 1px rgba(0, 0, 0, 0.75);
}
.banner-slider.owl-carousel .owl-nav button.owl-prev i,
.banner-slider.owl-carousel .owl-nav button.owl-next i {
    font-size: 50px;
}

/************************************* Reservation Section ******************************/
.reserve-section {
    background: no-repeat center center / cover;
    position: relative;
}
.reserve-section::after {
    content: "";
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.reserve-content {
    padding: 140px 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
.reserve-head h3 {
    color: var(--main-color);
    font-size: 64px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.reserve-head p {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.reserve-btn a {
    position: relative;
    z-index: 1;
}

/************************************ Book Events Section  *************************/
.be-section > * .row > * {
    padding: 0%;
    margin: 0%;
}
.book-img-one {
    width: 120%;
    height: 655px;
    margin-top: -75px;
    position: relative;
    right : 10%;
}
.book-img-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.book-img-two {
    width: 100%;
    height: 580px;
}
.book-img-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.book-form {
    padding: 15px 30px;
    background: var(--black-color) no-repeat center center / cover;
    height: 100%;
}
.book-form .row > * {
    padding: 0px 10px;
}
.be-head h3 {
    color: var(--main-color);
    font-weight: 700;
    font-size: 34px;
}
.be-head p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
}
.book-form > form > .row {
    gap: 12px 0px;
}

/*********************************** Our Food Difference *******************************/
.ofd-content h3 {
    font-size: 46px;
    font-weight: 700;
}
.ofd-content h3 span {
    color: var(--main-color);
}
.ofd-content {
    padding: 50px 0px;
}
.ofd-content p {
    font-size: 16px;
    font-weight: 400;
}
.ofd-img {
    height: 400px;
}
.ofd-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ofd-feature-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}
.ofd-fetures {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ofd-logo {
    height: 70px;
}
.ofd-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ofd-text p {
    font-weight: 600;
    font-size: 18px;
}

/*********************************** Why Swahili Village Section ************************/
.wsv-img {
    height: 500px;
    position: relative;
    z-index: -1;
}
.wsv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wsv-section {
    padding-bottom: 20px;
}
.wsv-content {
    position: relative;
    margin: 120px 0px;
}
.wsv-content::before {
    content: "";
    position: absolute;
    left: -7%;
    top: 0%;
    width: 13%;
    height: 100%;
    background: var(--main-color);
    display: block;
    z-index: -1;
}
.wsv-content h3 {
    font-weight: 700;
    font-size: 54px;
    margin-bottom: 20px;
}
.wsv-content p {
    font-weight: 400;
    font-size: 16px;
    margin-left: 50px;
}
.wsv-content a.common-btn {
    margin-left: 50px;
}

/*********************************** Swahili Village Club *******************************/
.svc-section {
    background: no-repeat center center / cover;
    padding: 40px 0px;
}
.svc-content h3 {
    color: var(--main-color);
    font-size: 58px;
    font-weight: 700;
}
.svc-content p {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
}

/******************************** About Us PAge Section **************************/
.about-content h3 {
    font-size: 46px;
    font-weight: 700;
}
.about-content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666666;
}
.faq-section {
    position: relative;
}
.faq-section::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 40%;
    height: 100%;
    display: inline-block;
    /* background: #8AD459; */
    z-index: -1;
}
.faq-img {
    height: 600px;
    margin-left: 120px;
}
.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.faq-heading {
    margin: 20px 0px;
}
.faq-heading h3 {
    font-size: 46px;
    font-weight: 700;
}
.faq-accordion-box {
    margin-top: 20px;
}
.accordion-header {
    margin-bottom: 0;
}
.faq-accordion-box .accordion-header button {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    box-shadow: none;
}
.faq-accordion-box .accordion-body {
    font-size: 15px;
    font-weight: 400;
    color: #747474;
}
.faq-accordion-box .accordion-body p:last-child {
    margin-bottom: 0px;
}
.faq-accordion-box .accordion-item {
    border: none;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.faq-accordion-box .accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--main-color);
}
.faq-accordion-box .accordion-button:not(.collapsed)::after {
    content: "\f068";
}
.faq-accordion-box .accordion-button::after {
    content: "\2b";
    font-weight: 600;
    font-family: "font awesome 6 free";
    background-image: none;
    transform: none;
}
/***************************************** Contact Us Page *******************************/
.iframe-box {
    width: 100%;
    height: 500px;
}
.iframe-box iframe {
    width: 100%;
    height: 100%;
}
.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}
.form-text h2 {
    font-family: "Cormorant", sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #000;
    font-weight: 900;
}
.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-family: "Cormorant", sans-serif;
    font-weight: 400;
}
/******************************* Experience Magic Kenya Section *************************/
.emk-section {
    position: relative;
}
.emk-section::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
    height: 100%;
    width: 50%;
    background: url(../images/emk-bg.jpg) no-repeat center center / cover;
}
.emk-content {
    padding: 100px 50px;
}
.emk-content h5 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 20px;
}
.emk-content h3 {
    color: var(--main-color);
    font-size: 64px;
    font-weight: 700;
}
.emk-content p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    padding: 20px 0px;
}
.emk-img {
    width: calc(100% + 50px);
    height: 600px;
}
.emk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.emk-section > .container > .row > * {
    padding: 0%;
    margin: 0%;
}
.emk-low-img {
    width: 100%;
    height: 100%;
}
.emk-low-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**************************** Our Restaurants Section *********************************/
.or-img {
    height: 500px;
    position: relative;
}
.or-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.or-content {
    padding: 20px;
    background: rgba(251, 176, 59, 0.9);
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 90%;
    transition: all ease-in-out 0.5s;
}
.or-box:hover .or-btns {
    display: flex;
    /* padding: 60px 0px; */
}
.or-btns {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.5s;
}
.or-btns .common-btn-black {
    padding: 10px 50px;
}
.or-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
}
.or-text p {
    font-size: 15px;
    font-weight: 400;
    color: var(--white-color);
}

/************************************ Press Release Section *******************************/
.pr-img {
    width: 100%;
    height: 350px;
}
.pr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pr-content {
    width: 90%;
    margin: auto;
    background: var(--white-color);
    margin-top: -60px;
    position: relative;
    z-index: 1;
    padding: 10px 25px;
}
.pr-content h5 {
    width: 20%;
    background: var(--main-color);
    padding: 10px;
    text-align: center;
    color: var(--white-color);
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    z-index: 1;
    margin-top: -40px;
}
.pr-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    padding-top: 10px;
}
.page-nav {
    padding: 40px 0px;
}
.page-nav nav .pagination {
    display: flex;
    align-items: center;
    gap: 15px;
}
.page-nav nav .pagination .page-link {
    border-radius: 0px;
    font-size: 24px;
    padding: 10px 20px;
    color: var(--black-color);
}
.page-nav nav .pagination .page-link:hover {
    background: var(--main-color);
    color: var(--white-color);
}
.page-nav nav .pagination .page-item:last-child .page-link {
    background: var(--main-color);
    color: var(--white-color);
}

/**************************************** Blog Details Page ******************************/
.blog-img {
    height: 500px;
    width: 100%;
    margin-bottom: 25px;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-title,
.recent-post-box h5 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
}
.cat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: #efefef;
}
.cat-img {
    width: 100%;
    height: 140px;
    position: relative;
    display: inline-block;
}
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-name {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
    display: block;
    padding: 40px;
}
.cat-name p {
    color: var(--white-color);
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    /* white-space: nowrap; */
}

.recent-post-list {
    margin-top: 10px;
    padding: 10px;
    background: #efefef;
}
.recent-post-list li {
    background: var(--white-color);
    padding: 10px;
}
.recent-img-main {
    width: 45%;
}
.recent-img {
    width: 100%;
    height: 110px;
}
.recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-text-box {
    width: 100%;
}
.recent-sub-title,
.recent-post-list h6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
}
.recent-sub-para,
.recent-post-list p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}
.recent-text-box span i {
    color: var(--main-color);
}
.recent-post-list li a {
    display: flex;
    gap: 10px;
    color: #0e0d0e;
}
.recent-post-list li {
    margin-bottom: 15px;
}
.date-post {
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #0e0d0e;
    font-size: 13px;
    margin-bottom: 20px;
}
.date-post li {
    font-size: 16px;
}
.common-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 0px;
}
.common-para p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #616161;
}
.blog-des h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/**************************** Restaurant Details Page Section ***************************/
.navigation-section {
    position: relative;
    z-index: 1;
    margin-top: -67px;
}
.navigation-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--main-color);
    padding: 20px;
    gap: 30px;
}
.navigation-list li a {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}
.res-dtl-img {
    height: 100%;
}
.res-dtl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.res-dtl-des {
    padding: 20px 0px;
}
.res-dtl-des h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.res-dtl-des p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666666;
}
.res-dtl-list li {
    margin-bottom: 15px;
}
.res-dtl-nav-list li {
    background: var(--main-color);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}
.res-list-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.res-list-name p {
    margin-bottom: 0;
}
.res-logo {
    height: 100%;
}
.res-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.res-list-name p {
    color: var(--white-color);
    font-size: 18px;
}
.res-list-name i {
    color: var(--white-color);
    font-size: 24px;
}
.res-dtl-nav-list {
    background: #efefef;
    padding: 10px;
}
.res-dtl-nav-list li {
    margin-bottom: 20px;
}
.res-dtl-nav-list li:last-child {
    margin-bottom: 0px;
}
.res-dtl-img-ad {
    height: 150px;
    margin-top: 20px;
}
.res-dtl-img-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-btn {
    position: relative;
    padding: 10px 20px;
    font-weight: 600;
}
.contact-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--black-color);
    transform: skewX(15deg);
}
.res-dtl-contact {
    background: var(--main-color) no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px 0px;
    margin-top: 20px;
}
.res-dtl-contact h4 {
    font-weight: 700;
    font-size: 34px;
}
.res-dtl-contact p {
    font-weight: 500;
    font-size: 15px;
}
.res-menu-section {
    background: var(--black-color);
}
.res-menu-head {
    text-align: center;
}
.res-menu-head h3 {
    font-weight: 700;
    font-size: 58px;
    color: var(--white-color);
}
.res-menu-head h3 span {
    color: var(--main-color);
}
.res-menu-head p {
    font-weight: 400;
    font-size: 15px;
    color: var(--white-color);
}
.res-menu-img {
    /*height: 100%;*/
    height: 75%;
}
.res-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid var(--white-color);
}
.res-menu-name {
    text-align: center;
    padding: 20px 0px;
}
.res-menu-name h4 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 34px;
}
.res-menu-name p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 15px;
}
.res-menu-btns {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
}
.team-section {
    background: #f5f5f5;
}
.team-head {
    text-align: center;
}
.team-head h5 {
    color: var(--main-color);
    font-weight: 600;
    font-size: 42px;
}
.team-head h3 {
    font-weight: 700;
    font-size: 54px;
}
.team-img {
    width: 350px;
    height: 360px;
    position: relative;
    margin-top: -75px;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-mem-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}
.team-mem-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-des {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: var(--black-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.team-name {
    padding: 20px 0px;
}
.team-name h4 {
    color: var(--main-color);
    font-size: 34px;
    font-weight: 700;
}
.team-name p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 18px;
}
.team-content {
    padding: 40px 0px;
}
.team-info {
    background: var(--white-color);
    padding: 20px 10px;
    text-align: center;
}
.team-info p {
    font-weight: 400;
    font-size: 18px;
}
.team-info a.common-btn {
    border-radius: 0px;
    margin-bottom: -50px;
}
.vd-section {
    background: var(--black-color);
}
.vd-left h3 {
    color: var(--white-color);
    font-weight: 34px;
    font-weight: 600;
    text-transform: uppercase;
}
.vd-list {
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.vd-list li {
    color: var(--white-color);
}
.vd-list li h4 {
    font-weight: 34px;
    font-weight: 600;
}
.vd-list li p {
    font-weight: 18px;
    font-weight: 400;
}
.vd-time-list {
    margin-left: 50px;
    padding: 20px 0px;
}
.vd-time-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
}
.vd-right .vd-time span {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 600;
}
.vd-right .vd-time span h5 {
    font-size: 24px;
    font-weight: 600;
    background: var(--main-color);
    padding: 10px;
}
.vd-right .vd-time span i {
    font-size: 30px;
}
.vd-time-list li a {
    color: var(--white-color);
}
.ogal-head {
    text-align: center;
}
.ogal-head h5 {
    font-size: 42px;
    font-weight: 600;
    color: var(--main-color);
}
.ogal-head h3 {
    font-size: 54px;
    font-weight: 700;
}
.gal-img {
    height: 100%;
}
.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************************* Our Gallery Section *************************************/
.og-head {
    text-align: center;
    padding: 20px 0px;
}
.og-head h3 {
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
}
.gallery-slider {
    position: relative;
}
.gallery-slider.owl-carousel .owl-item {
    opacity: 0.5;
}
.gallery-slider.owl-carousel .owl-item.center {
    transform: scale(2);
    transition: all ease-in-out 0.5s;
    position: relative;
    z-index: 1;
    opacity: 1;
}
.og-card {
    width: 100%;
    height: 500px;
}
.og-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery-slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -3%;
    top: 40%;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 20px;
}
.gallery-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -3%;
    top: 40%;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px 20px;
}
.gallery-slider.owl-carousel .owl-nav button.owl-prev i {
    color: #fff;
    font-size: 24px;
}
.gallery-slider.owl-carousel .owl-nav button.owl-next i {
    color: #fff;
    font-size: 24px;
}
.gallery-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.fancybox__container {
    z-index: 999999;
}
.gallery-title-box h2 {
    text-align: center;
}
.gallery-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.gallery-box > *:last-child {
    position: absolute;
    top: 10%;
    left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    width: 80%;
    height: 80%;
    background: rgba(251, 176, 59, 0.8);
    color: var(--white-color);
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.5s;
    transform: scale(0.8);
}
.gallery-box:hover > *:last-child {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gal-des {
    text-align: center;
}
.gal-des h4 {
    font-weight: 600;
    font-size: 34px;
    color: var(--black-color);
}
.gal-des p {
    font-weight: 600;
    font-size: 17px;
    color: var(--white-color);
}
.upe-section {
    background: #f5f5f5;
}
.upe-head {
    text-align: center;
}
.upe-head h3 {
    font-size: 54px;
    font-weight: 700;
}

.up-event-slider {
    margin-top: 20px;
    position: relative;
}
.up-event-slider.owl-carousel .owl-nav {
    position: absolute;
    bottom: 18%;
    left: 13%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.up-event-slider.owl-carousel .owl-nav button.owl-prev,
.up-event-slider.owl-carousel .owl-nav button.owl-next {
    color: var(--white-color);
    background: var(--main-color);
    padding: 4px 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* box-shadow: -2px -4px 13px 1px rgba(0,0,0,0.75); */
}

.UpEvents-inner .row {
    align-items: center;
}
.UpEvents-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% + 40%);
    z-index: 1;
    position: relative;
    padding-left: 20%;
}
.UpEvents-box {
    background: var(--white-color);
    min-height: 300px;
    padding: 20px;
}
.UpEvents-box h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}
.uel-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: var(--black-color);
    font-size: 14px;
}
.UpEvents-box .uel-box img {
    width: 15px;
}
.up-event-des p {
    padding: 20px 0px;
    font-size: 16px;
    font-weight: 400;
}
.UpEvents-date {
    width: 150px;
    height: 140px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--white-color);
}
.UpEvents-date span {
    display: inline-block;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1;
}
.UpEvents-date p {
    display: inline-block;
    font-size: 15px;
    margin-bottom: 0px;
}
.UpEvents-simg {
    width: 100%;
    height: 400px;
}

/***************************************** Images Section ********************************/
.img-section > .container-fluid {
    padding: 0%;
    margin: 0%;
}
.images-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}
.image-box {
    width: 100%;
    height: 350px;
    display: inline-block;
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******************************** Vip Club Section *******************************/
.common-section.vip-club-section .container .row:nth-child(odd) > *:last-child {
    order: -1;
}
.common-content h3 {
    font-size: 36px;
    font-weight: 700;
}
.common-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--main-color);
    text-transform: uppercase;
}
.common-content p {
    font-size: 14px;
    color: #666666;
}
.vip-club-img {
    height: 400px;
}
.vip-club-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common-section.vip-club-section .container .row > * {
    padding: 0px;
}
.common-content {
    padding: 10px 20px;
}

/***************************************** Contact Us Page *******************************/
.iframe-box {
    width: 100%;
    height: 500px;
}
.iframe-box iframe {
    width: 100%;
    height: 100%;
}
.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}
.form-text h2 {
    font-weight: 700;
    font-size: 40px;
    color: #000;
    font-weight: 900;
}
.form-contact-box input,
.form-contact-box textarea {
    background: transparent;
    border-radius: 0px;
    border: 1px solid var(--white-color);
}
.contact-box input,
.contact-box textarea {
    border-radius: 0px;
}
.form-contact-box select {
    background-color: transparent;
    color: var(--white-color);
    border-radius: 0px;
    filter: contrast(0.9);
}
.form-contact-box select option {
    color: var(--black-color);
}
.form-contact-box select:checked {
    color: var(--white-color);
}
.form-contact-box input:focus,
.form-contact-box textarea:focus {
    background: transparent;
    outline: none;
}
.form-contact-box input::placeholder,
.form-contact-box textarea::placeholder {
    font-family: "Cormorant", sans-serif;
    font-weight: 400;
}
/******************************** Footer Section *********************************************/
footer {
    background: var(--footer-bg);
}
.footer-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    /* border-right: 1px solid #567F70; */
}
.footer-top {
    padding: 40px 0px;
}
/* .footer-section .footer-top > .row > *{
    margin-top: 50px;
} */
.footer-box .footer-box-para p {
    font-size: 15px;
    font-weight: 400;
}
.footer-follow {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-follow li a {
    width: 20px;
    height: 20px;
    background: var(--white-color);
    color: var(--icon-color);
    border-radius: 8px;
    padding: 7px 12px;
    transition: all ease-in-out 0.5s;
}
.footer-follow li a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}
.footer-follow li a i {
    font-size: 18px;
}
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-box-head h5 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-list li a {
    display: flex;
    align-items: center;
    color: var(--black-color);
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    transition: all ease-in-out 0.5s;
    text-transform: capitalize;
}
.footer-list li a:hover {
    color: var(--main-color);
}
.footer-list li a i {
    color: var(--main-color);
}
.footer-lower {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}
.footer-copyright {
    padding: 20px 0px;
}
.footer-copyright p {
    font-weight: 400;
    font-size: 13px;
    color: var(--black-color);
}

/********************************************** Media query ***********************************/
@media (min-width: 1700px) {
    .emk-img {
        width: calc(100% + 288px);
    }
    .svc-section {
        padding: 120px 0px;
    }
}
@media (max-width: 1400px) {
    .emk-img {
        width: calc(100% + 7.5%);
        height: 590px;
    }
    .be-head h3 {
        font-size: 28px;
    }
    .be-head p {
        font-size: 14px;
    }
    .emk-content h3 {
        font-size: 54px;
    }
    .svc-content h3 {
        font-size: 48px;
    }
    .social-bg {
        top: -12%;
        right: -15%;
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        left: 0;
        top: 90%;
        padding: 15px;
    }
    .be-head h3 {
        font-size: 24px;
    }
    .ofd-content h3 {
        font-size: 34px;
    }
    .emk-img {
        width: calc(100% + 3.25%);
        height: 660px;
    }
    .emk-content h3 {
        font-size: 48px;
    }
    .social-bg {
        right: -18%;
    }
    .banner-content h1 {
        font-size: 74px;
    }
    .be-head h3 {
        font-size: 22px;
    }
    .or-text h4 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .reserve-content {
        flex-direction: column;
    }
    .be-section > * > .row {
        gap: 0px 0px;
    }
    .be-head h3 {
        font-size: 34px;
    }
    .wsv-content {
        position: relative;
        margin: 0px 0px;
    }
    .wsv-content::before {
        left: 0%;
        top: 0%;
        width: 5%;
    }
    .emk-section::after {
        height: 100%;
        width: 100%;
    }
    .emk-content {
        padding: 40px 10px;
    }
    .emk-img {
        width: 100%;
        height: 100%;
    }
    .social-bg {
        display: none;
    }
    .reserve-content {
        padding: 50px 0px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
    }
    .team-card {
        margin-bottom: 100px;
    }
    .vd-time-list li {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .UpEvents-main {
        width: calc(100% + 50%);
    }
    .UpEvents-box {
        padding: 10px;
    }
    .UpEvents-date {
        width: 120px;
        height: 120px;
    }
    .UpEvents-simg {
        width: 100%;
        height: auto;
    }
    .up-event-des p {
        font-size: 14px;
    }
    .up-event-slider.owl-carousel .owl-nav {
        bottom: 10%;
    }
    .UpEvents-box h4 {
        font-size: 20px;
    }
    .up-event-des p {
        padding: 10px 0px;
    }
    .navigation-list {
        justify-content: space-between;
        padding: 10px;
        gap: 0px;
    }
    .navigation-section {
        margin-top: -47px;
    }
    .inner-banner-content h1 {
        font-size: 54px;
    }
    .common-section.vip-club-section
        .container
        .row:nth-child(odd)
        > *:last-child {
        order: 0;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 64px;
    }
    .banner-content p,
    .inner-banner-content p {
        font-size: 20px;
    }
    .common-btn-black {
        padding: 5px 20px;
    }
    .banner-slider.owl-carousel .owl-nav {
        bottom: 3%;
        left: 12%;
    }
    .banner-slider.owl-carousel .owl-nav button.owl-prev,
    .banner-slider.owl-carousel .owl-nav button.owl-next {
        width: 60px;
        height: 60px;
    }
    .banner-slider.owl-carousel .owl-nav button.owl-prev i,
    .banner-slider.owl-carousel .owl-nav button.owl-next i {
        font-size: 30px;
    }
    .reserve-head h3 {
        font-size: 48px;
    }
    .reserve-head p {
        font-size: 16px;
    }
    .book-img-one {
        width: 100%;
        height: 500px;
        margin-top: 0px;
        position: relative;
    }
    .book-img-one img {
        object-fit: contain;
    }
    .book-img-two {
        width: 100%;
        height: auto;
    }
    .footer-lower {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0px;
    }
    .inner-banner-content h1 {
        font-size: 44px;
    }
    .inner-banner-content,
    .inner-banner-section {
        min-height: 70vh;
    }
    .navigation-section {
        margin-top: 0px;
    }
    .navigation-list li a {
        font-size: 14px;
    }
    .res-dtl-des h3 {
        font-size: 34px;
    }
    .res-dtl-des p {
        font-size: 14px;
    }
    .res-menu-head h3 {
        font-size: 38px;
    }
    .res-menu-btns {
        flex-direction: column;
    }
    .ogal-head h5 {
        font-size: 32px;
    }
    .ogal-head h3 {
        font-size: 42px;
    }
    .gallery-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .UpEvents-main {
        flex-direction: column-reverse;
        width: 100%;
        padding-left: 0%;
    }
    .navigation-list {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
}

@media (max-width: 580px) {
    .banner-content h5,
    .inner-banner-content h5 {
        font-size: 28px;
    }
    .banner-content h1 {
        font-size: 54px;
    }
    .banner-content p,
    .inner-banner-content p {
        font-size: 16px;
    }
    .reserve-head h3 {
        font-size: 42px;
    }
    .reserve-head p {
        font-size: 14px;
    }
    .ofd-content {
        padding: 0px 0px;
    }
    .ofd-content p {
        font-size: 14px;
    }
    .svc-content h3 {
        font-size: 32px;
    }
    .emk-content h3 {
        font-size: 34px;
    }
    .banner-slider.owl-carousel .owl-nav {
        bottom: 3%;
        left: 2%;
    }
    .ofd-feature-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
    .ofd-logo {
        height: 50px;
    }
    .ofd-content p {
        font-size: 14px;
        margin-bottom: 0px;
    }
    .wsv-content h3 {
        font-size: 38px;
    }
    .wsv-content::before {
        left: 0%;
        top: 0%;
        width: 10%;
    }
    .navbar-brand {
        height: 50px;
    }
    .banner-content h1 {
        font-size: 42px;
    }
    .banner-content,
    .banner-section {
        min-height: 80vh;
    }
    .banner-content h5,
    .inner-banner-content h5 {
        font-size: 22px;
    }
    .banner-content p,
    .inner-banner-content p {
        font-size: 14px;
    }
    .reserve-head h3 {
        font-size: 32px;
    }
    .ofd-content h3 {
        font-size: 24px;
    }
    .book-img-one {
        height: auto;
    }
    .book-form {
        padding: 10px;
    }
    .be-head h3 {
        font-size: 24px;
    }
    .wsv-content p {
        font-size: 14px;
        margin-left: 40px;
    }
    .svc-content h3 {
        font-size: 28px;
    }
    .inner-banner-content h1 {
        font-size: 32px;
    }
    .banner-content h5,
    .inner-banner-content h5 {
        font-size: 20px;
    }
    .or-text p {
        font-size: 13px;
    }
    .common-btn-res {
        padding: 10px 20px;
    }
    .or-btns .common-btn-black {
        padding: 10px 30px;
    }
    .res-dtl-des h3 {
        font-size: 28px;
    }
    .team-head h3 {
        font-size: 34px;
    }
    .team-head h5 {
        font-size: 24px;
    }
    .ogal-head h5 {
        font-size: 24px;
    }
    .ogal-head h3 {
        font-size: 34px;
    }
    .vd-time-list {
        margin-left: 0px;
    }
    .UpEvents-box h4 {
        font-size: 18px;
    }
    .up-event-slider.owl-carousel .owl-nav {
        bottom: 5%;
        left: 2%;
    }
    .pr-content h4 {
        font-size: 16px;
    }
    .pr-content h5 {
        width: 50%;
        font-size: 14px;
    }
    .blog-img {
        height: auto;
    }
    .blog-des h3 {
        font-size: 24px;
    }
    .blog-des p {
        font-size: 14px;
    }
    .cat-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .recent-post-list li a {
        flex-direction: column;
    }
    .recent-img-main {
        width: 100%;
    }
    .common-content h3 {
        font-size: 24px;
    }
    .common-content h5 {
        font-size: 13px;
    }
}
@media (max-width: 330px) {
}

@media (max-width: 450px) {
    .font-size-small {
        font-size: 12px;
    }
}

@media (max-width: 385px) {
    .font-size-extra-small {
        font-size: 9px;
    }
}
