:root{
	--primary-color			: #28a69c;
	--secondery-color		: #F1F1F1;
	--text-color			: #1E1E1E;
	--black-color			: #000000;
	--accent-color			: #9b248d;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Montserrat", sans-serif;
}
* {
	box-sizing: border-box;
  }
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}
.container{
    width: 100%;
    max-width: 1680px;
	padding: 0 30px;
}
.container-fluid {
    width: 100%;
    padding: 0 50px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    transition: color 0.3s ease;
}
a {
	color: var(--accent-color);
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}

h1{
    font-size: 60px;
    line-height: 70px;
	font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}
h2{
    font-size: 42px;
    line-height: 56px;
	font-weight: 500;
	color: var(--black-color);
    margin-bottom: 0;
}
h3{
    font-size: 16px;
    line-height: 1em;
	font-weight: 800;
	color: var(--accent-color);
    margin-bottom: 0;    
}
h4{
    font-size: 22px;
    line-height: 30px;
	font-weight: 800;
	color: var(--accent-color);
    margin-bottom: 0;
}
h5{
    font-size:19px;
    line-height: 26px;
	font-weight: 800;
	color: var(--accent-color);
    margin-bottom: 0;
}
h6{
    font-size: 18px;
    line-height: 24px;
	font-weight: 800;
	color: var(--accent-color);
    margin-bottom: 0;
}
p{
    font-size: 16px;
    line-height:1.7em;
	font-weight: 400;
	color: var(--text-color);
    margin-bottom: 30px;
}
figure {
	margin: 0;
}
.align-center {
	text-align: center;
}
section {
	padding: 100px 0;
}
.section-row{
	margin-bottom: 85px;
}
.section-row .section-title{
	margin-bottom: 0;
	margin-right: 30px;
}
.section-btn{
	text-align: end;
}
.section-title-content{
	margin-left: 120px;
}
.section-title-content p{
	margin: 0;
}
.section-title{
	margin-bottom: 40px;
	text-align: center;
}
.section-title h1{
	margin-bottom: 0;
	cursor: none;
}
.section-title h2{
	display: block;
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 33px;
	cursor: none;
	position: relative;
	padding-bottom: 28px;
}
.section-title h2::after {
	position: absolute;
	content: "";
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 0;
	width: 75px;
	height: 8px;
	border-radius: 15px;
	background-color: var(--primary-color);

}
.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}
.section-title p{
	max-width: 900px;
	margin: 0 auto 0;
	font-size: 24px;
}
.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3{
	color: var(--white-color);
}
.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}
.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}


.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.icon-star-image{
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(50%, 50%);
}

.icon-star-image img{
	max-width: 112px;
	animation: zoom 1s linear 1s infinite;
}

@keyframes zoom{
	0%{
	  transform: scale(1);
	}
	50%{
	  transform: scale(0.8);
	}
	100%{
	  transform: scale(1);
	}
  }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color:var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}
.floatingdiv {
	position: fixed;
	top:auto;
	right: 10px;
	z-index: 9999;
	width: 45px;
	height: auto;
	bottom: 135px;
  }
  .floatingwhatsapp {   
	  background: var(--primary-color);   
	  width: auto;
	  height: 45px;
	  text-align: center;
	  line-height: 20px;
	  box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
	  display: flex;
	  margin-bottom: 10px;
	  padding: 12px 20px;
	  border-radius: 50px;
	  color: #fff;
	  position: fixed;
	  top: auto;
	  bottom: 70px;
	  right: 10px;
	  z-index: 9999;
	  justify-content: center;
      align-items: center;
	}
	.floatingwhatsapp img {
	  width: 28px;
	  height: auto;
	  margin-right: 10px;
	}
	.floatingwhatsapp svg {
		margin-right: 10px;
		font-size: 22px;
	}
	.floatingcall {    
	  background: var(--primary-color);    
	  width: 45px;
	  height: 45px;
	  text-align: center;
	  line-height: 42px;
	  border-radius: 50%;
	  box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
	  color: #fff;
	  font-size: 18px;
	  display: block;
	}
	.floatingcall svg,
	.floatingcall i {
	  color: #fff;
	}
	#scrollTopBtn {
	  position: fixed;
	  padding: 0;
	  right: 10px;
	  bottom: 30px;
	  width: 45px;
	  height: 45px;
	  opacity: 0;
	  z-index: 1000;
	  font-size: 18px;
	  border-radius: 50%;
	  color: #fff;
	  background: var(--primary-color);     
	  overflow: hidden;
	  -webkit-transition: all 0.3s ease-in-out;
	  transition: all 0.3s ease-in-out;
	  box-shadow: none;
	  border: none;
	}
	#scrollTopBtn.actived {
	  right: 30px;
	  opacity: 1;
	}
	.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
	.jobPopup .modal-dialog .modal-content .modal-body form select {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 45px;
		font-size: 15px;
		width: 100%;
		line-height: 12px;
		border-radius: 30px;
		background-color: var(--accent-color);
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color: var(--primary-color);
		color: var(--white-color);
	}

/* btns */

.common-btn {
	position: relative;
    display: inline-block;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 18px;
	line-height: 18px;
    font-weight: 500;
    border: none;
    padding: 16px 37px 16px 32px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
	text-transform: capitalize;
	border-radius:30px;
	border: transparent solid 2px;
}
.common-btn:hover{
	background: var(--primary-color);
    color: var(--white-color);
}
.common-btn.btn-highlighted{
	background-color: var(--white-color);
	color: var(--accent-color);
}
.common-btn.btn-highlighted:hover{
	color: var(--white-color);
}
.common-btn.btn-highlighted::before{
	background-image: url(../images/arrow-accent.svg);
}
.common-btn.btn-highlighted:hover::before{
    filter: brightness(0) invert(1);
}
.common-btn.btn-highlighted::after{
	background-color: var(--accent-color);
}
.cb-cursor:before{
	background: var(--accent-color);
}

/* btns */

/* header */

header.main-header{
	position: relative;
	z-index: 100;
}
header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
	width: 100%;
}
header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}
header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
      flex: 1;
      justify-content: center;
    }
}
.navbar{
	padding: 15px 0;
	align-items: center;
	background-color: rgba(255, 255, 255, 1);
}
.navbar-brand{
	padding: 0;
	margin: 0;
}
.navbar-brand img,
.footer-logo img {
	width: auto;
	height: 60px;
}
.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
}
.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}
.main-menu ul li{
	margin: 0 5px;
	position: relative;
}
.main-menu ul li a{
	font-size: 18px;
	font-weight: 500;
	padding: 17px 10px 14px!important;
	color: var(--black-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	letter-spacing: 1px;
}
.main-menu ul li.dropdown > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}
.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--primary-color);
}
.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 240px;
	border-radius: 0;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}
