*, ::before, ::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-SemiBold.eot');
    src: url('../fonts/EncodeSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-SemiBold.woff2') format('woff2'),
        url('../fonts/EncodeSans-SemiBold.woff') format('woff'),
        url('../fonts/EncodeSans-SemiBold.ttf') format('truetype'),
        url('../fonts/EncodeSans-SemiBold.svg#EncodeSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Thin.eot');
    src: url('../fonts/EncodeSans-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-Thin.woff2') format('woff2'),
        url('../fonts/EncodeSans-Thin.woff') format('woff'),
        url('../fonts/EncodeSans-Thin.ttf') format('truetype'),
        url('../fonts/EncodeSans-Thin.svg#EncodeSans-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Black.eot');
    src: url('../fonts/EncodeSans-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-Black.woff2') format('woff2'),
        url('../fonts/EncodeSans-Black.woff') format('woff'),
        url('../fonts/EncodeSans-Black.ttf') format('truetype'),
        url('../fonts/EncodeSans-Black.svg#EncodeSans-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Bold.eot');
    src: url('../fonts/EncodeSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-Bold.woff2') format('woff2'),
        url('../fonts/EncodeSans-Bold.woff') format('woff'),
        url('../fonts/EncodeSans-Bold.ttf') format('truetype'),
        url('../fonts/EncodeSans-Bold.svg#EncodeSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Light.eot');
    src: url('../fonts/EncodeSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-Light.woff2') format('woff2'),
        url('../fonts/EncodeSans-Light.woff') format('woff'),
        url('../fonts/EncodeSans-Light.ttf') format('truetype'),
        url('../fonts/EncodeSans-Light.svg#EncodeSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Medium.eot');
    src: url('../fonts/EncodeSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-Medium.woff2') format('woff2'),
        url('../fonts/EncodeSans-Medium.woff') format('woff'),
        url('../fonts/EncodeSans-Medium.ttf') format('truetype'),
        url('../fonts/EncodeSans-Medium.svg#EncodeSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Encode Sans';
    src: url('../fonts/EncodeSans-Regular.eot');
    src: url('../fonts/EncodeSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/EncodeSans-Regular.woff2') format('woff2'),
        url('../fonts/EncodeSans-Regular.woff') format('woff'),
        url('../fonts/EncodeSans-Regular.ttf') format('truetype'),
        url('../fonts/EncodeSans-Regular.svg#EncodeSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-color:#090;
}

body{
	margin:0px;
	padding:0px;
	background:#fff;
	font-family: 'Encode Sans';	
}
h1 , h2 , h3 , h4 , h5 , h6 , p , ul{
	margin:0px;
	padding:0px;
}
li{
	list-style:none;	
}
a{
	text-decoration:none;	
	transition:all 0.4s ease-in-out;
}
.container{
	max-width:1150px;
	margin:auto;
	display:block;	
}
.primary_bg_color{
	background: var(--main-color);	
}
.secondary_bg_color{
	background:#11224d;	
}
.primary_text_color{
	color: var(--main-color);
}
.secondary_text_color{
	color: #11224d;
}
.white_Text_color{
	color:#fff;	
}
.align_center{
	text-align:center;	
}
.align_left{
	text-align:left;	
}
.align_right{
	text-align:right;	
}
.Btns_with_bg{
	display:inline-block;
	padding: 0.9em 1.85em !important;
	background-position: 0%;
	color: #ffffff;
	background: -moz-linear-gradient(left, var(--main-color) 9%, var(--main-color) 55%);
	background: -webkit-linear-gradient(left, var(--main-color) 9%, var(--main-color) 55%);
	background: linear-gradient(to right, var(--main-color) 9%, var(--main-color) 55%);
	border-radius: 2em;
	letter-spacing: 1px;
	font-weight: 400;
	text-align: center;	
	font-size:15px;
	background-size: 200%;
	border:none;
	cursor:pointer;
}
.Btns_with_bg:hover{
	background-position: 100%;
	color:#fff;	
}
.Btns_with_transparent_bg{
	display:inline-block;
	padding: 0.9em 1.85em !important;
	color: var(--main-color);
	background: transparent;
	border-radius: 2em;
	font-weight: 400;
	text-align: center;	
	font-size: 1.8em;
	font-weight: 700;
	border:none;
	cursor:pointer;	
}
.Btns_with_transparent_bg:hover{
	color: var(--main-color);	
}
.Btns_with_transparent_bg svg{
	margin-right:10px;	
}
.white_Btn_Bg{
	line-height: 22px;
	border-width: 0px;
	margin: 0px;
	font-weight: 400;
	font-size: 14px;
	padding: 18px 28px;
	border-radius: 2em;
	background: #ffffff;
	color: #0a1f54;
	letter-spacing: 1px;
	display: inline-block;
	text-align: center;		
}
.white_Btn_Bg:hover{
	background: #0a1f54;
	color: #ffffff;	
}
.table_Bg_lightGreen{
	background-color: #90ee90;	
}
.table_Bg_lightGreen a{
	color: #11224d;	
}
.table_Bg_lightYellow{
	background-color: #FFFFCC;	
}
.table_Bg_lightRed{
	background-color: #f99;
	cursor:not-allowed;	
}
/*******************/
.cst_Header{
	float:left;
	width:100%;	
}
.HeaderTp{
	float:left;
	width:100%;	
	padding: 7px 10px;	
}
.HeaderTpMn{
	float:left;
	width:100%;
}
.HeaderTpMn p{
	float:left;
	width:100%;
	color: #fff;
	text-shadow: 2px 2px #000;
	font-size:16px;
	font-variant: small-caps;	
}
.HeaderMdl{
	float:left;
	width:100%;
	padding:15px 0;	
}
.HeaderMdlCnr{
	float:left;
	width:100%;		
}
.HeaderBtm{
	float:left;
	width:100%;
	border:1px solid #ddd;
	border-width:1px 0;
	padding:30px 0;		
}
.HeaderBtmLft{
	float:left;
	width:30%;	
}
.Header_Logo{
	float:left;	
}
.Header_Logo img{
	float:left;
	height:100px;	
}
.HeaderBtmRt{
	float:right;
	width:50%;	
}
.HeaderBtmRt ul{
	float:left;
	width:100%;
	margin:25px 0 0 0;	
}
.HeaderBtmRt ul li{
	float:left;
	width:33%;	
}
.HeaderBtmRtDta{
	float:left;
	width:100%;	
}
.HeaderSocial{
	float:left;
	width:30px;	
}
.HeaderSocial img{
	float:left;
	margin:5px 0 0 0;	
}
.HeaderBtmRtDtaDtl{
	float: left;
	width: 84%;	
}
.HeaderBtmRt ul li:nth-child(2){
	width:30%;	
}
.HeaderBtmRt ul li:nth-child(2) .HeaderBtmRtDtaDtl{
	width: 80%;
}
.HeaderBtmRtDtaDtl p{
	float:left;
	width:100%;
	font-size:13px;		
}
.HeaderBtmRtDtaDtl h4{
	float:left;
	width:100%;
	font-weight:700;
	font-size:17px;	
}
.HeaderBtmRtDtaDtl h4 a{
	font-size:17px!important;
	font-weight:700!important;		
}
.Main_Navigation{
	float:left;
	width:100%;
	padding:15px 0;
	background:#fff;	
}
.Main_Navigation.fixed{
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
	border-bottom: 1px solid #ddd;	
}
.animated.fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@keyframes fadeOutDown {
	0% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	  -webkit-transform: translate3d(0, 100%, 0);
	  transform: translate3d(0, 100%, 0);
	}
}

.hoverActive .bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
   -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
/*
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
   -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
} */
@keyframes bounceIn {
   0% { 
      opacity: 0; 
      transform: scale(.3);
   }
   50% { 
      opacity: 1;
      transform: scale(1.05);
   }
   70% {
      transform: scale(.9);
   }
   100% {
      transform: scale(1);
   }
} 

.Home_Banner{
	float:left;
	width:100%;	
}
.Home_BannerMn{
	float:left;
	width:100%;	
}
.Home_BannerMnTxt{
	float:left;
	width:100%;
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center center;
	height:605px;
	padding:150px 0 0 0;
}
.SliderTxt{
	float:left;
	width:100%;	
}
.SliderTxt h3{
	float:left;
	width:100%;	
	text-shadow: 2px 2px #353535;
	font-weight: 300;
	font-size: 49px;
}
.SliderTxt h2{
	float: left;
	width: 100%;
	text-shadow: 2px 2px #353535;
	font-weight: 700;
	font-size: 60px;
	margin: -16px 0 0 0;
}
.SliderTxt p{
	float: left;
	max-width: 367px;
	font-weight: 400;
	font-size: 18px;
	text-shadow: 2px 2px #353535;	
}
.SliderBtn{
	float:left;
	width:100%;
	margin:30px 0 0 0;	
}
.Home_Banner .owl-nav{
	display:block!important;
	position: absolute;
	top: 45%;
	width: 100%;
	color:#fff;	
}
.Home_Banner .owl-nav .owl-prev ,
.Home_Banner .owl-nav .owl-next{
	position:relative;
	font-size:18px!important;
	background-color: transparent!important;
	border-radius: 50%!important;
	width: 54px;
	height: 54px;	
	border:2px solid #fff!important;	
}
.Home_Banner .owl-nav .owl-prev{
	float:left;
	margin-left:20px;
}
.Home_Banner .owl-nav .owl-next{
	float:right;
	margin-right:20px;	
}

.Home_Banner .owl-dots{
	display:none;	
}
.schedule_service{
	float:left;
	width:100%;
	padding:80px 0;		
}
.schedule_serviceTpTtl{
	float:left;
	width:100%;	
}
.schedule_serviceTpTtl h3{
	font-size: 2.5em;
	font-weight: 600;	
}
.schedule_serviceBtm{
	float:left;
	width:100%;
	margin:10px 0 0 0;	
}
.HomeTblMn{
	float:left;
	width:100%;
	margin:20px 0 0 0;	
}
.HomeTblMn table {
	border-collapse: collapse;
	border-spacing: 0;
	color: #656c77;
}
.cust-calendar.cst-clndr-main {
	height: 888px !important;
}
.cust-calendar.cst-clndr-main .fc-timegrid {
    overflow-x: auto !important;
	/* width: 100% !important; */
}
.cust-calendar.cst-clndr-main table th[role="presentation"], 
.cust-calendar.cst-clndr-main table td[role="presentation"] {
	padding: 0 !important;
}
/* .cust-calendar.cst-clndr-main .fc-timegrid-event-harness {
	left: 0 !important;
} */
.cust-calendar.cst-clndr-main .fc-scrollgrid {
	width: 100% !important;
}
.cust-calendar.cst-clndr-main .fc-day-sun .fc-timegrid-event-harness-inset .fc-timegrid-event {
	/* height: 820px; */
	inset: 0px 0% -790px !important;
}
.cst-clndr-main .block::after {
	box-shadow: unset;	
}
.cst-clndr-main .fc-col-header,
.cst-clndr-main .fc-timegrid-body,
.cst-clndr-main .fc-timegrid-body .fc-timegrid-slots table {
	width: 100% !important;
}
.cst-clndr-main .fc-event-main {
	bottom: unset !important;
}
.cst-clndr-main .fc-scroller {
	overflow: hidden !important;
}
.cst-clndr-main .fc-view-harness.fc-view-harness-active {
	height: 750px !important;
}
.calendar-outer table th{
	font-weight: bold;
	text-align: center;
}
.calendar-outer table th, .calendar-outer table td {
	border: 1px solid #c2bdbd;
	font-size:14px;
	/* padding: 4px 10px; */
	color: #11224d;
}
.cust-calendar.cst-clndr-main .fc-day-sun .fc-timegrid-event-harness-inset .fc-timegrid-event.fc-timegrid-event-short {
    inset: 0px 0% -6px !important;
}
.Repair_Service{
	float:left;
	width:100%;
	background-position: left !important;
	background-repeat: no-repeat !important;
	overflow: hidden;
	padding:40px 0 100px 0;	
}
.Repair_Service_Dtl{
	float:right;
	width:55%;
}
.Repair_Service_Dtl h4{
	float:left;
	width:100%;
	margin: 0 0 0.37em;
	font-size: 1.6em;
	text-align: center;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 1.235em;
}
.Repair_Service_Dtl h3{
	float:left;
	width:100%;
	font-weight: 600;
	margin-bottom: 0.70em;
	font-size: 3.4285em;
	line-height: 1.3em;	
}
.Repair_Service_Dtl p, .Repair_Service_Dtl ul {
	float:left;
	width:100%;
	font-size: 1.3em;
	font-weight: normal;
	line-height: 1.2em;
	margin-top: 1.0em;
	margin-bottom: 0.5em;	
}

