:root{
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
	--primary-color:#F0181D;
	--secondry-color: rgba(255, 199, 44, 1);
	--primary-bgcolor: linear-gradient(0deg, #E20B10 0%, #E20B10 100%);
	--secondry-bgcolor: linear-gradient(180deg, #FFCA42 0%, #C59416 100%);
	--primary-btn: linear-gradient(180deg, #E20B10 0%, #E20B10 100%);
	--secondry-btn: linear-gradient(180deg, #FFCA42 0%, #C59416 100%);
	--primary-lightbg: #eb2427;
	--secondry_lightbg: rgba(255, 232, 174, 1);
	--theme-color-white: #fff;
	--theme-color-dark: rgba(0, 0, 0, 1);
}
body {
    overflow-y:auto !important; 
    overflow-x:hidden !important;
    line-height: 1;
    padding: 0 !important;
    margin: 0;
    font-family: "Oxanium", sans-serif;
}
p{
    line-height:normal;
}
ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}
.pos_rel{
    position: relative;
}
html,
body,
.wrapper{
	height: 100%;
}
img{
	border: none;
	max-width: 100%;
	outline: none;
    -webkit-user-drag: none;
}
a,
.btn,
button{
	box-shadow: none !important;
	cursor: pointer;
	-moz-transition: all 0.35s ease-in-out;
	-ms-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	outline: medium none !important;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
	-webkit-transition: all 0.35s ease-in-out;
}
a img,
iframe{
	border: none;
}
html,body,div,span,applet,object,iframe,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,
video{
	border: 0;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,
section{
	display: block;
}
section,.section_padd{
    padding: 50px 0px;
}
ol,
ul{
	list-style: none;
}

/* Common Styling */
.section-title .title {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--theme-color-dark);
    position: relative;
    display: inline-block;
    padding-left: 15px;
}
.title_line {
    content: "";
    height: 25px;
    width: 5px;
    background-color: var(--primary-color);
    display: block;
    position: absolute;
    left: 0px;
    margin: 4px 0 0 0px;
    border-radius: 2px;
}
.section-title p {
    font-size: 16px;
    color: var(--theme-color-dark);
    line-height: 26px;
    margin: 0 auto;
}
.btn_box{
    margin-top: 15px;
}
.primarybtn.cust_btn {
    align-items: center;
    background: var(--primary-btn);
    border: 1px solid;
    border-radius: 12px;
    color: var(--theme-color-white);
    font-weight: 400;
    font-size: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    line-height: 26px;
    padding: 10px 35px;
    -webkit-box-shadow: 5px 5px 10px 0px #00000040;
    box-shadow: 5px 5px 10px 0px #00000040;
}
.primarybtn.cust_btn:hover {
    background: var(--theme-color-dark);
}
.secondrybtn.cust_btn {
    align-items: center;
    background: var(--secondry-btn);
    border: 1px solid;
    border-radius: 12px;
    color: var(--theme-color-dark);
    font-weight: 400;
    font-size: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;  
    line-height: 26px;
    padding: 10px 35px;
    -webkit-box-shadow: 5px 5px 10px 0px #00000040;
    box-shadow: 5px 5px 10px 0px #00000040;
}
.secondrybtn.cust_btn:hover{
    background: var(--primary-btn);
}
.cust_btn .btn-wrap {
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: inline-block;
    border: none;
}
.cust_btn .text-one {
    position: relative;
    display: block;
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.cust_btn .text-two {
    position: absolute;
    top: 100%;
    display: block;
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.cust_btn:hover .text-one{
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}
.cust_btn:hover .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn_transparent{
    background: transparent !important;
}
.primarybgcolor{
    background: var(--primary-bgcolor);
}
.secondrybgcolor{
    background: var(--secondry-bgcolor);
}
.primarycolor{
    color: var(--primary-color) !important;
}
.secondrycolor{
    color: var(--secondry-color) !important;
}
.primaryborder{
    border-color: var(--primary-color) !important;
}
.secondryborder{
    border-color: var(--secondry-color) !important;
}
/* For container style */
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        min-width: 1200px;
    }
}

/* TopBar Section */
header.main-header {
    position: fixed;
    left: 0px;
    z-index: 9999;
    background: #000000;
    width: 100%;
}
header.main-header.scrolled {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    opacity: 100%;
}
.h-one-hs {
    background: var(--primary-color) !important;
    border-bottom: 0 solid #999;
}
.navbrs {
    background: transparent;
    min-height: unset !important;
    margin-bottom: 0;
    border-color: transparent !important;
    padding: 8px 0;
}
.top-icons-agileits-w3layouts li {
    list-style: none;
    display: inline-block;
    padding: 0 15px 0 0;
}
.top-icons-agileits-w3layouts .nav-link {
    font-size: 13px !important;
    color: var(--theme-color-white);
    font-weight: 500;
}
.navbrs a i {
    color: var(--theme-color-white);
    background: none !important;
    font-size: 15px;
    position: relative;
    top: 2px;
}
.top-icons-agileits-w3layouts a:hover,
.navbrs a:hover i{
    color: var(--theme-color-dark);
}
.top-icons-agileits-w3layouts a:hover i{
    color: var(--theme-color-white);
}
/* TopHeader Navigation */
.navs {
    background-color: transparent;
    margin: 0px auto 0;
    position: relative;
}
.iconarea a {
    padding: 4px 0;
    display: flex;
    height: auto !important;
    align-items: center;
}
.iconarea .navbar-brand img {
    width: 130px;
}
/* SiderBar MenuNavigation Starts*/
.mobile-menu-wrap{
	visibility: hidden;
	opacity:0;
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:9999;
	background:#000;
	transform: translate3d(-100%,0,0);
	-webkit-transform: translate3d(-100%,0,0);
	transition: top .4s ease .4s, transform .4s ease, opacity .5s ease, visibility .1s ease .5s;
	-webkit-transition: top .4s ease .4s, -webkit-transform .4s ease, opacity .5s ease, visibility .1s ease .5s;
}
@media(min-width:992px){
.mobile-menu-wrap {
	right: 70%;
}
}
.mobile .mobile-menu-wrap{
	opacity:1;
}
.enable-mobile-menu .mobile-menu-wrap{
	visibility: visible;
	opacity:1;
	transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
	transition: top .4s, transform .4s ease, opacity .4s ease, visibility 0s ease;
	-webkit-transition: top .4s, -webkit-transform .4s ease, opacity .4s ease, visibility 0s ease;
}
.mobile-menu{
	margin:0;
	padding: 10px 20px 20px;
	list-style:none;
	text-transform:uppercase;
	overflow:auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	position:absolute;
	top:45px;
	bottom:0;
	left:0;
	right:0;
	z-index:9999;
}
.pc .mobile-menu{
	opacity:0;
	transform: translate3d(0,0,30%);
	-webkit-transform: translate3d(0%,0,30%);
	transition: all .4s ease .25s;
	-webkit-transition: all .4s ease .25s;
}
.pc.enable-mobile-menu .mobile-menu{
	opacity:1;
	transform: translate3d(0,0,0);
	-webkit-transform: translate3d(0,0,0);
}
.mobile-menu li.home{
    margin-top: 15px;
}
.mobile-menu li {
    list-style: none;
    padding: 0;
    margin: 15px 0 15px;
}
.mobile-menu .sub-menu ul li{
    margin: 0;
}
.mobile-menu .sub-menu ul li a {
    padding: 5px 0 0px 10px;
    font-size: 14px;
}
.mobile-menu li a, 
.mobile-menu-wrap .mobile-menu-toggle{
	display:block;
	padding: 0;
	min-height: 38px;
	line-height: 38px;
	transition: all .2s;
	-webkit-transition: all .2s;
	border-bottom: solid 1px rgba(255,255,255,.08);
	position:relative;
	color: var(--theme-color-white);
}
.mobile-menu > li > a{
	font-size: 18px;
	min-height: 45px;
	line-height: 34px;
	color:var(--theme-color-white);
}
.mobile-menu li a:hover{
    color: var(--primary-color);
}
.mobile-menu li a:before{
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 1px;
	width: 0;
	background-color: #eee;
	background-color: rgba(255,255,255,.6);
	transition:all .4s ease;
}
.mobile-menu > li > a:before{
	width: 40px;
}
.mobile-menu li a:hover:before{
	width:100%;
}
.mobile-menu-wrap .mobile-menu-toggle{
	text-align:center;
	font-size:25px;
	background:#262626;
	background:rgba(51,51,51,.75);
    min-height: 45px;
	line-height: 45px;
}
.mobile-menu-wrap .mobile-menu-toggle:hover i{
    color: var(--primary-color);
}
.mobile-menu-wrap .dropdown-items {
    display: none; /* Hide dropdown by default */
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-wrap .menu-item-has-children.active > .dropdown-items {
    display: block; /* Show dropdown when active */
}

/* SiderBar MenuNavigation Ends*/
.main-header .navbar {
    border-bottom: 1px solid rgba(255,255,255,.3);
}
.main-header.scrolled .navbar{
    width: 100%;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid var(--primary-color);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    padding: 2px 0;
}
.main-header.scrolled .navs{
    border-radius: 0;
    border: none;
    margin: 0px auto;
}
.main-header.scrolled .navbar.disi{
    display: none;
}
.main-header.scrolled .menu-bar .header_btn a{
    display: block;
}
.main-header.scrolled .navbar-brand img {
    max-width: 120px;
}
.bg_props {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.bg_light{
    background: #EBEBEB;
}
.bg_primary{
    background: var(--primary-bgcolor);
}
.main-header .mobile-menu-toggle {
	border: solid 1px transparent;
	border-radius: 0;
	padding: 8px 6px;
	line-height:0;
    background-color: transparent;
}
.main-header .mobile-menu-toggle:hover{
	border-color: var(--primary-color);
	background-color:transparent;
	color: var(--theme-color-white);	
}
.main-header .mobile-menu-toggle .fa{
	width: 28px;
	height: 22px;
	border-top: solid 2px;
	border-bottom: solid 2px;
}
.main-header .mobile-menu-toggle .fa:before{
	content:'';
	border-top: solid 2px;
	display:block;
	margin-top:8px;
}
.main-header .search-container {
	position: relative;
	display: inline-block;
	margin: 4px 2px;
	height: 50px;
	width: 50px;
	vertical-align: bottom;
}
.main-header .searchbutton {
	position: absolute;
	font-size: 14px;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--theme-color-white);
	height: 50px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main-header .searchbutton:hover{
    border: 1px solid var(--primary-color);
    cursor: pointer;
}
.search:focus + .searchbutton {
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	background-color: var(--theme-color-white);
	color: var(--theme-color-dark);
	border-radius: 0px 12px 12px 0px;
}
.main-header .search {
	position: absolute;
	right: 50px;
	background-color: var(--theme-color-white);
	outline: none;
	border: none;
	padding: 0;
	width: 0;
	height: 100%;
	z-index: 10;
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	border-right: 1px solid;
	border-radius: 12px 0 0px 12px;
}
.main-header .search:focus {
	width: 300px;
	padding: 0 0px 0 15px;
}
/* SearchEnd */

/* TopBanner Section */
.topbanner {
    background-image: url(../images/topbanner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 170px 0 20px;
}
.topbanner .banner-content{
    padding-right: 25px;
}
.topbanner .banner-content h1 {
    font-size: 63px;
    color: var(--theme-color-white);
    margin-bottom: 20px;
    line-height: 70px;
}
.topbanner .banner-content h1 span{
    font-weight: 700;
}
.topbanner .banner-content p {
    font-size: 20px;
    color: var(--theme-color-white);
    margin-bottom: 15px;
    line-height: 28px;
}
.topbanner .feature_box ul {
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
    margin: 30px 0 0px;
}
.topbanner .feature_box li {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.topbanner .feature_box li p {
    font-size: 13px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
    color: var(--theme-color-dark);
    margin: 7px 0 0;
}
.topbanner .feature_box li .circle {
    background: var(--theme-color-white);
    border: 1px solid var(--theme-color-white);
    width: 145px;
    height: 145px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    flex-direction: column;
    padding: 0 10px;
}
.topbanner .feature_box li .circle:before {
    content: "";
    width: 160px;
    height: 160px;
    position: absolute;
    border: 2px solid var(--theme-color-white);
    border-radius: 50%;
}
.topbanner .feature_box li:hover .circle{
    border-color: var(--theme-color-dark);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
.topbanner .feature_box li:hover .circle:before{
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-style: dotted;
}
.topbanner .feature_box li:hover p{
    color: var(--primary-color);
}

/* BookForm Section */
.banner-form{
    padding: 40px 0px;
    background-color: #333333;
}
.banner-form .section-title .title_line{
    background-color: var(--theme-color-dark);
}
.banner-form .form-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}
.banner-form .registerbox .region li {
    background: var(--primary-color);
    width: 60px;
    height: 45px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-white);
    font-weight: 600;
    position: absolute;
    z-index: 22;
}
.banner-form .registerbox .form-control{
    padding-left: 70px;
}
.banner-form  .form-control {
    padding: 5px 10px 5px 10px;
    border-radius: 12px;
    height: calc(2.215em + 0.75rem + 2px);
    font-size: 14px;
    background-color: #DBDBDB;
    font-weight: 600;
    width: 285px;
}
.banner-form .form-control:focus{
    background-color: var(--theme-color-white);
}
form.form-wrapper label {
    color: var(--theme-color-white);
    font-size: 12px;
    margin-bottom: 0.2rem;
}
.banner-form .form-item.form-group select {
    background-position: right .75rem center;
    background-image: linear-gradient(45deg, transparent 50%, var(--theme-color-dark) 60%), linear-gradient(133deg, var(--theme-color-dark) 40%, transparent 50%) !important;
    background-position: calc(100% - 11px) 20px, calc(100% - 4px) 20px, 100% 0;
    background-size: 8px 8px, 7px 8px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.banner-form .form-item.form-group select option{
    font-weight: 600;
}
.banner-form .form-item.form-group {
    margin: 0 15px 15px 0;
}
.banner-form .primarybtn.cust_btn.OrderNow {
    font-size: 16px;
    font-weight: 600;
    padding: 8.5px 35px;
}
#form_response {
    display: block;
    margin: 15px 0;
    color: var(--theme-color-white);
    opacity: 1;
    width: 100%;
    display: none;
}
#form_response p {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: var(--theme-color-dark);
}
/*========parsley=============*/
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    border: 1px solid #5fba7d !important;
    font-weight: 300;
    outline: none;
    box-shadow: none;
    color: #000000;
}
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    border: 1px solid #FF0101 !important;
    box-shadow: rgba(255, 1, 1, 0.47) 0px 0px 5px !important;
    font-weight: 300;
}
.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 0.9em;
    line-height: 0.9em;
    opacity: 0;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    display: none;
}
.parsley-errors-list.filled {
    opacity: 1;
}
/* Custom BannerForm Ends*/

/* OurBenefits Section */
.benefits_sec{
    padding: 40px 0px;
    background-color: var(--theme-color-dark);
}
.benefits_sec .firstcol{
    padding: 0 20px;
}
.benefits_sec .ourbenefits {
    border-right: 0.5px solid #767676;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    padding: 10px 15px;
    border-radius: 3px;
}
.benefits_sec .ourbenefits p{
    color: var(--theme-color-white);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}
.benefits_sec .benefits_usp li {
    border: 1px solid #222;
    padding: 14px 5px;
    width: 130px;
}
.benefits_sec .benefits_usp li img{
    max-width: 60px;
}
.benefits_sec .benefits_usp p {
    color: var(--theme-color-white);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0 0;
}
.benefits_sec .benefits_usp li:hover{
    border-color: var(--primary-color);
}
.benefits_sec .benefits_usp li:hover p{
    color: var(--primary-color);
}
/* AboutUs/ContactUs Section Starts */
.about_contact {
    background: #333333;
    position: relative;
    z-index: 222;
}
.about_contact::after {
    content: "";
    position: absolute;
    background-image: url(../images/contactbg.png);
    background-size: cover;
    background-position: left;
    width: 50%;
    display: block;
    height: 100%;
    right: 0;
    top: 0;
}
.about_contact .contentside p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 21px;
    font-weight: 400;
}
.about_contact .contentside .about-list li {
    color: var(--theme-color-white);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 14px;
}
.about_contact .contentside .about-list li i {
    color: var(--theme-color-white);
    margin-right: 5px;
    width: 23px;
    height: 23px;
    display: inline-flex;
    background: var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 14px;
}
.about_contact .hsec11-form {
    background: transparent;
    padding: 0px 25px 0px;
    border-radius: 0;
    margin: 0px 0 0;
    position: relative;
    z-index: 22;
}
.about_contact .hsec11-form-feild {
    position: relative;
}
.about_contact .contact_title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}
.about_contact .sub-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.about_contact .hsec11-form-feild label {
    line-height: 22px;
    color: rgba(30, 30, 30, 1);
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
}
.about_contact .hsec11-form-feild input, 
.about_contact .hsec11-form-feild select, 
.about_contact .hsec11-form-feild textarea {
    width: 100%;
    border: 1px solid #999;
    background-color: var(--theme-color-white);
    border-radius: 8px;
    padding: 10px 15px !important;
    margin-bottom: 10px;
    line-height: 26px;
    outline-color: #fff3cd;
    font-size: 15px;
}
.about_contact .hsec11-form-feild select {
    background-position: right .75rem center;
    background-image: linear-gradient(45deg, transparent 50%, rgb(229 173 29) 60%), linear-gradient(133deg, rgb(229 173 29)  40%, transparent 50%) !important;
    background-position: calc(100% - 20px) 20px, calc(100% - 10px) 20px, 100% 0;
    background-size: 10px 10px, 10px 10px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.about_contact .btn_box{
    margin: 0;
}
.about_contact .btn_box .primarybtn.cust_btn {
    justify-content: center;
}
.about_contact .field::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:rgba(179, 179, 179, 1);
    font-size: 14px;
}
.about_contact .field:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: rgba(179, 179, 179, 1);
   opacity:  1;
   font-size: 14px;
}
.about_contact .field::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: rgba(179, 179, 179, 1);
   opacity:  1;
   font-size: 14px;
}
.about_contact .field:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: rgba(179, 179, 179, 1);
   font-size: 14px;
}
.about_contact .field::-ms-input-placeholder { /* Microsoft Edge */
   color: rgba(179, 179, 179, 1);
   font-size: 14px;
}
.about_contact .field::placeholder { /* Most modern browsers support this now. */
    color:rgba(179, 179, 179, 1);
   font-size: 14px;
}

