:root {
  --primary: #1b5e7a;     /* main theme */
  --secondary: #e65100;   /* spiritual saffron */
  --accent: #cda45e;      /* gold highlight */
  --dark: #333333;
  --light: #f7f9fb;
  --white: #ffffff;
}

.img-fluid-what-phone {
    width: 65px;
    height: auto;
}

.float-phone {
    position: fixed;
    width: 65px;
    height: 60px;
    bottom: 10px;
    right: 25px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    padding: 5px;
}

body {
  background: var(--white);
  color: var(--dark);
}

a {
  color: var(--dark);
}

a:hover {
  color: var(--primary);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "EB Garamond", serif;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #cda45e;
}

.back-to-top i {
    font-size: 28px;
    color: #cda45e;
    line-height: 0;
}

.back-to-top:hover {
    background: #cda45e;
    color: #222;
}

.back-to-top:hover i {
    color: #444444;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.bk-btn,
.bk-btn1 {
  background: var(--primary);
  color: var(--white);
}

.bk-btn:hover,
.bk-btn1:hover {
  background: var(--secondary);
}


.bk-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    background: #cda45e;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-radius: 50px;
}

.bk-btn:hover {
    background: #cda45e;
    color: #fff;
    opacity: 0.8;
}

.bk-btn1 {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 10px;
    background: #cda45e;
    color: #fff;
    text-transform: capitalize;
}

.bk-btn1:hover {
    background: #cda45e;
    color: #fff;
    opacity: 0.8;
}

.social-icons {
    margin-left: 30px;
}

.social-icons {
    margin-right: 20px;
}

.social-icons li {
    margin-right: 15px;
}

.social-icons li i {
    color: #333;
    font-size: 22px;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 0;
}

#header.header-scrolled {
    top: 0;
    background: #f5f5f5f5;
}

#header .logo {
    font-size: 26px;
    color: #073b4c;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.2;
    font-family: "EB Garamond", serif;
    transition: 0.3s;
    text-align: center
}

#header .logo span {
    font-size: 1em;
    color: #073b4c;
}

.book-a-table-btn {
    margin: 0 0 0 5px;
    color: #333;
    padding: 8px 35px;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
    line-height: 1;
}

.book-a-table-btn:hover {
    background: #f5f5f5f5;
    color: #333;
}

@media (max-width: 992px) {
    .book-a-table-btn {
        margin: 0 15px 0 0;
        padding: 8px 20px;
    }
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 17px;
    font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #cda45e;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #333;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #cda45e;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: #cda45e;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 17px;
    color: #333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #cda45e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #cda45e;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.ftco-section {
    padding-bottom: 60px;
    margin-top: 8em;
}

.ftco-section .container {
    position: relative;
    z-index: 5;
    padding-top: 5em;
}

.content-title h1 {
    font-size: 3.6em;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.content-title h2 {
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
    color: #fff;
}

.content-title p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}

.booking-form {
    background: #fff;
    padding: 44px 40px 50px 40px;
    border-radius: 20px;
    border: 4px solid #E64D4E;
}

.text-consta {
    position: absolute;
    top: 55%;
    right: 50%;
    transform: translate(50%, -50%);
    color: white;
    z-index: 1;
    padding: 30px;
}

.content-title {
    text-align: center;
}

.content-title h2 {
    color: #fff;
}

.ground-1 {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 48px;
    background: #fff;
    color: #000;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-radius: 50px;
}

.ground-1:hover {
    background: #cda45e;
    color: #fff;
    opacity: 0.8;
}

.owl-dots {
    display: none;
}