.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul ul li{
	margin: 0;
	padding: 0;
}
.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
    display: block;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}
.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}
.cta-btn .call-btn::before {
    background-image: url(../images/icon-phone.svg);
}
.main-menu ul li.highlighted-menu{
    display: none;
}
.mob-logo,
.close-mobile-menu,
.menu-logo {
    display: none;
}
header.main-header .header-sticky.is-sticky {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	z-index: 1040;
	border-bottom: 0 !important;
	height: auto !important;
	max-height: auto !important;
	background-color:rgba(0, 0, 0, 0.6)!important;
	-webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
	box-shadow: 0 3px 4px rgba(0,0,0,.07);
	-webkit-animation: translateHeader 0.8s;
	animation: translateHeader 0.8s;
  }
  .is-sticky .navbar {
	padding: 10px 0;
  }
  @keyframes translateHeader {
	0% {
	  opacity:0;
	  -webkit-transform:translateY(-100%);
	  transform:translateY(-100%)
	}
	100% {
	  opacity:1;
	  -webkit-transform:translateY(0);
	  transform:translateY(0)
	}
  }
  @keyframes headerAnimation {
	0% {
	  opacity:0;
	  -webkit-transform:translateY(-100%);
	  transform:translateY(-100%)
	}
	100% {
	  opacity:1;
	  -webkit-transform:translateY(0);
	  transform:translateY(0)
	}
  } 
.header-topbar {
	background-color: var(--accent-color);
	height: 50px;
	position: relative;    
    display: flex;
    align-items: center;    
} 
.is-sticky .header-topbar {
	display: none;
}
.header-topbar .contact-list {
    display: flex;
    align-items: center;
}
.header-topbar .contact-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    margin-right: 20px;
  }
  .header-topbar .contact-list li svg,
    .header-topbar .contact-list li i {
    font-size: 16px;
    color:var(--white-color);
    margin-right: 8px;
  }
  .header-topbar .contact-list li a:not(.btn) {
    color:var(--white-color);
  }
  .header-topbar .contact-list li:first-child a:first-of-type {
	margin-right: 10px;
  }
  .social-icons li {
    margin-right: 10px;
 }
 .social-icons li:last-child {
    margin-right: 0;
 }
 .social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.social-icons li a {
    position: relative;
    z-index: 2;
    display: block;
    width: 23px;
    height: 23px;
    line-height: 23px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    color:var(--accent-color);
    background-color:var(--white-color);
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .social-icons li:hover a {
    color:var(--primary-color);
}
  .contact-now-box{
	display: flex;
	align-items: center;
}
.contact-now-box{
	font-size: 18px;
}
.bg-white {
    background-color: #fff;
}
.contact-now-box .icon-box{
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box{
	background-color: var(--primary-color);
}

.contact-now-box .icon-box img{
	max-width: 20px;
}

.contact-now-box-content{
	width: calc(100% - 55px);
}

.contact-now-box-content p{
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	font-size: 18px;
}


/* banner */

.banner {
	position: relative;
	margin-top: 0;
	padding: 0;
}
.banner.hero-slider-layout .hero-slide{
	position: relative;
    padding: 200px 0 160px;
	min-height: 100vh;
}
.banner.hero-slider-layout .hero-slide::before,
.banner.hero-slider-layout .hero-slide .hero-slider-image:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.banner.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}
.banner.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}
.banner.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}
.hero-content{
	position: relative;
	z-index: 2;
}
.hero-content .section-title {
	text-align: left;
	max-width: 700px;
	margin-bottom: 20px;
}
.hero-content .section-title h3,
.hero-content .section-title h1{
	color: var(--white-color);
	margin-bottom: 15px;
}
.hero-content .section-title p{
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
	margin: 0;
}
.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}
.hero-content .common-btn.btn-highlighted{
	margin-left: 10px;
	background: transparent;
	color: var(--white-color);	
}
.hero-content .common-btn.btn-highlighted::before {
	background-image: url(../images/arrow-white.svg);
}
.hero-content .common-btn.btn-highlighted::after {
	display: none;
}

/* about us */

.counter-wrap {
	position: relative;
}
.counter-wrap .col-md-2 {
	width: 20%;
}
.item-counter {
	outline: var(--accent-color) solid 1px;
	outline-offset: 10px;
	background-color: #f1f1f1;
	text-align: center;
	margin: 15px;
	padding: 20px;
	border-radius: 10px;
}
.item-counter h3 {
	color: var(--accent-color);
	font-size: 40px;
	margin-bottom: 10px;
	font-weight: 600;
}
.counter3 h3 {
	color: var(--primary-color);
}
.counter5 h3 {
	color: #fbae08;
}
.counter4 h3 {
	color: #0a929e;
}
.counter2 h3 {
	color: #f79d23;
}
.item-counter p {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0;
}
.about-us{
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.about-us-images{
	position: relative;
	background-image: url(../images/about-us-bg-shape.svg);
	background-repeat: no-repeat;
	background-position: left 60px bottom 40px;
	background-size: auto;
	padding-right: 30px;
	padding-bottom: 0;
	margin-right: 30px;
}
.about-us-images .about-img-1 figure {
	border-radius: 24px;

}
.about-us-content .section-title h2::after {
	left: 0;
	transform: none;
}
.about-img-1 figure,
.about-img-2 figure{
	display: block;
}
.about-img-1 img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}
.about-img-2{
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
}
.about-img-2 img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
}
.experience-counter{
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}
.experience-counter h3{
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}
.experience-counter p{
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}
.feedback-counter{
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
    writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}
.feedback-counter p{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}
.feedback-counter:hover p{
	background-color: var(--primary-color);
}
.feedback-counter h3{
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}
.about-us-content-body{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}
.about-us-content-body::before{
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}
.about-us-content-info{
	width: calc(50% - 40px);
}
.about-us-content-list{
	margin-bottom: 40px;
}
.about-us-content-list ul{
	padding: 0;
	margin: 0;
	list-style: none;
}
.about-us-content-list ul li{
	position: relative;
	font-weight: 500;
	color: var(--accent-color);
	padding-left: 30px;
	margin-bottom: 15px;
}
.about-us-content-list ul li:last-child{
	margin-bottom: 0;
}
.about-us-content-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}
.about-us-contact-list{
	width: calc(50% - 40px);
}
.about-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.about-contact-item:last-child{
	margin-bottom: 0;
}
.about-contact-item .icon-box{
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}
.about-contact-item:hover .icon-box{
	background-color: var(--primary-color);
}
.about-contact-item .icon-box figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}
.about-contact-item .icon-box img{
	max-width: 40px;
	border-radius: 50%;
}
.about-contact-item .icon-box i{
	font-size: 18px;
	color: var(--white-color);
}
.about-contact-content{
	width: calc(100% - 55px);
}
.about-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
}
.about-contact-content p{
	font-weight: 500;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}
