/*#region Reset CSS */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

html,
body {
	height: 100%;
}

body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

#root,
#__next {
	isolation: isolate;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*#endregion Reset CSS */

/*#region GENERAL*/

.divider {
	display: inline-block;
	height: 3px;
	width: 75px;
	padding-right: 15px;
	background-color: #333;
	vertical-align: middle;
}

.bg-lightblue {
	background-color: #56cfe1;
}

#btnScrollTop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #ff87ab;
	color: #fff;
	cursor: pointer;
	padding: 0;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	line-height: inherit;
	text-align: center;
}

#btnScrollTop:hover {
	background: #212529;
	color: #fff;
}

.button-pinky {
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	outline: none;
	border: 2px solid #ffcad4;
	background: #ffcad4;
	border-radius: 50rem;
	color: #333;
}

.button-pinky:hover {
	background: #ffacc5;
	border-color: #ffacc5;
	color: #333;
}

.btn-200 {
	width: 200px;
	padding: 15px 0;
	font-weight: bold;
	cursor: pointer;
}

.button-black {
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	outline: none;
	border: 2px solid #333;
	background: #333;
	color: #fff;
	padding: 15px 20px;
}

.button-black:hover {
	background: #fff;
	border-color: #fff;
	color: #333;
}

/*#endregion GENERAL*/

/*#region NAVBAR */
.navbar {
	padding: 30px 0;
}

.navbar-nav {
	align-items: center;
}

#navbarsMenu .nav-link {
	font-weight: 500;
	color: #333;
	position: relative;
}

#navbarsMenu .nav-item {
	padding: 0px 10px;
}

#navbarsMenu .nav-item:first-child {
	padding: 0;
}

#navbarsMenu .nav-item:last-child {
	padding-left: 10px;
	padding-right: 0;
	align-self: center;
}

/* Remove border from toggler */
.navbar-toggler {
	border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
	outline: none !important;
	box-shadow: none !important;
	border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
	width: 30px;
	height: 3px;
	background-color: #333;
	display: block;
	transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
	margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
	opacity: 0;
	filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
	opacity: 1;
	filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
	background-color: #333;
}

.btn-book-appt {
	border-radius: 0;
	padding: 10px 15px;
}

.btn-book-appt a {
	color: #fff;
	text-decoration: none;
}

.btn-book-appt:hover a {
	color: #333;
}

.btn-book-appt:hover {
	border-color: #333;
}

@media (min-width: 992px) {
	.nav-link:after {
		content: '';
		width: 0px;
		height: 2px;
		position: absolute;
		top: 100%;
		left: 0;
		background: #ffcad4;
		transition: 500ms;
	}

	.nav-link:hover:after {
		width: 100%;
	}
}

@media (max-width: 991.99px) {
	#navbarsMenu {
		background-color: #fff;
		transition: height 0.3s linear;
		margin-top: -5px;
		padding: 20px;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 100;
	}

	#navbarsMenu .navbar-nav {
		padding: 20px;
		border: 1.5px solid #333;
	}

	#navbarsMenu .nav-item {
		padding: 0;
		margin-top: 5px;
		width: 100%;
	}

	#navbarsMenu .nav-item:last-child {
		padding: 0;
		align-self: flex-start;
	}

	#navbarsMenu .nav-link {
		padding: 12px 10px;
		margin-top: 3px;
	}

	#navbarsMenu .nav-link:hover {
		background-color: #ffcad4;
		border-radius: 3px;
		-webkit-transition: background-color 500ms linear;
		-ms-transition: background-color 500ms linear;
		transition: background-color 500ms linear;
	}
}

/*#endregion NAVBAR*/

/*#region SECTION*/
.section-xxs {
	padding: 12px 0;
}

.section-xs {
	padding: 25px 0;
}

.section-xs-type-1 {
	padding: 30px 0;
}

.section-sm {
	padding: 50px 0;
}

.section-md {
	padding: 80px 0;
}