/* Footer Section */
#footer .footbox::before {
    content: "";
    background: var(--theme-color-white);
    width: 400px;
    height: 320px;
    display: block;
    position: absolute;
    top: -60px;
    left: 20px;
    border-top: 1px solid #ddd;
}
#footer .foot_img {
    padding: 0 50px;
}
#footer .footer-top {
    padding: 60px 0 50px;
    background: var(--theme-color-dark);
}
#footer .footbox p {
    margin-bottom: 7px;
    line-height: 22px;
}
#footer .office_timings .title{
    font-size: 16px;
}
#footer .foot_para {
    padding: 10px 50px 0 50px;
}
#footer .foot_title {
    color: var(--theme-color-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}
#footer .usefull-links-widget li {
    padding: 15px 0 10px 0px;
    color: var(--theme-color-white);
    display: flex;
    align-items: center;
}
#footer .usefull-links-widget li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--theme-color-white);
    border: 1px solid var(--theme-color-white);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    display: none;
}
#footer .usefull-links-widget li a {
    font-size: 16px;
    color: var(--theme-color-white);
    font-weight: 400;
    padding-left: 0;
}
#footer .usefull-links-widget li a:hover{
    color: var(--primary-color);
}
#footer .contact-info {
    position: relative;
    padding-top: 10px;
}
#footer .contact-info li {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}
#footer .contact-info li a{
    font-size: 16px;
    color: var(--theme-color-white);
    line-height: 22px;
}
#footer .contact-info li a:hover{
    color: var(--primary-color);
}
#footer .contact-info li i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
    font-size: 16px;
}
#footer .footer-bottom {
    padding: 13px 0 10px;
    background: var(--primary-lightbg);
    position: relative;
    border-top: 1px solid var(--primary-color);
}
#footer .footer-bottom p {
    font-size: 15px;
    margin: 0;
    line-height: 24px;
    color: var(--theme-color-white);
}
#footer .footer-bottom a{
    font-size: 14px;
    color: var(--theme-color-white);
    line-height: 21px;
    padding: 0 10px;
}
#footer .footer-bottom a:hover{
    color: var(--primary-color);
}
#footer .contact-info li svg.twitter-x {
    fill: var(--primary-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
    font-size: 16px;
}
.usefull-links-widget.clearfix.middle {
    margin: 0 0 0 -35px;
}
#footer .usefull-links-widget.middle .foot_title{
    border-color: transparent;    
}
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: 1px solid #999;
    color: var(--theme-color-white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    font-size: 30px;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
/* WhatsaAPP Widget */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
}
.whatsapp-btn i {
    color: #fff;
    font-size: 26px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
}
@keyframes breathe {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
/*Estilos de animacion del icono latiendo*/
@keyframes beat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}
/* InnerPages Style Starts */
.innerPageBanner {
    background-color: var(--theme-color-dark);
    padding: 250px 0 90px;
}
.innerPageBanner::before{
    display: none;
}
.innerPageBanner .banner-content{
    text-align: right;
}
.innerPageBanner .banner-content h1 {
    margin: 0;
    font-size: 42px;
    line-height: 40px;
    font-weight: 600;
}
.innerPageBanner .banner-content p {
    font-size: 18px;
    line-height: 24px;
    color: var(--theme-color-white);
    margin: 15px 0 0;
}
.bg_darkinner{
    background-color: #333333;
}

