@charset "UTF-8";

/*---Google Fonts---*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --thm-font: 'Cormorant Garamond', sans-serif;
    /* Headings */
    --thm-b-font:  'Cormorant Garamond', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /* --thm-icon-font: "Font Awesome 5 Pro"; */
    /*Icon Font*/
    --thm-color-one: #D5A632;
    --thm-color-two: #000;
    --thm-color-three: #1A3A4E;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #2C2C2C;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-text: #050556;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Cormorant Garamond', sans-serif;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    background-color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    counter-reset: sectionCounter;
}

.venues-image {
        height: 250px; /* Set any fixed height you prefer */
        overflow: hidden;
}

.venues-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box nicely */
    display: block;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 80px 0;
}

.section-padding.section {
    padding-bottom: 50px;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 70%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
}

ul li {
    margin-bottom: 0;
    position: relative;
}
li a {
    text-decoration: none;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
    color: #000;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

select {
    appearance: auto;
    border: none;
    color: #b7b7b7;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/

/*
.header.can-sticky {
    border-bottom: 2px solid #2656DB;
}*/
.section-header {
    /* max-width: 550px; */
    padding-bottom: 30px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.section-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 0px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-top: 0;
    border-left: 4px solid var(--thm-color-one);
    border-radius: 10px;
    border-bottom: 2px solid #e2dcdc;
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}
.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 16px;
}
.slick-arrow.slick-next:before {
    content: "\f061";
}
.slick-arrow.slick-prev:before {
    content: "\f060";
}
.slick-arrow {
    background-color: #34495E80;
    position: absolute;
    top: 48%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 50%;
    font-size: 0;
    transition: 0.5s all;
    /* border: 2px solid #34495E80; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev.slick-arrow {
    left: 10px;
}
.slick-next.slick-arrow {
    right: 10px;
/*    left: 0;*/
}

 .slick-arrow {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}
 .slick-arrow:hover {
    background-color: #fff;
    color: var(--thm-color-two) !important;
}
/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C7C7C7;
    margin: 0 3px;
    transition: 0.6s all;
    border: 0px solid #C7C7C7;
}

.slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
    opacity: 0;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    /* margin-bottom: 15px; */
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}

.post_details .post_navigation .nav_item, .pagination .page-item .page-link {
    border: 2px solid ;
    color: #000;
    border-radius: 5px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
}

.post_details .post_navigation .nav_item:hover,
.pagination .page-item .page-link.active,
.pagination .page-item.active .page-link,
.pagination .page-item:focus .page-link,
.pagination .page-item:hover .page-link {
    background-color: var(--thm-color-one);
    border: 1px solid var(--thm-color-one);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    color: var(--thm-color-four);
    font-weight: 800;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-four);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
    line-height: 1.2;
}
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
h5 {
    font-size: 20px;
    line-height: 1.3;
}
h6 {
    font-size: 16px;
    line-height: 1.7;
    
}
p {
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.3;
}
a {
    color: var(--thm-color-four);
    transition: .3s all;
    display: inline-block;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px 40px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-four);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}
/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.text-custom-black {
    color: #000;
}
/*Buttons*/
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border:  transparent;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--thm-body-color);
}
.btn:hover {
    background-color: transparent;
}
.thm-btn:hover i, .thm-btn:focus i {
    color: #fff;
}
.thm-btn:hover, .thm-btn:focus {
    color: #fff;
    background-color: #000 !important;
    justify-content: center;
}
.thm-btn {
    color: #fff;
    background-color: var(--thm-color-one);
    border: 1px solid  var(--thm-color-one);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 5px 18px;
    transition: 0.5s all;
    /* font-weight: 600; */
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    gap: 10px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}
.thm-btn.bg-light {
    color: var(--thm-color-one);
    background: #fff;
    border: 1px solid #fff;
}
.thm-btn.bg-light:hover {
    background-color: var(--thm-color-one) !important;
    color: #fff !important;
}

.profile-main .thm-btn {
    border-radius: 30px;
}
.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}