.Repair_Service_Dtl ul li{
	list-style: initial;
	font-weight: normal;
}
.Repair_ServiceBtns{
	float:left;
	width:100%;
	margin-top: 3.20em;	
}
.Repair_ServiceBtns ul{
	float:left;
	width:100%;	
}
.Repair_ServiceBtns ul li{
	display:inline-block;
	margin:0 10px;	
}
.High_SEER_AC{
	float:left;
	width:100%;
	padding-bottom:80px;		
}
.High_SEER_AC_Ttl{
	float:left;
	width:100%;
	margin-bottom: 1em;
}
.High_SEER_AC_Ttl h4{
	float: left;
	width: 100%;
	margin: 0 0 0.37em;
	font-size: 1.7em;
	text-align: center;
	text-transform: capitalize;
	font-weight: 600;
	line-height: 1.235em;	
}
.High_SEER_AC_Ttl h3{
	float: left;
	width: 100%;
	font-weight: 600;
	margin-bottom: 0.70em;
	font-size: 3.8em;
	line-height: 1.3em;	
}
.High_SEER_AC_Csl{
	float: left;
	width: 100%;	
}
.High_SEER_AC_Csl_Mn{
	float:left;
	width:100%;	
}
.Seer_Ac_Tp{
	float:left;
	width:100%;
	position:relative;	
	border-radius:20px;
}
.Seer_Ac_Tp a{
	float:left;
	width:100%;	
	padding:10px 0;
	border-radius:20px;
	overflow:hidden;
	position:relative;	
}
.Seer_Ac_Tp a:after{
	content:"";
	width:100%;
	height:100%;
	background-color: rgba(17, 34, 77, 0.8);
	position:absolute;
	top:0;
	left:0;	
	opacity:0;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-ms-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}
.Seer_Ac_Tp a:hover:after{
	opacity: 1;	
}
.Link_BtnAc{
	position: absolute;
	z-index: 10;
	font-size: 70px;
	width: 250px;
	height: 250px;
	line-height: 240px;
	left: 50%;
	top: 50%;
	color: #ffffff;
	opacity:0;
	text-align:center;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.1, 0.1);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.1, 0.1);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.1, 0.1);
	transform: translateX(-50%) translateY(-50%) scale(0.1, 0.1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	-moz-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	-ms-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	-o-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;		
}
.Seer_Ac_Tp a:hover .Link_BtnAc{
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.3);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.3);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.3); 
	transform: translateX(-50%) translateY(-50%) scale(0.3);
	-webkit-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	-moz-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	-ms-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	-o-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
}
.Seer_Ac_Btm{
	float:left;
	width:100%;
	padding: 0 2.5em 2.5em;	
}
.Seer_Ac_Btm h4{
	float:left;
	width:100%;	
	margin: 1.3em 0 0.8em;
}
.Seer_Ac_Btm h4 a{
	display:inline-block;
	font-size: 1.2em;	
}
.Seer_Ac_Btm h4 a:hover{
	color: #Ed6F1E;	
}
.Seer_Ac_Btm p{
	display: inline-block;
	margin: 0 auto;
	font-size: 14px;
	line-height: 24px;	
}
.High_SEER_AC_Csl .owl-dots{
	display:none!important;	
}
.High_SEER_AC_Csl .owl-nav{
	text-align:center;
	margin:20px 0 0 0;	
}
.High_SEER_AC_Csl .owl-prev , .High_SEER_AC_Csl .owl-next{
	display:inline-block;
	width:50px;
	height:50px;
	background:var(--main-color) !important;
	text-align:center;
	border-radius:50%;
	margin:0 5px;
}
.High_SEER_AC_Csl .owl-prev:hover , .High_SEER_AC_Csl .owl-next:hover{
	background:#11224d!important;
}
.High_SEER_AC_Csl .owl-prev span , .High_SEER_AC_Csl .owl-next span{
	display: inline-block;
	color: #fff;
	font-size: 22px;
	line-height: 12px;
}
.ArticalsHome{
	float:left;
	width:100%;
	padding:40px 0 80px 0;	
}
.ArticalsHomeMn{
	float:left;
	width:100%;	
}
.ArticalsHomeMnRpt{
	float:left;
	width:100%;
	margin:0 0 15px 0;	
}
.RtclTtl{
	float:left;
	width:100%;	
}
.RtclTtl h4{
	float:left;
	width:100%;
	color: #11224d;
	font-weight: bold;
	cursor: pointer;
	border: 1px solid #11224d;
	padding: 1.3em 1.1em;
	font-size:14px;
	background:transparent;	
}
.RtclTtl h4:hover{
	background:#11224d;
	color:#fff;	
}
.ArticalsHomeMnRpt.active .RtclTtl h4{
	background:#11224d;
	color:#fff;	
}
.Toggle_Icn{
	float:right;
	transition:all 0.2s ease-in-out;	
}
.RtclTtl h4:hover .Toggle_Icn{
	color:#fff;	
}
.ArticalsHomeMnRpt.active .Toggle_Icn{
	color:#fff;
	transform: rotate(90deg);	
}
.RtclDcptn{
	float:left;
	width:100%;
	padding: 0em 1em;
	background: #f0f4f9;
	transition: all 0.35s;
	max-height: 0;
	overflow:hidden;	
}
.ArticalsHomeMnRpt.active .RtclDcptn{
	padding: 1em;
	max-height: 100%;	
}
.RtclDcptn ul{
	float:left;
	width:100%;
	padding:0 0 0 25px;	
}
.RtclDcptn ul li{
	list-style:disc;
	margin-bottom: 0.6em;
	font-size:15px;
	font-weight:500;
	color: #11224d;	
}
.RtclDcptn ul li a:hover{
	color: #Ed6F1E;	
}
.Home_Testimonial{
	float:left;
	width:100%;
	padding:100px 0;
	background:#f0f4f9;
}	
.Home_Testimonial_Bnr{
	float:left;
	width:100%;
	margin:40px 0 0 0;
}
.Testimonial_BnrMn{
	float:left;
	width:100%;
	padding:0 30px;
}
.Testimonial_BnrMn_Tp{
	float:left;
	width:100%;
	background:#fff;
	padding: 2.7em 3em 2.5em 4.6em;
	border-radius: 2em;
	position:relative;	
}
.Testimonial_BnrMn_Tp:after{
	content: " ";
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-left: 1px solid;
	border-left-color: currentcolor;
	border-top: 1px solid;
	border-top-color: currentcolor;
	position: absolute;
	bottom: -8px;
	left: 5.1em;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color:#fff;	
}	
.Testimonial_BnrMn_Tp p{
	float:left;
	width:100%;
	font-size: 16px;
	line-height: 1.85em;
	font-weight: 400;
	position:relative;	
}
.quoteImg{
	position: absolute;
	left: -30px;
	top: 4px;
}
.quoteImg img{
	width:18px!important;	
}
.quoteImg2{
	top: 10px;
	left: 100%;
	width: 18px !important;
	transform: rotate(180deg);
}
.Testimonial_BnrMn_Btm{
	float:left;
	width:300px;
	margin: 30px 0 0 40px;	
}
.Testimonial_BnrMn_Avtr{
	float:left;
	width:60px;	
}
.Testimonial_BnrMn_Avtr img{
	width:auto!important;
	border-radius:50%;	
}
.Testimonial_BnrMn_Dtl{
	float:left;
	width:80%;
	padding-left:10px;	
}
.Testimonial_BnrMn_Dtl h5{
	float:left;
	width:100%;
	font-size:15px;
	margin:10px 0 0 0;	
}
.Testimonial_BnrMn_Dtl p{
	float:left;
	width:100%;
	font-size:13px;
	font-weight:300;
	color: #9daab0;
}
.Home_Testimonial_Bnr .owl-nav{
	display:none;	
}
.Home_Testimonial_Bnr .owl-dots{
	text-align:center;
	margin:40px 0 0 0;
	opacity:0;
	transition:all 0.4s ease-in-out;	
}
.Home_Testimonial_Bnr:hover .owl-dots{
	opacity:1;	
}
.Home_Testimonial_Bnr .owl-dots .owl-dot{
	display:inline-block;
	width:12px;
	height:12px;
	border-radius:50%;
	border:2px solid #dfe5ea;
	background:transparent;
	margin:0 5px;	
}
.Home_Testimonial_Bnr .owl-dots .owl-dot.active{
	background:#3ebb47;
	border-color:#3ebb47;	
}
.cstFtrMn{
	float:left;
	width:100%;
}
.cstFtrMnTp{	
	float:left;
	width:100%;
	padding:80px 0;	
}
.cstFtrMnTpRpt{
	float:left;
	width:25%;	
}
.FtrLogo{
	float:left;
	width:100%;	
}
.FtrLogo img{
	float:left;
	width:250px;	
}
.FtrSocial{
	float:left;
	width:100%;
	margin:20px 0 0 0;	
}
.FtrSocial ul{
	float:left;
	width:100%;	
}
.FtrSocial ul li{
	float:left;
	margin:0 15px 0 0;	
}
.FtrHdng{
	float:left;
	width:100%;	
}
.FtrHdng h4{
	float:left;
	width:100%;	
	font-size: 1.3em;
	text-transform: uppercase;
	margin-bottom: 1.8em;
}	
.FtrLnks{
	float:left;
	width:100%;	
}
.FtrLnks ul{
	float:left;
	width:100%;	
}
.FtrLnks ul li{
	float:left;
	width:100%;
	margin:0 0 8px 0;
	padding:0 0 0 20px;	
}
.FtrLnks ul li a{
	display:inline-block;
	position:relative;
	font-weight:500;
	font-size:15px;	
}
.FtrLnks ul li a:hover{
	color:#3ebb47;	
}
.FtrLnks ul li a:before{
	content:"";
	width:5px;
	height:5px;
	background:#3ebb47;
	position:absolute;
	left:-15px;
	top:10px;
	border-radius:50%;
}
.FtrAdrs{
	float:left;
	width:100%;	
}
.FtrAdrs h3{
	float: left;
	width: 100%;
	font-size: 1.6em;
}
.FtrAdrs h3 span{
	float: left;
	width: 100%;	
}
.FtrAdrs h5{
	float:left;
	width:100%;
	margin:20px 0 30px;
	font-size:17px;
	font-weight:normal;	
}
.FtrAdrs h5 img{
	margin-right:5px;	
}
.FtrAdrs h5 a:hover{
	color: #50B74E;	
}
.cstFtrMnBtm{
	float:left;
	width:100%;	
}
.cstFtrMnBtmMn{
	float:left;
	width:100%;
	border-top:1px solid rgba(255, 255, 255, 0.1);
	padding: 2.5em 0 2em;	
}
.cstFtrMnBtmMn p{
	float:left;
	width:100%;
	color: #5e657c;
	font-size:12px;	
}
.Inner_Banner{
	float:left;
	width:100%;
	background:#f0f4f9;
	padding:70px 0;	
}
.Inner_Banner_Hdng{
	float:left;
	width:55%;	
}
.Inner_Banner_Hdng h2{
	float:left;
	width:100%;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.3em;
}
.Inner_Banner_Breadcrum{
	float:left;
	width:45%;
	padding:10px 0 0 0;	
}	
.Inner_Banner_Breadcrum ul{
	float:right;	
}
.Inner_Banner_Breadcrum ul li{
	display:inline;
	color: #656c77;
	font-size:15px;
	position:relative;	
}
.Inner_Banner_Breadcrum ul li:before{
	content:"/";
	color:#000;
	padding:8px;	
}
.Inner_Banner_Breadcrum ul li:first-child:before{
	display:none;	
}
.Inner_Banner_Breadcrum ul li a:hover{
	color: var(--main-color);
	text-decoration:underline;	
}
.Inner_Main_Block{
	float:left;
	width:100%;
	padding:40px 0;	
}
.Inner_Fresh_Breeze{
	float:left;
	width:100%;	
}
.Inner_Fresh_Breeze_Lft{
	float:left;
	width:65%;	
}
.Inner_Fresh_Breeze_Lft p{
	float:left;
	width:100%;
	color: #656c77;
	font-size:15px;
	line-height:26px;	
}
.Inner_Fresh_Breeze_Rt{
	float:left;
	width:35%;
	padding-left:15px;
}
.LightBxImg{
	float:left;
	width:100%;	
}
.LightBxImg a img{
	display:inline-block;
	border: 3px solid white;
	box-shadow: 0px 0px 8px rgba(0,0,0,.3);	
}
.Inner_Main_Block_LftSidebar{
	float:left;
	width:25%;
	padding-right:15px;	
	border-right:1px solid #ccc;	
}
.Inner_with_rightbar .Inner_Main_Block_LftSidebar{
	border-right:0px;	
	border-left:1px solid #ccc;	
	padding:0 0 0 15px;
}
.Inner_Main_Block_LftSidebar_Dta{
	float:left;
	width:100%;
}
.Inner_Main_Block_LftSidebar_Dta h1 ,
.Inner_Main_Block_LftSidebar_Dta h2 ,
.Inner_Main_Block_LftSidebar_Dta h3 ,
.Inner_Main_Block_LftSidebar_Dta h4 ,
.Inner_Main_Block_LftSidebar_Dta h5 ,
.Inner_Main_Block_LftSidebar_Dta h6{
	margin-bottom:6px;
}
.Inner_Main_Block_LftSidebar_Dta p{
	font-size:14px;
	margin-bottom:10px;	
}
.Inner_Main_Block_LftSidebar_Dta ul{
	padding-left:25px;	
}
.Inner_Main_Block_LftSidebar_Dta ul li{
	list-style:disc;
	font-size:14px;	
}
.Inner_Main_Block_RightSidebar{
	float:left;
	width:75%;
	padding-left:20px;	
}
.Inner_with_rightbar .Inner_Main_Block_RightSidebar{
	padding:0 20px 0 0;		
}