.but-groups {
    margin-top: 40px;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-carousel {
    position: relative;
}

.owl-carousel .owl-item {
    opacity: 1;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    color: white !important;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
    font-size: 3em;
}

.owl-carousel .owl-nav .owl-prev {
    left: 20px;
}

.owl-carousel .owl-nav .owl-next {
    right: 20px;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.work {
    width: 100%;
}

.work .img {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 0;
    -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
}

.work .img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    background: rgba(0, 0, 0, 0.35);
}

.work .img .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: block;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .work .img .icon {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.work .text h3 {
    font-size: 18px;
    font-weight: 500;
}

.work .text h3 a {
    color: #000;
}

.work .text span {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-weight: 500;
}

.work:hover .img .icon {
    opacity: 1;
}

.form-group {
    margin-bottom: 20px;
}

.heading {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    color: #E64D4E;
    border-bottom: 1px solid #506982;
    padding-bottom: 3px;
    margin-bottom: 20px;
}

.controls {
    text-align: left;
    position: relative;
}

.controls input[type="text"],
.controls input[type="email"],
.controls input[type="number"],
.controls input[type="date"],
.controls input[type="tel"],
.controls textarea,
.controls button,
.controls select {
    padding: 12px;
    font-size: 14px;
    border: 2px solid #c6c6c6;
    width: 100%;
    margin-bottom: 18px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.controls input[type="text"]:focus,
.controls input[type="text"]:hover,
.controls input[type="email"]:focus,
.controls input[type="email"]:hover,
.controls input[type="number"]:focus,
.controls input[type="number"]:hover,
.controls input[type="date"]:focus,
.controls input[type="date"]:hover,
.controls input[type="tel"]:focus,
.controls input[type="tel"]:hover,
.controls textarea:focus,
.controls textarea:hover,
.controls button:focus,
.controls button:hover,
.controls select:focus,
.controls select:hover {
    outline: none;
    border-color: #9FB1C1;
}

.controls input[type="text"]:focus+label,
.controls input[type="text"]:hover+label,
.controls input[type="email"]:focus+label,
.controls input[type="email"]:hover+label,
.controls input[type="number"]:focus+label,
.controls input[type="number"]:hover+label,
.controls input[type="date"]:focus+label,
.controls input[type="date"]:hover+label,
.controls input[type="tel"]:focus+label,
.controls input[type="tel"]:hover+label,
.controls textarea:focus+label,
.controls textarea:hover+label,
.controls button:focus+label,
.controls button:hover+label,
.controls select:focus+label,
.controls select:hover+label {
    color: #1b3d4d;
    cursor: text;
}

.controls .fa-sort {
    position: absolute;
    right: 10px;
    top: 17px;
    color: #999;
}

.controls label {
    position: absolute;
    left: 8px;
    top: 12px;
    width: 60%;
    color: #000;
    font-size: 16px;
    display: inline-block;
    padding: 4px 10px;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0);
    -moz-transition: color 0.3s, top 0.3s, background-color 0.8s;
    -o-transition: color 0.3s, top 0.3s, background-color 0.8s;
    -webkit-transition: color 0.3s, top 0.3s, background-color 0.8s;
    transition: color 0.3s, top 0.3s, background-color 0.8s;
    background-color: white;
}

.controls label.active {
    top: -11px;
    color: #555;
    background-color: white;
    width: auto;
}

.btn-book {
    cursor: pointer;
    background-color: #333;
    border: none;
    color: #fff;
    padding: 12px 30px;
    float: left;
    width: 100%;
}

.btn-book:hover {
    background-color: #333;
    color: #fff;
    opacity: 0.8;
}

.what-bbok {
    color: #333;
    font-size: 1.2em;
    text-align: center;
    font-weight: 600;
}

.or-text {
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
}

.or {
    text-align: center;
}

.what-bbok:hover {
    color: #333;
    text-decoration: underline;
}

#services {
    padding: 60px 0 60px;
}

.services-sec {
    text-align: center;
    margin-bottom: 2em;
}

.services-sec h4 {
    font-size: 1.6em;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
    color: #cda45e;
    letter-spacing: 1px;
    ;
}

.services-sec h2 {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: #333;
}

.clearul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.facitlites-box img {
    height: 60px;
}

.facitlites-box {
    background: #fff;
    color: #333;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    border: 4px solid #ddd;
    height: 100%;
}

.facitlites-box h6 {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: 500;
}

.place-1 {
    margin-top: 5em
}

.back-fact {
    border-radius: 10px;
}

.serivces-list {
    padding: 60px;
}

.serivces-list h2 {
    font-size: 3.5em;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.serivces-list p {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.6;
}

.gallery-image {
    position: relative;
    margin-bottom: 30px;
}

.gallery-image img {
    height: 300px;
}

.gallery-image .overlay {
    background-color: rgba(0, 0, 0, 0.2);
    height: 100%;
    left: 0;
    opacity: 1;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: all 0.4s ease-in-out 0s;
    width: 100%;
}

.overlay p {
    bottom: 0;
    font-size: 18px;
    font-weight: 700;
    left: 5%;
    color: #fff;
    position: absolute;
    text-transform: uppercase;
    transition: bottom 0.9s ease 0s;
}

.gallery-image:hover .overlay {
    opacity: 1;
}

#rooms {
    padding: 60px 0 60px;
    color: #fff;
    background-color: #222;
}

.meeting-conferance {
    position: relative;
}

.meeting-conferance h2 {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.meeting-conferance h3 {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.meeting-conferance p {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.6;
}

.cta-cf {
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
}

#about {
    padding: 60px 0 60px;
}

.lilat-about-content p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
}

.list-aminies p,
.amniies li {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
}

.list-aminies h2 {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-top: 10px;
}

.lilat-about-content h3 {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-top: 10px;
}

.lilat-about-content h5 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-top: 10px;
    text-align: center;
}