.about-us-content .section-title {
	text-align: left;
}
.message-content h3 span {
	display: block;
	font-size: 12px;
	padding-bottom: 10px;
	border-bottom: var(--primary-color) solid 1px;
	margin-top: 10px;
	font-weight: 400;
}

/* Why choose */

.why-choose-us{
	background-color: var(--secondery-color);
}
.why-choose-item{
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.why-choose-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.why-choose-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}
.why-choose-item:hover .icon-box{
	background-color: transparent;
}
.why-choose-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
.why-choose-item:hover .icon-box::before{
	transform: scale(1);
}
.why-choose-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}
.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}
.why-choose-item-content{
	width: calc(100% - 80px);
}
.why-choose-item-content h3{
	font-size: 20px;
	line-height: 28px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.why-choose-item-content p{
	color: var(--accent-color);
	margin-bottom: 0;
}
.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}
.why-choose-img-box-1,
.why-choose-img-box-2{
	display: flex;
	gap: 20px;
	width: 100%;
}
.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure{
	display: block;
}
.why-choose-img-1{
	width: calc(57% - 10px);
}
.why-choose-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}
.why-choose-img-2{
	width: calc(43% - 10px);
}
.why-choose-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}
.why-choose-img-3{
	width: calc(67% - 10px);
}
.why-choose-img-3 img{
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}
.why-choose-img-4{
	width: calc(33% - 10px);
}
.why-choose-img-4 img{
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/* services */

.our-services {
	background-color: var(--secondery-color);
}
.our-services .photo-gallery {
  margin: 16px 8px;
}
.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 35px;
	padding: 16px 16px 39px 16px;
	border-radius: 40px;
	background-color: var(--white-color);
}
.service-image a{
	display: block;
	cursor: none;
}
.service-image {
	border-radius: 24px;
}
.service-image a figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
    height: 100%;
    width: 100%;
    z-index: 1;
    transition: all 0.3s ease-in-out;
	border-radius: 24px;
}
.service-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.7;
	transition: all 0.4s ease-in-out;
	border-radius: 24px;
}
.our-categories .service-image img{
	aspect-ratio: 1 / 0.5;
}
.service-item:hover .service-image img{
	transform: scale(1.1);
}
.service-content{
	padding: 21px 8px 0;
}
.service-content h3{
	font-size: 24px;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 17px;
	font-weight: 600;
}
.service-content h3 a{
	color: inherit;
}
.service-content p{
	color: #373737;
	margin-bottom: 34px;
	font-size: 18px;
	line-height: 22px;
	font-weight: 500;
}
.service-content span,
.service-content .tag-text p {
	font-size: 16px;
	color: #838383;
	display: block;
	font-weight: 500;
}
.service-content .tag-text p {
	margin-bottom: 7px;
}
.all-services-btn{
	text-align: center;
	margin-top: 3px;
}
.service-btn {
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	color: var(--accent-color);
	position: absolute;
	bottom: 24px;
	right: 26px;
}
.service-btn svg {
	margin-left: 10px;
}
.common-btn.btn-highlighted {
	background-color: transparent;
	border: var(--accent-color) solid 2px;
	padding: 16px 37px 16px 32px;
}
.common-btn.btn-highlighted:hover {
	background-color:var(--accent-color);
	color: var(--white-color);
}

/* Packages */
.packages {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 260px 0 100px;
}
.packages .section-title h2,
.packages .section-title p {
	color: var(--white-color);
}
.packages-list {
	max-width: 1251px;
	margin: 109px auto 0;
	padding: 24px 30px 24px 15px;
	border-radius: 26px;
	background-color: rgba(255, 255, 255, 0.62);
	display: flex;
	flex-direction: row;
	align-items: flex-start;
    flex-wrap: wrap;
	gap: 20px;
	height: 290px;
}
.package-item {
  flex: 1 1 calc(18% - 20px);
  box-sizing: border-box;
  padding: 20px 10px;
}
.packages-list .package-item.most-popular { 
	background-color: var(--primary-color);
	margin: -56px 0 0 15px;
	border-radius: 26px;
	flex: 2 1 calc(28% - 30px);
	padding: 24px 40px;
}
.packages-list .package-item h3,
.packages-list .package-item h4 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	color:var(--accent-color);
	margin-bottom: 6px;
}
.packages-list .package-item h4 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	color:var(--accent-color);
	margin-bottom: 10px;	
}
.packages-list .package-item p{
	font-size: 15px;
	color: #3D3C40;
	font-weight: 500;
	line-height: 18px;
	margin-bottom: 40px;
}
.packages-list .package-item.most-popular h3,
.packages-list .package-item.most-popular h4,
.packages-list .package-item.most-popular p {
	color: var(--white-color);
}
.packages-list .package-item.most-popular h3 {
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	margin-top: 32px;
	margin-bottom: 11px;
}
.packages-list .package-item.most-popular h4 {
	font-size: 26px;
	line-height: 30px;
}
.package-category {
	background-color: #403879;
	color:#DC7EFF;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 900;
	padding: 0 15px;
	height: 27px;
	line-height: 27px;
	border-radius: 13.5px;
	text-align: center;
	display: table;
	margin-left: auto;
	letter-spacing: 1px;
}
.packages-list .package-item .common-btn {
	width: 100%;
	text-align: center;
	font-size: 16px;
}

/* gallery */
.gallery-wrap {
	position: relative;
	/* background: url(../images/gallery-bg.jpg) no-repeat center center; */
	background-color: var(--secondery-color);
	overflow: hidden;
}
.gallery-wrap::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 400px;
	height: 600px;
	border-radius: 50px 100px 20px 150px;
	content: "";
	background-color: var(--primary-color);
	display: none;
}
.gallery-wrap::after {
	position: absolute;
	right: 0;
	top: 0;
	width: 150px;
	height: 100px;
	border-radius: 50px 100px 20px 150px;
	content: "";
	background-color: var(--accent-color);
	display: none;
}
.gallery-slider {
	background-color: rgba(255, 255, 255, 0.62);
	padding:8px 16px;
}
.photo-gallery img {
	border-radius: 24px;
	width: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
}
.gallery-slider .photo-gallery img {
	aspect-ratio: 1 / 1.1;
}
.view-all-btn {
	font-size: 20px;
	font-weight: 500;
	color: #9A248C;
	margin: 0 auto;
}
.view-all-btn svg {
  margin-left: 10px;
}
.gallery-wrap .swiper {
  width: 100%;
  overflow: hidden;
}