/**********/
.custom_Popup{
	
}
.Click-here {
	cursor: pointer;
}
.custom_Popup .custom-model-main {
	text-align: center;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0; /* z-index: 1050; */
	-webkit-overflow-scrolling: touch;
	outline: 0;
	opacity: 0;
	-webkit-transition: opacity 0.15s linear, z-index 0.15;
	-o-transition: opacity 0.15s linear, z-index 0.15;
	transition: opacity 0.15s linear, z-index 0.15;
	z-index: -1;
	overflow-x: hidden;
	overflow-y: auto;
}

.custom_Popup .model-open {
	z-index: 999; /*99999;*/
	opacity: 1;
	overflow: hidden;
}
.custom_Popup .custom-model-inner {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	-o-transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	display: inline-block;
	vertical-align: middle;
	width: 52%;
	margin: 30px auto;
	max-width: 97%;
}
.custom_Popup .custom-model-wrap {
	display: block;
	width: 100%;
	position: relative;
	background-color: #fff;
	border: 2px solid #0a1f54;
	border-radius: 6px;
	background-clip: padding-box;
	outline: 0;
	text-align: left;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-height: calc(100vh - 70px);
	overflow-y: auto;
}
.custom_Popup .model-open .custom-model-inner {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	position: relative;
	z-index: 999;
}
.custom_Popup .model-open .bg-overlay {
	background: rgba(255, 255, 255, 0.9);
	z-index: 99;
}
.custom_Popup .bg-overlay {
	background: rgba(255, 255, 255, 0);
	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-transition: background 0.15s linear;
	-o-transition: background 0.15s linear;
	transition: background 0.15s linear;
}
.custom_Popup .close-btn {
	position: absolute;
	right: -10px;
	border: 2px solid #fff;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	text-align: center;
	top: -12px;
	background-color: #0a1f54;
	cursor: pointer;
	box-shadow: 0 0 3px 2px #ddd;
	z-index: 1;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 24px;
}
.Popup_Form{
	float:left;
	width:100%;		
}
.FrmTtl{
	float:left;
	width:100%;	
}
.FrmTtl h2{
	float:left;
	width:100%;	
	color: #11224d;
	font-size: 1.7em;
	font-weight: 600;	
}
.FrmFields{
	float:left;
	width:100%;
	margin:6px 0 0 0;		
}
.FrmFieldsRpt{
	float:left;
	width:100%;
	margin:6px 0;	
}
.FrmFieldsLft{
	float:left;
	width:25%;	
}
.FrmFieldsLft label{
	float:left;	
	color: #11224d;
	font-size:15px;
	font-weight:500;
}
.FrmFieldsRt{
	float:left;
	width:75%;
	padding-left:20px;	
}
.FrmFieldsRt p{
	float:left;	
	color: #11224d;
	font-size:15px;
	font-weight:500;	
}
.FrmFieldsRt .form_control, .FrmFieldsRt select{
	float:left;
	width:100%;
	color: #8a8a8a;
	border-color: #0a1a41;
	background-color: #f0f4f9;
	box-shadow: 0px 0px 1px 1px #989FBA !important;
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
	padding: 0.53em 0.5em;
	border:none;
	border-radius:0px;	
}
.FrmFieldsRt textarea{
	min-height: 6.5em;
	resize:none;
}
.RadioBtns{
	float:left;
	width:100%;	
}
.RadioBtns ul{
	float:left;
	width:100%;	
}
.RadioBtns ul li{
	float:left;
	margin:0 20px 0 0;	
}
.RadioBtns ul li label{
	display:inline;	
	color: #11224d;
	font-size:15px;
	font-weight:500;	
}
.Show_MobileMenu{
	display:none!important;	
}
.error-msg {
	color: red;
	display: none;
	text-transform: capitalize;
}

.fc-header-toolbar:after {
	content: none !important;
}
.fc .fc-timegrid-slot{
	height: 6.3em !important; /*3.5em !important;*/
}

  
  .calendar-div {
	width: 100%; /* Ensure FullCalendar fills the container width */
	height: 100%; /* Ensure FullCalendar fills the container height */
  }
  
.calender-div th {
    font-weight: 500;
    background-color: var(--main-color) !important;
    border-bottom: 0 none;
    color: #fff !important;
    letter-spacing: 1px;
    font-size: 14px;
    padding:7px 0 !important;
    border: 1px solid transparent !important;
}
.calender-div td {
    font-size: 14px;
}
.calender-div.fc-direction-ltr .fc-timegrid-slot-label-frame {
    text-align: center !important;
}
.calender-div .fc-list-day-cushion.fc-cell-shaded {
    background-color: var(--main-color) !important;
}
.calender-div button.fc-today-button.fc-button.fc-button-primary {
    padding: 9px 19px !important;
    border-color: transparent !important;
    background-color: var(--main-color) !important;
}
.calender-div td.fc-list-event-title i {
    font-size: 19px;
    margin: 0 00 0 5px;
}


.calender-div .fc-timegrid-event .fc-event-main {
    /* margin: 15px !important; */
    font-size: 14PX;
    color: #fff !important;
}
.calender-div.fc-direction-ltr .fc-timegrid-slot-label-frame {
    margin: 15px !important;
    padding-left: 10px;
    padding-right: 10px;
}
.calender-div .fc-timegrid-event-harness.fc-timegrid-event-harness-inset i {
    font-size: 20px;
    color: #fff;
    margin: 0 0 0 12px;
}
.calender-div.fc .fc-button-primary:disabled {
        padding: 9px 19px !important;
    border-color: transparent !important;
    background-color: var(--main-color) !important;
}
.fc-button-group button {
    background: var(--main-color) !important;
    border: 1px solid #fff !important;
    padding: 9px 19px !important;
}
.calender-div th a{
    color: #fff !important;
}

.pac-container{
	z-index: 9999;
}

.fc-event-main {
	margin: 3px !important;
	font-size: 14PX;
	color: #fff !important;
}
    