.section-lg,
.section-xl {
	padding: 100px 0;
}

.section-page-title .page-title {
	padding: 80px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 50%;
	background-color: #ffeaf9;
}

.section-page-title .page-breadcrumb {
	padding: 25px 0;
	background-color: #ffcad4;
}

.section-page-title .page-breadcrumb .breadcrumb-item:not(.active) a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
}

.section-page-title .page-breadcrumb .breadcrumb {
	margin: 0;
	font-size: 1.2rem;
}

@media (max-width: 991.99px) {

	section.section-sm:first-of-type,
	section.section-md:first-of-type,
	section.section-lg:first-of-type,
	section.section-xl:first-of-type,
	section.section-xxl:first-of-type {
		padding-top: 40px;
	}
}

/* @media (min-width: 768px) {
		.section-sm { padding: 60px 0; }

		.section-md { padding: 70px 0; }

		.section-lg { padding: 85px 0; }
	}

	@media (min-width: 992px) {
		.section-md { padding: 80px 0 90px; }

		.section-lg { padding: 100px 0; }

		.section-xl { padding: 120px 0; }
	} */

@media (min-width: 1200px) {
	.section-lg {
		padding: 120px 0;
	}

	.section-xl {
		padding: 140px 0;
	}
}

/*#endregion SECTION*/

/*#region TYPOGRAPHY*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 700;
	margin: 0;
	color: #333;
}

h1 {
	font-size: 30px;
	line-height: 1.5;
}

h2 {
	font-size: 27px;
	line-height: 1.5;
}

h3 {
	font-size: 24px;
	line-height: 1.5;
}

h4 {
	font-size: 1.2rem;
	line-height: 1.5;
}

h5 {
	font-size: 1rem;
	line-height: 1.4;
}

h6 {
	font-size: 0.85rem;
	line-height: 1.4;
}

p {
	color: #333;
	font-size: 1.2rem;
	margin: 0;
	line-height: 1.4;
}

.f-playfair {
	font-family: "Playfair Display", "Times New Roman", Times, serif;
}

.f-lato {
	font-family: "Lato", "Times New Roman", Times, serif;
}

.f-cormorant {
	font-family: "Cormorant Garamond", Times, serif;
}

h5.f-playfair,
h5.f-cormorant {
	line-height: 1.5;
}

h6.f-playfair,
h6.f-cormorant {
	line-height: 1.5;
}

@media (min-width: 768px) {
	h1 {
		font-size: 48px;
		line-height: 1.35;
	}

	h2 {
		font-size: 32px;
		line-height: 1.4;
	}

	h3 {
		font-size: 27px;
		line-height: 1.5;
	}

	h4 {
		font-size: 24px;
		line-height: 1.5;
	}
}

@media (min-width: 1200px) {
	h1 {
		font-size: 60px;
		line-height: 1.2;
	}

	h2 {
		font-size: 48px;
		line-height: 1.35;
	}

	h3 {
		font-size: 32px;
		line-height: 1.4;
	}

	h4 {
		font-size: 24px;
		line-height: 1.4;
	}

	h1.f-playfair,
	h1.f-cormorant {
		line-height: 1.3;
	}

	h2.f-playfair,
	h2.f-cormorant {
		line-height: 1.4;
	}

	h3.f-playfair,
	h3.f-cormorant {
		line-height: 1.5;
	}

	h4.f-playfair,
	h4.f-cormorant {
		line-height: 1.5;
	}
}

/*#endregion TYPOGRAPHY*/

/*#region LOGO*/
.logo {
	height: 35px;
}

@media (min-width: 1200px) {
	.logo {
		height: 50px;
	}
}

@media (min-width: 768px) {
	.logo {
		height: 40px;
	}
}

/*#endregion LOGO*/

/*#region BANNERS*/
#headerBanner .carousel-control-next,
#headerBanner .carousel-control-prev {
	width: 7%;
}

#headerBanner .carousel-control-next-icon,
#headerBanner .carousel-control-prev-icon {
	width: 1.5rem;
	height: 1.5rem;
}