.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}
.thm-btn i {
    font-size: 19px;
    line-height: normal;
    color: #fff;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 4px 15px;
}
.thm-btn-two {
    background: var(--thm-color-one);
    color: var(--thm-color-two);
    border: 1px solid;
    transition: 0.5s all;
}
.thm-btn-two:hover  {
    background-color: #000;
    color: #fff;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*Preloader*/
.preloader {
    background-color: var(--thm-color-one);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
/*---------------------------------------*/
/*------header start------*/
.active {
    color: var(--thm-color-one) !important;
}
.header-logo {
    padding: 10px 0;
}

.menu-top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu-icon {
    display: flex;
    justify-content: end;
    align-items: center;
}

.btn.btn-primary {
    width: 50px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
}

.btn.btn-primary i {
    transition: 0.5s all;
}

.btn.btn-primary i:hover {
    color: var(--thm-color-one);
}

/*------header end------*/

.main-menu {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.menu-item a {
    color: var(--thm-color-two);
    padding: 18px 15px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .menu-item a:hover {
    color: var(--thm-color-one) !important;
}
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item a {
    padding: 0;
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
}
.header .header_action {
    margin-left: 15px;
}
/* .header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: -100%;
    top: 0;
} */
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/

.top-bar {
 background: var(--thm-color-one);
 padding: 10px 0;
}
.header-search input {
    padding-left: 40px;
}
.header {
    position: relative;
    z-index: 99;
    padding: 5px 0;
}
.topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
a.top-contact {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    transition: 0.5s all;
    font-family: 'Poppins', sans-serif;
}
.top-contact:hover {
    color: #000;
}
.social-item {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.social-item  a {
    color: var(--thm-color-one);
}
.social-item:hover a {
    color: #000;
}
.logo {
    padding: 0 25px;
}

.header-profile .profile-icon {
    width: 40px;
    height: 40px;
    color: var(--thm-color-one);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
    font-size: 20px;
    position: relative;
}
.header-profile .profile-icon:hover {
    background-color: #000;
    color: #fff;
}
.header-profile {
    display: flex;
    align-items: center;
    gap: 5px;
}
.add-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    background: var(--thm-color-one);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.profile-main {
    position: relative;
    transition: 0.5s all;
    padding-left: 10px;
}
.profile-main:hover .profile-dropdown {
    display: block;
    width: 200px;
    transition: 0.5s all;
    display: block;
}
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #fff;
    border-radius: 15px;
    width: 0px;
    width: 200px;
    min-height: 110px;
    display: none;
    transition: 0.5s all;
    box-shadow: -4px -4px 4px 0px #00000014;

}
a.color-red {
    color: #D8000C !important;
}
/*--------banner start------*/

.banner-bg {
    height: 710px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
    /* border-radius: 20px; */
    display: flex !important;
    text-align: center;
    justify-content: center;
}
.banner-bg:before {
    z-index: -1 !important;
}
.banner-title {
    font-size: 64px;
    color: #fff;
    padding-top: 20px;
}
.overlay:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
    transition: 0.5s all;
}
.banner-text p {
    color: #333333;
    font-size: 18px;
}
.hero-top-right-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.hero-bottom-left-img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.hero-bottom-right-img {
    position: absolute;
    right: 0; 
    bottom: 0;
    z-index: -1;
}
.hero-top-left-img {
    position: absolute;
    left: 0; 
    top: 0;
    z-index: -1;
}
.banner-sm {
    background-color: #fff !important;
}
.banner-sm:before {
    background-color: var(--thm-color-one) !important; 
    outline: 4px solid #f7efca !important;
}
.heading-top-sm {
    background: #FEF3D7;
    color: #1E1600;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: Lora;
    position: relative;
    padding-left: 40px;

}
.heading-top-sm:before {
    position: absolute;
    content: '';
    top: 39%;
    background-color: var(--thm-color-two);
    left: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: 4px solid #cacbf7;
}
.banner-btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.thm-text {
    color: var(--thm-text);
}

.banner-text.slick-slide.slick-current.slick-active h2 {
    display: block;
}
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }

.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    border-top: 1px solid #fff;
    background: #FFF9EB;
    margin-top: 90px;
}
.marquee-text {
    color: #B58203;
    font-size: 18px;
    font-weight: 500;
    margin: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.banner-title h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-slider .slick-dots {
    position: absolute;
    right: 9%;
    bottom: 0;
}
.banner-slider .slick-dots li button {
    background-color: #fff;
    width: 15px;
    height: 15px;
}
.banner-slider .slick-dots li.slick-active button {
    background-color: var(--thm-color-one);
    width: 15px;
    height: 15px;
}
.banner-slider .slick-dots li.slick-active button:before {
    width: 25px;
    height: 25px;
    opacity: 0;
}
.btn-sm {
    padding: 4px 16px;
    font-size: 14px;
}
/*--------banner end------*/

/*--------footer start-----*/
.footer {
    background: #EEEEEE;
    padding-bottom: 0px;
}
.ft-logo img {
    width: 100px;
}
.follow-icon i {
    color: #fff;
    transition: 0.5s all;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
}
.follow-icon i:hover {
    color: var(--thm-color-one);
}
.ft-left p {
    color: #34495E;
    font-size: 14px;
}
.ft-left h6 {
    font-size: 20px;
}
.ft-list li {
    line-height: 1.3;
    padding-bottom: 15px;
    font-size: 14px;
}
.ft-title p {
    color: #363636;
    margin-bottom: 25px;
    font-size: 16px;
}
.ft-item li:hover {
    color: var(--thm-color-one);
}
.ft-item li {
    transition: 0.5s all;
    cursor: pointer;
    font-weight: 500;
    color: #b7b7b7;
}
.custom-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.ft-title {
    margin-bottom: 30px;
}

.copyright p {
    margin-bottom: 0;
    text-align: center;
    color: #363636;
    font-size: 15px;
    font-weight: 500;
}
.copyright p a {
    color: #141310;
}
.copyright {
    padding: 20px 0;
    border-top: 1px solid #A4A4A4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-list li a {
    color: #363636;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Poppins', sans-serif;
}
.ft-list li a:hover {
    color: var(--thm-color-one);
}
.ft-list li a i {
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-color-one);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ft-mail-box {
    border: 1px solid #8E8E93;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px;
}
.ft-mail-box input {
    border: 0;
    width: 100%;
}

.ft-social-icon li a {
    transition: 0.5s all;
}
.ft-left {
    padding-right: 40px;
    padding-bottom: 20px;
}
.ft-social-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ft-social-icon li i {
    color: #fff;
    width: 33px;
    height: 33px;
    background: var(--thm-color-one);
    /* border: 1px solid var(--thm-color-two); */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.5s all;
}
.ft-gallery img {
    width: 100%;
    height: 100%;
}
.ft-social-icon li:hover i {
    color: #fff;
    background-color: #000;
}
.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    margin-top: 30px;
}
.ft-bottom p {
    margin-bottom: 0;
}
.ft-payment-image {
    width: 58%;
}
.ft-payment-image ul {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

/*--------footer end-----*/

/*back to top*/
#back-top {
    text-align: center;
    display: none;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    border: var(--thm-color-one) solid 1px;
    color: #ffffff;
     background: var(--thm-color-two);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    transition: 0.5s all;
}

#back-top a:hover {
    background: #fff;
    color: var(--thm-color-one);
    /* transform: rotate(360deg); */
}