.fc-event:focus::before {
	outline: none;
	z-index: 0;
}
.fc-event:focus::after {
	background: none;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event {
	height: fit-content;
} 

.fc-day-sun .fc-timegrid-event-harness-inset .fc-timegrid-event {
	height: inherit;
}

.fc-direction-ltr .fc-timegrid-slot-label-frame {
	margin: 40px;
}

.fc-row .fc-content-skeleton,
.fc-row .fc-content-skeleton td,
.fc-row .fc-content-skeleton table,
.fc-row .fc-content-skeleton tr {
	height: 100%;
	vertical-align: middle;
}

.fc-row .fc-content-skeleton td div {
	display: inline-block;
	line-height: 100%;
}

.pac-container {
	z-index: 10000 !important;
}
.fc-timegrid-event-harness-inset .fc-timegrid-event {
	box-shadow: none;
}
.fc-timegrid-event-harness-inset .fc-timegrid-event {
	box-shadow: none;
}
.fc-event-main {
	width: fit-content;
}
.fc-highlight {
	display: none;
}

.cust-calender .fc-scroller.fc-scroller-liquid-absolute {
    overflow-Y: hidden !important;
    overflow-X: auto !important;
}
.calender-div.cust-calender {
    height: 100% !important;
}
.fc .fc-timegrid-slot{
    height: 5.5em !important;
}
.cust-calender .fc-view-harness.fc-view-harness-active {
    /* height: 630px !important; */
}

.cust-calendar {
	height: 850px;
}

.cust-calender .fc-view th[role="columnheader"] .fc-scrollgrid-sync-inner {
    padding: 11px 0px;
    /* border-right: 1px solid #fff; */
}
/* .fc-timegrid-event-harness-inset{
    height:50px !important;
} */

.fc-day-sun .fc-timegrid-event-harness-inset{
    height:auto !important;
}

.cust-calender .fc-view th {
    border-right: 1px solid #fff !important;
    padding: 0 !important;
}
.cust-calender .fc-view th[role="columnheader"] {
    padding: 15px !important;
    vertical-align: middle;
}

.fc-timegrid-event-harness > .fc-timegrid-event {
	position: absolute !important;
}

.cust-calender.fc tbody td {
    border-left: 1px solid #ddd !important;
}
.cust-calender.fc tbody tr:last-child td:nth-child(1) {
    border-radius: 0px 0px 0px 20px;
}
/* Loading button */

.spinner {
	margin: 50px auto 0;
	width: 70px;
	text-align: center;
  }
  
  .spinner > div {
	width: 12px;
	height: 12px;
	background-color: #333;
  
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
	0%, 80%, 100% { 
	  -webkit-transform: scale(0);
	  transform: scale(0);
	} 40% { 
	  -webkit-transform: scale(1.0);
	  transform: scale(1.0);
	}
  }

  /* pages */

.full-outer {
	width: 100%;
	float: left;
}

.top-title-panel {
	width: 100%;
	float: left;
	background-color: #F0F4F9;
}

.main-block {
	margin: 0 auto;
	max-width: 1170px;
}

.top-title-panel .top-title-inner {
	width: 100%;
	float: left;
	display: inline-flex;
	align-items: center;
}

.top-title-panel .title-inn-page {
	width: 50%;
	float: left;
}

.top-title-panel h3 {
	font-size: 34px;
	margin: 71px 0;
}

.top-title-panel .breadcrumb-outer {
	width: 50%;
	float: left;
}

.top-title-panel .breadcrumb-outer ul.breadcrumb {
	padding: 10px 16px;
	list-style: none;
	margin: 0;
	float: right;
}

.top-title-panel .breadcrumb-outer ul.breadcrumb li {
	display: inline;
	font-size: 14px;
}

.top-title-panel .breadcrumb-outer ul.breadcrumb li a {
	color: #07a5ea;
	text-decoration: none;
}

.full-outer a {
	color: var(--main-color) !important;
}

.top-title-panel .breadcrumb-outer ul.breadcrumb li + li::before {
	padding: 8px;
	color: black;
	content: "/\00a0";
}

.main-block {
	margin: 0 auto;
	max-width: 1170px;
}

.main-block p, .content-main-block li{
	float: left;
	width: 100%;
	font-size: 1.2em;
	line-height: 1.8em;
	margin-top: 1.0em;
	margin-bottom: 0.5em;
}

.main-block ul p{
	font-size: 1.0em;
}

.content-main-block li::before {
	padding: 8px;
	color: black;
	content: "-";
}

/* register */

.contact-outer {
	width: 100%;
	float: left;
	box-sizing: border-box;
	border: none;
	box-shadow: none;
	padding: 0 !important;
}

.contact-outer .contact-left {
	width: 100%;
	float: left;
}

.cust-forms ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cust-forms ul li {
	margin: 0;
	padding: 0;
	width: 100%;
	float: left;
}

.cust-forms ul li .input-field:first-child {
	margin-right: 1%;
}

.contact-outer .contact-left .input-field {
	width: 100%;
	float: left;
	margin-bottom: 12px;
}

.cust-forms ul li .input-field {
	width: 49% !important;
	float: left !important;
}

.contact-outer .err-field {
	color: #F00 !important;
	font-size: 13px;
}

.content-area {
	width: 100%;
	float: left;
	padding: 60px 0;
}

.full-area {
	width: 100%;
	float: left;
}

.contact-outer .btn-field {
	float: right;
	margin: 25px 0px 10px 0;
	width: 100%;
	/* text-align: center; */
}

.contact-outer .btn-field button,  .contact-outer .btn-field input[type=button], .booking-outer .btn-field input[type=button], .booking-outer .btn-field input[type=submit], .contact-section .btn-field input[type=submit]{
	/* margin-left: 10px; */
	background: linear-gradient(to right, #2f8537 9%, var(--main-color) 55%);
	background-size: 200%;
	background-position: 0;
	color: #ffffff;
	padding: 18px 28px !important;
	border-radius: 2em;
	border: none;
	cursor: pointer;
}

.contact-outer .btn-field button:hover, .contact-outer .btn-field input[type=button]:hover, .booking-outer .btn-field input[type=button]:hover, .booking-outer .btn-field input[type=submit]:hover {
	background-position: 100%;
}

.contact-outer input[type=text], input[type="password"] {
	color: #8a8a8a;
	background-color: #f0f4f9;
	box-shadow: 0px 0px 1px 1px #989FBA !important;
	line-height: 1.2857em;
	resize: none;
	border: none;
	margin: 3px 0;
	padding: 10px 5px;
	text-align: left;
	width: 96%;
	border-radius: 0 !important;
}

@media(max-width:768px){
	.cust-btn-field button, .cust-btn-field input[type="button"]{
		width: 75px;
	}
}

/* login */

.black_overlay {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	z-index: 10001;
	-moz-opacity: 0.9;
	opacity: .90;
	filter: alpha(opacity=90);
}

.popup1 {
	background: #FFFFFF;
	display: none;
	height: auto;
	left: 50%;
	/* margin: -50px 0 0 -261px; */
	position: fixed;
	top: 50%;
	width: auto;
	z-index: 99999;
	border: 2px solid #0a1f54;
	border-radius: 5px;
	padding: 10px;
	transform: translate(-50%, -50%);
}

.cust-login-sec .title-inn-page {
	text-align: center;
	width: 100%;
}

.cust-login-sec h3 {
	margin: 25px 0;
}

.login-area .content-area {
	padding: 39px 0 0 0;
}

.close {
	position: absolute;
	right: -10px;
	border: 2px solid #fff;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	text-align: center;
	top: -12px;
	background-color: #0a1f54;
	cursor: pointer;
	box-shadow: 0 0 3px 2px #ddd;
	color: #fff;
	padding: 4px;
}

.close i {
	padding: 6px 0px 0 0;
	color: #fff;
	font-size: 17px;
}

.login-area .contact-outer {
	width: 65%;
	margin: auto;
	float: none;
}

input[type="password"] {
	box-shadow: 0px 0px 1px 1px #989FBA !important;
}

.login-area .regis-link {
	float: right;
	margin-top: 10px;
	font-size: 14px;
	padding-right: 25px;
	word-spacing: 2px;
}

.login-area .content-area {
	border-bottom: none;
}

/* success error response message */

#resp-msg .msg-succ, #resp-message .msg-succ {
	width: 99%;
	background-color: #d5ebd7;
	margin-top: 9px;
	border: 1px solid #598e5e;
	padding-left: 8px;
	border-radius: 2px;
	margin-bottom: 10px;
	float: left;
	color: #2c8c35;
	padding-top: 8px;
	padding-bottom: 8px;
	text-align: left;
}

#resp-msg .msg-error, #message .msg-error, #feedback .msg-error {
	width: 100%;
	background-color: #F2DEDE;
	margin-top: 9px;
	border: 1px solid #B85347;
	padding-left: 8px;
	border-radius: 2px;
	margin-bottom: 10px;
	float: left;
	padding-top: 8px;
	padding-bottom: 6px;
	color: #B85347;
	text-align: left;
}

/* booking list */

.booking-outer {
	width: 100%;
	float: left;
}

.booking-outer .form-filters input[type="text"], .booking-outer .form-filters select {
	box-shadow: 0px 0px 1px 1px #989FBA !important;
	margin-right: 6px;
}

.booking-outer .form-filters input[type="text"], .booking-outer .form-filters select {
	box-shadow: 0px 0px 1px 1px #989FBA !important;
	margin-right: 6px;
}

.booking-outer .filter-btn {
	margin: 20px 0;
}

.booking-outer input[type=text], .booking-outer select {
	color: #8a8a8a;
	background-color: #f0f4f9;
	box-shadow: 0px 0px 1px 1px #989FBA !important;
	line-height: 1.2857em;
	resize: none;
	border: none;
	margin: 3px 0;
	padding: 10px 5px;
	text-align: left;
	width: 20%;
	border-radius: 0 !important;
	font-family: inherit;
}

th {
	font-weight: bold;
}

td, th {
	border-right: 1px solid;
	padding: 4px 10px;
	border-color: rgba(255, 255, 255, 0.8);
}

.booking-outer table {
	width: 100%;
	text-align: center;
	font-size: 15px;
	color: #656c77;
	border-collapse: collapse;
}

.booking-outer table .cust-left {
	text-align: left !important;
}