/*#endregion BANNERS*/

/*#region SECTION 1*/
.section-1 img {
	position: relative;
	z-index: 2;
	margin: auto;
}

.section-1 .divider {
	background-color: #ff87ab;
	margin-right: 15px;
}

.section-1 .section-title {
	position: relative;
	background-color: #fbe6ed;
	padding: 1rem;
	margin-top: 70px;
}

.section-1 .section-content {
	padding: 30px 0 0 0;
}

.section-1 .circle-400 {
	background-color: #ffcad4;
	border-radius: 50%;
	animation-name: circle-400;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-timing-function: linear;
}

.section-1 .circle-100 {
	background-color: #ffcad4;
	border-radius: 50%;
	animation-name: circle-100;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-timing-function: linear;
}

.section-1 .circle-400 {
	width: 200px;
	height: 200px;
	position: absolute;
	right: 0;
	bottom: -60px;
	z-index: 1;
}

@keyframes circle-400 {
	from {
		bottom: -60px;
	}

	to {
		bottom: -50px;
	}
}

.section-1 .circle-100 {
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: -20px;
	z-index: 3;
}

@keyframes circle-100 {
	from {
		top: -20px;
	}

	to {
		top: -10px;
	}
}

@media (min-width: 576px) {


	.section-1 .circle-400 {
		width: 230px;
		height: 230px;
		position: absolute;
		right: 0;
		bottom: -55px;
		z-index: 1;
	}

	@keyframes circle-400 {
		from {
			bottom: -55px;
		}

		to {
			bottom: -45px;
		}
	}

	.section-1 .circle-100 {
		width: 100px;
		height: 100px;
		position: absolute;
		left: 0;
		top: -20px;
		z-index: 3;
	}

	@keyframes circle-100 {
		from {
			top: -20px;
		}

		to {
			top: -10px;
		}
	}
}

@media (min-width: 768px) {
	.section-1 img {
		margin: unset;
	}

	.section-1 .section-title {
		padding: 1.5rem;
		margin-left: 0;
		margin-top: 40px;
		z-index: 2;
	}

	.section-1 .section-content {
		padding: 25px 0 0 0;
	}

	.section-1 .circle-400 {
		width: 200px;
		height: 200px;
		position: absolute;
		right: 0;
		bottom: -40px;
		z-index: 1;
	}

	@keyframes circle-400 {
		from {
			bottom: -40px;
		}

		to {
			bottom: -30px;
		}
	}

	.section-1 .circle-100 {
		width: 100px;
		height: 100px;
		position: absolute;
		left: -20px;
		top: -20px;
		z-index: 3;
	}

	@keyframes circle-100 {
		from {
			top: -20px;
		}

		to {
			top: -10px;
		}
	}
}

@media (min-width: 992px) {
	.section-1 .section-title {
		padding: 2rem;
		margin-left: -150px;
		margin-top: 50px;
		z-index: 2;
	}

	.section-1 .section-content {
		padding: 25px 0 0 25px;
	}

	.section-1 .circle-400 {
		width: 350px;
		height: 350px;
		position: absolute;
		right: 0;
		bottom: -70px;
		z-index: 1;
	}

	@keyframes circle-400 {
		from {
			bottom: -70px;
		}

		to {
			bottom: -60px;
		}
	}
}

@media (min-width: 1200px) {
	.section-1 .section-title {
		padding: 3rem;
		margin-left: -250px;
		margin-top: 50px;
		z-index: 2;
	}

	.section-1 .section-content {
		padding: 50px 0 0 50px;
	}

	.section-1 .circle-400 {
		width: 400px;
		height: 400px;
		position: absolute;
		right: 0;
		bottom: -50px;
		z-index: 1;
	}

	@keyframes circle-400 {
		from {
			bottom: -50px;
		}

		to {
			bottom: -40px;
		}
	}
}

/*#endregion SECTION */

