@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


:root {
	--main-color: #07a7e3;
	--dark-main-color: #24D2DD;
	--primary-color: #000000;
	--secondary-color: #ee3e25;
	--text-color: #13161a;
	--accent-color: #FE6035;
	--white-color: #FFFFFF;
	--divider-color: #FFFFFF26;
	--dark-divider-color: #E9E9E9;
	--error-color: rgb(230, 87, 87);
	--default-font: "Open Sans", sans-serif;
	--heading-font: "Roboto", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	color: var(--primary-color);
	letter-spacing: 0.8px;
	background-color: var(--white-color);
}

p {
	line-height: 32px;
	margin-bottom: 1.6em;
	color: ;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
	line-height: 1.75em;
	font-family: var(--heading-font);
}

h4 {
	font-size: 22px;
	line-height: 40px;
	font-weight: 700;
	letter-spacing: 1.5px;
	word-wrap: break-word;
}

h5 {
	font-weight: 500;
	text-transform: none;
	font-size: 20px;
	line-height: 1.39em;
	letter-spacing: 1px;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none !important;
	color: var(--primary-color);
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: hidden;
}

.container {
	max-width: 1330px;
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(0, 0, 0, .4);
	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;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	text-transform: uppercase;
	background: var(--main-color);
	color: var(--white-color);
	border-radius: 0px;
	padding: 16px 28px 16px 28px;
	font-family: var(--default-font);
	border: 1px solid var(--main-color) !important;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.btn-default i {
	margin-left: 5px;
}

.btn-default:hover {
	color: var(--main-color);
	border: 1px solid var(--main-color) !important;
	background-color: var(--white-color) !important;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	border-radius: 0%;
	background-color: var(--white-color);
	background-image: url('../images/arrow-orange.html');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	transform: translate(-4px, -50%);
	transition: all 0.4s ease-in-out;
	display: none;
}

.btn-default:hover:before {
	transform: translate(-4px, -50%) rotate(45deg);
	background-size: 12px auto;
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0%;
	border-radius: 0px;
	background: var(--white-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	height: 100%;
}

.sisf-m-button .sisf-m-icon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
	background-color: transparent;
}

.btn-default.btn-highlighted:before {
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.html');
}

.btn-default.btn-highlighted::after {
	background-color: var(--primary-color);
}

.readmore-btn {
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.readmore-btn img {
	max-width: 15px;
	transition: all 0.3s ease-in-out;
}

#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(--accent-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);
	}
}

.section-row {
	margin-bottom: 30px;
}

.section-row .section-title {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 0;
}

.section-btn {
	text-align: end;
}

.section-title {
	margin-bottom: 40px;
}

.section-title .sisf-m-subtitle {
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	font-family: var(--default-font);
	line-height: 24px;
	letter-spacing: 3.2px;
	margin-bottom: 10px;
}

.section-title h1 {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
	text-transform: none;
	letter-spacing: 2.7px;
	margin-bottom: 30px;
	color: #000;
}

.section-title h2 {
	text-transform: none;
	margin-bottom: 20px;
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: 1.95px;
	position: relative;
	z-index: 1;
}

.section-title h2::after {
	content: "";
	position: absolute;
	left: 0;
	background: currentColor;
	width: 118px;
	height: 1px;
	bottom: -10px;
}

.sisf-title-center h2::after {
	right: 0;
	margin: auto;
}

.section-title .sisf-m-title i {
	font-size: 28px;
	color: var(--main-color);
	line-height: 1;
	display: inline-block;
	position: relative;
	top: -22px;
	left: -10px;
	transform: rotate(57deg);
}

.section-title .sisf-e-colored {
	color: var(--main-color);
}

.section-title .sisf-e-decorated {
	position: relative;
}

.section-title .sisf-e-decorated::before {
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	bottom: 15px;
	margin: auto;
	background: var(--main-color);
	position: absolute;
	z-index: 0;
}

.section-title .spin-img img {
	vertical-align: middle;
}

.section-title p {
	margin-top: 25px;
	margin-bottom: 0;
}

.section-title .text-heading {
	line-height: 65px;
	letter-spacing: 2px;
	font-weight: 900;
	text-shadow: rgba(0, 0, 0, 0.75) 0px 4px 64px;
	font-size: 45px;
	text-transform: none !important;
	color: var(--white-color) !important;
}

.section-title .text-heading .bottom-line {
	border-bottom: 1px solid var(--main-color);
	line-height: 1, 3;
}