.booking-outer table td, .booking-outer table th {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.booking-outer table tr:first-child {
	background-color: #e9e9e9;
}

.booking-outer table td, .booking-outer table th {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.paging {
	margin-top: 15px;
	text-align: center;
}
/* new header_hahvac start */
.wid-100 {
	width: 100%;
	float: left;
}
.innr-nw-header a {
	display: inline-block;
}
/* .innr-nw-header a img,
.innr-nw-main-footer a img {
	max-width: 85px;
} */
@media (min-width: 1660px) {
	.nw-hdr-container {
		max-width: 1400px !important;
	}
}
@media (min-width: 1201px) {
	.nw-hdr-container {
		max-width: 1140px;
	}
}
.nw-hdr-container {
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}
.nw-hdr-icon li {
	display: inline-block;
}
.nw-hdr-icon li a {
	margin: 0 5px 0 0;
	text-decoration: none !important;
	display: inline-block;
	vertical-align: top;
	width: 35px;
	height: 35px;
	position: relative;
	transition: all 0.3s ease;
	background: #010259;
	font-size: 14px;
	text-align: center;
  	align-content: center;
}
.nw-hdr-icon li a:hover {
	background: #c00000;
  	border-color: #c00000;
}
.innr-nw-header {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
}
.nw-hdr-icon ul li img {
	max-width: 14px;
}
.innr-call-us-secc {
	text-align: left;
	position: relative;
	background: transparent;
	z-index: 0;
	border: 0;
	color: #fff;
	padding: 20px 70px 20px 30px !important;
	font-size: 20px;
}
.innr-call-us-secc:hover {
	color: #fff;
}
.schdl-btn {
	width: 100%;
}
.schdl-btn a {
  	color: #010259 !important;
	cursor: pointer;
	color: #fff !important;
	font-weight: 400;
	background: #010259;
	border: 1px solid transparent;
	font-size: 14px;
	width: 278px;
	padding: 9px 30px !important;
	text-align: center;
}
.schdl-btn {
	position: relative;
  	padding-left: 15px;
	display: inline-flex;
	justify-content: end;
}
.schdl-btn a:hover {	
	border: 1px solid #010259;
	background: transparent;
	color: #010259 !important;
}
.innr-call-us-secc:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	transform: skew(15deg);
	z-index: -1;
	transition: all 0.3s ease;
	background: #c00000;
}
.innr-call-us-secc:hover::before {
	background: #010259;
}
.haha-for-flx {
	display: inline-flex;
	align-items: center;
}
.w-32 {
	width: 32%;
	float: left;
}
.w-68 {
	width: 68%;
	float: left;
}
.call-us-secc {
	padding-left: 30px;
}
.main-menu-list {
	display: inline-flex;
	grid-column-gap: 59px;
}
.nw-hdr-menu {
	background: #010259;
  	color: #fff;
	position: relative;
	margin-top: 3px;
}
.nw-hdr-menu li a {
	color: #fff;
	padding: 15px 10px;
	display: inline-block;
	font-size: 14px;
}
.nw-hdr-menu li a:hover {
	background-color: #c00000;
}
.innr-nw-hdr-menu:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-bottom: 51px solid white;
  	border-right: 36px solid transparent;
  	left: 231px;
}
.innr-nw-hdr-menu:after {
	content: '';
	position: absolute;
	width: 232px;
	height: 51px;
	background-color: #fff;
	left: 0;
}
.innr-nw-ftr-copyright {
	display: inline-flex;
 	justify-content: space-between;
	align-items: center;
}
.innr-nw-ftr-copyright a {
	color: #010259 !important;	
}
.innr-nw-ftr-copyright a:hover {
	text-decoration: underline;
}
.innr-nw-ftr-copyright p {
	font-size: 14px;
}
.w-50 {
	width: 50%;
	float: left;
}
.nw-ftr-btns {
	padding-top: 30px;
}
.nw-btns {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 8px 30px;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 20px 20px 0;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.nw-btns1 {
	background: #c00000;
	color: #fff;
	border: 1px solid transparent;
}
.nw-btns1:hover {
	background: transparent;
	border: 1px solid #c00000;
	color: #c00000;
}
.nw-btns2 {
	background: #010259;
	color: #fff;
	border: 1px solid transparent;
}
.nw-btns2:hover {
	background: transparent;
	border: 1px solid #010259;
	color: #010259;
}
.nw-btns3 {
	background: transparent;
	border: 1px solid #010259;
	color: #010259;	
}
.nw-btns3:hover {
	background: #010259;
	color: #fff;
	border: 1px solid transparent;
}
.nw-btns4 {
	background: transparent;
	border: 1px solid #c00000;
	color: #c00000;
}
.nw-btns4:hover {
	background: #c00000;
	color: #fff;
	border: 1px solid transparent;
}
.nw-main-footer {
	position: relative;
	overflow: hidden;
}
.innr-nw-main-footer {
	padding: 55px 0 55px 20px;
}
.nw-ftr-copyright {
	padding: 10px 0;
}
.nw-main-footer::before {
	content: '';
	position: absolute;
	width: 55%;
	height: 100%;
	top: 0;
	right: -30px;
	background-color: #010259;
	transform: skew(-6deg);
	z-index: 1;
}
.nw-for-zind {
	z-index: 2;
	position: relative;
	color: #fff;
}
.nw-for-zind h2 {
	font-weight: 300;
	text-transform: uppercase;
	font-size: 25px;
	position: relative;
	margin-bottom: 25px;
}
.nw-for-zind h2::before {
	position: absolute;
	content: '';
	width: 40px;
	height: 3px;
	background-color: #fff;
	left: 120px;
	transform: translateY(-50%);
	top: 50%;
}
.nw-add-list > li > svg {
	margin-right: 10px;
}
.fttr-social-link {
	display: inline-flex;
	align-items: center;
}
.fttr-social-link li a img {
	width: 15px;
}
.fttr-social-link li {
	margin-right: 20px;
}
.nw-add-list li a {
	color: #fff;
}
.nw-ftr-logo {
	max-width: 270px;
}
.nw-add-list li a:hover {
	text-decoration: underline;
}
.nw-add-list li {
	font-size: 14px;
	margin-bottom: 15px;
}
.nw-ftr-img-wrap .nw-ftr-img1 {
	max-width: 426px
}
.nw-ftr-img-wrap .nw-ftr-img2 {
	max-width: 100px;
	margin-top: 20px;
}
.dropdown-listt {
	position: absolute;
	background: #c00000;
	z-index: 2;
	width: 180px;
	display: none;
	top: 51px;
	left: 0;
}
.dropdown-listt li a {
	width: 100%;
	padding: 3px 15px !important;
}
.dropdown-listt li a:hover {
	background-color: #fff;
	color: #010259;
}

.for-sub-menuu {
	position: relative;
}
.for-sub-menuu.sub-inner-menu .dropdown-listt {
    left: 100%;
    top: 0;
}
.for-sub-menuu.sub-inner-menu a{position: relative;}
.for-sub-menuu.sub-inner-menu span.rslide-li-left-arrow {
    position: absolute;
    right: 10px;
    transform: rotate(270deg);
}
/* new header_hahvac end */
/* forget password */
.forgotouter form {
	box-shadow: 0 0 3px 3px #ddd;
	float: left;
	width: 100%;
	padding: 40px;
	margin-bottom: 39px;
}

.forgotouter {
	max-width: 550px;
	margin: auto;
	float: none;
}

.forgotouter .btn-field input[type="button"] {
	padding: 18px 54px !important;
}

.forgotouter input[type="text"], .forgotouter input[type="password"] {
	width: 100% !important;
}

.forgotouter .btn-field:last-child {
	margin: 0;
}

/* edit booking modal */
.custom_Popup_edit .model-open {
	z-index: 999 !important;
	opacity: 1 !important;
	overflow: hidden !important;
}

.custom_Popup_edit .custom-model-main-edit {
	text-align: center;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* z-index: 1050; */
	-webkit-overflow-scrolling: touch;
	outline: 0;
	opacity: 0;
	-webkit-transition: opacity 0.15s linear, z-index 0.15;
	-o-transition: opacity 0.15s linear, z-index 0.15;
	transition: opacity 0.15s linear, z-index 0.15;
	z-index: -1;
	overflow-x: hidden;
	overflow-y: auto;
}

.custom_Popup_edit .model-open .custom-model-inner {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	position: relative;
	z-index: 999;
}

.custom_Popup_edit .close-btn {
	position: absolute;
	right: -10px;
	border: 2px solid #fff;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	text-align: center;
	top: -12px;
	background-color: #0a1f54;
	cursor: pointer;
	box-shadow: 0 0 3px 2px #ddd;
	z-index: 1;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 24px;
}

.custom_Popup_edit .custom-model-wrap {
	display: block;
	width: 100%;
	position: relative;
	background-color: #fff;
	border: 2px solid #0a1f54;
	border-radius: 6px;
	background-clip: padding-box;
	outline: 0;
	text-align: left;
	padding: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-height: calc(100vh - 70px);
	overflow-y: auto;
}

.custom_Popup .model-open .custom-model-inner {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	position: relative;
	z-index: 999;
}

.custom_Popup_edit .custom-model-inner {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	-o-transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	display: inline-block;
	vertical-align: middle;
	width: 52%;
	margin: 30px auto;
	max-width: 97%;
}

.custom_Popup_edit .model-open .bg-overlay {
	background: rgba(255, 255, 255, 0.9);
	z-index: 99;
}

.custom_Popup_edit .bg-overlay {
	background: rgba(255, 255, 255, 0);
	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-transition: background 0.15s linear;
	-o-transition: background 0.15s linear;
	transition: background 0.15s linear;
}

.custom_Popup_edit .close-btn-edit {
	position: absolute;
	right: -10px;
	border: 2px solid #fff;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	text-align: center;
	top: -12px;
	background-color: #0a1f54;
	cursor: pointer;
	box-shadow: 0 0 3px 2px #ddd;
	z-index: 1;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 24px;
}

/* contact us */

.cust-contact-sec p, .cust-contact-sec span {
	word-spacing: 2px;
}

.contact-section p {
	margin: 0 !important;
}

.cust-contact-sec input, .cust-contact-sec textarea {
	margin-bottom: 0 !important;
}

.contact-outer input[type="text"], .contact-outer textarea {
	box-shadow: 0px 0px 1px 1px #989FBA !important;
}

.contact-outer textarea {
	width: 100%;
}

textarea {
	overflow: auto;
	vertical-align: top;
	min-height: 5em;
}

.contact-section textarea{
	width: 97% !important;
	background-color: #f0f4f9 !important;
	border-radius: 0;
	font-family: inherit;
	color: #8a8a8a;
	font-size: 14px;
}

.padbtm{
	padding-bottom: 15px;
}

.contact-outer .err-field {
	color: #F00 !important;
	font-size: 13px;
}

/* honeypot */
.validate_human{
	display: none;
}

/* make an appointment */
.make_apt{
	width: 82%;
	float: left;
	padding-left: 40%;
}

#cssmenu .menu-item.has-sub ul {
	display: none !important;
}

#cssmenu li.menu-item.has-sub:hover ul {
	display: block !important;
	animation: none !important;
	top: 100%;
}

#cssmenu > ul > li {
	position: relative;
	padding-bottom: 15px;
}
@media (max-width: 1860px) {
	.innr-nw-hdr-menu::before {
		left: 189px;
	}
	.innr-nw-hdr-menu::after {
		width: 190px;
	}
}
@media (max-width: 1790px) {
	.innr-nw-hdr-menu::before {
		left: 150px;
	}
	.innr-nw-hdr-menu::after {
		width: 150px;
	}
}
@media (max-width: 1720px) {
	.innr-nw-hdr-menu::before {
		left: 90px;
	}
	.innr-nw-hdr-menu::after {
		width: 90px;
	}
}
@media (max-width: 1659px) {
	.main-menu-list {
		display: inline-flex;
		grid-column-gap: 20px;
		justify-content: center;
	}
	.innr-nw-hdr-menu::before {
		left: 230px;
	}
	.innr-nw-hdr-menu::after {
		width: 230px;
	}
	.innr-call-us-secc {
		padding: 20px 20px 20px 20px !important;
	}
	.schdl-btn a {
		width: 200px;
	}
	.nw-hdr-icon ul {
		width: 300px;
	}
}
@media (max-width: 1540px) {
	.innr-nw-hdr-menu::after {
		width: 160px;
	}
	.innr-nw-hdr-menu::before {
		left: 160px;
	}
}
@media (max-width: 1366px) {
	.innr-nw-hdr-menu::after {
		width: 87px;
	}
	.innr-call-us-secc {
		padding: 10px 30px 14px 30px !important;
	}
	.schdl-btn a {
		width: 248px;
	}
	.innr-call-us-secc {
		padding: 15px 25px 20px 25px !important;
	}
	.nw-ftr-logo {
		max-width: 220px;
	}
	.nw-hdr-icon ul {
		width: 300px;
  		padding-left: 0;
	}
	.innr-nw-header .w-68.haha-for-flx{
		width: 75%;
	}
	.innr-nw-header .logo.w-32 {
		width: 25%;		
	}
	.innr-nw-hdr-menu::before {
		left: 87px;
	}
	.logo.w-32 {
		display: inline-flex;
  		align-items: center;
	}
}
@media only screen and (max-width: 1340px) {
	.innr-nw-hdr-menu::after,
	.innr-nw-hdr-menu::before {
		display: none;
	}
}
@media only screen and (max-width: 1120px) {
	.nw-main-footer::before {
		transform: skew(-3deg);
	}
	.fottr-logo img {
		width: 70%;
	}
}
@media only screen and (max-width: 600px) {
	.Home_BannerMnTxt{
		height: 121px !important;
	}
}