/*----subheader star----*/
.subheader {
    position: relative;
    /* background-image: url(../images/subheader.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    height: 465px;
    display: flex;
    align-items: center;
}
.subheader:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.5;
}
.subheader-title {
    text-align: center;
}
.subheader-title h1 {
    color: #fff;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}

.form-group input {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
}
.form-group select {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
}
 input:focus {
    border-color: var(--thm-color-one);
}
.form-control:focus {
    border-color: var(--thm-color-one);
}
.form-group textarea {
    width: 100%;
    height: 181px;
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
}
 textarea:focus {
    border-color: var(--thm-color-one);
}

/*----------cart start----------*/
tbody tr td:hover {
    background-color: #f7f7f7;
}
tbody tr td {
    border: 0;
    transition: 0.5s all;
    padding: 35px 15px;
}
tbody tr {
    border: 2px solid #e7e7e7;
    margin-bottom: 20px;
}
thead th {
    border: 0;
}

thead tr {
    border: 2px solid #dedada;
}
/* Scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.section-heading {
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
}
.section-heading a:hover {
    color: #000;
}
.section-heading h2 {
    color: #1E1600;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
    text-align: left;
}
.section-heading p {
    color: #525B5A;
}
.color-one {
    color: var(--thm-color-one);
}
.color-two {
    color: var(--thm-color-two);
}

.breadcrumb li {
    margin: 0 5px;
}

.breadcrumb li a {
    text-decoration: none;
    color: #696B79;
}

.breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--thm-color-one);
}

.breadcrumb li:last-child a {
    color: #000;
    pointer-events: none;
    cursor: default;
}

/* --------------inner page css------------------------------- */
.section-hedding h2 {
    color: var(--thm-color-one);
    font-weight: 500;
    font-style: italic;
}

/* ------------------css inner page------------------------------------ */

.loader-wrap {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  overflow: hidden;
  background-color: var(--thm-color-two);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.loading-container {
  width: 100%;
  max-width: 520px;
  text-align: center;
  color: #fff;
  position: relative;
  margin: 0 32px;
  
  &:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    animation: movingLine 2.4s infinite ease-in-out;
  }
}

@keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }

  33.3%, 66% {
    opacity: 0.8;
    width: 100%;
  }
  
  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }

  100% {
   opacity: 0;
   width: 0;
  }
}