/*#region SECTION 2*/
.section-2 {
	background-image: url(../images/slider2.jpg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

.section-2 .divider {
	background-color: #ff87ab;
	width: 130px;
}

.name-item {
	text-decoration: none;
}

.image-item {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}


.image-item:hover .overlay,
.gallery-img:hover .overlay {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s linear 0s, opacity 300ms;
}

.image-item .frame:before {
	position: absolute;
	content: '';
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 2px solid #fff;
	z-index: 2;
	cursor: pointer;
}

.image-item .overlay,
.gallery-img .overlay {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 300ms, opacity 300ms;
}

.image-item .overlay>.fill,
.gallery-img .overlay>.fill {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 5;
}

.image-item .overlay>.fill>.icon-zoom,
.gallery-img .overlay>.fill>.icon-zoom {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-item .overlay:before,
.gallery-img .overlay:before {
	background: rgb(255, 240, 245);
	background: linear-gradient(to right top, #dd87a5, #f49598, #ffa88b, #ffc083, #f5da87);
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0.5;
}

.icon-zoom i {
	color: #333;
}

/*#endregion SECTION 2*/

/*#region SECTION 3*/
.section-3 .divider {
	background-color: #ff87ab;
	margin-right: 15px;
}

.section-3 .box-images-div {
	text-align: -webkit-center;
}

.section-3 .section-content {
	padding: 30px 0 0 0;
}

.section-3 .box-images {
	position: relative;
	max-width: 510px;
	min-height: 550px;
}

.section-3 .box-images-item {
	border: 10px solid #fff0f5;
	background-size: cover;
	background-repeat: no-repeat;
}

.section-3 .box-images-1 {
	position: absolute;
	width: 280px;
	height: 280px;
	left: 0;
	top: 90px;
	background-image: url(../images/box1.jpg);
	z-index: 4;
	-webkit-animation-name: box1;
	animation-name: box1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
}

@keyframes box1 {
	from {
		left: 0;
	}

	to {
		left: 10px;
	}
}

.section-3 .box-images-2 {
	position: absolute;
	width: 280px;
	height: 350px;
	left: 130px;
	top: 0;
	background-image: url(../images/box2.jpg);
	z-index: 3;
	-webkit-animation-name: box2;
	animation-name: box2;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
}

@keyframes box2 {
	from {
		top: 0;
	}

	to {
		top: 10px;
	}
}

.section-3 .box-images-3 {
	position: absolute;
	width: 280px;
	height: 380px;
	right: 0;
	top: 110px;
	background-image: url(../images/box3.jpg);
	z-index: 2;
	-webkit-animation-name: box3;
	animation-name: box3;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
}

@keyframes box3 {
	from {
		right: 0;
	}

	to {
		right: 10px;
	}
}

.section-3 .box-images-4 {
	position: absolute;
	width: 280px;
	height: 350px;
	left: 80px;
	top: 210px;
	background-image: url(../images/box4.jpg);
	z-index: 1;
	-webkit-animation-name: box4;
	animation-name: box4;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
}

@keyframes box4 {
	from {
		top: 210px;
	}

	to {
		top: 200px;
	}
}

@media(max-width: 576px) {
	.section-3 .box-images {
		min-height: 530px;
	}

	.section-3 .box-images-1 {
		width: 250px;
		height: 250px;
		left: 15px;
		top: 90px;
	}

	.section-3 .box-images-2 {
		width: 250px;
		height: 320px;
		left: 115px;
		top: 0;
	}

	.section-3 .box-images-3 {
		width: 250px;
		height: 350px;
		right: 15px;
		top: 110px;
	}

	.section-3 .box-images-4 {
		width: 250px;
		height: 320px;
		left: 95px;
		top: 210px;
	}

	@keyframes box1 {
		from {
			left: 15px;
			top: 90px;
		}

		to {
			left: 25px;
			top: 100px;
		}
	}

	@keyframes box2 {
		from {
			top: 0;
		}

		to {
			top: 10px;
		}
	}

	@keyframes box3 {
		from {
			right: 15px;
			top: 110px;
		}

		to {
			right: 25px;
			top: 120px;
		}
	}

	@keyframes box4 {
		from {
			left: 95px;
			top: 210px;
		}

		to {
			left: 105px;
			top: 200px;
		}
	}
}

@media(max-width: 500px) {
	.section-3 .box-images {
		min-height: 480px;
	}

	.section-3 .box-images-1 {
		width: 200px;
		height: 200px;
		left: 15px;
		top: 90px;
	}

	.section-3 .box-images-2 {
		width: 200px;
		height: 270px;
		left: 115px;
		top: 0;
	}

	.section-3 .box-images-3 {
		width: 200px;
		height: 300px;
		right: 15px;
		top: 110px;
	}

	.section-3 .box-images-4 {
		width: 200px;
		height: 270px;
		left: 95px;
		top: 210px;
	}

	@keyframes box1 {
		from {
			left: 15px;
			top: 90px;
		}

		to {
			left: 25px;
			top: 100px;
		}
	}

	@keyframes box2 {
		from {
			top: 0;
		}

		to {
			top: 10px;
		}
	}

	@keyframes box3 {
		from {
			right: 15px;
			top: 110px;
		}

		to {
			right: 25px;
			top: 120px;
		}
	}

	@keyframes box4 {
		from {
			left: 95px;
			top: 210px;
		}

		to {
			left: 105px;
			top: 200px;
		}
	}
}

/*#endregion SECTION 3*/

/*#region SECTION 4*/
.section-testimonials .divider {
	background-color: #ff87ab;
	width: 130px;
}

.section-testimonials {
	padding-top: 0;
}

.section-testimonials #testimonials {
	background: #ffcad4;
	max-width: 900px;
	margin: auto;
}

.section-testimonials #testimonials .carousel-caption {
	position: initial;
	z-index: 10;
	padding: 5rem 8rem;
	color: rgba(78, 77, 77, 0.856);
	text-align: center;
	font-style: italic;
	font-weight: bold;
	line-height: 2rem;
}

.section-testimonials #testimonials .carousel-caption img {
	width: 6rem;
	border-radius: 5rem;
	margin: 2rem auto 2rem;
}

.section-testimonials #testimonials .image-caption {
	font-style: normal;
	font-size: 1rem;
	font-family: "Lato", "Times New Roman", Times, serif;
}