.cust-calender .fc-view th {
    border-right: 1px solid #fff !important;
    padding: 0 !important;
}
.cust-calender .fc-view th[role="columnheader"] {
    padding: 15px !important;
    vertical-align: middle;
}
.custom_Popup .custom-model-inner.cust-apts-models-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
    max-height: 100%;
}
.custom_Popup .custom-model-inner.cust-apts-models-full .close-btn {
    right: 20px;
    top: 15px;
}
.custom_Popup .custom-model-inner.cust-apts-models-full .custom-model-wrap {
    max-height: 100%;
    height: calc(100% - 2px);
}
.cust-discalimer-msg {margin-bottom: 20px;}
.cust-discalimer-msg p{color: #ff0000c7;font-size: 0.81rem;}
@media screen and (max-width: 1600px) {
	.Home_BannerMnTxt {
		height: 482px;
		background-size: cover;
		background-position: right;
	}
}
@media screen and (max-width: 1199px) {
	.Home_BannerMnTxt {
		background-size: cover;
		height: 310px;
	}
	.main-block {
		padding: 0 30px;
	}
	.contact-outer .btn-field input, .contact-outer .btn-field button {
		width: auto !important;
	}
}
@media screen and (max-width: 991px){	
	.cust-calendar.cst-clndr-main .fc-timegrid-slots.fc-timegrid-slot-lane td {
		border-left: 0 !important;
	}
	.cust-calendar.cst-clndr-main .fc-scrollgrid {
		width: 1150px !important;
	}
    .cust-calender  .fc-toolbar-chunk {
        width: 50%;
        margin-bottom: 20px;
    }
    .cust-calender .fc-header-toolbar {
        flex-wrap: wrap;
    }
    .cust-calender  .fc-toolbar-chunk:last-child {
        margin-bottom: 0px;
    }
    .cust-calender .fc-toolbar-chunk h2.fc-toolbar-title {
        text-align: right;
        font-size: 20px;
    }
    .cust-calender .fc-view th .fc-col-header {
        width: 100% !important;
    }
    .cust-calender .fc-view tbody .fc-timegrid-body {
        width: 100% !important;
    }
    .cust-calender .fc-view tbody .fc-timegrid-body table {
        width: 100% !important;
    }
    .cust-calender .fc-view tbody .fc-timegrid-body table td .fc-event-main {
        margin: 15px 8px !important;
    }
	.HeaderBtmLft {
		width: 100%;
	}
	.Main_Navigation {
		top: 40px;
	}
	.Main_Navigation .MnUll {
		top: 79px;
		z-index: 99999;
	}
	.Repair_ServiceBtns ul li {
		width: 100%;
	}
	.top-title-panel h3 {
		margin: 40px 0px;
	}
    .calender-div {
        height: 750px !important; /*600px !important;*/
    }

    .fc-timegrid-col, .fc th {
        width: 140px;
    }

    .fc-event-main {
        width: fit-content;
        font-size: 12px !important;
        bottom: 10px;
    }
    table.fc-border-separate { table-layout: fixed; }
}

@media screen and (max-width: 767px){
	.horizontal-navbar .navbar-wrap {
        padding: 15px 15px 15px;
    }
    .horizontal-navbar .navbar-wrap .head-menu a {
        margin-bottom: 0px;
        margin-right: 15px;
    }
    .horizontal-navbar .navbar-wrap .nav-items {
        order: 2;
    }
    .cust-logout .btn {
        margin-left: 8px;
        font-size: 13px;
    }
    .cust-calender button.fc-button {
        font-size: 13px;
    }
    .cust-calender .fc-view tbody .fc-timegrid-body table td .fc-event-main {
        margin: 15px 4px !important;
    }
    .cust-calender button.fc-button {
        font-size: 13px;
        padding: 8px !important;
    }
    .cust-bookmodals .modal-dialog {
        max-width: 100% !important;
    }
    .cust-bookmodals .modal-dialog .cust-edit-bookform {
        padding: 8px !important;
        padding-top: 0 !important;
    }
    #calendar-div {
		max-height: 100% !important;
	}
	.cust-calendar .fc-view-harness {
		height: 670px !important;
	}
	.cust-calendar .fc-timegrid-event-harness > .fc-timegrid-event {
		position: static;
		display: inline-block;
		margin-bottom: 0px !important;
	}
	.cust-calendar .fc-timegrid-event-harness > .fc-timegrid-event {
		position: static;
		display: inline-block;
		margin-bottom: 0px !important;
		width: 100%;
		min-height: 0;
	}
	.cust-calendar.fc-direction-ltr .fc-timegrid-slot-label-frame {
		text-align: center;
	}
	.cust-calendar.fc .fc-timegrid-slot .fc-timegrid-slot-label-cushion {
		padding: 0;
	}
	.cust-calendar.fc .fc-col-header-cell-cushion {
		padding: 0;
	}
	.cust-calendar.fc-media-screen table {
		/* width: 572px !important; */
	}
	.fc-timegrid-event-harness.fc-timegrid-event-harness-inset .fc-event-future {
		min-height: 100%;
	}
	.Repair_ServiceBtns ul li {
		width: 100%;
		padding: 0;
	}
	.High_SEER_AC {
		padding-top: 20px;
	}
	.top-title-panel .breadcrumb-outer ul.breadcrumb {
		padding: 0;
		float: left;
	}
	.content-area {
		padding: 40px 0px;
	}
	.contact-outer .btn-field button {
		width: auto;
	}
	.contact-outer input {
		width: auto !important;
	}
	.popup1 {
		width: 95% !important;
	}
	.contact-outer input {
		width: 100% !important;
	}
	.cust-forms ul li .input-field {
		width: 50% !important;
		margin: 0 !important;
	}
	.cust-forms ul li .input-field {
		width: 100% !important;
		margin: 0 !important;
		padding: 0 0 15px;
	}
	.contact-section textarea {
		width: 100% !important;
	}
}