.gallery-wrap .swiper-wrapper {
  display: flex;
}

.gallery-wrap .swiper-slide {
  width: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}
.photo-gallery {
	margin: 8px;
}
.gallery-items {
	width: 100%;
}
.gallery-wrap .all-services-btn {
	text-align: center;
	margin: 23px auto 0;
}
/* ads */

.cta {
	background-color: #fff;
	background-position: left bottom;
	background-repeat: no-repeat;
	padding: 220px 0;
}
.cta-content {
	max-width: 1133px;
	margin: 0 0 0 auto;
	padding-left: 0;
}
.cta-content h2 {
	font-size: 40px;
	color: #000000;
	font-weight: 600;
	margin-bottom: 20px;
}
.cta-content p {
	font-size: 24px;
	line-height: 30px;
	color: #828282;
	font-weight: 500;
}
.cta .common-btn {
	background-color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 18px 56px;
	margin-right: 10px;
}
.cta .common-btn.common-btn.btn-highlighted {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background-color: var(--white-color);
	margin-right: 0;
}


/* blog */

.our-blog{
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}
.post-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}
.post-featured-image{
    margin-bottom: 20px;
}
.post-featured-image a{
    cursor: none;
}
.post-featured-image figure,
.post-featured-image a{
    display: block;
}
.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}
.post-item-content{
	margin-bottom: 15px;
}
.post-item-content h3{
	color: var(--text-color);
    font-size: 16px;
	line-height: 24px;
	line-height: 1.4em;
	font-weight: 600;
}
.post-item-content h3 a{
    color: inherit;
}
.post-item-btn a{
	position: relative;
	color: var(--accent-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
	font-size: 14px;
}
.post-item-btn a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px , -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}
.post-item-btn a:hover::after{
	transform: translate(2px , -50%);
}
.our-blog-footer{
	margin-top: 20px;
	text-align: center;
}

/* footer */

.main-footer{
	padding: 90px 0 0;
	background: #E1E6E5;
}

.footer-links h4{
	font-size: 24px;
	font-weight: 600;
	text-transform: capitalize;
	color: #000000;
	margin-bottom: 15px;
}
.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-links ul li{
	color: #313131;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
	margin-left: 0;
}
.footer-links ul li:last-child{
	margin-bottom: 0;
}
.footer-links ul li:hover{
	color: var(--primary-color);
}
.footer-links ul li a{
	display: block;
	color: inherit;
}
.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.footer-contact-item.footer-address {
	align-items: start;
}
.footer-contact-item.footer-address .icon-box {
	margin-top: 6px;
}
.footer-contact-item:last-child{
	margin-bottom: 0;
}
.footer-contact-item .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}
.footer-contact-item:hover .icon-box{
	border-color: var(--white-color);
}
.footer-contact-item .icon-box svg,
.footer-contact-item .icon-box i{
	font-size: 16px;
	color: var(--white-color);
}
.footer-contact-content{
	width: calc(100% - 50px);
}
.footer-contact-content p{
	color: #313131;
	margin: 0;
	max-width: 225px;
}
.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	text-align: left;
	margin-top: 50px;
	padding: 20px 0 20px;
}
.footer-copyright-text p,
.footer-contact-box p a,
.designed-text p {
	color: #313131;
	margin: 0;
}
.footer-logo {
	display: table;
	margin-left: auto;
}
.designed-text p {
	display: flex;
	justify-content: end;
	align-items: center;
}
.designed-text {
	text-align: right;
}
.footer-copyright .company-logo {
	float: right;
	margin-left: 10px;
}
.estimate-btn {
	display: none;
}
.footer-text h2 {
	margin-bottom: 24px;
}
.footer-text h2 small {
	display: block;
	font-size: 32px;
	font-weight: 500;
	color: #838383;
}
/* inner banner */

.inner-banner {
	position: relative;
	background: url('../images/inner-banner.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 220px 0 180px;
}
.inner-banner::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 0;
}
.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}
.page-header-box h1{
	display: inline-block;
	font-size: 80px;
    font-weight: 700;
	color: var(--white-color);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}
.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}
.page-header-box ol li.breadcrumb-item{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-left: 0;
}
.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    font-size: 20px;
    color: var(--white-color);
}

/* about page */

.about-us.page-about-us{
	background: transparent;
}
.about-facility-list{
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.about-facility-item{
	width: calc(33.33% - 20px);
	display: flex;
}
.about-facility-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
.about-facility-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.about-facility-item:hover .icon-box:before{
	transform: scale(1);
}
.about-facility-item .icon-box img{
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.about-facility-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}
.about-facility-content{
	width: calc(100% - 80px);
}
.about-facility-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.about-facility-content p{
	margin-bottom: 0;
}
.vision-mission{
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--accent-color) 60%, var(--white-color) 40%);
}
.vision-mission .section-title h2 {
	color: var(--white-color);
	-webkit-text-fill-color: #fff;
}
.vision-mission-box{
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}
.vision-mission-item{
	position: relative;
	width: calc(50% - 75px);
}
.vision-mission-item::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}
.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before{
	display: none;
}
.vision-mission-item .icon-box{
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.vision-mission-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.vision-mission-item:hover .icon-box:before{
	transform: scale(1);
}
.vision-mission-item .icon-box img{
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}
.vision-mission-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}
.vision-mission-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.vision-mission-content p{
	margin: 0;
}
.best-selling{
	background: url(../images/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
	padding: 50px 0 100px;
}
.best-selling-content-img{
	margin-bottom: 80px;
}
.best-selling-iamge figure,
.best-selling-content-img figure{
	display: block;
}
.best-selling-content-img img{
	width: 100%;
	aspect-ratio: 1 / 0.42;
    object-fit: cover;
}
.best-selling-content .section-title{
	margin-bottom: 0;
}
.best-selling-iamge img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
    object-fit: cover;
}
.our-team{
	padding: 70px 0 40px;
}
.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}
.team-image{
	position: relative;
	margin-bottom: 20px;
    overflow: hidden;
}
.team-image a{
	display: block;
	cursor: none;
}
.team-image figure{
	display: block;
}
.team-image figure img{
	width: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}