/* ServiceDetails Page */
.banner-form.servicedetails_page .registerbox .region li{
    background-color: var(--theme-color-dark);
}
.banner-form.servicedetails_page .primarybtn.cust_btn.OrderNow{
    background: var(--theme-color-dark);
}
section.privacy_content.servicedetails_page{
    background: #3a3a3a;
}
section.privacy_content.servicedetails_page h3 {
    font-size: 36px;
    line-height: 34px;
    color: var(--theme-color-white);
    margin-bottom: 10px;
}
section.privacy_content.servicedetails_page p{
    color: var(--theme-color-white);
    line-height: 20px;
}
section.servicedetails_page .service_details_content {
    color: var(--theme-color-white);
    padding: 50px 0 0;
}
section.privacy_content.servicedetails_page .service_details_content ul {
    padding: 0 0 0 10px;
}
section.privacy_content.servicedetails_page .service_details_content li {
    margin-bottom: 10px;
    display: flex;
    line-height: 20px;
    align-items: baseline;
}
section.privacy_content.servicedetails_page .service_details_content li i {
    background: transparent;
    color: var(--primary-color);
    font-size: 5px;
    height: 0;
    width: 5px;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 0;
    display: inline-block;
}
section.servicedetails_page .servicedetails_sidebar {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 30px 15px;
    margin: 0px 10px;
}
section.servicedetails_page .servicedetails_sidebar .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    background-color: var(--theme-color-dark);
    margin: 0px -15px 0;
    padding: 10px 25px;
}
section.servicedetails_page .servicedetails_sidebar .ourbenefits {
    padding: 25px 10px 5px;
}
section.servicedetails_page .servicedetails_sidebar .media {
    align-items: flex-start;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-align: start;
    align-items: center;
    margin-bottom: 20px;
}
section.servicedetails_page .servicedetails_sidebar img {
    margin: 0px 10px 0 0;
}
section.servicedetails_page .servicedetails_sidebar .media-body {
    -ms-flex: 1;
    flex: 1;
}
section.servicedetails_page .servicedetails_sidebar .media-body p {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    line-height: 18px;
}
section.servicedetails_page .servicedetails_sidebar .service_sidebtn_box{
    text-align: center;
}
section.servicedetails_page .servicedetails_sidebar .service_sidebtn_box .primarybtn.cust_btn{
    background: var(--theme-color-dark);
    font-size: 24px;
    line-height: 30px;
    color: var(--theme-color-white);
    font-weight: 600;
    border-color: var(--theme-color-dark);
}