@media screen and (max-width: 550px) {
	.horizontal-navbar .navbar-wrap .head-menu {
        width: 100% !important;
        margin: 15px 0px 0px;
        order: 4;
        display: flex;
        flex-wrap: wrap;
    }
    .horizontal-navbar .navbar-wrap .head-menu a {
        margin-bottom: 0px;
        margin-right: 15px;
    }
    .horizontal-navbar .navbar-wrap {
        padding: 15px 15px 0px;
    }
    .horizontal-navbar .navbar-wrap .head-menu a {
        margin-bottom: 20px;
        width: 50%;
        margin-right: 0;
    }
    .horizontal-navbar .navbar-wrap .head-menu a:nth-child(2) {
        margin-left: 15px;
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 480px){
	
    .calender-div button.fc-today-button.fc-button.fc-button-primary {
        padding: 8px 8px !important;
    }
    .cust-calender .fc-view th .fc-col-header, .cust-calender .fc-view tbody .fc-timegrid-body table {
        width: 100% !important;
    }
    .cust-calender .fc-timegrid table.fc-scrollgrid.fc-scrollgrid-liquid {
        width: 200%;
    }
    .cust-calender .fc-timegrid {
        width: 100%;
        overflow-x: scroll;
    }
    .calender-div button.fc-today-button.fc-button.fc-button-primary {
        padding: 8px 8px !important;
    }
    .cust-calender .fc-view th .fc-col-header, .cust-calender .fc-view tbody .fc-timegrid-body table {
        width: 100% !important;
    }
    .cust-calender .fc-timegrid table.fc-scrollgrid.fc-scrollgrid-liquid {
        width: 350%;
        /* width: 200%; */
    }
    .cust-calender .fc-toolbar-title {
        font-size: 15px !important;
    }
    .cust-calender .fc-button {
        font-size: 14px;
    }
	.cust-homehead {
        font-size: 18px;
        margin-bottom: 20px !important;
    }
    .cust-calender.calender-div.fc .fc-header-toolbar .fc-toolbar-chunk {
        margin-bottom: 15px;
    }
    .cust-calender.calender-div.fc .fc-header-toolbar .fc-toolbar-chunk:last-child {
        margin-top: 0;
        margin-bottom: 0;
    }
}


@media screen and (max-width: 360px){
    .horizontal-navbar .navbar-wrap .head-menu a {
        margin-bottom: 15px;
        width: 50%;
        margin-right: 0;
        padding: 4px !important;
        font-size: 11.5px;
    }
    .cust-calender .fc-toolbar-title {
        font-size: 13px !important;
    }
}

.cust-slot-w {
	/* width: 174px !important; */
}

.fc .fc-timegrid-col.fc-day-today {
	background-color: #FFFFCC !important;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event, .fc-timegrid-event.fc-event-mirror, .fc-timegrid-more-link {
	box-shadow: 0 0 0 1px var(--fc-page-bg-color, transparent) !important;
}

.emergencycal {
	padding-right: 5px;
	padding-top: 10px;
	font-size: 12px;
	color: red;
	text-align: center;
	/* float: left; */
	width: 100%;
}

.test {
    width: 100%;
    height: auto;
    position: relative !important;
    left: 0% !important;
    margin-right: 0% !important;
}


/* Dynamic Header */
/* Dynamic Header */
.dyn-head-main{
	padding:30px 0px !important;
	border: 1px solid #ddd;
}
.dyn-head-main .container {
	max-width: 1150px;
	margin: auto;
	display: block;
  }

  .dyn-head-main .dyn-head-parent{
	display:flex;
	align-items: center;
  }
  .dyn-head-parent .dyn-head-left{
	width:30%;
  }
  .dyn-head-parent .dyn-head-right{
	width:68%;
  }
  .dyn-head-parent .dyn-head-img img{
max-width: 44%;
  }
  .dyn-head-right .dyn-head-info-parent{
	display: flex;
	align-items: center;
	justify-content: end;
  }
  .dyn-head-info-parent .dyn-head-info{
	/* width:33.3%; */
	display: flex;
	align-items: center;
  }
  .dyn-head-info .dyn-head-icon{
	width: 43px;
  }
  .dyn-head-info .dyn-info-cont-parent{
	display: flex;
	flex-direction: column;
	margin-left: 15px;
	margin-right: 15px ;
	width: 100%;
}
  .dyn-cont-upper h4{
	color:#3bb941;
	font-size: 13px;
	text-align: center;
	font-weight: 400;
  }
  .dyn-cont-bott h4{
	color: #11224d;
	font-size: 17px !important;
    font-weight: 700 !important;
	text-align: center;
  }
  .dyn-menu-navigation{
	width: 100%;
	padding:30px 0px;
	border: 1px solid #ddd;
  }
  .dyn-menu-parent{
	display: flex;
  }
.dyn-first-link{
	margin-right: 5px;;
}
  .dyn-menu-parent .dyn-first-link .dyn-icon-pm{
	padding: 13px 10px;
  	font-size: 14px;
  	text-decoration: none;
  	font-weight: 500;
	border: 2px solid transparent;
	border-radius: 2em;	
	cursor: pointer;
	color: #11224d;
  }
  .dyn-menu-parent .dyn-first-link .dyn-icon-pm:hover {
	border: 2px solid #3ebb47;
	border-radius: 2em;	
    color: #3ebb47;
  }
  .dyn-menu-parent .dyn-first-link .dyn-icon-pm:hover{
	color:#3ebb47;
  }
  .dyn-for-plus-icon .dyn-icon-pm{
	position: relative;
	padding-right:30px !important;
  }
  
  .dyn-menu-parent .dyn-for-plus-icon .dyn-icon-pm::before{
	position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #11224d;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  }
  .dyn-menu-parent .dyn-for-plus-icon .dyn-icon-pm::after{
	position: absolute;
	top: 22px;
	right: 11px;
	width: 8px;
	height: 2px;
	display: block;
	background: #11224d;
	content: '';
  }
  .dyn-for-plus-icon .dyn-icon-pm:hover::before{
    height:0px !important
  }
  .dyn-menu-parent .for-drop-dyn{
	position: relative;
  }
  .dyn-first-link .dyn-hover-dropdown{
  left: 0;
  top: 32px;
  width: 220px;
  padding: 20px;
  border-radius: 2em;
  position: absolute;
  z-index: 100000;
  color: #ffffff;
  background-color: #41BF4C;
  display: none;
  }
  .dyn-menu-parent .dyn-first-link:hover .dyn-hover-dropdown{
	display: block;
  }
  .dyn-hover-dropdown .dyn-link a{
	font-size: 14px;
	color:#fff;
	line-height: 5px;
	font-weight: 500;
  }
  .dyn-hover-dropdown .dyn-link{
	margin-bottom: 20px;;
  }
  .dyn-hover-dropdown .dyn-link:nth-last-child(1){
	margin-bottom:0px !important
  }

  /* Dynamic Footer start */
  /* Dynamic Footer start */
  .dyn-footer{
	width: 100%;
	float: left;
	padding:80px 0px;
	background-color: #11224d;
  }
  .dyn-footer-parent{
	display: flex;
  }
  .dyn-footer-parent .dyn-fot-section{
	width:33.3%;
  }
  .dyn-fot-section .fot-social-main{
	display: flex;
	margin-top:20px;
  }
  .dyn-footer-parent .dyn-fot-tablet{
	width:25%;
  }
  .dyn-sec-main-parent{
	display: flex;
	width: 75%;;
  }
  .fot-social-main .dyn-fot-icon{
	width:25%;
  }
  .fot-logo-main img{
	width:250px;
  }
  .dyn-fot-section .dyn-fot-head{
	padding-bottom:20px;
  }
  .dyn-fot-section .dyn-fot-head h4{
	font-size: 16px;
	color:#fff;
  }
  .dyn-fot-section .dyn-fot-content a{
	color:#fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
  }
  .dyn-fot-section .dyn-fot-content a:hover{
	color:#3ebb47;
  }
  .dyn-fot-section .dyn-cont-links-fot {
	width:100%;
	padding-left:20px;
  }
  .dyn-fot-section .dyn-fot-link-div{
	margin-bottom: 10px;
	position: relative;
  }
  .dyn-fot-section .dyn-fot-link-div a::before{
	content: "";
  width: 5px;
  height: 5px;
  background: #3ebb47;
  position: absolute;
  left: -15px;
  top: 10px;
  border-radius: 50%;
  }
  .dyn-fot-section .dyn-fot-callnow h4, .dyn-fot-section .dyn-fot-addrs h4{
	font-size: 19px;
	color:#fff;
  }
  .dyn-fot-section .dyn-fot-email{
	margin-top: 20px;
	margin-bottom: 30px;
  }
  .dyn-fot-section .dyn-fot-email a{
	font-size: 18px;
	text-decoration: none;
	color:#50B74E;
  }
  .dyn-fot-email .dyn-em-icon{
	margin-right:10px;
  }
  .dyn-copyright-footer{
	background-color: #11224d;
	width:100%;
	float:left;
  }
  .dyn-toggle-btn{
	display: none;
  }
  .dyn-toggle-btn .toggle-bar-dyn, .dyn-cross-btn{
font-size: 24px;
float: right;
cursor: pointer;
  }
  .dyn-sub-menu{
	background-color: #11224d;
	width:95%;
	margin:auto;
	position: absolute;
	left:-110%;
	transition:all 0.4s ease-in-out;
  }

  .dyn-link-subdiv{
	padding:10px; 
	border-bottom: solid 1px #fff ;
  }
  .dyn-link-subdiv a, .dyn-link-subdiv p{
	color:#fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
  }
  .dyn-subdiv-flex-ico{
	display: flex;
	align-items: center;
  }
  .dyn-subdiv-flex-ico img{
  width: 25px;
  margin-right: 20px;
  display: flex;
  }
  .dyn-copyright-main p{
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #5e657c;
  font-size: 12px;
  text-align: center;
  padding-top:30px;
  padding-bottom:30px;
  }
  .dyn-sub-pm::before{
  position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: '';
  }
  .dyn-sub-reltive{
	position: relative;
  }
  .nw-header-for-mobile {
	display: none;
  }
  .dyn-sub-pm::after{
  position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: '';
  }
   .dyn-sub-menu .dyn-link-subdiv{
cursor: pointer;
  }
  .dropDownItems{
	display:none;
  }
  .dyn-submenu-drop-padd{
	padding-left:30px;
  }
  #dyn-cross-btn{
	display:none;
  }
  .cust_forbtnsadjust{
	padding-top: 10px ;
  padding-bottom: 7px ;
}
.cust_schedulnewbtn .schdl-btn:nth-last-child(1){
margin-top:10px;
}
.cust_haha_newhead{
	grid-template-columns: 31.1% 31.1% 31.1%;
}
.cust_planssatweb h3{
	font-size: 16px;
}
.cust_owl_caroo ul li, .cust_owl_caroo p{
font-size: 15px;
padding: 5px 0px;
border-bottom: 1px solid #d4d4d4;
}
.cust_owl_caroo p:empty{
display:none;
}
.cust_owl_caroo  .cust_planspara{
	margin:15px 0px;
	margin-top:25px;
	border:none !important;
	padding:0 !important;
}
.cust_owl_caroo  .cst_validity{
	margin-bottom:50px;
	border:none !important;
	padding:0 !important;
}
.cust_owl_caroo h1{
	margin:10px 0px;
}
.cust_owl_caroo  .owl-stage{
	display: flex;
}
.cust_owl_caroo .owl-item{
border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 5px;
}
.plan.cust_planssatweb{
border: unset;
background: unset;
border-radius: unset;
}
.cust_owl_caroo button.buy-button{
position: absolute;
bottom: 20px;
width: calc(100% - 40px);
}
.cust_headerbarr{
/* background: #000000; */
padding:10px 0px;
}
.cust_headerbarr a, .cust_headerbarr i, .cust_headerbarr span{
/* color: #fff; */
font-size: 15px;
font-weight: 500;
}
.cust_headerbarr svg{
font-size: 14px;
margin-right:7px;
}
.cust_headerbarr .cust_infospan{
margin-right:20px;
}
.main_info, .cust_headerbarr .cust_infospan, .cust_newheadermain{
display: flex;
align-items: center;
}
.cust_newheadermain .cust_newrighhead{
text-align: right;
width:80%;;
}
.cust_newheadermain .cust_headerrightbig a{
font-size: 22px;
font-weight: 600;
}
.cust_newheadermain .cust_headerrightbig svg{
font-size: 24px;
margin-right: 10px;
}
.cust_newheadermain .cust_headerrightbig a:hover{
color:#000;
}
.cust_absolmannav #cssmenu .MnUll li{
	padding-bottom:0;
}
.cust_fixintwo{
	display:flex;
}
.main_info span{
	text-align:center;
}

  
@media only screen and (max-width:1367px) and (min-width: 1201px) {
	.main-menu-list {
		grid-column-gap: 30px;
		justify-content: center;
	}
}
  @media only screen and (max-width:1200px) {
	.innr-nw-hdr-menu::after,	
	.innr-nw-hdr-menu::before {
		display: none;
	}
	.main-menu-list {
		grid-column-gap: unset;
		justify-content: center;
	}
	.innr-call-us-secc {
		padding: 20px 30px 20px 30px !important;
	}
	.nw-hdr-menu li a {
		padding: 15px 13px;
	}
	.schdl-btn a {
		width: 240px;
	}
	.nw-hdr-icon ul,
	.innr-nw-header .logo.w-32 {
		display: inline-flex;
		align-items: center;
	}
	.nw-ftr-logo {
		max-width: 210px;
	}
	.innr-nw-header .logo.w-32,
	.innr-nw-header .w-68.haha-for-flx {
		width: auto;
	}
  }
  @media only screen and (max-width:1100px) {
	.mobile-toggle .nv-open {
		display: inline-block;
		background: transparent;
		border: 1px solid #000;
		color: #000;
		font-size: 30px;
		padding: 0 14px !important;
		cursor: pointer;
	}
	.innr-nw-hdr-menu ul > li > .nv-cross {
		display: inline-block;
		top: 40px;
		left: 10px;
		width: 46px;
		height: 36px;
		background: #33303066;
		text-align: center;
		border: 1px solid #33303066;
		color: #fff;
		line-height: 1.2;
		font-size: 30px;
		padding: 0 !important;
		cursor: pointer;
	}
	.innr-call-us-secc::before {
		display: none;
	}
	.innr-nw-header a {
		display: inline-block;
		height: 100%;
	}
	.schdl-btn {
		padding: 0;
	}
	.haha-for-flx {
		padding: 22px 0 15px;
		display: inline-grid;
		grid-template-columns: 48.5% 48.5%;
		justify-content: space-between;
	}
	.haha-for-flx .schdl-btn.clr-for-btn a {
		background-color: #c00000;
		color: #fff;
		border-color: #c00000;
	}
	.haha-for-flx .schdl-btn.clr-for-btn a:hover {		
		background-color: transparent;
		color: #c00000 !important;
		border-color: #c00000;
	}
	.schdl-btn a {
		width: 100%;
	}
	.nw-header {
		display: none;
	}
	.nw-header-for-mobile {
		display: inline-block;
		position: relative;
	}
	.mobile-toggle {
		position: absolute;
		top: 15px;
		right: 15px;
	}
	.nw-hdr-menu {
		position: fixed;
		margin-top: 0;
		top: 0;
		right: 0;
	}
	.nw-hdr-menu {
		background: transparent;
		height: 100%;
		width: 250px;
		z-index: 9;
	}
	.for-innr-menu-li {
		position: relative;
	}
	.for-innr-menu-li span.rslide-li-dropdown-arrow {
		position: absolute;
		top: 0;
		right: 0px;
		width: 46px;
		height: 36px;
		background: #33303066;
		text-align: center;
		display: inline-block;
		visibility: visible;
		border: 1px solid #33303066;
		color: #fff;
		line-height: 3;
		font-size: 13px;
	}
	.innr-nw-hdr-menu {
		background: #171c25;
		height: 100%;
		overflow: auto;
	}
	.nw-hdr-menu li a {
		color: #818181;
		display: block;
		font-size: 14px;
		padding: 8px 8px 8px 32px !important;
		text-decoration: none;
		transition: .3s;color: #818181;
	}
	.main-menu-list li {
		border-bottom: 2px solid #fff;
	}
	.nw-hdr-menu li a:hover {
		color: #f1f1f1;
		background-color: transparent;
		text-decoration: underline;
	}
	.nw-hdr-menu li.for-hovr-link {
		position: relative;
	}
	.nw-hdr-menu li.for-hovr-link a:hover {
		color: #c00000;
	}
	.nw-hdr-menu li.for-hovr-link a:hover::before {
		content: '';
		background-color: #c00000;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		transform: translateX(-50%);
		left: 2px;
	}
	.nw-hdr-menu li.for-hovr-link a:hover::after {
		content: '';
		background-color: #c00000;
		width: 5px;
		height: 5px;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		transform: translateX(-50%);
		right: -2px;
	}
	.main-menu-list {
		flex-direction: column;
	}
	.nw-header-for-mobile .nw-ftr-logo {
		max-width: 100%;
	}
	.nw-header-for-mobile .innr-nw-header {
		display: inline-block;
	}
	.nw-hdr-icon {
		text-align: center;
		padding-top: 40px;
	}
	.nw-header-for-mobile .logo {
		float: left;
		height: 75px !important;
		width: 100% !important;
		display: inline-flex;
		justify-content: center;
		padding: 25px 0 !important;
	}
	.main-menu-list li:last-child{border-bottom: 0;}
	.for-innr-menu-li ul li{border-bottom: 1px solid #212529;}
  }
  @media only screen and (max-width:1024px)
{
	.dyn-footer-parent{
		flex-direction: column;
		padding-left:30px;
		padding-right:30px;
	}
	.dyn-fot-tablet{
		width:100% !important;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.dyn-sec-main-parent{
		width:100%;
		display: flex;
		margin-top: 50px;
        padding-top: 30px;
        border-top: solid 1px #fff;
	}
	.dyn-fot-tablet::after{
        display: none;
	}
	.dyn-fot-icon{
		margin-right:10px;
	}
	.dyn-fot-section .fot-social-main{
		width:25%;
		justify-content: end;
	}
	.dyn-footer{
		padding:50px 0px;;
	}
	/* Services plans realted pages header */
	.cust-plans-services-header .MnUll{left: -300%;margin-top: 20px !important;}
	.cust-plans-services-header .cust-login-btn {
		position: absolute;
		right: 13px;
		width: 94%;
		z-index: 999;
	}
	.cust-plans-services-header #cssmenu .menu-item{padding-bottom: 0;}
	.cust-contact-sec .cust-forms .cust-card-details .input-field {width: 49.5% !important;}
	.cust-forms .cust-card-details .input-field:first-child{width: 100% !important;}
    .cust-forms .cust-card-details .input-field:first-child input{width: 97% !important;}
	/* Add appointment modal */
	.cust-add-appointment-modal .custom-model-inner.cust-apts-models-full {max-width: 750px !important;}
	.cust-edit-appointment-modal .custom-model-inner{max-width: 750px;width: 90%;}
}
@media only screen and (max-width:710px)
{
.dyn-sec-main-parent{
	flex-direction: column;
}
.dyn-sec-main-parent{
	margin-top:10px;
	padding-top:0px;
}
.dyn-footer{
	padding:0px 0px;
	padding-bottom:20px;
}
.dyn-fot-section .fot-social-main{
	width:unset;
}
.fot-logo-main img{
	width: 165px;;
}
.dyn-fot-icon img{
	width:40px;
	max-width: 40px;;
}
.dyn-copyright-main p{
padding:15px 0px;
}
.dyn-first-marr{
	margin-top:0px !important;
}
.dyn-fot-section{
	width: 100% !important;
	margin-top:20px;
	padding-top:20px;
}
.dyn-bordr-white{
	border-top: solid 1px #fff;
}
}
@media only screen and (max-width:710px)
{
	.dyn-fot-icon img{
		width:40px;
		max-width: 40px;;
	}
	.dyn-fot-icon img {
		width: 32px;
		max-width: 32px;
	}
	.dyn-fot-section .dyn-fot-callnow h4, .dyn-fot-section .dyn-fot-addrs h4{
		font-size: 16px;
	}
	.dyn-copyright-main p{
		line-height:20px;
	}
	.dyn-head-main{
		padding:10px 0px !important;
	}
	.dyn-head-parent .dyn-head-img img{
		max-width: 110px !important;
	}
}
@media only screen and (max-width:910px)
{
	.dyn-head-right	, .dyn-menu-navigation{
		display: none;
	}
	.dyn-toggle-btn{
		display: block;
	}
	.dyn-head-parent::after{
		display: none;
	}
	.dyn-head-parent{
		justify-content: space-between;
	}
}
/* Header */
@media(max-width:991px) {
    .cst_Header {width:100% !important;}

	.nw-main-footer::before {
		transform: skew(0deg);
	}
	.innr-nw-main-footer {
		padding: 55px 0 55px 7px;
	}
	.innr-nw-ftr-copyright {
		flex-direction: column;
	}
	.haha-for-flx {
		display: inline-flex;
		padding: 10px 0 0;
	}
	.nw-ftr-img-wrap .nw-ftr-img1 {
		max-width: 60%;
	}
	.nw-ftr-img-wrap .nw-ftr-img2 {
		max-width: 30%;
	}
	.haha-for-flx .schdl-btn {
		width: 48%;
		float: left;
	}
	.cust_haha_newhead .schdl-btn{
		width:31%;
		margin-bottom:10px;
	}
	.cust_haha_newhead .schdl-btn:nth-last-child(1){
		margin-bottom:10px;
	}
	.HeaderBtmRt.cust_newrighhead{
		display:block;
	}
	.cust_newheadermain .HeaderBtmLft, .cust_newheadermain .HeaderBtmRt.cust_newrighhead{
		position: relative;
		z-index: 99;
	}
	 .cust_newheadermain .HeaderBtmRt.cust_newrighhead{
		margin-right:70px;
	}
	.Main_Navigation.cust_absolmannav{
		top: 80px;
	}
	.main_info{
		flex-direction: column;
	}
	.cust_fixintwo{
		width: 100%;
  justify-content: space-between;
  column-gap: 10px;
  margin-bottom:5px;
	}
	.cust_fixintwo .cust_infospan {
	margin-right:0px;
	}
	.cust_fixintwo::after{
		display:none;
	}
	  .Main_Navigation.cust_absolmannav {
    top: 108px;
  }
}
@media(max-width:768px)
{
	/* home page about us sec corrections */
	.Repair_Service .fltRight ul li{padding-left: 0 !important;width: 100% !important;height: auto !important;margin-bottom: 10px;}
	.Repair_Service .fltRight  .Btns_with_transparent_bg{padding-left: 0 !important;padding-right: 0 !important;line-height: normal !important;font-size: 20px;}
	.nw-main-footer .innr-nw-main-footer {
		width: 75%;
		margin: 0 auto;
		float: unset;
		text-align: center;
	}
	.nw-main-footer::before {
		display: none;
	}
	.nw-main-footer .innr-nw-main-footer:nth-child(2) {
		background-color: #010259;
		text-align: left;
	}
	.innr-nw-main-footer {
		padding: 40px;
	}
	.nw-ftr-img-wrap .nw-ftr-img1 {
		max-width: 80%;
	}
	.nw-btns {
		margin: 0 10px 10px 0;
	}
	.fottr-logo img {
		width: 90%;
	}
	.innr-nw-main-footer .logo {
		text-align: center;
		float: unset;
	}
	.cust_haha_newhead{
		flex-wrap: wrap;
		row-gap: 10px;
		justify-content: center;
		column-gap: 20px;
	}
	.cust_haha_newhead .schdl-btn {
 		width: 48%;
		margin-bottom:0px;
	}
	.cust_haha_newhead .schdl-btn:nth-last-child(1){
		margin-bottom:10px;
	}
	.cust_newheadermain .cust_headerrightbig a {
  font-size: 18px;
  }
  .cust_newheadermain .cust_headerrightbig svg {
  font-size: 20px;
  }
    .cust_newheadermain .HeaderBtmRt.cust_newrighhead {
    margin-right: 60px;
  }
 .cust_headerbarr a, .cust_headerbarr i, .cust_headerbarr span {
    font-size: 12px;
  }
  .cust_fixintwo{
	margin-bottom:0px;
  }
  .cust_headerrightbig{
	display:none;
  }
   .Main_Navigation.cust_absolmannav {
    top: 116px;
  }
   .cust_fixintwo {
    margin-bottom: 3px;
	row-gap:3px;
  }
  .cust_fixintwo{
	flex-direction: column;
  justify-content: center;
  }
    .cust_fixintwo .cust_infospan {
		 justify-content: center;
	}
	.cust_headerbarr .cust_infospan {
  margin-right: 0;
  width: 100%;
  justify-content: center;
}
}
@media only screen and (max-width:620px) {
  .Main_Navigation.cust_absolmannav {
    top: 105px;
  }
  .main_info{
	flex-direction: column;
  }
 .cust_newheadermain .Header_Logo img{
	max-height: 75px;
  }
  .HeaderBtmLft{
	width:60%;
  }
   .cust_absolmannav.Main_Navigation .MnUll {
    top: 69px;
	}
	.cust_fixintwo{
		overflow: hidden;
	}
	.cust_fixintwo .cust_infospan, .main_info .cust_infospan{
		text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
	}
	.cust_headerbarr .container{
		padding:0 30px;
	}
}
@media only screen and (max-width:600px) {
	.haha-for-flx {
		flex-direction: column;
	}
	.haha-for-flx .schdl-btn.clr-for-btn {
		margin-bottom: 10px;
	}
	.nw-hdr-icon ul {
		justify-content: center;
	}
	.nw-hdr-icon ul li:last-child a {
		margin-right: 0;
	}
}
@media only screen and (max-width:575px) {
	.haha-for-flx {
		grid-template-columns: 100%;
	}
	.haha-for-flx .schdl-btn {
		width: 300px;
    	margin: 0 auto 10px;
	}
	.cust_haha_newhead{
		row-gap:0px;
	}
	/* New header */
	.nw-hdr-container{padding-top: 50px;}
	.custom_Popup .FrmFieldsRpt.cust-appt-message-center .FrmFieldsLft,.custom_Popup .FrmFieldsRpt.cust-discalimer-msg .FrmFieldsLft{display: none;}
}
@media only screen and (max-width:550px) {
	.nw-main-footer .innr-nw-main-footer {
		width: 100%;
		margin: 0 auto;
		float: unset;
		text-align: center;
	}
}

@media only screen and (max-width:480px) {
.cust_headerbarr a, .cust_headerbarr i, .cust_headerbarr span {
  font-size: 12px;
}
 .cust_newheadermain .cust_headerrightbig a {
    font-size: 15px;
  }
    .cust_newheadermain .cust_headerrightbig svg {
    font-size: 14px;
    margin-right: 5px;
  }
   .HeaderBtmLft {
    width: 70%;
  }
  .cust_forhearmob .container, .cust_absolmannav .container{
	padding: 0px 30px;
  }
  .cust_absolmannav #menu-button{
	padding-right: 0;
  }
   .cust_absolmannav #menu-button::before,  .cust_absolmannav #menu-button::after {
	right:0 !important;
   }
     .Main_Navigation.cust_absolmannav {
    top: 105px;
  }
   .cust_newheadermain .HeaderBtmRt.cust_newrighhead {
    margin-right: 38px;
  }
}