.team-member-item:hover .team-image figure img{
	transform: scale(1.1);
}
.team-readmore-btn{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}
.team-readmore-btn a{
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.team-readmore-btn a:hover{
	background-color: var(--primary-color);
}
.team-readmore-btn img{
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}
.team-readmore-btn a:hover img{
	transform: rotate(0deg);
}
.team-content{
	text-align: center;
	margin-bottom: 20px;
}
.team-content h3{
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight: 600;
}
.team-content p{
	font-weight: 500;
	text-transform: capitalize;
	font-size: 14px;
	margin: 0;
}
.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.team-social-icon ul li{
	display: inline-flex;
	margin-right: 10px;
}
.team-social-icon ul li:last-child{
	margin-right: 0;
}
.team-social-icon ul li a{
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}
.team-social-icon ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
}
.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}
.our-faqs-content{
	margin-right: 70px;
}
.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}
.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}
.faq-accordion .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--accent-color);
	align-items: start;
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-header .accordion-button:hover,
.faq-accordion .accordion-header .accordion-button:focus {
	text-decoration: none;
}
.faq-accordion .accordion-header .accordion-button span{
	margin-right: 7px;
}
.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 15px;
}
.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	text-align: right;
    top: 0;
    right: 0;
	transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f068';
}
.faq-accordion .accordion-body{
	padding-right: 35px;
}
.faq-accordion .accordion-body p{
	margin: 0;
}
.our-faqs-image{
	text-align: right;
}
.our-faqs-image figure{
	display: block;
}
.our-faqs-image img{
	width: 100%;
	aspect-ratio: 1 / 1.26;
    object-fit: cover;
}


/* service page */

.page-services{
	padding: 100px 0 70px;
}
.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 30px;
}
.service-catagery-list{
	border: 1px solid var(--divider-color);
	padding: 30px;
    margin-bottom: 40px;
	overflow: hidden;
}
.service-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.service-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}
.service-catagery-list ul li{
    margin-bottom: 20px;
    margin-left: 0;
}
.service-catagery-list ul li:last-child{
    margin: 0;
}
.service-catagery-list ul li a{
    position: relative;
    display: block;
	font-weight: 500;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-right: 25px;
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li:hover a{
    color: var(--primary-color);
}
.service-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
	transform: translateY(-50%) rotate(-45deg);
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li:hover a::before{
	transform: translateY(-50%) rotate(0);
    filter: brightness(0) invert(0);
}
.sidebar-cta-image figure{
	display: block;
}
.sidebar-cta-image img{
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}
.sidebar-cta-Body{
	border: 1px solid var(--divider-color);
	padding: 30px;
}
.sidebar-cta-content{
	margin-bottom: 25px;
}
.sidebar-cta-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.sidebar-cta-content p{
	font-weight: 500;
	margin-bottom: 0;
}
.sidebar-cta-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.sidebar-cta-contact-item:last-child{
	margin-bottom: 0;
}
.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}
.sidebar-cta-contact-item:hover{
	background-color: transparent;
}
.sidebar-cta-contact-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}
.sidebar-cta-contact-item:hover .icon-box::before{
    transform: scale(1);
}
.sidebar-cta-contact-item .icon-box img{
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}
.sidebar-cta-contact-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}
.cta-contact-item-content{
	width: calc(100% - 78px);
}
.cta-contact-item-content p{
	font-weight: 500;
	margin: 0;
}
.service-feature-image{
    margin-bottom: 40px;
}
.service-feature-image figure{
    display: block;
}
.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.55;
    object-fit: cover;
}
.service-entry{
    margin-bottom: 60px;
}
.service-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}
.service-entry h2 span{
	color: var(--accent-color);
}
.service-entry p{
    margin-bottom: 20px;
}
.service-entry p:last-child{
    margin-bottom: 0;
}
.service-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}
.service-entry ul li{
	position: relative;
    font-weight: 500;
    color: var(--text-color);
	text-transform: capitalize;
    padding-left: 30px;
    margin-bottom: 15px;
}
.service-entry ul li:last-child{
	margin-bottom: 0;
}
.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 2px;
    left: 0;
}
.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.service-entry-image,
.service-entry-list{
	width: calc(50% - 15px);
}
.service-entry-image figure{
	display: block;
}
.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}
.service-entry-list ul{
	margin-bottom: 0;
}
.why-choose-content.service-single-why-choose{
	margin-bottom: 60px;
}


/* Gallery */

.page-gallery{
	padding: 100px 0 70px;
}
.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}
.page-gallery-box .photo-gallery a{
	cursor: none;
}
.page-gallery-box .photo-gallery figure{
	display: block;
}
.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}
.gallery-content {
	margin: 15px 0;
}

/* Contact */

.page-contact-us{
	padding: 100px 0 50px;
}
.contact-us-image{
	height: 100%;
	overflow: hidden;
	border-radius: 24px;
}
.contact-us-image figure{
	height: 100%;
	display: block;
}
.contact-us-image img{
	height: 100%;
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.962;
}
.contact-us-form{
	margin-left: 30px;
}
.contact-form .form-control{
    font-size: 16px;
    font-weight: 500;
	line-height: 1.2em;
    background-color: var(--white-color);
    color: var(--text-color);
    border: 1px solid var(--divider-color);
	border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 14px 15px;
}
.contact-form .form-control::placeholder{
	font-weight: 400;
}
.google-map{
	padding: 50px 0 100px;
}
.google-map .section-title{
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}
.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 500px;
}
.contact-info-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}
.contact-info-item{
	width: calc(33.33% - 20px);
	display: flex;
}
.contact-info-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
.contact-info-item .icon-box:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.contact-info-item:hover .icon-box:before{
	transform: scale(1);
}
.contact-info-item .icon-box i,
.contact-info-item .icon-box svg {
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}
.contact-info-item:hover .icon-box i,
.contact-info-item:hover .icon-box svg {
	color: var(--white-color);
}
.contact-info-content{
	width: calc(100% - 80px);
}
.contact-info-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.contact-info-content p{
	margin-bottom: 0;
}
.contact-us-form input[type="submit"] {
	background-color: var(--accent-color);
}
.estimate-btn {
	display: none;
}
body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