.section-testimonials #testimonials i {
	background-color: #ff87ab;
	color: #fff;
	padding: 1.4rem;
}

.section-testimonials #testimonials .rating i {
	padding: 0;
	background: transparent;
	color: #ffe435;
}

.section-testimonials #testimonials .carousel-control-prev {
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.section-testimonials #testimonials .carousel-control-next {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.section-testimonials #testimonials .carousel-control-prev,
.section-testimonials #testimonials .carousel-control-next {
	transition: none;
	opacity: unset;
	text-decoration: none;
}

@media(max-width:991.99px) {
	.section-testimonials #testimonials .carousel-caption {
		position: initial;
		z-index: 10;
		padding: 3rem 5rem;
		color: rgba(78, 77, 77, 0.856);
		text-align: center;
		font-size: 0.7rem;
		font-style: italic;
		font-weight: bold;
		line-height: 1.5rem;
	}
}

@media(max-width:767.99px) {
	.section-testimonials #testimonials .carousel-caption img {
		width: 4rem;
		border-radius: 4rem;
	}

	.section-testimonials #testimonials .image-caption {
		font-style: normal;
	}

	.section-testimonials #testimonials i {
		padding: 0.8rem;
	}
}

@media(max-width: 575.99px) {
	.section-testimonials #testimonials .carousel-caption {
		padding: 3rem 4rem;
	}
}

/*#endregion SECTION 4*/

/*#region SECTION 5*/
.section-5 {
	padding-top: 0;
}

.gallery-img {
	display: inline-block;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	cursor: pointer;
}