@media only screen and (max-width:460px) {
	.nw-btns {
		margin: 0 0 10px 0;
		width: 205px;
	}
	.innr-nw-ftr-copyright {
		text-align: center;
	}
	.haha-for-flx {
		flex-direction: column;
	}
}
@media only screen and (max-width:767px)
{
	.cust-contact-sec .cust-forms .cust-card-details .input-field {width: 49.5% !important;}
	.cust-forms .cust-card-details .input-field:first-child{width: 100% !important;}
    .cust-forms .cust-card-details .input-field:first-child input{width: 100% !important;}
	.cust-forms .cust-card-details .input-field:nth-child(2) input{width: 98% !important;}
	.cust-forms .cust-card-details .input-field:nth-child(3) input{margin-left: 5px !important;}
}
@media only screen and (max-width:365px) {
.cust_headerbarr .cust_infospan:nth-last-child(1){
display: block;
  text-align: center;
}
  .cust_newheadermain .cust_headerrightbig a {
    font-size: 14px;
  }
   .Main_Navigation.cust_absolmannav {
    top: 105px;
  }
}
/* Plans services header */
.cust-plans-services-header {
    border: 1px solid #ddd;
    border-width: 1px 0;
    padding: 30px 0;
}
.cust-plans-services-header .container{
	display:flex;
	align-items: center;
	justify-content: space-between;position: relative;}
	.cust-plans-services-header .cust-login-btn{text-align: right !important;} 
	.cust-forms .cust-card-details .input-field{width: 32.5% !important;}

/* Add appointment modal  */
.cust-add-appointment-modal .custom-model-inner.cust-apts-models-full{max-width: 992px;max-height: 92dvh;top:30px;width: 95%;}
.cust-add-appointment-modal textarea,.cust-edit-appointment-modal textarea{width: 100% !important;}	

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