/* BookingPage */
.bookingpage .contentbox {
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    background-color: transparent;
    margin: 0 0 30px;
    padding: 25px 25px 25px;
    -webkit-box-shadow: 0px 0px 10px 0px #0000000D;
    box-shadow: 0px 0px 10px 0px #0000000D;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.bookingpage .contentbox.payment_box{
    margin: 0 0 0;
}
.bookingpage .contentbox .title {
    color: var(--theme-color-white);
    margin-bottom: 25px;
    font-size: 24px;
}
.bookingpage .contentbox .lbl {
    font-size: 16px;
    color: var(--theme-color-white);
    margin-bottom: 8px;
}
.bookingpage .contentbox .form-control{
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    padding: 8px 15px
}
.bookingpage .vline{
    display: flex;
    justify-content: center;
}
.bookingpage .vline .vr{
    background-color: #C7C7C7;
    opacity: 0.8;
}
.bookingpage .booking_details {
    display: flex;
    background: var(--secondry-color);
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 10px 15px 8px;
    margin: 0px 0 10px;
}
.bookingpage .booking_details span {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}
.bookingpage .booking_benefits{
    margin-top: 20px;
}
.bookingpage .booking_benefits ul {
    border-top: 2px dashed #E0E0E0;
    margin-top: 10px;
    padding-top: 15px;
}
.bookingpage .booking_benefits ul li{
    color: #828282;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 7px;
}
.bookingpage .booking_benefits ul li i {
    color: var(--theme-color-white);
    margin-right: 5px;
    width: 8px;
    height: 8px;
    display: inline-flex;
    background: var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
}
.bookingpage .contentbox.book_details_box .form-group{
    margin-bottom: 20px;
}
/* FormCheckBox */
.bookingpage .container_check {
	display: block;
	position: relative;
	font-size: 14px;
	font-size: 0.875rem;
	padding-left: 24px;
	line-height: 1.4;
	margin-bottom: 8px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
    color: var(--theme-color-white);
}
.bookingpage .container_check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.bookingpage .container_check input:checked~.checkmark {
	background-color: var(--primary-color);
	border: 1px solid transparent;
}
.bookingpage .container_check .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 16px;
	width: 16px;
	border: 1px solid #d2d8dd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}