.lilat-about-content img {
    border-radius: 24px;
}

#exlope-places {
    background: rgba(0, 0, 0, 0) url("../images/banners/banner2.webp") no-repeat scroll center center / cover;
    color: #fff;
    position: relative;
    padding: 60px 0 60px;
}

#exlope-places::before {
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.meeting-conferance ul {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.5px
}

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
    background-color: #f5f5f5f5
}

#customers-testimonials .shadow-effect p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 17px 0;
    font-weight: 400;
}

#customers-testimonials .item {
    text-align: center;
    padding: 30px;
    margin-bottom: 20px;
    opacity: .8;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    width: 100%;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: #E64D4E;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: #E64D4E;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

.testimonials {
    padding: 40px 0 40px;
}

.services-sec1 h3 {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: #333;
}

.services-sec1 img {
    width: 200px;
}

.services-sec1 {
    text-align: center;
    margin-bottom: 30px;
}

.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .6);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item a i {
    font-size: 40px;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

.project-carousel {
    margin-bottom: 30px;
}

#gallery {
    padding: 60px 0 60px;
    background-color: #f5f5f5f5;
}

.position-relative img {
    height: 300px;
}

.contt-banner {
    padding: 50px;
    text-align: center;
}

#contact {
    padding: 70px 0 70px;
}

.map-locat h3 {
    font-size: 3.2em;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

address {
    margin-bottom: 1rem;
    font-family: "Source Sans 3", sans-serif;
    line-height: inherit;
    font-size: 1.3em;
    font-weight: 500;
}

.phone {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.bavn-br {
    margin-top: 3em;
}

#footer {
    background-color: #333;
    color: #fff;
}

.list-foot ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
    color: #fff;
    padding: 30px 0 30px;
}

.list-foot ul li a {
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.list-foot ul li a:hover {
    color: #E64D4E;
    text-decoration: underline;
}

.copright p {
    text-align: center;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.4;
}

#privacy {
    background: rgba(0, 0, 0, 0) url("../images/banners/banner3.webp") no-repeat scroll center center / cover;
    color: #fff;
    position: relative;
    padding: 120px 0 120px;
}

#privacy::before {
    background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.policy-h1 h1 {
    position: relative;
    font-size: 2.4em;
    margin-top: 1em;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
}

.prepayment {
    padding: 40px 0 40px;
}