.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;
}

.mobile-none {
	display: block !important;
}

.mobile-block {
	display: none !important;
}

.section {
	padding: 70px 0px 70px 0px;
}

.btn-default-new {
	padding: 15px 28px;
	border: 1px solid var(--main-color);
	line-height: 24px;
	letter-spacing: 0px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 0px;
	color: var(--text-color);
	text-transform: uppercase;
	background: transparent;
	display: inline-block;
}

.full-width-btn {
	width: 100%
}

.btn-default-new i {
	margin-left: 5px;
	transform: rotate(-40deg);
	transition: all ease 0.5s;
}

.btn-default-new:hover,
.btn-default-new:focus {
	background: var(--main-color);
	color: var(--white-color);
	transition: all ease 0.5s;
}

.btn-default-new:hover i {
	transition: all ease 0.5s;
}

.float {
	transition: transform 0.3s ease-in-out;
	animation: smoothupDown 5s infinite ease-in-out;
	transition: transform 0.3s ease-in-out;
}

@keyframes smoothupDown {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

/* ====================== 
      BUZZ ANIMATION
=========================*/
.image-container {
	display: inline-block;
	overflow: hidden;
}

.image-container img {
	transition: transform 0.1s ease-in-out;
}

.image-container:hover img {
	animation: buzz 0.15s infinite alternate;
}

@keyframes buzz {
	0% {
		transform: translateX(2px) rotate(1deg);
	}

	50% {
		transform: translateX(-2px) rotate(-1deg);
	}

	100% {
		transform: translateX(2px) rotate(1deg);
	}
}

.animate-hover {
	transition: transform 0.3s ease-in-out;
}

.animate-hover:hover {
	animation: upDown 1.2s infinite alternate ease-in-out;
}

@keyframes upDown {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-10px);
	}
}


/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	padding: 250px 0;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-video .hero-bg-video {
	position: absolute;
	top: 15.3%;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
}