/* .section-5 .gallery-img:hover,
	.section-5 .gallery-img:focus {
		background-size: 120%;
		
	} */
/*#endregion SECTION 5*/

/*#region FOOTER*/
.footer {
	background: linear-gradient(90deg, rgb(255, 234, 249) 0%, rgb(255, 237, 249) 50%, rgb(255, 233, 251) 100%);
}

.footer a,
.footer-absolute a {
	text-decoration: none;
	color: #262626;
}

.footer .footer-main {
	padding: 70px 0;
}

.footer .footer-absolute {
	background-color: #ffcad4;
}

.footer-absolute .pull-left {
	float: left;
}

.footer-absolute .pull-right {
	float: right;
}

/*#endregion FOOTER*/

/*#region PAGE ABOUT*/

.section-page-title.about .page-title {
	background-image: url(../images/slide-1-1920x720.png);
}

.section-about-1 .divider {
	background-color: #ff87ab;
	margin-right: 15px;
	margin-top: 30px;
}

.section-about-1 .section-content {
	padding: 30px 0 0 0;
}

.section-about-1 .img-overview {
	max-width: 100%;
	height: auto;
	border: 3px solid #ddd;
	padding: 10px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .08) !important;
}

.section-about-2 {
	padding-top: 0;
}

.section-about-2 .about-banner {
	position: relative;
	display: flex;
	align-items: center;
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ffcad4;
	height: 500px;
	width: 100%;
	background-image: url(../images/slider2.jpg);
}

@media(min-width: 768px) {
	.section-about-2 .about-banner {
		background-position: 50% 50%;
		background-image: url(../images/about-banner.jpg);
	}
}

/*#endregion PAGE ABOUT*/

/*#region PAGE SERVICES*/

.section-page-title.services .page-title {
	background-image: url(/assets/image/slide-2-1920x720.png);
}

.section-services .service-name {
	font-size: 60px;
	font-family: "Playfair Display", "Times New Roman", Times, serif;
	margin-bottom: 30px;
}

@media (max-width: 575.99px) {
	.section-services .service-name {
		font-size: 50px;
		line-height: 1.2;
	}
}

.section-services .service-description {
	font-family: "Lato", "Times New Roman", Times, serif;
	margin-bottom: 30px;
}

.section-services .services-group:not(:last-child) {
	margin-bottom: 100px;
}

ul.list-service-details {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	margin-top: 20px;
	line-height: 2rem;
}

ul.list-service-details li {
	margin-bottom: 10px;
}

ul.list-service-details li div {
	display: table;
}

ul.list-service-details li div span {
	display: table-cell;
	color: #333;
}

ul.list-service-details li div span:first-child {
	position: relative;
	font-weight: 600;
	font-size: 1.2rem;
	color: #333;
	overflow: hidden;
}

ul.list-service-details li div span:first-child:after {
	content: "";
	position: absolute;
	bottom: 0.5em;
	margin-left: 0.5em;
	width: 100%;
	border-bottom: 1px dashed gray;
}

ul.list-service-details li div span+span {
	text-align: right;
	font-size: 1rem;
	width: 1%;
	vertical-align: bottom;
	padding-left: 0.5em;
	white-space: nowrap;
}

ul.list-service-details p.description {
	font-size: 1rem;
	color: gray;
}

ul.list-service-details span.name {
	text-transform: uppercase;
}

/*#endregion PAGE SERVICES*/

/*#region PAGE GALLERY*/

.section-page-title.gallery .page-title {
	background-image: url(/assets/image/slide-3-1920x720.png);
}

.section-gallery .divider {
	background-color: #ff87ab;
	width: 130px;
}

.section-gallery .tab-gallery button {
	background-color: transparent;
	color: #333;
	border: 1px solid #333;
	border-radius: 0;
	transition: all 0.3s ease;
	font-family: "Lato", "Times New Roman", Times, serif;
}

.section-gallery .tab-gallery a:not(:last-child) button {
	margin-right: 5px;
}