.prepayment h3 {
    color: #333;
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

.prepayment h2 {
    color: #333;
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

.prepayment p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
}

.float {
    position: fixed;
    width: 65px;
    height: 60px;
    bottom: 80px;
    right: 52px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    padding: 5px;
}

.img-fluid-what {
    width: 120px;
    height: auto;
}

.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform .30s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

.img-shadow img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.services-sec1 h2 {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.services-sec1 h4 {
    font-size: 1.6em;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width:391px) {
    .content-title h1 {
        font-size: 2.4em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    #header .logo {
        font-size: 15px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        font-family: "EB Garamond", serif;
        transition: 0.3s;
    }
    .text-consta {
        position: absolute;
        top: 30%;
        right: auto;
        transform: none;
        color: white;
        z-index: 1;
        padding: 10px;
    }
    .work .img {
        width: 100%;
        height: 90vh;
        position: relative;
        z-index: 0;
        -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    }
    #about {
        padding: 40px 0 40px;
    }
    .services-sec h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec {
        text-align: center;
        margin-bottom: 0;
    }
    .lilat-about-content h3 {
        font-size: 1.6em;
        font-weight: 700;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
        text-align: center;
    }
    .serivces-list {
        padding: 10px;
    }
    .bk-btn {
        font-size: 13px;
        font-weight: 600;
        padding: 8px 28px;
    }
    .serivces-list h2 {
        font-size: 2.2em;
        font-weight: 600;
        line-height: 1.1;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .serivces-list p {
        font-size: 1.2em;
        font-weight: 600;
        line-height: 1.4;
    }
    #services {
        padding: 20px 0 60px;
    }
    .ga-room {
        margin-bottom: 20px;
    }
    .place-1 {
        margin-top: 1em;
    }
    .list-aminies h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .list-aminies h2 {
        font-size: 1.6em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .services-sec1 h4 {
        font-size: 1.4em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .services-sec1 h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .gallery-image img {
        height: auto;
    }
    .services-sec1 h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec1 img {
        width: 200px;
    }
    .services-sec1 {
        text-align: center;
        margin-bottom: 2px;
    }
    .meeting-conferance h2 {
        font-size: 2.2em;
        font-weight: 700;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .meeting-conferance p {
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6;
    }
    .meeting-conferance ul {
        font-size: 1em;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }
    .shadow-effect {
        background: #fff;
        background-color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 4px;
        text-align: center;
        border: 1px solid #ECECEC;
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
        background-color: #f5f5f5f5;
    }
    .services-sec h4 {
        font-size: 1.4em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        color: #cda45e;
        letter-spacing: 1px;
    }
    .position-relative img {
        height: 250px;
    }
    .contt-banner {
        padding: 30px;
        text-align: center;
    }
    .map-locat h3 {
        font-size: 2.1em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .bavn-br {
        margin-top: 0em;
    }
    address {
        margin-bottom: 1rem;
        font-family: "Source Sans 3", sans-serif;
        line-height: 1.6;
        font-size: 1.1em;
        font-weight: 500;
    }
    .list-foot ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8em;
        flex-wrap: wrap;
        color: #fff;
        padding: 30px 0 30px;
    }
    .copright p {
        text-align: center;
        font-size: 0.7em;
        font-weight: 500;
        line-height: 1.7;
    }
    .img-fluid-what {
        width: 100px;
        height: auto;
    }
    .facitlites-box {
        background: #fff;
        color: #333;
        padding: 20px;
        text-align: center;
        border-radius: 8px;
        border: 4px solid #ddd;
        height: 100%;
    }
    .facitlites-box img {
        height: 40px;
    }
}

@media (min-width: 392px) and (max-width: 575.98px) {
    .content-title h1 {
        font-size: 2.4em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    #header .logo {
        font-size: 18px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
        font-family: "EB Garamond", serif;
        transition: 0.3s;
    }
    .text-consta {
        position: absolute;
        top: 30%;
        right: auto;
        transform: none;
        color: white;
        z-index: 1;
        padding: 10px;
    }
    .work .img {
        width: 100%;
        height: 90vh;
        position: relative;
        z-index: 0;
        -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    }
    #about {
        padding: 40px 0 40px;
    }
    .services-sec h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec {
        text-align: center;
        margin-bottom: 0;
    }
    .lilat-about-content h3 {
        font-size: 1.6em;
        font-weight: 700;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
        text-align: center;
    }
    .serivces-list {
        padding: 30px;
    }
    .serivces-list h2 {
        font-size: 2.4em;
        font-weight: 600;
        line-height: 1.1;
        text-transform: capitalize;
    }
    .serivces-list p {
        font-size: 1.2em;
        font-weight: 600;
        line-height: 1.4;
    }
    #services {
        padding: 20px 0 60px;
    }
    .ga-room {
        margin-bottom: 20px;
    }
    .place-1 {
        margin-top: 1em;
    }
    .list-aminies h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .list-aminies h2 {
        font-size: 1.6em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .services-sec1 h4 {
        font-size: 1.4em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .services-sec1 h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .gallery-image img {
        height: auto;
    }
    .services-sec1 h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec1 img {
        width: 200px;
    }
    .services-sec1 {
        text-align: center;
        margin-bottom: 2px;
    }
    .meeting-conferance h2 {
        font-size: 2.2em;
        font-weight: 700;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .meeting-conferance p {
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6;
    }
    .meeting-conferance ul {
        font-size: 1em;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }
    .shadow-effect {
        background: #fff;
        background-color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 4px;
        text-align: center;
        border: 1px solid #ECECEC;
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
        background-color: #f5f5f5f5;
    }
    .services-sec h4 {
        font-size: 1.4em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        color: #cda45e;
        letter-spacing: 1px;
    }
    .position-relative img {
        height: 250px;
    }
    .contt-banner {
        padding: 30px;
        text-align: center;
    }
    .map-locat h3 {
        font-size: 1.6em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .bavn-br {
        margin-top: 0em;
    }
    address {
        margin-bottom: 1rem;
        font-family: "Source Sans 3", sans-serif;
        line-height: 1.6;
        font-size: 1.1em;
        font-weight: 500;
    }
    .list-foot ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8em;
        flex-wrap: wrap;
        color: #fff;
        padding: 30px 0 30px;
    }
    .copright p {
        text-align: center;
        font-size: 0.7em;
        font-weight: 500;
        line-height: 1.7;
    }
    .img-fluid-what {
        width: 100px;
        height: auto;
    }
    .facitlites-box img {
        height: 40px;
    }
    .facitlites-box {
        background: #fff;
        color: #333;
        padding: 20px;
        text-align: center;
        border-radius: 8px;
        border: 4px solid #ddd;
        height: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .content-title h1 {
        font-size: 2.1em;
        font-weight: 600;
        line-height: 1.4;
        text-transform: capitalize;
    }
    #header .logo {
        font-size: 22px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
        font-family: "EB Garamond", serif;
        transition: 0.3s;
    }
    .text-consta {
        position: absolute;
        top: 30%;
        right: auto;
        transform: none;
        color: white;
        z-index: 1;
        padding: 10px;
    }
    .work .img {
        width: 100%;
        height: 90vh;
        position: relative;
        z-index: 0;
        -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    }
    #about {
        padding: 40px 0 40px;
    }
    .services-sec h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec {
        text-align: center;
        margin-bottom: 0;
    }
    .lilat-about-content h3 {
        font-size: 1.6em;
        font-weight: 700;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
        text-align: center;
    }
    .serivces-list {
        padding: 15px;
    }
    .serivces-list h2 {
        font-size: 2.5em;
        font-weight: 600;
        line-height: 1.1;
        text-transform: capitalize;
        margin-top: 15px;
    }
    .serivces-list p {
        font-size: 1.2em;
        font-weight: 600;
        line-height: 1.4;
    }
    #services {
        padding: 20px 0 60px;
    }
    .ga-room {
        margin-bottom: 20px;
    }
    .facitlites-box {
        background: #fff;
        color: #333;
        padding: 20px;
        text-align: center;
        border-radius: 8px;
        border: 4px solid #ddd;
        height: 100%;
    }
    .place-1 {
        margin-top: 1em;
    }
    .list-aminies h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .list-aminies h2 {
        font-size: 1.6em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .services-sec1 h4 {
        font-size: 1.4em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .services-sec1 h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .gallery-image img {
        height: 250px;
    }
    .overlay p {
        font-size: 15px;
    }
    .services-sec1 h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec1 img {
        width: 200px;
    }
    .services-sec1 {
        text-align: center;
        margin-bottom: 2px;
    }
    .meeting-conferance h2 {
        font-size: 2.2em;
        font-weight: 700;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .meeting-conferance p {
        font-size: 1em;
        font-weight: 400;
        line-height: 1.6;
    }
    .meeting-conferance ul {
        font-size: 1em;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }
    .shadow-effect {
        background: #fff;
        background-color: rgb(255, 255, 255);
        padding: 10px;
        border-radius: 4px;
        text-align: center;
        border: 1px solid #ECECEC;
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
        background-color: #f5f5f5f5;
    }
    .services-sec h4 {
        font-size: 1.4em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        color: #cda45e;
        letter-spacing: 1px;
    }
    .position-relative img {
        height: 300px;
    }
    .contt-banner {
        padding: 30px;
        text-align: center;
    }
    .map-locat h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .bavn-br {
        margin-top: 0em;
    }
    address {
        margin-bottom: 1rem;
        font-family: "Source Sans 3", sans-serif;
        line-height: 1.6;
        font-size: 1.1em;
        font-weight: 500;
    }
    .list-foot ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8em;
        flex-wrap: wrap;
        color: #fff;
        padding: 30px 0 30px;
    }
    .copright p {
        text-align: center;
        font-size: 0.7em;
        font-weight: 500;
        line-height: 1.7;
    }
    .img-fluid-what {
        width: 100px;
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #header .logo span {
        font-size: 1.5em;
        color: #cda45e;
    }
    .content-title h1 {
        font-size: 3.9em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
    }
    #header .logo {
        font-size: 18px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
        font-family: "EB Garamond", serif;
        transition: 0.3s;
    }
    .text-consta {
        position: absolute;
        top: 30%;
        right: auto;
        transform: none;
        color: white;
        z-index: 1;
        padding: 10px;
    }
    .work .img {
        width: 100%;
        height: 90vh;
        position: relative;
        z-index: 0;
        -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    }
    .serivces-list {
        padding: 0 0 0 20px;
    }
    .serivces-list h2 {
        font-size: 2.6em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .services-sec h2 {
        font-size: 2em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec h4 {
        font-size: 1.5em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        color: #cda45e;
        letter-spacing: 1px;
    }
    #about {
        padding: 30px 0 30px;
    }
    .lilat-about-content h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 0;
    }
    .serivces-list p {
        font-size: 1.2em;
        font-weight: 600;
        line-height: 1.4;
    }
    .list-aminies h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .services-sec1 h2 {
        font-size: 2em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .gallery-image img {
        height: 350px;
    }
    .overlay p {
        font-size: 18px;
    }
    .services-sec1 {
        text-align: center;
        margin-bottom: 10px;
    }
    .meeting-conferance h2 {
        font-size: 2.4em;
        font-weight: 700;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .meeting-conferance p {
        font-size: 1.1em;
        font-weight: 500;
        line-height: 1.6;
    }
    .position-relative img {
        height: 200px;
    }
    .map-locat h3 {
        font-size: 2.4em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .bavn-br {
        margin-top: 0;
    }
    .contt-banner {
        padding: 10px;
        text-align: center;
    }
    .list-foot ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
        flex-wrap: wrap;
        color: #fff;
        padding: 20px 0 20px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    #header .logo span {
        font-size: 1.5em;
        color: #cda45e;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px 10px 15px;
        color: #333;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 17px;
        font-weight: 500;
    }
    .bk-btn {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        padding: 12px 15px;
        background: #cda45e;
        color: #fff;
        text-transform: capitalize;
        border-radius: 50px;
    }
    .content-title h1 {
        font-size: 3.9em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
    }
    #header .logo {
        font-size: 15px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
        font-family: "EB Garamond", serif;
        transition: 0.3s;
    }
    .text-consta {
        position: absolute;
        top: 30%;
        right: auto;
        transform: none;
        color: white;
        z-index: 1;
        padding: 10px;
    }
    .work .img {
        width: 100%;
        height: 90vh;
        position: relative;
        z-index: 0;
        -webkit-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        -moz-box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
        box-shadow: 0px 20px 35px -30px rgba(0, 0, 0, 0.26);
    }
    .serivces-list {
        padding: 0 0 0 20px;
    }
    .serivces-list h2 {
        font-size: 2.6em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .services-sec h2 {
        font-size: 2em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
        color: #333;
    }
    .services-sec h4 {
        font-size: 1.5em;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
        color: #cda45e;
        letter-spacing: 1px;
    }
    #about {
        padding: 30px 0 30px;
    }
    .lilat-about-content h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 0;
    }
    .serivces-list p {
        font-size: 1.2em;
        font-weight: 600;
        line-height: 1.4;
    }
    .list-aminies h2 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 10px;
    }
    .services-sec1 h2 {
        font-size: 2em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .gallery-image img {
        height: 300px;
    }
    .overlay p {
        font-size: 18px;
    }
    .services-sec1 {
        text-align: center;
        margin-bottom: 10px;
    }
    .meeting-conferance h2 {
        font-size: 2.4em;
        font-weight: 700;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .meeting-conferance p {
        font-size: 1.1em;
        font-weight: 500;
        line-height: 1.6;
    }
    .position-relative img {
        height: 200px;
    }
    .map-locat h3 {
        font-size: 2.4em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .bavn-br {
        margin-top: 0;
    }
    .contt-banner {
        padding: 10px;
        text-align: center;
    }
    .list-foot ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
        flex-wrap: wrap;
        color: #fff;
        padding: 20px 0 20px;
    }
}

@media (min-width:1201px) and (max-width: 1400px) {
    #header .logo span {
        font-size: 1em;
        color: #cda45e;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px 10px 15px;
        color: #333;
        white-space: nowrap;
        transition: 0.3s;
        font-size: 17px;
        font-weight: 500;
    }
    .content-title h1 {
        font-size: 3em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
    .lilat-about-content h3 {
        font-size: 1.8em;
        font-weight: 600;
        line-height: 1.3;
        text-transform: capitalize;
        margin-top: 0;
    }
    .serivces-list {
        padding: 30px;
    }
    .gallery-image img {
        height: 300px;
    }
    .position-relative img {
        height: 300px;
    }
    .bavn-br {
        margin-top: 0em;
    }
    .contt-banner {
        padding: 20px;
        text-align: center;
    }
    .map-locat h3 {
        font-size: 2.2em;
        font-weight: 600;
        line-height: 1.2;
        text-transform: capitalize;
    }
}