.loading-text {
  font-size: 5vw;
  line-height: 64px;
  letter-spacing: 10px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-evenly;
  span {
    animation: moveLetters 2.4s infinite ease-in-out;
    transform: translatex(0);
    position: relative;
    display: inline-block;
    opacity: 0;
    text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3); 
  }
}

@for $i from 1 through 7 {
  .loading-text span:nth-child(#{$i}) {
    animation-delay: $i * 0.1s;
  }
}

@keyframes moveLetters {
  0% {
    transform: translateX(-15vw);
    opacity: 0;
  }
  
  33.3%, 66% {
    transform: translateX(0);
    opacity: 1;
  }
  
  100% {
    transform: translateX(15vw);
    opacity: 0;
  }
}



/* -------------------------------------------------- */

.tab-btn {
  padding: 8px 12px;
  width: 100%;
  text-align: left;
  color: var(--thm-color-one);
  border: none;
  background: #fff;
  border-left: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tab-btn.active {
    color: var(--thm-color-one) !important;
    background: #F7F7F7;
    border-left: 3px solid var(--thm-color-one);
    font-weight: 600;
}

.tab-btn.logout {
  color: #D8000C;
}

.tab-content {
  margin-left: 20px;
  flex: 1;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}
.card-body p {
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.mr-5 {
    margin-right: 65px;
}
.ml-5 {
    margin-left: 65px;
}
.responsive-logo {
    display: none;
}
/* ------------new  css------------------ */
.hero-img {
  width: 254px;
  height: 483px;
  object-fit: cover;
  border-radius: 40% / 60%;
}
.category-bg {
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    position: relative;
    margin-bottom: 50px;
}
.category-bg:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: -1;
}
.category-content {
    text-align: center;
}
.category-title {
    color: #fff;
    position: relative;
    padding-bottom: 30px;
}
.category-title:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    margin: 0 auto;
    background: #fff;
}
.category-card {
    background: #fff;
    border-radius: 40px 100px 0px 100px;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000000 100%);
    z-index: -1;
    transition: 0.5s all;
}
.category-card:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.5;
    z-index: 0;
    transition: 0.5s all;
}
.category-card:hover:before {
    opacity: 0.5;
    transition: 0.5s all;
    z-index: 1;

}
.category-card img {
    width: 100%;
    height: 416px;
    object-fit: cover;
}
.category-card:hover .category-card-content {
    top: 40%;
}
.category-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 75%;
    transition: 0.5s all;
}
.wedding-costs-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.wedding-costs-section:before {
    z-index: -1;
}
.overlap-img {
    position: absolute;
    right: 11%;
    top: 20%;
}
.destination-content h2 {
    font-size: 40px;
}
.destination-section {
    z-index: 0;
    position: relative;
}
.destination-section::before {
     position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/element/plan-bg1.png);
    z-index: -1;
    transition: 0.5s all;
    background-repeat: no-repeat;
}
.destination-image {
    margin: 7px;
}
.playbg-section {
    background-position: center;
    z-index: 0;
    position: relative;
    height: 555px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}