.bookingpage .container_check .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.bookingpage .container_check input:checked~.checkmark:after {
	display: block;
}
/* FormRadio buttons */
.bookingpage .container_radio {
	display: block;
	position: relative;
	font-size: 15px;
	font-size: 0.9375rem;
	padding-left: 20px;
	line-height: 1.3;
	margin-bottom: 10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: var(--theme-color-white);
}
.bookingpage .container_radio input {
	position: absolute;
}
.bookingpage .container_radio .checkmark {
	position: absolute;
	top: 2px;
	left: 0;
	height: 15px;
	width: 15px;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.bookingpage .container_radio .checkmark:after {
    opacity: 0;
    display: block;
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--primary-color);
}
.bookingpage .container_radio input:checked:after {
	opacity: 1;
    background-color: var(--primary-color);
}
.bookingpage .paymentoptions{
    gap: 25px;
}
.bookingpage .primarybtn.cust_btn {
    justify-content: center;
    margin-top: 15px;
    background: #E20B10;
    border-color: #E20B10;
}

/* Booking SideBar */
.booking_sidebar{
    position: sticky;
    top: 30px;
}
.booking_sidebar .selected_servc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}
.booking_sidebar .selected_servc .service_details .service_name{
    font-size: 16px;
    color: var(--theme-color-white);
    line-height: 20px;
    margin-bottom: 5px;
}
.booking_sidebar .selected_servc .service_details .service_duration{
    font-size: 12px;
    color: #999BA1;
    line-height: 16px;
}
.booking_sidebar .selected_servc .service_price{
    font-size: 16px;
    color: var(--theme-color-white);
    line-height: 24px;
}
.booking_sidebar .estimated_total {
    align-items: center;
    color: var(--theme-color-white);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    line-height: 36px;
    border-top: 1px solid #c7c7c7;
    margin: 25px 0 0px;
    padding-top: 10px;
}
.booking_sidebar .sidebtn_box .primarybtn.cust_btn {
    display: flex;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding: 14px 35px 13px;
    border-radius: 10px;
    margin-bottom: 35px;
}
.booking_sidebar .sidetimings .head{
    color: var(--theme-color-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    margin: 15px 0;
}
.booking_sidebar .sidetimings .content {
    margin-bottom: 5px;
}
.booking_sidebar .sidetimings .content span {
    font-size: 15px;
    color: var(--theme-color-white);
    line-height: 22px;
    display: block;
    margin-top: 4px;
}
.booking_sidebar .sidetimings .content .opening_hrs{
    justify-content: space-between;
}
.booking_sidebar .sidetimings .content .opening_hrs span:first-child {
    width: 75px;
    margin-right: 20px;
}
.booking_sidebar .sidetimings .content .opening_hrs span {
    font-size: 15px;
    color: var(--theme-color-white);
    line-height: 22px;
    margin-top: 4px;
    display: inline-block;
}


.bookingpage .expiry_date_wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.bookingpage .hsec11-form-feild {
    position: relative;
}
.bookingpage .contact_title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
.bookingpage .hsec11-form-feild label{
    line-height: 22px;
    color: var(--theme-color-white);
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
}
.bookingpage .hsec11-form-feild input, 
.bookingpage .hsec11-form-feild select,
.bookingpage .hsec11-form-feild textarea {
    width: 100%;
    border: 1px solid rgba(217, 217, 217, 1);
    background-color: transparent;
    border-radius: 8px;
    padding: 5px 15px !important;
    margin-bottom: 12px;
    line-height: 28px;
    outline-color: #fff3cd;
    font-size: 15px;
}
.bookingpage .hsec11-form-feild select {
    background-position: right .75rem center;
    background-image: linear-gradient(45deg, transparent 50%, var(--theme-color-dark) 60%), linear-gradient(133deg, var(--theme-color-dark)  40%, transparent 50%) !important;
    background-position: calc(100% - 12px) 17px, calc(100% - 5px) 17px, 100% 0;
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.bookingpage .btn_box{
    margin: 0;
}
.bookingpage .btn_box .theme-btn {
    border-radius: 8px;
    width: 100%;
    padding: 13px 15px;
}
.bookingpage .field::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:rgba(179, 179, 179, 1);
    font-size: 14px;
}
.bookingpage .field:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: rgba(179, 179, 179, 1);
   opacity:  1;
   font-size: 14px;
}
.bookingpage .field::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: rgba(179, 179, 179, 1);
   opacity:  1;
   font-size: 14px;
}
.bookingpage .field:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: rgba(179, 179, 179, 1);
   font-size: 14px;
}
.bookingpage .field::-ms-input-placeholder { /* Microsoft Edge */
   color: rgba(179, 179, 179, 1);
   font-size: 14px;
}
.bookingpage .field::placeholder { /* Most modern browsers support this now. */
    color:rgba(179, 179, 179, 1);
   font-size: 14px;
}
.booking_sidebar .sidebtn_box .primarybtn.cust_btn:hover{
    background: var(--theme-color-dark);
}