.section-gallery .tab-gallery button:hover,
.section-gallery .tab-gallery button.active {
	background-color: #333;
	color: #fff;
}

/*#region PAGE GALLERY*/

/*#region PAGE GALLERY*/

.section-page-title.contact .page-title {
	background-image: url(../images/slide-1-1920x720.png);
}

.section-contact .divider {
	background-color: #ff87ab;
	width: 130px;
}

.section-contact .business-info a {
	text-decoration: none;
	margin-bottom: 1rem;
}

.text-field {
	position: relative;
}

.text-field label {
	display: inline-block;
	font-weight: 600;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 10px;
	background-color: #fff;
	padding: 1px 5px;
	font-size: 15px;
	transform: translateY(-50%);
	color: #ff87ab;
}

.text-field input,
textarea {
	padding: 15px;
	display: block;
	width: 100%;
	font-size: 14px;
	border: 1.5px solid #333;
	border-radius: 0;
	background-color: transparent;
	color: #333;
}

/*#region PAGE GALLERY*/


.btn-phone {
	transition: .3s all;
}

.phone-group.phone-show {
	visibility: visible;
}

.phone-group {
	position: fixed;
	visibility: hidden;
	cursor: pointer;
	z-index: 99;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	-webkit-transition: visibility .5s;
	-moz-transition: visibility .5s;
	-o-transition: visibility .5s;
	transition: visibility .5s;
	right: -5px;
	bottom: 60px;
}

.phone-ph-circle,
.phone-group {
	width: 100px;
	height: 100px;
	background-color: transparent;
}

.phone-group.phone-green .phone-ph-circle {
	border-color: #f9cbdf;
	opacity: .5;
}

.phone-ph-circle {
	top: 0;
	left: 0;
	position: absolute;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid #f9cbdf;
	opacity: .1;
	-webkit-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-moz-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-ms-animation: phone-circle-anim 1.2s infinite ease-in-out;
	-o-animation: phone-circle-anim 1.2s infinite ease-in-out;
	animation: phone-circle-anim 1.2s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	transform-origin: 50% 50%;
}

.phone-ph-circle,
.phone-ph-img-circle {
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-circle-fill {
	background-color: #ff007a;
	opacity: .75 !important;
}

.phone-ph-circle-fill {
	width: 60px;
	height: 60px;
	top: 20px;
	left: 20px;
	position: absolute;
	background-color: #000;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid transparent;
	opacity: .1;
	-webkit-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-moz-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-ms-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-o-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-img-circle {
	background-color: #ff007a;
	box-shadow: 0 0 20px 6px #ff007a;
}

.phone-ph-img-circle {
	width: 30px;
	height: 30px;
	top: 35px;
	left: 35px;
	position: absolute;
	background: url(/assets/image/phone-ico.png) center center no-repeat rgba(30, 30, 30, .1);
	background-size: contain;
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
	border: 2px solid transparent;
	opacity: .7;
	-webkit-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-moz-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-ms-animation: phone-circle-img-anim 1s infinite ease-in-out;
	-o-animation: phone-circle-img-anim 1s infinite ease-in-out;
	animation: phone-circle-img-anim 1s infinite ease-in-out;
	transform-origin: 50% 50%;
}

@-moz-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-webkit-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-o-keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@keyframes phone-circle-anim {
	0% {
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .1
	}

	30% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .5
	}

	100% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .1
	}
}

@-moz-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-webkit-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-o-keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@keyframes phone-circle-fill-anim {

	0%,
	100% {
		transform: rotate(0) scale(.7) skew(1deg);
		opacity: .2
	}

	50% {
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .2
	}
}

@-moz-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@-webkit-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@-o-keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}

@keyframes phone-circle-img-anim {

	0%,
	100%,
	50% {
		transform: rotate(0) scale(1) skew(1deg)
	}

	10%,
	30% {
		transform: rotate(-25deg) scale(1) skew(1deg)
	}

	20%,
	40% {
		transform: rotate(25deg) scale(1) skew(1deg)
	}
}