.hero-video .hero-bg-video::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 42%, rgba(0, 0, 0, 0.78) 44%, rgba(215, 215, 215, 0.1) 100%);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-video .hero-bg-video video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-main {
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide {
	position: relative;
	padding: 60px 0 60px 0;
	min-height: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero.hero-slider:before {
	display: none;
}

.hero.hero-slider-main .hero-slider-layout {
	position: relative;
	z-index: 2;
}

.hero.hero-slider-main .hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0%;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-main .hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-main .hero-slider-layout .hero-slide .hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

.swiper .swiper-slide {
	position: relative;
}

.swiper .swiper-slide .mask-group {
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 5;
}

.swiper-slide .header-contact-info {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40%;
	top: 59%;
	transform: rotate(-90deg);
	left: -16%;
	z-index: 3;
}

.swiper-slide .header-contact-info .contact-number::before {
	content: '';
	position: absolute;
	width: 200px;
	height: 1px;
	background: var(--white-color);
	left: 0;
	top: 48%;
}

.swiper-slide .header-contact-info .contact-number::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 1px;
	background: var(--white-color);
	right: 0;
	top: 48%;
}

.hero-slider-layout .hero-pagination {
	position: absolute;
	text-align: center;
	z-index: 2;
	bottom: 80px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: block;
	width: auto;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 22px;
	height: 22px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 12px;
	position: relative;
	border: 2px solid transparent;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet:before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--main-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50px;
	opacity: 0
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: transparent;
	border-color: var(--main-color);
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active:before {
	opacity: 1
}

.hero-content {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	z-index: 10;
}

.hero-content .section-title p {
	width: 100%;
	max-width: 640px;
	margin-top: 20px;
	color: #000;
	padding-bottom: 30px;
	font-size: 20px;
}

.hero-content .btn-slider {
	background: var(--main-color);
	line-height: 30px;
	letter-spacing: 0.8px;
	font-family: var(--default-font);
	border: 1px solid var(--main-color);
	font-weight: 500;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 100px;
	color: var(--white-color);
	text-transform: uppercase;
	transition: all ease 0.5s;
}

.hero-content .btn-slider:hover {
	background-color: var(--white-color) !important;
	color: var(--main-color);
	transition: all ease 0.5s;
}

.hero-content .btn-slider i {
	margin-left: 5px;
	transform: rotate(-40deg);
}

.hero-content-body .btn-default.btn-highlighted {
	margin-left: 30px;
}

.down-arrow a {
	position: absolute;
	top: auto;
	left: 50%;
	bottom: 30px;
	width: 30px;
	height: 50px;
	border: 2px solid var(--white-color);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%);
	animation: jumpInfinite 1.5s infinite;
	transition: all 0.3s ease-in-out;
	z-index: 2;
}

.down-arrow a:hover {
	border-color: var(--accent-color);
}

.down-arrow a i {
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.down-arrow a:hover i {
	color: var(--accent-color);
}

@keyframes jumpInfinite {
	0% {
		margin-bottom: 0;
	}

	50% {
		margin-bottom: 20px;
	}

	100% {
		margin-bottom: 0;
	}
}

.hero .home-slide .section-title h1 {
	color: var(--white-color);
	position: relative;
	padding: 50px 0 0 100px;
	z-index: 3;
	text-transform: uppercase !important;
}

.hero .home-slide .slider-image {
	position: relative;
	z-index: 4;
	padding-bottom: 60px;
}

.hero .home-slide p {
	padding-top: 0 !important;
}

.hero-slider-main .swiper-button-prev,
.hero-slider-main .swiper-button-next {
	display: block;
	width: 40px;
	height: 40px;
	display: flex;
	background-color: var(--primary-color);
	justify-content: center;
	align-items: center;
	border-radius: 0%;
	transition: 0.3s ease-in-out;
}

.hero-slider-main .swiper-button-prev::after,
.hero-slider-main .swiper-button-next::after {
	color: var(--white-color);
	line-height: 70px;
	font-size: 20px;
	font-weight: 900;
}

.hero-slider-main .swiper-button-prev:hover,
.hero-slider-main .swiper-button-next:hover {
	background: var(--main-color);
	transition: 0.3s ease-in-out;
}



.home2 .hero-content h1,
.home2 .hero-content p,
.home3 .hero-content h1,
.home3 .hero-content p {
	text-shadow: none !important;
}

.home3 .hero-content {
	padding-left: 60px;
}


.home3 .swiper-button-prev,
.home3 .swiper-button-next {
	width: 50px !important;
	background: rgba(0, 0, 0, 0.7);
	height: 50px !important;
	top: 50%;
}

.home3 .swiper-button-prev::after,
.home3 .swiper-button-next::after {
	color: var(--white-color);
	line-height: 70px;
	font-size: 17px;
}

.home3 .swiper-button-prev {
	left: 2%;
}

.home3 .swiper-button-next {
	right: 2%;
}

/* =======================================
   11 Customer Reviews Section
========================================== */
.customer-reviews {
	background-color: #F2F0EE66;
	padding-bottom: 140px;
}

.testimonial-slider .sisf-e-inner {
	background-color: var(--white-color);
	padding: 40px;
}

.testimonial-slider .swiper-slide-active .sisf-e-quote i {
	color: var(--main-color) !important;
}

.testimonial-slider .sisf-e-quote i {
	color: rgb(216, 223, 222);
	font-size: 65px;
}

.sisf-m-star i {
	color: var(--secondary-color);
	font-size: 20px;
}

.testimonial-slider h3 {
	font-size: 18px;
}

.testimonial-slider h4 {
	font-weight: 500;
}

.testimonial-slider .swiper-pagination {
	bottom: -75px;
}

.testimonial-slider .swiper-pagination-bullet {
	background: transparent;
	margin: 0 20px;
}

.testimonial-slider .swiper-pagination-bullet::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #bdbdbd;
	display: inline-block !important;
	position: absolute;
	z-index: 3;
}

.testimonial-slider .swiper-pagination-bullet-active::before {
	background: var(--main-color);
}

/* =======================================
  12 Appointment Section
========================================== */
.appointment {
	background-image: url("../images/get_appointment_img.png");
	background-position: top right;
	background-repeat: no-repeat;
	background-size: cover;
}

.schedule {
	margin-top: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #FFFFFF33;
}

.schedule .sisf-m-title {
	font-size: 22px;
}

.form-section {
	background: var(--white-color);
	padding: 40px;
}

.form-section .form-control {
    font-size: 14px !important;
    padding: 15px 22px !important;
    border: 1px solid #DDDDDD !important;
    border-radius: 0;
    color: #666666;
    box-shadow: none !important;
    outline: none;
    height: auto !important;
}

.form-section label {
	font-size: 14px;
	letter-spacing: 1.4px;
	color: #666666;
	text-transform: uppercase;
}


.comfort-bg {
	background-image: url("../images/your_comfort_bg-1.png");
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 2;
}

/* ======================================
  17 home3 Our Services Section
======================================== */
.service-category-list {
	display: flex;
	flex-wrap: wrap;
}

.service-category {
	width: 20%;
	padding: 10px;
}

.service-category .sisf-e-inner {
	position: relative;
}

.service-category .sisf-e-title-link {
	font-size: 22px !important;
	font-family: var(--heading-font) !important;
}

.service-category .sisf-e-title {
	display: flex;
	justify-content: center;
}

.service-category .sisf-e-title-link {
	background: var(--white-color);
	position: absolute;
	bottom: 20px;
	padding: 10px;
	width: 85%;
}

/* =================================
  09 Years Of Experience Section
==================================== */
.sisf-sis-part {
	padding: 25px;
	border-radius: 20px;
	background-color: #222121;
	margin-top: -60px;
	position: relative;
	z-index: 2;
}

.sisf-sis-part .sisf-sis-shortcode {
	border-right: 1px solid #FFFFFF33;
	padding: 20px 0;
}

.sisf-sis-counter {
	border-right: 1px solid #0000001A;
}

.counter-title h2,
.counter-content h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.counter-title h2 span {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 2.2px;
}

.counter-content h3 {
	font-size: 22px;
}

.counter-item .sisf-m-icon {
	width: 35px;
	height: 35px;
	position: absolute;
	top: 20px;
	left: 0;
	display: inline-block;
	border-radius: 50%;
	background: #ee88668c;
	z-index: -1;
}

.appointment-part {
	    background-color: #0184b5;
	background-size: cover;
	margin-top: 0px;
}

.appointment-part h3 {
	font-size: 34px;
	line-height: 45px;
	font-weight: 600;
	letter-spacing: 1.7px;
}

.book-button {
	background-color: var(--secondary-color) !important;
	transition: 0.4s ease-in-out;
	border: 1px solid var(--secondary-color) !important;
}

.book-button:hover {
	color: var(--secondary-color) !important;
	transition: 0.4s ease-in-out;
	border: 1px solid var(--secondary-color) !important;
}
.sisf-m-icon-holder img{
    filter: brightness(0) saturate(100%) invert(51%) sepia(95%) saturate(2212%) hue-rotate(165deg) brightness(97%) contrast(95%);
}

.testimonial-slider .sisf-e-media-image img{
	height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 100px;
} 



/* ================================
   MOBILE RESPONSIVE CSS
================================ */

@media only screen and (max-width: 991px){

	.section{
		padding: 60px 0;
	}

	.container,
	.container-fluid{
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-title{
		margin-bottom: 30px;
		text-align: center;
	}

	.section-title h1{
		font-size: 34px;
		line-height: 46px;
		letter-spacing: 1px;
	}

	.section-title h2{
		font-size: 30px;
		line-height: 42px;
		letter-spacing: 1px;
	}

	.section-title h2::after{
		left: 0;
		right: 0;
		margin: auto;
	}

	.section-title p{
		margin-top: 20px;
	}

	.hero-slider-layout .hero-slide{
		padding: 120px 0 80px;
		min-height: auto;
	}

	.home3 .hero-content{
		padding-left: 0;
		text-align: center;
	}

	.hero-content .section-title p{
		font-size: 16px;
		line-height: 28px;
		max-width: 100%;
		padding-bottom: 20px;
	}

	.hero.hero-slider-main .hero-slider-layout .hero-slide .hero-slider-image img{
		object-position: center;
	}

	.home3 .swiper-button-prev,
	.home3 .swiper-button-next{
		width: 40px !important;
		height: 40px !important;
	}

	.home3 .swiper-button-prev{
		left: 10px;
	}

	.home3 .swiper-button-next{
		right: 10px;
	}

	.service-category{
		width: 50%;
		padding: 10px;
		margin-top: 0 !important;
	}

	.service-category .sisf-e-title-link{
		font-size: 18px !important;
		padding: 10px 8px;
		width: 90%;
	}

	.counter-box{
		margin-bottom: 30px;
	}

	.sisf-sis-counter{
		border-right: 0;
	}

	.counter-title h2 span{
		font-size: 36px;
	}

	.counter-content h3{
		font-size: 20px;
		line-height: 30px;
	}

	.appointment-part{
		padding: 40px 25px;
		text-align: center;
	}

	.appointment-part .service.img{
		margin-bottom: 30px;
	}

	.appointment-part h3{
		font-size: 28px;
		line-height: 40px;
	}

	.testimonial-slider .sisf-e-inner{
		padding: 30px;
	}

	.testimonial-slider h3{
		font-size: 16px;
		line-height: 28px;
	}

	.customer-reviews{
		padding-bottom: 100px;
	}

	.form-section{
		padding: 30px;
	}
}


/* ================================
   MOBILE
================================ */

@media only screen and (max-width: 767px){

	body{
		font-size: 15px;
		line-height: 28px;
	}

	p{
		line-height: 28px;
	}

	.mobile-none{
		display: none !important;
	}

	.mobile-block{
		display: block !important;
	}

	.section{
		padding: 50px 0;
	}

	.section-title{
		margin-bottom: 25px;
		text-align: center;
	}

	.section-title .sisf-m-subtitle{
		font-size: 14px;
		line-height: 22px;
		letter-spacing: 2px;
	}

	.section-title h1{
		font-size: 28px;
		line-height: 40px;
		letter-spacing: 0.5px;
		margin-bottom: 20px;
	}

	.section-title h2{
		font-size: 26px;
		line-height: 38px;
		letter-spacing: 0.5px;
		margin-bottom: 15px;
	}

	.section-title h2::after{
		width: 80px;
	}

	.hero-slider-layout .hero-slide{
		padding: 100px 0 70px;
	}

	.hero-content{
		text-align: center;
	}

	.hero-content .section-title p{
		font-size: 15px;
		line-height: 28px;
	}

	.btn-default,
	.btn-default-new{
		font-size: 14px;
		padding: 14px 24px;
	}

	.home3 .swiper-button-prev,
	.home3 .swiper-button-next{
		display: none;
	}

	.service-category-list{
		display: flex;
		flex-wrap: wrap;
	}

	.service-category{
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}

	.service-category .sisf-e-title-link{
		font-size: 17px !important;
		width: 88%;
		bottom: 15px;
	}

	.quality-treatment img{
		margin-bottom: 30px;
		width: 100%;
	}

	.counter-box{
		margin-bottom: 25px;
	}

	.counter-title h2 span{
		font-size: 32px;
	}

	.counter-content h3{
		font-size: 18px;
		line-height: 28px;
	}

	.appointment-part{
		padding: 30px 20px;
	}

	.appointment-part h3{
		font-size: 24px;
		line-height: 34px;
		letter-spacing: 0.5px;
	}

	.book-button{
		margin-top: 20px;
	}

	.testimonial-slider .sisf-e-inner{
		padding: 25px;
	}

	.testimonial-slider .sisf-e-quote i{
		font-size: 45px;
	}

	.testimonial-slider h3{
		font-size: 15px;
		line-height: 26px;
	}

	.testimonial-slider h4{
		font-size: 18px;
		line-height: 28px;
	}

	.testimonial-slider .sisf-e-media-image img{
		width: 65px;
		height: 65px;
	}

	.customer-reviews{
		padding-bottom: 90px;
	}

	.form-section{
		padding: 25px 20px;
	}

	.form-section .form-control{
		padding: 14px 18px !important;
		font-size: 14px !important;
	}

	.hero-slider-layout .hero-pagination{
		bottom: 25px;
	}

	.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
		width: 14px;
		height: 14px;
		margin: 0 6px;
	}
}


/* ================================
   SMALL MOBILE
================================ */

@media only screen and (max-width: 480px){

	.section-title h1{
		font-size: 24px;
		line-height: 34px;
	}

	.section-title h2{
		font-size: 22px;
		line-height: 32px;
	}

	.hero-slider-layout .hero-slide{
		padding: 40px 0px;
	}

	.btn-default,
	.btn-default-new{
		width: 100%;
		text-align: center;
	}

	.appointment-part h3{
		font-size: 21px;
		line-height: 30px;
	}

	.testimonial-slider .sisf-e-inner{
		padding: 20px;
	}

	.testimonial-slider .sisf-e-bottom{
		flex-direction: column;
		text-align: center;
	}

	.testimonial-slider .sisf-e-media-image{
		margin-right: 0 !important;
		margin-bottom: 15px;
	}

	.counter-title h2 span{
		font-size: 28px;
	}

	.counter-content h3{
		font-size: 16px;
	}
}
@media only screen and (max-width: 767px){

	.container-fluid.p-0{
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

}