@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color: #70693B;
  --secondary-color: #d4ac0d;
  --black-color: #050608;
  --light-black-color: #343536;
  --dark-color: #000000;
  --body-color: #FFF5EB;
  --gray-color: #777F81;
  --light-color: #e9e4d1;
  --white-color: #ffffff;
  --dark-orange-color:#ee9219;
  --bg-light-color:#DEC8B033;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 90, 90, 90;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-dark-rgb: 41, 41, 41;
  --bs-primary-rgb: 178, 142, 113;
}

/* Fonts */
:root {
  --heading-font: 'Cooper Black';
  --body-font: "Kumbh Sans", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

@font-face {
    font-family: 'courier new';
    src:url('../fonts/courier.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cooper Black';
    src:url('../fonts/cooppbl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  background-color: var(--body-color);
  background-size: cover;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

p {
   font-size:18px;
   font-weight:400;   
   color: var(--black-color);
   line-height:26px;
   font-family: 'courier new';
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

ul{
    list-style:none;
    padding-left:0;  
}

.ml-20{
	margin-left:20px;
}


/* - Section Title
--------------------------------------------------------------*/
h2{
	font-size: 51px;
    font-weight: 400;
    color: var(--black-color);
	font-family: var(--heading-font);
    line-height: 51px;
    margin-bottom: 25px;
}


.bg-light{
	background:var(--bg-light-color) !important;
}

.heading__area{
	display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 30px;
}


/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/
.book-now-btn{
    border: 2px solid var(--black-color);
    border-radius: 5px;
    width: 131px;
    height: 42px;
    font-size: 12px;
    font-weight: 600;
	color:var(--black-color);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-button{
    display: flex;
    align-items: center;
	gap: 20px;
}

.btn{
    border: 2px solid var(--black-color);
    border-radius: 5px;
    width: 131px;
    height: 42px;
    font-size: 12px;
    font-weight: 600;
    color: var(--black-color);
    font-family: var(--body-font);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;	
}

.btn:hover{
	border: 2px solid var(--black-color);
	color: var(--black-color);
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}


/* Breadcrumb
------------------------------------------------------------- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* 4.1 Header
/*----------------------------------------------*/
.header-top{
	padding-top:10px;
	padding-bottom: 30px;
}
 
.header-top ul{
    display: flex;
    gap: 18px;
	margin-bottom:0;
}

.header-top .top-link{
    font-size: 11px;
    font-weight: 300;
    color: var(--black-color);
    text-decoration: underline;

}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar{
    padding:0;
}

.navbar__nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

a.nav-link { 
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black-color);
    font-family: var(--body-font);
    transition: all 0.3s ease-in-out;
    padding:0;
}

a.nav-link.active{ 
    color:var(--primary-color);
}

a.nav-link:focus, .nav-link:hover{
	color:var(--primary-color);
}

.top-link.active {
    color: var(--primary-color) !important;
}
		
.menu-toggle {
    display: none;
    cursor: pointer;
	border: none;
    background: none;
	margin-top:-5px;
}

.close-btn{
	display:none;
}

/*--------------------------------------------------------------
  hero banner
--------------------------------------------------------------*/
.hero-banner{
   padding:50px 0;
}

.hero-banner .hero-text{
   position:relative;
   padding-top:55px;
   margin-right: 50px;
}

.hero-banner .hero-text h1{
   font-size: 61px;
   font-weight: 400;
   line-height: 65px;
   color: var(--black-color);
   font-family: var(--heading-font);
   margin-bottom: 30px;
}

.hero-banner .hero-text:before{
   content: "";
   width: 100%;
   height: 100%;
   background: url(../images/icons/hero-design.svg);
   background-repeat: no-repeat;
   position: absolute;
   top: 0;
   left: 0;
   width: 50px;
   height: 50px;
}

.hero-banner .hero-text p{
   font-size: 18px;
   font-weight: 400;
   line-height: 26px;
   margin-bottom: 30px;
}

.hero-banner .hero-img{
   width: 594px;
   height: 607px;
}

.hero-banner .hero-img img{
   min-width: 100%;
   max-width: 100%;
   min-height: 100%;
   max-height: 100%;
}

.view-link-btn{
   font-size: 14px;
   font-weight: 700;
   color: var(--primary-color);
   text-transform: uppercase;
   font-family: var(--body-font);
   text-decoration: underline;
}

/*--------------------------------------------------------------
  about us
--------------------------------------------------------------*/
.about-us{
   padding:70px 0;	
}

.about-us .about-text{
   padding-top:70px;	
}

.about-us .about-img{ 
   margin-right: 55px;
}

.about-us .about-img img{ 
   width: 100%;
   height: 100%;
}

.about-us .about-text p{
   margin-bottom:25px;
}

/*--------------------------------------------------------------
  swarasa menu
--------------------------------------------------------------*/
.swarasa-menu{
   padding:70px 0;	
}

.swarasa-menu .swarasa-menu__item .swarasa-menu__img{
   border-radius: 62px;
   overflow: hidden;
   position: relative;
}

.swarasa-menu .swarasa-menu__item .swarasa-menu__img:before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	width:100%;
    height:100%;
	background:#0506084D;
}

.swarasa-menu .swarasa-menu__item .swarasa-menu__img img{
   width:100%;	
}

.swarasa-menu .swarasa-menu__item .swarasa-menu__img h5{
	font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translate(-50%, 50%);
    width: 100%;
    text-align: center;
    color: var(--white-color);
	font-family: 'courier new';
}

.swarasa-menu .swarasa-menu__container{
    margin-left:100px;	
}

/*--------------------------------------------------------------
  book table
--------------------------------------------------------------*/
.book-table{
	background: #70693B;
    padding: 90px 0;
}

.book-table .book-table-text{
	width: 655px;
    margin: 0 auto;
    text-align: center;
}

.book-table .book-table-text h2{
	color:var(--white-color);
	margin-bottom: 35px;
}

.book-table .book-table-text p{
	color:var(--white-color);
	margin-bottom: 30px;
}

.book-table .view-link-btn{
	color:var(--white-color);
}

/*--------------------------------------------------------------
  more then meal
--------------------------------------------------------------*/
.more-then-meal{
    padding:70px 0;	
}

.more-then-meal .more-then-meal-img{ 
   margin-left: 45px;
}

.more-then-meal .more-then-meal-img img{ 
   width: 100%;
   height: 100%;
}

.more-then-meal .more-then-meal-text{
   margin-right: 40px;
}

.more-then-meal .more-then-meal-text h2{
   margin-bottom:35px;	
}

.more-then-meal .more-then-meal-text p{
	margin-bottom:30px;	
}

/*--------------------------------------------------------------
  gallery
--------------------------------------------------------------*/
.gallery-wrapper{
   padding-top:40px;
}

.gallery-wrapper .gallery__container .gallery-item .gallery-img{
   display: block;
   width: 100%;
   height: 196px;
   position: relative;
}

.gallery-wrapper .gallery__container .gallery-item .gallery-img:before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	width:100%;
    height:100%;
	background:#0506084D;
}

.gallery-wrapper .gallery__container .gallery-item .gallery-img img{
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}

.gallery-wrapper .gallery__container .gallery-item .icon-box{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*--------------------------------------------------------------
  Location Page Css
--------------------------------------------------------------*/
.swarasa-domain{
   padding: 60px 0 70px;
}
.swarasa-domain .swarasa-domain-img{ 
   margin-left: 45px;
}

.swarasa-domain .swarasa-domain-img img{ 
   width: 100%;
   height: 100%;
}

.swarasa-domain .swarasa-domain-text{
   margin-right: 30px;
   padding-top: 115px;
}

.swarasa-domain .swarasa-domain-text h2{
   margin-bottom:35px;	
   margin-right: 55px;
}

.swarasa-domain .swarasa-domain-text p{
   margin-bottom:30px;	
}

.get-started{
   padding:50px 0;
}

.get-started .info-container{
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
   margin-bottom: 30px;
}

.get-started .info-container .info-box h5{
   font-size: 16px;
   font-weight: 600;
   color: var(--black-color);
   line-height: 16px;
   font-family: var(--heading-font);
   margin-bottom: 13px;   
}

.get-started .info-container .info-box p{
   font-size: 15px;
   font-weight: 400;
   margin-bottom: 0;
   color: var(--black-color);
   line-height: 25px;	
}

.events{
   padding:70px 0;	
}

.events .events-img img{
   width:100%;
   height:100%;   
}

.events .events-text{
   margin-left: 70px; 
}

.events .events-text h2{
   margin-right: 72px; 
}

.events .events-text ul{
   list-style: disc;
   padding-left: 30px;
   margin-bottom: 30px;
}

.events .events-text ul li{
   font-size: 18px;
   font-weight: 400;
   color: var(--black-color);
   line-height: 26px;
}

.faq{
	padding:70px 0;
}

.faq .section-title h2{
	text-align:center;
	margin-bottom: 50px;
}

.faq .accordion .accordion-item{
	margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
	border-color: #F8ECDF;
}

.faq .accordion .accordion-item:last-child{
	margin-bottom: 0px;
}

.faq .accordion .accordion-item .accordion-header .accordion-button{
	font-size: 25px;
    font-weight: 400;
    line-height: 25px;
    color: var(--black-color);
    background: #F8ECDF;
	box-shadow: unset;
	padding: 18px 30px 18px 20px;
}

.accordion-button:not(.collapsed)::after{
	background-image: url('../images/icons/arrow-down.svg');
	transform: rotate(0deg);
	width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}

.accordion-button::after{
	background-image: url('../images/icons/arrow-up.svg');
	transform: rotate(0deg);
	width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}

.faq .accordion .accordion-item .accordion-collapse{
	background: #F8ECDF;
}

.faq .accordion .accordion-item .accordion-collapse .accordion-body{
	padding: 0 25px 20px;
	font-size: 15px;
    font-weight: 400;
    line-height: 25px;
	font-family: 'courier new';
}

/*--------------------------------------------------------------
  our menu page styleing
--------------------------------------------------------------*/
.swarasa-our-menu{
	padding:100px 0 0;
}

.our-menu__box .our-menu__list{
	display: flex;
    gap: 25px;
}

.our-menu__box .our-menu__list .menu-item{
	font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
    text-transform: uppercase;
    font-family: var(--body-font);
}

.our-menu__box .our-menu__list .menu-item.active{
	color: var(--primary-color);
	text-decoration:underline;
}

.our-menu__container .our-menu__content h3{
	font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    color: var(--black-color);
	font-family: 'cooper black';
	margin-bottom: 35px
}

.our-menu__container .our-menu__content .menu-item__box{
	margin-bottom: 30px
}

.our-menu__container .our-menu__content .menu__title{
	display: flex;
    justify-content: space-between;
    position:relative;
}

.our-menu__container .our-menu__content .menu__title h6{
	font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black-color);
    font-family: 'cooper black';
	margin-bottom: 18px;
	background-color: var(--body-color);
}

.our-menu__container .our-menu__content .menu__title:after{
	content: "";
    position: absolute;
    top: 7px;
    width: 100%;
    height: 1px;
    background: url(../images/icons/dotted-line.svg);
	z-index:-1;
}

.our-menu__container .our-menu__content .menu__title .price{
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--black-color);
	font-family: 'cooper black';
	background-color: var(--body-color);
}

.our-menu__container .our-menu__content .daytext{
	font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 0px;
}

.our-menu__container .our-menu__content .menutext{
	margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

.our-menu__container .our-menu__img{
	width: 599px;
    height: 521px;
    border-radius: 60px;
    overflow: hidden;
	float:right;
}

.our-menu__container .our-menu__img img{
	min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.our-menu__container .dashed{
    border-bottom: 1px dashed #DEC8B0;
}

.our-menu__container .pd60{
	padding-bottom: 60px;
	padding-top:60px;
}

/*--------------------------------------------------------------
  Catering & Event Page Styleing
--------------------------------------------------------------*/
.breadcrumb-banner{
	padding-top:50px;
}

.breadcrumb-banner .breadcrumb-img{
	width: 100%;
    height: 500px;
}

.breadcrumb-banner .breadcrumb-img img{
	min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.swarasa-gatherings{
    padding: 90px 0;
}

.swarasa-gatherings .section-title{
    width: 739px;
    margin: 0 auto 70px;
    text-align: center;
}

.swarasa-gatherings .single-box__item{
	background: #F8ECDF;
    border-radius: 60px;
    padding: 50px;
    text-align: center;
}

.swarasa-gatherings .single-box__item h3{
	font-size: 32px;
    font-weight: 400;
    color: var(--black-color);
    font-family: 'Cooper Black';
    line-height: 32px;
	margin-bottom: 30px;
}

.swarasa-gatherings .single-box__item .btn-view-menu{
	width: 100%;
    margin-top: 25px;
}

.swarasa-host-event{
    padding: 20px 0 30px;
}

.swarasa-host-event .host-event-text .address-box{
	padding-top:45px;
}

.swarasa-host-event .host-event-text .address-box h3{
	font-size: 42px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 32px;
    font-family: var(--heading-font);
	margin-bottom: 32px;
}

.host-event-text .address-box .address-text, .phone-text{
	width:50%;
}

.host-event-text .address-box h5{
	font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black-color);
    font-family: var(--heading-font);
}

.host-event-text .address-box p{
	font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: var(--black-color);
    font-family: 'courier new';
	margin-bottom:0;
}

.host-event-text h4{
	font-size: 29px;
    font-weight: 400;
    line-height: 32px;
    color: var(--black-color);
    font-family: var(--heading-font);
	margin-bottom: 15px;
}

.host-event-text ul{
	list-style: unset;
    padding-left: 16px;
	margin-bottom: 25px;
}

.host-event-text ul li{
	font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: var(--black-color);
    font-family: 'courier new';
}

.swarasa-host-event .host-event-img{
	padding-top:90px;
}

.swarasa-host-event .host-event-img img{
	width:100%;
	border-radius:60px;
}

/*--------------------------------------------------------------
  About us us Page Styleing
--------------------------------------------------------------*/
.swarasa-about__area{
	padding:70px 0;
}

.swarasa-about__area .about-img__box{
	display: flex;
    gap: 20px;
}

.swarasa-about__area .about-img__box img{
	width: 291px;
    height: 532px;
    border-radius: 40px;
    object-fit: cover;
}

.swarasa-about__area .about-content h2{
	margin-right: 55px;
}

.our-story__area{
    background-color: #DEC8B033;
    padding: 70px 0 110px;
}

.our-story__area .our-story-content{
	width: 605px;
    margin: 0 auto;
    text-align: center;
	position:relative;
}

.our-story__area .our-story-content h2{
	margin-bottom: 35px;
}

.our-story-content:before{
	content: "";
    position: absolute;
    left: -195px;
    bottom: -125px;
    width: 180px;
    height: 166px;
    background: url(../images/icons/story-icon-1.svg);
    background-repeat: no-repeat;
}

.our-story-content:after{
	content: "";
    position: absolute;
    right: -240px;
    bottom: -125px;
    width: 230px;
    height: 236px;
    background: url(../images/icons/story-icon-2.svg);
    background-repeat: no-repeat;
}

/*--------------------------------------------------------------
  Contact us Page Styleing
--------------------------------------------------------------*/
.swarasa-contact__area{
	padding: 70px 0;
	background: #F8ECDF;
	position:relative;
}

.swarasa-contact__area:before{
	content: "";
    position: absolute;
    left: 0;
	bottom: -14px;
    width: 160px;
    height: 160px;
    background: url(../images/icons/contact-bg_icon1.svg);
    background-repeat: no-repeat;
}

.contact-container{
	width:1040px;
	margin:0 auto;
}

.swarasa-contact__area .contact-info{
	position:relative;
}

.swarasa-contact__area .contact-info:after{
	content: "";
    position: absolute;
    right: 0;
    width: 160px;
    height: 160px;
    background: url(../images/icons/contact-bg_icon2.svg);
    background-repeat: no-repeat;
    margin-top: 20px;
}

.swarasa-contact__area .contact-info h3{
	font-size: 44px;
    font-weight: 400;
    color: #252525;
    line-height: 44px;
    font-family: var(--heading-font);
	margin-bottom: 40px;
}

.swarasa-contact__area .contact-info ul{
	margin-right: 100px;
}

.swarasa-contact__area .contact-info ul li{
	margin-bottom: 40px;
}

.swarasa-contact__area .contact-info ul li a{
	font-size:16px;
	font-weight:400;
	color: var(--black-color);
	line-height: 26px;
    font-family: 'courier new';
	display: flex;
    align-items: start;
    gap: 20px;
}

.swarasa-contact__area .contact-info ul li a img{
	margin-top: 5px;
}

.contact-form__box{
	background: #FFF5EB;
    border-radius: 40px;
    padding: 40px 50px;
}

.contact-form__box .form-group{
	margin-bottom: 16px;
}

.contact-form__box .form-group input{
	height: 46px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: 'Courier New';
}

.contact-form__box .form-group textarea{
    border: 1px solid #000;
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: 'Courier New';
}

.contact-form__box .btn-submit{
	margin-top: 30px;
}

.swarasa-location__area{
	padding:90px 0 60px;
}

.swarasa-location__area .map-area img{
	width: 100%;
    height: 379px;
    object-fit: cover;
    border-radius: 40px;
}

/*--------------------------------------------------------------
  Booking Page Styleing
--------------------------------------------------------------*/
.swarasa-booking__area{
	padding:90px 0 60px;
}

.swarasa-booking__area .section-title{
	text-align:center;
	margin-bottom: 50px;
}

.single-booking__item{
	overflow: hidden;
    border-radius: 40px;
	margin-bottom: 25px;
}

.single-booking__item .img-box{
	width:100%;
	height:298px;
}

.single-booking__item .img-box img{
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.single-booking__item .content-box{
	padding: 35px 30px;
    background: #F8ECDF;
}

.single-booking__item .content-box h4{
	font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    color: var(--black-color);
    font-family: var(--heading-font);
	margin-bottom: 25px;
}

.single-booking__item .book-now__link{
	font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    color: var(--black-color);
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: auto;
    text-decoration-color: black;
}

.single-booking__item ul{
	display: flex;
    gap: 20px;
	margin-bottom: 30px;
}

.single-booking__item ul li{
	display: flex;
    align-items: center;
    gap: 10px;
}

.single-booking__item ul li span{
	font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: var(--black-color);
    font-family: Courier New;
}

.swarasa-booking_bg{
    background-image: url('../images/book-table_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.swarasa-booking_bg .book-table_form{
    padding: 100px 0;
}

.swarasa-booking_bg .book-table_form form{
    width: 810px;
    margin: 0 auto;
    background: #05060866;
    padding: 50px;
    border-radius: 40px;
}

.swarasa-booking_bg .book-table_form .book-type__box{
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    cursor:pointer;
}

.form-check-input:focus{
    border-color:transparent;
    box-shadow:unset;
}

.form-check-input:checked {
    background-color: var(--primary-color);;
    border-color: var(--primary-color);;
}

.swarasa-booking_bg .book-table_form .form-group{
    margin-bottom: 25px;
}

.swarasa-booking_bg .book-table_form .form-group label{
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: var(--white-color);
    font-family: var(--heading-font);
    margin-bottom: 15px; 
}

.swarasa-booking_bg .book-table_form .form-group input{
    height: 46px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--body-font);
    color: #fff;
}

.swarasa-booking_bg .book-table_form .form-group select {
    height: 46px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 5px !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--body-font);
    color: #fff;
}
.swarasa-booking_bg .book-table_form .form-group option {
    background-color: #72634f;
}



.form-control:focus{
    background-color: transparent;
}

input:autofill {
    background-color: transparent;
}

.swarasa-booking_bg .book-table_form .form-group input::placeholder{
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--body-font);
    color: #fff;
}

.swarasa-booking_bg .book-table_form .form-group textarea{
    height: 186px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--body-font);
    color: #fff;
    margin-top: 42px;
    padding: 18px;
}

.swarasa-booking_bg .book-table_form .form-group textarea::placeholder{
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    font-family: var(--body-font);
    color: #fff;
}

.swarasa-booking_bg .book-table_form .counter {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.swarasa-booking_bg .book-table_form .btn-booknow{
    background-color: #FFF5EB;
    border-color: #FFF5EB;
    margin-top: 20px
}

.btn-count {
    border: none;
    width: 38px;
    height: 24px;
    border-radius: 5px;
    background-color: #FFF5EB !important;
    cursor: pointer;
}

.btn-count span{
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4px;
}

.count_person {
    width: 38px;
    height: 24px !important;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 5px;
}

.swarasa-booking_bg .book-table_form .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.swarasa-booking_bg .book-table_form .input-group input{
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.swarasa-booking_bg .book-table_form .input-icon {
    position: absolute;
    right: 10px;
    color: var(--white-color);
    cursor: pointer;
}

.swarasa-booking_bg .book-table_form .input-icon i {
    font-size: 18px;
}

/*** booking details ***/
.swarasa-booking-details{
    padding: 100px 0 70px;
}

.swarasa-booking-details .section-title h3{
   font-size: 40px;
   font-weight: 400;
   color: var(--black-color);
   line-height: 40px;
   font-family: var(--heading-font);
   margin-bottom: 40px;
}

.swarasa-booking-details .details-box{
    background-color: #F8ECDF;
    border-radius: 40px;
    padding: 60px 40px 30px;
}

.swarasa-booking-details .details-box .heading-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.swarasa-booking-details .details-box .heading-box p{
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 0;
    font-family: var(--body-font);
}

.swarasa-booking-details .details-box .heading-box p a{
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

.swarasa-booking-details .details-box h4{
    font-size: 29px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 32px;
    font-family: var(--heading-font);
}

.swarasa-booking-details .details-box table tr{
    display: block;
    margin-bottom: 30px;
}

.swarasa-booking-details .details-box table tr th{
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 14px;
    font-family: var(--heading-font);
    width: 180px;
}

.swarasa-booking-details .details-box table tr td{
    font-size: 15px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 15px;
    font-family: 'Courier New';
}

.swarasa-booking-details .pay-box{
    background-color: #F8ECDF;
    border-radius: 40px;
    padding: 45px 40px;
    height: 100%;
}

.swarasa-booking-details .pay-box h5{
    font-size: 20px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 30px;
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 10px;
}

.swarasa-booking-details .pay-box .qr-sacn{
    text-align:center;
}

.swarasa-booking-details .pay-box .qr-sacn img{
    width: 155px;
    height: 154px;
}

/*--------------------------------------------------------------
  footer
--------------------------------------------------------------*/
.footer{
   padding:20px 0;	
   background: var(--dark-color);
}

.footer-logo{
   width:153px;	
}

.footer .footer-top{
   padding:90px 0;	
}

.footer .footer-top .footer-widget h3{
   font-size: 18px;
   font-weight: 400;
   line-height: 18px;
   color: var(--white-color);
   margin-bottom: 20px;   
}

.footer .footer-top .footer-widget p{
   color: var(--white-color);
   font-size: 14px;
   font-weight: 400;
   line-height: 24px;
   margin-bottom: 0;   
   font-family: 'courier new';
}

.footer .footer-top .social_link{
   display: flex;
   justify-content: center;
   gap: 40px;
   margin-top: 16px;
   margin-bottom: 0;
}
	
.footer .footer-bottom{ 
   border-top: 1px solid #fff;
   padding-top: 20px;
}	

.footer .footer-bottom p{
   font-size: 14px;
   font-weight: 400;
   line-height: 24px;
   color: var(--white-color);
   font-family: 'courier new';   
}

.footer .social_links{ 
  list-style: none;
  padding-left: 0;
}

.map-container img
{
        width: -webkit-fill-available;

}