/* Booking Using Card Pay */
.bookingpage.cardpay .cardpay_form .form-group select {
    background-position: right .75rem center;
    background-image: linear-gradient(45deg, transparent 50%, var(--theme-color-dark) 60%), linear-gradient(133deg, var(--theme-color-dark) 40%, transparent 50%) !important;
    background-position: calc(100% - 12px) 18px, calc(100% - 5px) 18px, 100% 0;
    background-size: 8px 8px, 7px 8px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.bookingpage.cardpay .cardpay_form .primarybtn.cust_btn{
    background: #32C770;
    border-color: #32C770;
}
.bookingpage.cardpay .cardpay_form .primarybtn.cust_btn:hover{
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.bookingpage.cardpay .cardpay_form .terms p{
    color: #ACACAC;
    font-size: 14px;
    line-height: 22px;
}

/* ThankYou Page */
.thankspage .contentbox {
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    background-color: transparent;
    margin: 50px auto 50px;
    padding: 30px 40px 30px;
    -webkit-box-shadow: 0px 0px 10px 0px #0000000D;
    box-shadow: 0px 0px 10px 0px #0000000D;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.thankspage .contentbox .title {
    color: var(--theme-color-white);
    margin-bottom: 25px;
    font-size: 24px;
}
.thankspage .contentbox p.top_para{
    color: #32C770;
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}
.thankspage .contentbox p.top_para i{
    margin-right: 5px;
}
.thankspage .contentbox p.bottom_para {
    color: var(--theme-color-white);
    font-size: 20px;
    line-height: 22px;
    margin: 30px 0 25px;
}
.thankspage .contentbox .invoice_download p.bottom_para .dashed_brd {
    border-top: 1px dashed #E0E0E0;
    display: block;
    margin: 10px 0;
}
.thankspage .contentbox .invoice_download p.bottom_para .no_download{
    color: #828282;
    font-size: 14px;
    line-height: 10px;
}
.thankspage .contentbox .invoice_download p.bottom_para .no_download i {
    font-size: 8px;
    margin-right: 3px;
    vertical-align: middle;
}
.thankspage .contentbox .invoice_download .primarybtn.cust_btn {
    background: #32C770;
    border-color: #32C770;
    border-radius: 8px;
    padding: 11px 15px 10px;
    font-size: 16px;
    line-height: 16px;
    color: var(--theme-color-dark);
    transition: none;
}
.thankspage .contentbox .invoice_download .primarybtn.cust_btn:hover{
    background: var(--primary-color);
    color: var(--theme-color-white);
}

/* Terms & Privacy Pages */
.terms_content{
    padding-bottom:50px;
}
.terms_content h3 {
    color: #08a323;
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0 0;
}
.terms_content p {
    font-size: 15px;
    line-height: 24px;
    margin: 0px 0px 10px;
    color: #333;
}
.terms_content a {
    color: #08a323;
    font-weight: 600;
}
.terms_content a:hover{
    color:crimson !important;
}
.terms_list {
    list-style-type: circle;
    margin-left:15px;
}
.terms_list li {
    font-size: 15px;
    line-height: 24px;
    color: #333;
}
.privacy_content h3{
    color:var(--theme-color-dark);
    font-size:22px;
    font-weight:600;
    margin: 20px 0 10px;
}
.privacy_content p {
    font-size: 16px;
    line-height: 24px;
    margin: 0px 0px 10px;
    color: #333;
}
.privacy_content a{
    color:#00CCFF;
    font-weight:600;
}
.privacy_content a:hover{
    color:crimson !important;
}
.privacy_content li {
    margin-bottom: 14px;
}
.privacy_content li i {
    color: var(--theme-color-white);
    margin-right: 5px;
    width: 23px;
    height: 23px;
    display: inline-flex;
    background: var(--primary-color);
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 14px;
}
.term_note {
    font-size: 13px !important;
    margin: 45px auto 0px !important;
    text-align: center;
    color:var(--theme-color-white);
    line-height:17px;
}
.term_note > a {
    color: #08a122 !important;
    float:none !important;
    clear:both;
    font-weight:600;
    cursor:pointer !important
}
.term_note > a:hover{   
    color:#ff0000 !important
}

/* 404_Page Starts*/
.page_404 {
    padding: 80px 0 60px;
}
.page_404 h2 {
    color: var(--theme-color-dark);
    font-size: 200px;
    font-weight: 900;
    line-height: 0.8;
    margin: 0;
}
.page_404 h3 {
    font-size: 36px;
    line-height: normal;
    font-weight: 600;
    margin: 0;
}
.page_404 p {
    font-size: 20px;
    line-height: 26px;
    color: #212121;
}
.page_404 .btn_404 {
    background: var(--primary-color);
    color: var(--theme-color-white);
    font-size: 18px;
    font-weight: 600;
    padding: 5px;
    display: inline-block;
    min-width: 190px;
    line-height: 36px;
    margin: 10px auto 20px;
    border-radius: 5px;
}

/* Responsive Media Screens */
@media (min-width: 768px) {

}
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .topbanner .feature_box ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .topbanner .feature_box li {
        margin: 0 10px;
    }
    .topbanner .feature_box li .circle {
        width: 130px;
        height: 130px;
        padding: 0 10px;
    }
    .topbanner .feature_box li .circle:before {
        width: 140px;
        height: 140px;
    }
    .topbanner .feature_box li img {
        width: 60px;
    }
    .topbanner .feature_box li p {
        font-size: 12px;
        line-height: 14px;
        margin: 8px 0 0;
    }
    .main-header .search:focus {
        width: 250px;
        padding: 0 15px;
    }
    .banner-form .form-wrapper {
        gap: 10px;
        flex-direction: column;
    }
    .benefits_sec .firstcol,
    .benefits_sec .secondcol {
        width: 100%;
    }
    .benefits_sec .ourbenefits p br{
        display: none;
    }
    .benefits_sec .benefits_usp ul {
        flex-wrap: wrap;
    }
    .benefits_sec .benefits_usp ul li {
        width: 50%;
        border: 1px solid #222;
        padding: 10px 10px;
    }
    .banner-form  .form-control {
        width: 100%;
    }
    .banner-form .form-wrapper{
        text-align: center;
    }
    .about_contact::after {
        display: none;
    }
    .about_contact .hsec11-form {
        background: rgba(0, 0, 0, 0.05);
        padding: 25px 10px 25px;
        margin-top: 15px;
    }
    .about_contact .sub-title,
    .about_contact .contact_title{
        color: var(--theme-color-white) !important;
    }
    #footer .footbox{
        padding-top: 25px;
    }
    #footer .footbox::before {
        width: 85%;
        left: 0;
        height: 250px;
        top: 0px;
    }
    #footer .first {
        margin-top: 50px;
    }
    #footer .foot_para {
        padding: 10px 10px 0 10px;
    }
    #footer .footbox p br{
        display: none !important;
    }
    #footer .foot_title {
        margin: 15px 0 10px;
    }
}