.play-btn {
    font-size: 100px;
    color: var(--thm-color-one);
}
.featured-section {
    z-index: 0;
    position: relative;
}
.featured-section::before {
     position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/element/plan-bg1.png);
    z-index: -1;
    transition: 0.5s all;
    background-repeat: no-repeat;
}
.featured-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 5px;
    width: 100%;
    height: 200px;
}
.placehero-section {
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.placehero-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: -1;
    transition: 0.5s all;
    opacity: 0.5;
}
.placehero-section .banner-image {
    text-align: center;
}
.placehero-section .banner-image img {
    border-radius: 0px 100px 40px 100px;
    border: 2px solid #fff;
    margin-top: -100px;
}
img.place-banner-two {
    position: absolute;
    right: 12%;
    bottom: 10%;
    border-radius: 40px 100px 0px 100px !important;
}
.placehero-section .banner-text p {
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 200;
}
.room-card {
    background: #D5A63233;
    margin: 5px;
    text-align: center;
}

.facilities-slider .slick-arrow {
    top: 30%;
}
.room-image img {
    width: 100%;
    height: 100%;
}

.place-about-right {
    background: #D5A6321A;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
}
.underline {
    text-decoration: underline;
}
.lake-place-content {
    padding: 15px;
    box-shadow: 0px 0px 10px 0px #00000040;
    position: relative;
    left: -65px;
    z-index: 9;
    background: #fff;
}
.lake-place-content .box-border {
     padding: 15px;
    border: 1px solid var(--thm-color-one);
}
.package-card {
    height: 100%;
}
.package-title {
    margin-bottom: 0;
    padding: 18px 25px;
    color: #fff;
    background-color: var(--thm-color-one);
    border-radius: 40px 100px 0 0;
}
ul.package-list {
    padding: 35px 25px;
    background: #D5A63233;
    color: #333333;
}
.package-footer {
    margin-bottom: 0;
    padding: 18px 25px;
    color: #fff;
    background-color: var(--thm-color-one);
    border-radius: 0 0 0 100px;
    text-align: center;
}
.slide-nav-image {
    margin: 3px;
}
.venues-card {
    margin-bottom: 20px;
    background-color: var(--thm-color-one);
    border-radius: 15px;
    margin: 12px;
}
.venues-content {
    padding: 20px;
}
.venues-image img {
border-radius: 15px 15px 0 0;
}

.popular-box {
    padding: 20px;
    margin-bottom: 20px;
    background: #D5A6321A;
}
.popular-box p {
    font-size: 14px;
}
ul.popular-box-list {
    list-style: disc;
    padding-left: 35px;
    font-size: 14px;
}
.quote-box {
    background: #D5A632;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-size: 31px;
    /* border: 5px solid #fff; */
    line-height: 1.3;
    margin-bottom: 14px;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.quote-box:before {
    position: absolute;
    content: '';
    top: 5px;
    left: 6px;
    right: 0;
    bottom: 0;
    width: 96%;
    height: 96%;
    border: 3px solid #fff;
}
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.gallery-item {
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: 0.5s all;
}
.gallery-item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: 0.5s all;
    transform: scale(0);
}
.gallery-item:hover:before  {
    opacity: 0.5;
    transform: scale(1.0);
}
.gallery-item i {
    position: absolute;
    top: 50%;
    left: 0;
    color: #fff;
    font-size: 25px;
    opacity: 0;
    transition: 0.5s all;
    cursor: pointer;
}
.gallery-item:hover i {
    left: 50%;
    opacity: 1;
}
.contact-card {
    box-shadow: 0px 0px 8px 0px #00000040;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 24px;
    background: #fff;
    background: #FFFFFF99;
    text-align: center;
    min-height: 255px;
}
.contact-card h3 {
    margin-bottom: 10px;
}
.contact-card p {
    margin-bottom: 0px;
}
.contact-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: var(--thm-color-one);
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
}
.contact-form .form-group .form-control {
    background: transparent;
    border: 1px solid #8C8686;
}
.form-enquiry label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8C8686;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.form-enquiry {
    columns: 3;
}
.map-section {
    margin-top: -109px;
    z-index: 0;
}
.category-card-content button {
    font-size: 30px;
}
/* Popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* Popup content */
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 22px;
    right: 10px;
    cursor: pointer;
    font-size: 51px;
    line-height: 0;
}

/* Form fields */
.popup-content input,
.popup-content textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}
ul.list-item-pachage {
    columns: 2;
    list-style-type: disc;
    padding-left: 15px;
    font-size: 13px;
}