/* media query */
@media only screen and (max-width: 1700px){	
	.cta-content {
  max-width: 1055px;
}
}
@media only screen and (max-width: 1600px){	
	.cta-content {
  max-width: 980px;
}
}
@media only screen and (max-width: 1500px){	
	.cta-content {
  max-width: 880px;
	}
}
@media only screen and (max-width: 1400px){	
	
	.main-menu ul li a {
  		font-size: 17px;
	}
	h1{
		font-size: 56px;
		line-height: 65px;
	}
	.hero-content .section-title p {
  		font-size: 20px;
 		 line-height: 26px;
	}
	
	.section-row {
  margin-bottom: 75px;
}
.service-content p,
.service-btn {
	font-size: 17px;
}
.service-content p {
	margin-bottom: 20px;
}
.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-content span, .service-content .tag-text p {
	font-size: 15px;
	line-height: 20px;
}
.packages {
	padding: 200px 0 100px;
}
.packages-list {
  margin: 89px auto 0;
}
.cta-content {
  max-width: 795px;
}
.cta {
	padding: 180px 0;
}
.cta-content h2 {
  font-size: 36px;
}
.cta-content p {
  font-size: 22px;
}
}
@media only screen and (max-width: 1300px){
	.common-btn {
		font-size: 16px;
	}
	.main-menu ul li a {
    font-size: 16px;
  }
  h1 {
	font-size: 55px;
  }
  .packages-list {
	padding: 20px 30px 20px 15px;
  }
  .cta-content h2 {
  font-size: 30px;
}
.cta-content p {
  font-size: 20px;
}
.cta-content {
  max-width: 680px;
}
.footer-text h2 small {
	font-size: 30px;
}
}
@media only screen and (max-width: 1200px){	

	section {
		padding: 70px 0;
	}
	.section-row {
		margin-bottom: 60px;
	}
	.banner.hero-slider-layout .hero-slide {
		padding: 160px 0 120px;
		min-height: 70vh;
	}
	.service-content,
	.project-content {
		bottom: 25px;
		left: 25px;
		right: 25px;
	}
	.our-project {
		padding: 70px 0 40px;
	}
	.main-footer {
		padding: 80px 0 0;
	}
	h1 {
	font-size: 55px;
  }
  .section-title {
  margin-bottom: 20px;
  text-align: center;
}
  .hero-content .section-title h1 {
  margin: 0 0 15px 0;
}
	.section-title h2,
	.cta h2 {
		font-size: 42px;
		line-height: 1.1em;
	}
	.about-contact-content h3 {
		font-size: 18px;
	}

	/* .main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	} */
	.footer-copyright {
		margin-top: 45px;
  		padding: 30px 0;
	}
	p,
	body {
		font-size: 15px;
		line-height: 1.4em;
	}
	.container-fluid {
		padding: 0 40px;
	}
	.inner-banner {
		padding: 200px 0 120px;
	}
	.our-faqs-content {
		margin-right: 40px;
	}
	.service-content p,
.service-btn {
	font-size: 16px;
}
.service-content p {
	line-height: 22px;
}
.service-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.service-content span, .service-content .tag-text p {
	font-size: 14px;
	line-height: 18px;
}
.section-title p {
	font-size: 20px;
	line-height: 28px;
}
.packages-list .package-item h3, .packages-list .package-item h4 {
  font-size: 18px; 
}
.package-item {
  padding: 20px 0;
}
  .packages-list {
    padding: 20px 20px 20px 15px;
  }
.packages-list .package-item.most-popular h3 {
  font-size: 32px;
}
.packages-list .package-item p {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 30px;
}
.packages {
	padding: 100px 15px;
}
.cta-content {
  max-width: 580px;
}
.cta-content h2{
	font-size: 30px;
	line-height: 30px;
}
.cta-content p {
  font-size: 18px;
  line-height: 28px;
}
.cta{
	padding: 180px 0;
}
.cta .common-btn {
	padding: 14px 40px;
}
}
@media only screen and (max-width: 1100px){	
	 h1 {
    font-size: 50px;
    line-height: 50px;
  }
	.main-menu ul li{
		margin: 0;
	}
	.our-testimonial-content{
		padding: 50px 0;
	}
	.navbar {
		padding: 15px 0
	}
	.banner.hero-slider-layout .hero-slide {
		padding: 150px 0 150px;
		min-height: 60vh;
	}
	.section-title h2,
	h2 {
		font-size: 40px;
		line-height: 1.1em;
	}
	.our-faqs-content {
		margin-right: 30px;
	}
	.cta-content {
    max-width: 468px;
  }
}
@media only screen and (max-width: 991px){
	.header .navbar-brand img.logo {
		height: 70px;
		width: auto;
	  }
	  .header .mob-logo {
		display: block;
		margin-left: 8px;
		margin-bottom: 20px;
	  }
	  .header .mob-logo img.logo {
		height: 80px;
		width: auto;
	  }	  
	.outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 15px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background:var(--accent-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background:var(--accent-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #fff;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
	  font-size: 20px;
	  padding: 0;
	}
	.main-menu ul li a {
	  color:var(--accent-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	} 
	.navbar .submenu li a {
	  padding: 0;
	}
	 .main-menu ul li {
    margin: 0 0 10px 0;
  }
   .menu-logo {
	display: block;
	margin: 10px 0 0 15px !important;
   }
	.main-menu ul li:hover > .submenu {
	  display: none;
	}
	.main-menu ul ul.submenu {
	  transform:none !important;
	  position: relative !important;
	  float: none;
	  display: block !important;
	  padding: 0;
	  box-shadow: none;
	  visibility: visible !important;
	  opacity: 1 !important;
	  margin-left: 10px;
	  background: none;
	  width: auto;
	  z-index: 10000 !important;
	  top: 0;
	  left: 0;
	  transition: none !important;
	}
	.main-menu ul li.dropdown .submenu li a {
		color: var(--accent-color);
		font-size: 14px;
	}
	.main-menu ul li.dropdown .submenu li a,
	.main-menu ul ul li a,
	.main-menu ul ul li a:hover,
    .main-menu ul ul li a:focus{
	   padding: 8px 20px 8px 20px !important;
	   transition: none !important;
    }
	.main-menu ul li:hover > ul{
		transform: none !important;
	}
	.navbar .dropdown::after {
	  top: 17px;
	}	
	header.main-header .header-sticky {
		height: auto !important;
		max-height: auto !important;
	}
	.header-topbar {
		display: none;
	}
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }
	.responsive-menu,
    .navbar-toggle{
        display: block;
    }
	.header-btn{
		display: none;
	}
	.btn-default{
		padding: 14px 42px 14px 16px;
	}
	.section-row{
		margin-bottom: 40px;
	}
	.section-row .section-title{
		margin-bottom: 0;
		margin-right: 0px;
	}
	.section-title-content{
		margin-left: 0;
		margin-top: 15px;
	}
	.section-btn{
		text-align: left;
		margin-top: 15px;
	}
	.section-title{
		margin-bottom: 30px;
	}
	.section-title h3{
		margin-bottom: 10px;
	}
	.section-title h1{
		font-size: 42px;
	}
	.section-title h2,
	h2{
		font-size: 36px;
	}
	.section-title p{
		margin-top: 15px;
	}	

	.banner.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}
	.banner-content .section-title p{
		font-size: 20px;
	}
	.banner.hero-slider-layout .hero-pagination {
		bottom: 20px;
	}
	
  .hero-content .section-title {
  text-align: left;
  max-width:290px;
}
	.container-fluid {
		padding: 0 15px;
	}
	section {
		padding: 50px 0;
	}
	.about-us-images{
		margin: 0 0 30px 0;
	}
	
	.about-us-content-list{
		margin-bottom: 30px;
	}
	.about-contact-item{
		margin-bottom: 30px;
	}
	
	.our-services{
		padding: 50px 0;
	}	
	  .service-content h3 {
    font-size: 18px;
	  }
	.all-services-btn{
		margin-top: 10px;
	}	
	.our-blog{
		padding: 50px 0;
	}
	.our-blog .section-title{
		margin-right: 0;
	}
	.post-featured-image img{
		aspect-ratio: 1 / 0.75;
	}
	.our-blog-footer{
		margin-top: 10px;
	}
	.main-footer{
		padding: 40px 0 0;
	}
	
	.footer-links{
		padding-right: 0;
		margin-bottom: 30px;
	}
	.footer-newsletter-form p{
		margin-bottom: 20px;
	}
	.footer-copyright{
		margin-top: 0px;
		padding: 20px 0;
	}
	.inner-banner {
        padding: 180px 0 100px;
        margin-top: -92px;
    }
    .inner-banner h1{
        font-size: 40px;
    }
	.page-header-box ol li.breadcrumb-item{
		font-size: 18px;
	}
	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 16px;
	}
	.about-facility-list{
		margin-top: 50px;
		gap: 20px;
	}
	.about-facility-item{
		width: calc(33.33% - 13.33px);
	}
	.about-facility-item .icon-box{
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}
	.about-facility-item .icon-box img{
		max-width: 20px;
	}
	.about-facility-content{
		width: calc(100% - 55px);
	}
	.about-facility-content h3{
		font-size: 18px;
	}
	.vision-mission{
		padding: 50px 0 25px;
	}
	.vision-mission-box{
        padding: 30px 15px;
        gap: 30px 40px;
    }
	.vision-mission-item{
		width: calc(50% - 20px);
	}
	.vision-mission-item::before{
		right: -20px;
	}
	.vision-mission-item .icon-box{
		width: 70px;
		height: 70px;
	}
	.vision-mission-item .icon-box img{
		max-width: 30px;
	}
	.vision-mission-content h3{
		margin-bottom: 15px;
	}

	.team-content{
		margin-bottom: 15px;
	}
	.our-faqs{
		padding: 50px 0;
	}
	.our-faqs-content{
		margin-right: 0;
		margin-bottom: 30px;
	}
	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}
	.our-faqs-image{
		text-align: center;
		margin-left: 0px;
	}
	.our-faqs-image img{
		aspect-ratio: 1 / 0.8;
	}
	
	.page-services{
		padding: 50px 0 20px;
	}
	.page-service-single{
		padding: 50px 0;
	}
	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}
	.service-catagery-list h3{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.service-catagery-list ul li{
		margin-bottom: 10px;
	}
	.service-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}
	.sidebar-cta-Body{
		padding: 20px;
	}
	.sidebar-cta-content{
		margin-bottom: 15px;
	}
	.sidebar-cta-contact-item{
		margin-bottom: 15px;
	}
	.service-feature-image{
		margin-bottom: 30px;
	}
	.service-entry{
		margin-bottom: 30px;
	}
	.service-entry ul li{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}
	.service-entry ul li::before{
		font-size: 18px;
	}
	.why-choose-content.service-single-why-choose{
		margin-bottom: 30px;
	}
	
	.page-gallery{
		padding: 50px 0 20px;
	}
	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.85;
	}	
	.page-contact-us{
		padding: 50px 0 25px;
	}
	.contact-us-image{
		height: auto;
		margin-bottom: 30px;
	}
	.contact-us-image img{
		aspect-ratio: 1 / 0.6;
	}
	.contact-us-form{
		margin-left: 0;
	}
	.contact-form .form-control{
		padding: 12px 15px;
	}
	.google-map{
		padding: 25px 0 50px;
	}
	.google-map-iframe,
	.google-map-iframe iframe{
		height: 400px;
	}
	.contact-info-box{
		gap: 20px;
		margin-top: 40px;
	}
	.contact-info-item{
		width: calc(33.33% - 13.33px);
	}
	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}
	.contact-info-item .icon-box i{
		font-size: 16px;
	}
	.contact-info-content{
		width: calc(100% - 60px);
	}
	.contact-info-content h3{
		font-size: 18px;
	}	
	.navbar-brand.logo img {
		width: auto;
		height: 55px;
		margin-top:0;
	}
	.hero-content .section-title p {
		font-size: 20px;
	}
	.estimate-btn {
		writing-mode: vertical-lr;
		transform: rotate(180deg);
		top: -210px;
		letter-spacing: 1px;
		background-color:#25d366;
		color: #fff;
		font-weight: 600;
		padding: 16px 14px;
		height: 200px;
		min-width: 40px;
		position: absolute;
        z-index: 99;
        border-radius: 0;
        overflow: hidden;
        text-align: center;
        display: none;
		font-size: 16px;
	}
	.counter-wrap .col-md-2 {
  width: 33.3%;
}
.packages {
	padding: 70px 15px 50px;
}
.package-item {
  flex: 1 1 calc(33.3% - 30px);
  padding: 20px;
}
 .packages-list {
    margin: 30px auto 0;
	height: auto;
    padding: 20px 15px 20px 15px;
  }
  .packages-list .package-item.most-popular {
	margin-top: -15px;
	margin-left: 0;
  }
   .section-title p {
    font-size: 18px;
    line-height: 26px;
  }
  .cta {
	background-position: -100px bottom;
	 padding: 120px 0;
  }
  