@media screen and (max-width: 767px) {
    .logo_site img {
        width: 120px;
    }
    .mobile-menu {
        padding: 10px 15px 10px;
    }
    .mobile-menu .sub-menu ul li a {
        padding: 5px 0 0px 5px;
        font-size: 13px;
    }
    .section-title .title {
        font-size: 26px;
        line-height: 35px;
    }
    .banner-form,
    .benefits_sec {
        padding: 40px 10px;
        text-align: center;
    }
    .banner-form .form-item.form-group {
        margin: 0px;
    }
    .banner-form .form-control{
        width: 100%;
    }
    .topbanner {
        padding: 150px 0 35px;
    }
    .topbanner .banner-content h1 {
        font-size: 38px;
        margin-bottom: 10px;
        line-height: 46px;
    }
    .topbanner .banner-content p {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 24px;
    }
    .topbanner .banner-content {
        padding-right: 0;
    }
    .topbanner .feature_box ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .topbanner .feature_box li {
        margin: 0 10px;
    }
    .topbanner .feature_box li .circle {
        width: 130px;
        height: 130px;
        padding: 0 10px;
    }
    .topbanner .feature_box li .circle:before {
        width: 140px;
        height: 140px;
    }
    .topbanner .feature_box li img {
        width: 60px;
    }
    .topbanner .feature_box li p {
        font-size: 13px;
        line-height: 14px;
        margin: 8px 0 0;
    }
    .topbanner .feature_box li:last-child{
        margin-top: -15px;
    }
    .main-header .search:focus {
        width: 250px;
        padding: 0 15px;
    }
    .banner-form .form-wrapper {
        gap: 10px;
        flex-direction: column;
    }
    .benefits_sec .ourbenefits {
        height: 100px;
    }
    .benefits_sec .ourbenefits p br{
        display: none;
    }
    .benefits_sec .benefits_usp ul {
        flex-wrap: wrap;
    }
    .benefits_sec .benefits_usp ul li {
        width: 50%;
        border: 1px solid #222;
        padding: 10px 10px;
    }
    .about_contact::after {
        display: none;
    }
    .about_contact .hsec11-form {
        background: rgba(0, 0, 0, 0.05);
        padding: 25px 10px 25px;
        margin-top: 15px;
    }
    .about_contact .sub-title,
    .about_contact .contact_title{
        color: var(--theme-color-white) !important;
    }
    /* bookform section */
    .calculator.banner-form{
        padding: 30px 0px 20px;
    }
    .calculator.banner-form .form-wrapper {
        display: block;
        position: relative;
    }
    .calculator.banner-form .proceedbtn.OrderNow{
        width: 100%;
        margin-top: 15px;
        height: 33px;
    }
    .calculator.banner-form .btn-order.form-item.fl{
        width: 60%;
    }
    .calculator.banner-form .form-item.discount-side {
        width: 48%;
        right: 0;
        margin: 0;
        position: absolute;
        bottom: 0;
    }
    .calculator.banner-form .form-item.discount-side img{
        width: 100%;
        height: 33px;
        font-size: 15px;
    }
    .calculator.banner-form .form-item.form-group{
        margin-right: 0;
    }
    .calculator.banner-form  .form-control {
        margin-bottom: 5px;
        border-radius: 3px;
    }
    /* bookform section */
    .primarybtn.cust_btn {
        font-size: 17px;
        line-height: 25px;
    }
    #footer .footer-top {
        padding: 0px 0 10px;
        background: var(--theme-color-dark);
    }
    .back-to-top {
        right: 5px;
        bottom: 10px;
    }
    .whatsapp-btn {
        left: 5px;
        bottom: 10px;
    }
    #footer .footbox{
        padding-top: 25px;
    }
    #footer .footbox::before {
        width: 100%;
        left: 0;
        height: 250px;
        top: 0px;
    }
    #footer .first {
        margin-top: 50px;
    }
    #footer .foot_title {
        margin: 15px 0 10px;
    }
    #footer .foot_img{
        padding: 0 0px;
    }
    #footer .foot_para {
        padding: 10px 0px 0 0px;
    }
    .about_contact .contact_title {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 12px;
    }
    .about_contact .sub-title {
        font-size: 14px;
        line-height: 20px;
    }
    .innerPageBanner {
        padding: 180px 0 50px;
    }
    .thankspage .contentbox {
        padding: 15px 10px 15px;
        margin: 20px auto 20px;
    }
    .thankspage .contentbox p.top_para {
        font-size: 15px;
        line-height: 20px;
    }
    .thankspage .contentbox p.bottom_para {
        font-size: 15px;
        line-height: 22px;
        margin: 15px 0 15px;
    }
    .thankspage .contentbox .invoice_download .primarybtn.cust_btn {
        padding: 10px 15px 9px;
        font-size: 15px;
    }
    .main-header .navbar {
        border-bottom: 1px solid rgba(255,255,255,.3);
    }
    .main-header nav#mainmenu.navbar {
        padding: 0;
    }
    .bookingpage .contentbox {
        border-radius: 12px;
        padding: 15px 10px 15px;
        margin: 0 0 15px;
    }
    .bookingpage .contentbox .title {
        margin-bottom: 15px;
    }
    .bookingpage .booking_details {
        padding: 10px 10px 10px;
        margin: 0px 0 10px;
        flex-wrap: wrap;
    }
    .bookingpage .booking_details span {
        font-size: 16px;
        line-height: 16px;
        width: 100%;
    }
    .bookingpage .contentbox.chooseavail_box .form-group{
        margin-bottom: 12px;
    }
    .bookingpage .vline {
        display: none;
    }
    .booking_sidebar {
        position: relative;
        top: 35px;
    }
    .booking_sidebar .selected_servc {
        margin-top: 15px;
    }
    .booking_sidebar .sidebtn_box .primarybtn.cust_btn {
        margin-bottom: 20px;
    }
    .booking_sidebar .sidetimings .head {
        margin: 10px 0;
    }
    .booking_sidebar .sidetimings .content span {
        font-size: 14px;
    }
    .bookingpage.cardpay .contentbox {
        padding: 15px 10px 15px;
        margin: 0 0 15px;
    }
    .bookingpage.cardpay .cardpay_form .terms p {
        font-size: 13px;
        line-height: 18px;
    }
    .bookingpage .contentbox .lbl {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .bookingpage.cardpay .cardpay_form .input-append.d-flex{
        display: block !important;
    }
    .bookingpage.cardpay .cardpay_form .input-append.d-flex select:first-child{
        margin-bottom: 10px;
    }
    .bookingpage .contentbox.book_details_box .form-group {
        margin-bottom: 15px;
    }
    .sidetimings {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 280px) and (max-width: 359px) {
    .topbanner .feature_box li {
        margin: 0 0px;
    }
    .section-title .title {
        font-size: 24px;
    }
}