.cta-content {
  max-width: 368px
}
 .footer-text h2 small {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px){
	.section-row{
		margin-bottom: 30px;
	}
	.section-title{
		margin-bottom: 30px;
	}
	.section-title h1 {
		font-size: 28px;
		line-height: 36px;
	}
	.section-title h2{
		font-size: 26px;
	}
	.hero-content .section-title p{
		font-size: 16px;
	}
	.banner.hero-slider-layout .hero-slide {
		padding: 60px 0 80px;
		min-height: auto;
	}
	.hero-content .btn-default{
		margin-right: 40px;
		margin-bottom: 10px;
	}
	.hero-content .btn-default.btn-highlighted{
		margin: 0;
	}
	.about-us-images{
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 0 0 0;
	}
	.feedback-counter{
		transform: rotate(-180deg) translate(0, 0);
	}
	.feedback-counter p{
        font-size: 12px;
        height: 38px;
        width: 38px;
        margin: 0 0 6px 0;
    }
	.feedback-counter h3{
		font-size: 12px;
        width: calc(100% - 40px);
	}
	.about-img-2{
		max-width: 240px;
	}
	.experience-counter{
        height: 102px;
        width: 102px;
    }
	.experience-counter h3{
        font-size: 22px;
    }
	.experience-counter p{
		font-size: 12px;
		line-height: 1.1em;
	}
	.about-us-content-body{
		gap: 0px;
	}
	.about-us-content-body::before{
		display: none;
	}
	.about-us-content-info{
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.about-us-content-list,
	.about-contact-item:last-child{
        margin-bottom: 20px;
    }
	.about-us-contact-list{
		width: 100%;
	}
	.about-us-content-list ul li{
		margin-bottom: 10px;
	}
	.about-us-content-list ul li::before{
		font-size: 18px;
		top: 3px;
	}
	.about-contact-item,
	.about-contact-item{
		margin-bottom: 20px;
	}
	.about-contact-content h3{
		font-size: 18px;
	}
	
	.service-content h3{
		font-size: 18px;
	}
	
	.post-featured-image{
		margin-bottom: 15px;
	}
	.post-item-content{
		margin-bottom: 10px;
	}
	.post-item-content h3{
		font-size: 18px;
	}
	.footer-logo{
		margin-bottom: 20px;
	}
	.footer-social-links{
		justify-content: start;
		gap: 20px;
	}
	.footer-social-link-title h3{
		font-size: 18px;
	}
	.footer-links h3{
		margin-bottom: 15px;
	}
	.footer-links ul li{
		margin-bottom: 5px;
	}	
	.footer-copyright{
		padding: 15px 0;
	}
	.page-header-box h1{
		font-size: 28px;
		margin-bottom: 5px;
	}
	.page-header-box ol li.breadcrumb-item{
        font-size: 16px;
    }
	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
		font-size: 14px;
	}
	.about-facility-item{
        width: 100%;
    }
	.vision-mission{
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}
	.vision-mission-box{
        padding: 20px;
        gap: 40px;
    }
	.vision-mission-item{
		width: 100%;
	}
	.vision-mission-item::before{
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}
	.vision-mission-item:nth-child(2n + 2)::before{
		display: block;
	}
	.vision-mission-item:last-child::before{
		display: none;
	}	
	.vision-mission-content h3{
		font-size: 18px;
	}
	
	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding-right: 30px;
	}
	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 2px;
	}
	.faq-accordion .accordion-body{
		padding-right: 0;
	}
	.our-faqs-image img{
		aspect-ratio: 1 / 1.26;
	}
	.service-catagery-list h3{
		font-size: 18px;
	}
	.sidebar-cta-content h3{
		font-size: 18px;
	}
	.service-entry p{
		margin-bottom: 15px;
	}
	.service-feature-image{
        margin-bottom: 20px;
    }
	.service-feature-image img{
        aspect-ratio: 1 / 0.7;
    }
	.service-entry-list-image{
		gap: 20px;
	}
	.service-entry-image,
	.service-entry-list{
		width: 100%;
	}
	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}
	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}	
	.post-entry h2,
	h2{
		font-size: 26px;
	}
	
	.contact-us-image img{
        aspect-ratio: 1 / 0.75;
    }
	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }
	.contact-info-item{
		width: 100%;
	}
	
	.footer-copyright {
		text-align: center;
	}
	.footer-copyright .company-logo {
		float: none;
	}
	.designed-text p {
		justify-content: center;
		align-items: center;
	  }
	  .counter-wrap .col-md-2 {
  width: 50%;
}
 .package-item {
    flex: 1 1 calc(33.3% - 30px);
    padding: 20px 10px;
  }
  .packages-list {
	gap: 10px;
  }
  .footer-logo {
  margin: 0 auto;
}
  .cta {
    background-position: center bottom;
    background-size: auto 300px;
	padding: 30px 0 300px;
  }
   .cta-content h2 {
    font-size: 24px;
    line-height: 27px;
	margin-bottom: 15px;
  }
    .cta-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
    .cta-content {
    max-width: 100%;
  }
  .container {
	padding: 0 15px;
  }
   .cta .common-btn {
    padding: 14px 24px;
  }
  .common-btn {
	padding: 16px 27px 16px 27px;
  }
}
@media only screen and (max-width: 600px){
 .package-item {
    flex: 1 1 calc(50% - 30px);
    padding: 20px 10px;
  }
  .packages-list .package-item.most-popular {
	flex: 2 1 calc(100% - 30px);
  }  
}
@media only screen and (max-width: 500px){
	.section-title h1 {
		font-size: 22px;
		line-height: 28px;
	}
	.hero-content .section-title p {
		font-size: 14px;
		line-height: 22px;
	}
	.common-btn {
		font-size: 16px;
		padding: 12px 20px 12px 20px;		
	}
	.common-btn::before {
		width: 14px;
		height: 14px;
		transform: translate(-16px, -50%);		
	}
	
	.service-content,
	.project-content {
		bottom: 15px;
		left: 15px;
		right: 15px;
	}
	.our-Project-nav {
		margin-bottom: 30px;
	}
	.counter-wrap .col-md-2 {
  width: 100%;
}
 .service-content p, .service-btn {
    font-size: 14px;
	line-height: 18px;
  }
  .package-item {
    flex: 1 1 calc(100% - 30px);
    padding: 20px 10px 0;
  }
    .packages-list .package-item.most-popular {
    margin-top: 0;
    margin-left: 0;
  }
   .section-title p {
    font-size: 16px;
    line-height: 24px;
  }
    .cta-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .hero-content .section-title {
  max-width:245px;
}
 .section-title h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 400px){
	.hero-content .common-btn.btn-highlighted {
		margin-left: 0;
		margin-top: 10px;
	} 
	
	.footer-social-link-title h3 {
		font-size: 16px;
	}
	.footer-social-links ul li {
		margin-right: 6px;
	}
	.footer-social-links ul li a {
		width: 30px;
		height: 30px;
	}
	.footer-social-links ul li a svg,
		.footer-social-links ul li a i {
		font-size: 16px;
	}
	.main-footer .footer-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}