/* ========================================================
    WEBSITE
    AIRCOSTEK © BRAVEBOYS STUDIO
======================================================== */



/* ============================
	BODY - BASE
============================ */

body,
html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



/* ============================
	HERO
============================ */

.header__hero {
	align-content: center;
	display: flex;
	justify-content: center;
}

.header__hero--image {
	height: 100vh;
	object-fit: cover;
	width: 100%;
}

.header__hero--body {
	/*background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);*/
	margin-bottom: 4%;
	padding: 2.5rem;
	text-align: center;
	width: auto;
}

.header__hero--body h2 {
	color: #FFF;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 7rem;
	line-height: 1.1;
	letter-spacing: -.075rem;
	margin-bottom: 4%;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 700;
}

.header__hero--body h3 {
	color: #FFF;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 3.5rem;
	line-height: 1.3;
	letter-spacing: -.075rem;
	margin-bottom: 4%;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 700;
}

.header__hero--body h4 {
	color: #FFF;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 3rem;
	line-height: 1.3;
	letter-spacing: -.075rem;
	margin-bottom: 4%;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 700;
}

.hero--button--box {
	padding: 0 .5rem;
}

.hero--button--box button {
	align-items: center;
	animation: pulse-animation-hero 2.5s infinite;
	background-color: #01D9BC;
	border: 1.5px solid #01D9BC;
	border-radius: .5rem;
	color: #000;
	display: inline-flex;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2rem;
	font-weight: 700;
	height: auto;
	justify-content: center;
	letter-spacing: .0125rem;
	line-height: 1;
	padding: 1rem 1.2rem 1rem 1.2rem;
	position: relative;
	text-decoration: none !important;
	transition: all .2s ease-in-out;
	vertical-align: middle;
}

.hero--button--box button:hover {
	border: 1.5px solid #111;
	background-color: #111;
	color: #FFF;
	transform: scale(1.025);
}

@keyframes pulse-animation-hero {
	0% {
		box-shadow: 0 0 0 0px rgba(1, 217, 188, 0.8);
	}

	50% {
		box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
	}
}

.header__hero--body div.hero--logo--box img {
	height: 85px;
	margin-bottom: 4%;
}





/* ============================
	NAVSNAP
============================ */

.navsnap--wrapper {
	top: 30px;
	position: fixed;
	right: 30px;
	z-index: 9999;
}

.navsnap--button {
	border: none;
	position: relative;
	align-items: center;
	animation: pulse-animation-navsnap 2.5s infinite;
	background-color: #01D9BC;
	border-radius: 50%;
	color: #FFF;
	display: flex;
	height: 70px;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	width: 70px;
	transition: transform 0.3s ease;
}

.navsnap--button:hover {
	transform: scale(1.15);
}

.navsnap--icon {
	color: #FFF;
	font-size: 2rem;
	animation: pulse-icon 3.5s infinite;
	transition: transform 0.3s ease;
}

.navsnap--text {
	color: #FFF;
	font-size: 2rem;
	font-weight: 800;
	display: inline-flex;
	height: 3rem;
}

@keyframes pulse-animation-navsnap {
	0% {
		box-shadow: 0 0 0 0px rgba(1, 217, 188, 0.8);
	}

	50% {
		box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
	}
}



/* ============================
	NAVBAR
============================ */

.logo--box--mobile img.company--logo {
	height: 30px;
}

.navbar.sticky--top {
	background-color: transparent;
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	transition: background-color 0.3s, box-shadow 0.3s;
	z-index: 1000;
}

.navbar.sticky--top.scrolled {
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}

.navbar--container {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

a.navbar-brand {
	padding: .25rem;
	margin: 0;
}

.navbar-brand img.company--logo {
	height: 60px;
	opacity: 1;
	transition: all 0.3s ease;
}

.navbar.sticky--top.scrolled .navbar-brand img {
	height: 50px;
	opacity: 1;
}

.navbar-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.navbar-nav.left-nav {
	justify-content: flex-start;
}

.navbar-nav.right-nav {
	justify-content: flex-end;
}

.nav--item {
	list-style: none;
}

.nav--link {
	background-color: transparent;
	border: 2px solid transparent;
	border-radius: 0;
	color: #111;
	display: inline-block;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -.035rem;
	line-height: 1;
	margin: 0;
	padding: 1rem;
	position: relative;
	text-decoration: none;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.nav--link:hover {
	color: #01D9BC;
	text-decoration: none;
}

.navbar.sticky--top.scrolled .nav--link:hover {
	color: #01D9BC;
	text-decoration: none;
}

.navbar.sticky--top.scrolled .nav--link.active:hover {
	color: #01D9BC;
	text-decoration: none;
}

.navbar.sticky--top .nav--link.active {
	color: #111;
}

.navbar.sticky--top.scrolled .nav--link.active {
	color: #111;
}

/* navbar with toggler */
.navbar-toggler {
	border: none;
	padding: 0;
}

.navbar-toggler .nav__button {
	background-color: transparent;
	border: none;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 3rem;
	justify-content: center;
	padding: 0;
	transition: background-color .2s ease-in-out;
	width: 2.5rem;
}

.navbar-toggler .nav__button:hover .nav__button--stroke--middle {
	width: 100%;
}

.nav__button--stroke {
	background-color: #000;
	height: 2px;
	margin: .35rem 0;
	width: 100%;
}

.nav__button--stroke--middle {
	background-color: #000;
	height: 2px;
	margin: .25rem 0;
	transition: width .2s ease-in-out;
	width: 80%;
}

.navbar {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.navbar a.navbar-brand img.brand-logo {
	height: 20px;
}

.offcanvas {
	width: 500px !important;
}

.navbar .offcanvas {
	background-color: #FFF;
}

.offcanvas .offcanvas-title {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .0125rem;
	line-height: 1;
}

.offcanvas-header {
	padding: 3rem 3rem 1rem 3rem;
}

.offcanvas-body {
	padding: 3rem;
	display: flex;
	flex-direction: column;
}

.offcanvas ul {
	margin: 0;
	padding: 0;
}

.offcanvas .nav--link {
	font-size: 1.65rem;
	padding: .75rem 1rem;
}

.offcanvas .nav--link {
	background-color: transparent;
	border: none;
	border-radius: 0;
	color: #111;
	display: inline-block;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -.0125rem;
	line-height: 1;
	margin: 0;
	padding: .75rem 0;
	position: relative;
	text-decoration: none;
	transition: color 0.3s ease;
}

.offcanvas .nav--link:hover {
	color: #01D9BC;
}

.offcanvas .nav--link.active {
	color: #01D9BC;
}

.offcanvas button.btn__close {
	align-items: center;
	background-color: transparent;
	border: none;
	color: #CCC;
	display: flex;
	font-size: 2rem;
	height: 42px;
	justify-content: center;
	opacity: .5;
	transition: opacity .2s ease-in-out;
	padding: 0;
}

.offcanvas button.btn__close:hover {
	opacity: 1;
}

.offcanvas .nav--link i {
	color: #AAA;
}

.offcanvas .nav--link.active i {
	color: #01D9BC;
}

.offcanvas .product--brand--logo {
	height: 35px;
}





/* ============================
	INTRO
============================ */

.intro__block {
	padding: 10rem 0 7rem 0;
}

.intro__block.nextpage {
	background-color: #FFBA00;
	padding: 7rem 0 7rem 0;
}

.intro__block h1 {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: -.025rem;
	line-height: 1;
	margin-bottom: 1rem;
}

.intro__block.nextpage h1 {
	color: #010101;
}

.intro__block.nextpage h2 {
	color: #FFF;
}

.intro__block h2 {
	background: linear-gradient(90deg, #00B4E0 25%, #00D8BB 75%);
	/* color: #010101; */
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -.025rem;
	line-height: 1.25;
	margin-bottom: 1rem;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.intro__block p {
	color: #010101;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.75rem;
	font-weight: 400;
}

.intro__block h2 span.marker-1 {
	background-color: #dce69a;
	padding: .15rem .5rem;
}

.intro__block h2 span.marker-2 {
	background-color: #f8d087;
	padding: .15rem .5rem;
}




/* ============================
	SHORTCUTS
============================ */

.shortcuts__block {
	padding: 0 0 5rem 0;
}

.shortcuts__block.nextpage {
	background-color: #FAFAFA;
	padding: 5.5rem 0 3rem 0;
}

.shortcuts__block .shortcut--wrapper {
	position: relative;
}

.shortcuts__block .shortcut--link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.shortcuts__block .shortcut--image-wrapper {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
	height: 550px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.shortcuts__block.nextpage .shortcut--image-wrapper {
	height: 350px;
}

.shortcuts__block .shortcut--image-wrapper img.shortcut--img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
	filter: saturate(1.05);
}

.shortcuts__block .shortcut--title {
	color: #FFF;
	padding: 1.5rem 1rem;
	text-align: start;
}

.shortcut--title .rotating-icon {
	animation: spin 10s linear infinite;
	display: inline-block;
	margin-bottom: .45rem
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.shortcuts__block .shortcut--title h2 {
	color: #010101;
	font-family: PP Formula Compressed;
	font-size: 3rem;
	letter-spacing: .025rem;
	line-height: 1.15;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
}

.shortcuts__block.nextpage .shortcut--title h2 {
	font-size: 2.25rem;
}

.shortcuts__block .shortcut--title h2 i.fa-arrow-right {
	color: #FFBA00;
	font-size: 3rem;
	margin-left: 1rem;
	transition: transform 0.3s ease;
}

.shortcuts__block.nextpage .shortcut--title h2 i.fa-arrow-right {
	font-size: 2rem;
}

.shortcuts__block .shortcut--link:hover img.shortcut--img {
	transform: scale(1.035);
	filter: saturate(1.5);
}

.shortcuts__block .shortcut--link:hover .fa-arrow-right {
	transform: translateX(10px);
}



/* ============================
	GALLLERY
============================ */

.gallery__block {
	padding: 3rem 0;
}

.gallery__block .gallery--wrapper {
	background: linear-gradient(45deg, #00B4E0, #00D8BB);
	border-radius: 3.25rem;
	padding: 1.5rem;
}

.gallery__block .gallery--wrapper--inner {
	background-color: #FFF;
	border-radius: 2rem;
	display: flex;
	flex-wrap: wrap;
	padding: 2rem;
	width: 100%;
}

.gallery__block .gallery--wrapper--inner .img--box {
	overflow: hidden;
}

.gallery__block .gallery--wrapper--inner .img--box img {
	height: 350px;
	object-fit: cover;
	width: 100%;
}

.gallery__block .gallery--image--wrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery__block .gallery--image--wrapper:hover img {
	transform: scale(1.035);
	filter: saturate(1.5);
}

.lg-outer .lg-thumb-item {
	border: 2px solid #fff !important;
	transition: .2s ease-in-out all;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #ffc05a !important;
}

.lg-outer .lg-thumb-outer {
	display: flex;
	justify-content: center;
}



/* ============================
	APPOINTMENT
============================ */
.appointment__block img {
	object-fit: cover;
	height: 400px;
	width: 100%;
}



/* ============================
	PARAGRAPH
============================ */

.paragraph__block.homepage {
	padding: 5rem 0 7rem 0;
}

.paragraph__block {
	padding: 6rem 0;
}

.paragraph__block h2 {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: .0125rem;
	line-height: 1.1;
	margin-bottom: .5rem;
}

.paragraph__block p {
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1.35rem;
	color: #111;
}

.paragraph__block i.fa-circle-check {
	color: #01D9BC;
	font-size: 1.25rem;

}

.paragraph__block img.paragraph--img {
	border-radius: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	height: auto;
	object-fit: cover;
	width: 100%;
}

.paragraph__block .article--hero {
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.paragraph__block .article--hero--img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
	filter: saturate(1.0125);
}

.paragraph--header {
	padding: 0 .5rem;
}

.paragraph--body {
	padding: 0 .5rem;
}

.paragraph--button--box {
	padding: 0 .5rem;
}

.paragraph--button--box button {
	align-items: center;
	background-color: #01D9BC;
	border: 1.5px solid #01D9BC;
	border-radius: .5rem;
	color: #000;
	display: inline-flex;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	height: auto;
	justify-content: center;
	letter-spacing: .0125rem;
	line-height: 1;
	padding: .9rem 1rem .9rem 1rem;
	position: relative;
	text-decoration: none !important;
	transition: all .2s ease-in-out;
	vertical-align: middle;
}

.paragraph--button--box button:hover {
	border: 1.5px solid #111;
	background-color: #111;
	color: #FFF;
	transform: scale(1.025);
}

.paragraph--heading h3 {
	color: #222;
	font-family: PP Formula Compressed;
	font-size: 3rem;
	letter-spacing: .025rem;
	line-height: 1.15;
	margin-bottom: .5rem;
}

.paragraph--heading .rotating-icon {
	display: inline-block;
	animation: spin 10s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.article--body {
	padding-left: .75rem;
	padding-right: .75rem;
}

.article--body p {
	font-size: 1.25rem;
	line-height: 1.85rem;
}



/* ============================
	USP
============================ */

.usp__block {
	padding: 3rem 0;
}

.usp__block h3 {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .0125rem;
	line-height: 1;
	margin-bottom: .5rem;
}

.usp__block i {
	color: #000;
	font-size: 4rem;
	margin-bottom: 1.5rem;
}

.usp__block li {
	border-right: 1.5px solid #EEE;
	flex: 1;
	padding: 1rem 3rem;
	text-align: center;
}

.usp__block li:last-child {
	border-right: none;
}

.usp__block p {
	color: #000;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
}

.usp__block ul {
	background-color: #FFF;
	border-radius: 2rem;
	box-shadow: 0 0 .85rem rgba(0, 0, 0, 0.125);
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 2rem;
	width: 100%;
}

.usp__block .usp--wrapper {
	background: linear-gradient(45deg, #00B4E0, #00D8BB);
	border-radius: 3.25rem;
	padding: 1.5rem;
}



/* ============================
	PRICING
============================ */

.pricing__block {
	padding: 1rem 0;
}

.pricing__block .pricing--wrapper {
	background: linear-gradient(45deg, #00B4E0, #00D8BB);
	border-radius: 3.25rem;
	padding: 1.5rem;
}

.pricing__block .pricing--wrapper--inner {
	background-color: #FFF;
	border-radius: 2rem;
	display: flex;
	flex-wrap: wrap;
	padding: 2rem;
	width: 100%;
}

.pricing__block .td--service--name {
	border-radius: 2.75rem;
	background-color: #FF937075;
	padding: 1.5rem;
}

.pricing__block .td--service--name--inner {
	border-radius: 1.5rem;
	background-color: #FFF;
	padding: .5rem;
	/* box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15); */
	width: 100%;
}

.pricing__block .table> :not(caption)>*>* {
	padding: .5rem .75rem;
}

.pricing__block .table {
	border-color: #EEE;
	color: #222 !important;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0;
}

.pricing__block table thead tr th {
	background-color: #FFF !important;
}

.pricing__block table tbody td.td--header {
	background-color: #EEE !important;
}

.pricing__block table tbody td.td--price {
	white-space: nowrap;
}

.pricing__block table span.pricelist--details {
	display: flex;
	font-size: 1rem;
	line-height: 1.45rem;
}

td.td--product--name {
	width: 75%;
}

td.td--price--cell {
	width: 25%;
	white-space: nowrap;
}



/* ============================
	PRODUCTS
============================ */

.products__block {
	background: linear-gradient(to top right, #E6C9A8, #F3E2D2);
	padding: 5rem 0 7rem 0;
}

.products__block h2 {
	font-family: 'Forum', Arial, sans-serif;
	font-size: 3rem;
	color: #111;
	letter-spacing: -.05rem;
}

.products__block p {
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1.15rem;
	color: #222;
}

.products__block p span.product--description--head {
	font-weight: 600;
	font-size: 1.45rem;
	color: #222;
}

.product--wrapper {
	padding: 1rem;
}

.products__block .product--image--wrapper {
	position: relative;
	overflow: hidden;
	height: 600px;
	background: #FFF;
	padding: 2rem;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.products__block .product--image--wrapper img.product--img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
	filter: saturate(1.25);
}

.products__block .product--overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem 1.5rem 2rem 1.5rem;
	background: linear-gradient(to top, rgba(244, 244, 244, 1), rgba(0, 0, 0, 0));
	color: #FFF;
	text-align: center;
}

.product--overlay h3 {
	font-family: 'Forum', Arial, sans-serif;
	font-size: 2.15rem;
	color: #111;
}

.product--overlay span.product--label {
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: #111;
}



/* ============================
	ARTICLES
============================ */

.articles__block {
	/* background: linear-gradient(to bottom, #f4f4f4 0%, #ffffff 35%); */
	padding: 8rem 0;
}

.articles__block .article--hero {
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
	border-radius: 0;
}

.articles__block .article--hero--img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease, filter 0.3s ease;
	filter: saturate(1.0125);
}

.article--heading {
	padding-left: .75rem;
	padding-right: .75rem;
}

.article--heading h3 {
	color: #222;
	font-family: PP Formula Compressed;
	font-size: 3rem;
	letter-spacing: .025rem;
	line-height: 1.15;
	margin-bottom: .5rem;
}

.article--heading .rotating-icon {
	display: inline-block;
	animation: spin 10s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.article--body {
	padding-left: .75rem;
	padding-right: .75rem;
}

.article--body p {
	font-size: 1.25rem;
	line-height: 1.85rem;
}



/* ============================
	REVIEWS
============================ */

.review__block {
	background: linear-gradient(to top, #F0F0F0 0%, #F6F6F6 75%);
	padding: 3rem 0rem;
}

.review__block .container {
	max-width: 1800px !important;
}

.review__block .col-12.col-xl-4 {
	display: flex;
}

.review__widget--item {
	background-color: #FFF;
	border-radius: 1rem;
	box-shadow: 0 0 .85rem rgba(0, 0, 0, 0.125);
	padding: 2rem;
}

.widget--item--body {
	width: 100%;
	text-align: center;
}

.review--header {
	margin-bottom: .75rem;
}

.review--header span.review--rating--icon i {
	color: #00B4E0;
	font-size: 2rem;
	margin-left: 1px;
	margin-right: 1px;
}

.review--body {
	min-height: 85px;
	margin-bottom: 1rem;
}

.review--body p {
	color: #111;
	font-size: 1.1rem;
	line-height: 1.45;
}

.review--details p {
	color: #111;
	font-size: 1rem;
	margin-bottom: 0;
}

.review__footer--wrapper {
	display: flex;
	justify-content: center;
}

.review__footer--wrapper img.review--logo--gosalon {
	height: 1.85rem;
}



/* ============================
	CALL TO ACTION
============================ */

.cta__block--top {
	min-height: 100px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.cta__block {
	align-items: center;
	background-color: #000;
	display: flex;
	justify-content: center;
	min-height: 10vh;
	overflow: hidden;
	padding: 6rem 0 5rem 0;
	position: relative;
}

.cta__block h2 {
	background: linear-gradient(90deg, #00B4E0 25%, #00D8BB 75%);
	/* color: #00D1B6; */
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: .0125rem;
	line-height: 1.3;
	margin-bottom: .5rem;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta__block p {
	color: #FFF;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 2rem;
}

.cta__block .cta--button {
	align-items: center;
	animation: pulse-animation 2.5s infinite;
	background-color: #000;
	border: 1.5px solid #FFF;
	border-radius: 1rem;
	color: #FFF;
	display: inline-flex;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2rem;
	font-weight: 700;
	height: auto;
	justify-content: center;
	letter-spacing: -.0125rem;
	line-height: 1;
	padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	position: relative;
	text-decoration: none !important;
	/* text-transform: uppercase; */
	transition: all .2s ease-in-out;
	vertical-align: middle;
}

.cta__block .cta--button:hover {
	border: 1.5px solid #FFF;
	background-color: #FFF;
	color: #000;
	transform: scale(1.025);
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 209, 182, 0.8);
	}

	50% {
		box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
	}

	100% {}
}

.cta__block .cta--button:focus {
	outline: none;
}

.cta__block .contact--details {
	color: #FFF;
	display: block;
	font-size: 1.15rem;
	font-family: 'Eina 01', Arial, sans-serif;
	margin-top: 1.5rem;
}

.cta__block .contact--details.img--box img {
	height: 30px;
}



/* ============================
	FOOTER
============================ */

footer {
	/*background-color: #00D1B6;*/
	background: linear-gradient(45deg, #00B4E0, #00D8BB);
	color: #FFF;
}

footer .footer__wrapper {}

/* top */
footer .footer__top .footer--column--wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-left: 8%;
	justify-content: center;
}

footer .footer__top ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .footer__top li.footer__heading {
	margin-bottom: .75rem;
}

footer .footer__top li.footer__heading h3 {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .0125rem;
}

footer .footer__top li {
	margin-bottom: .1rem;
}

footer .footer__top p {
	color: #000;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.4rem;
}

footer .footer__top a.footer--link {
	color: #000;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.4rem;
	margin-right: 0.25rem;
	text-decoration: none;
	transition: color 0.3s ease;
	white-space: nowrap;
}

footer .footer__top a.footer--link:hover {
	color: #FFF;
}

/* middle */
footer .footer__middle .brand--logo--box {
	display: flex;
	justify-content: center;
	padding: 3rem 0;
}

footer .footer__middle .brand--logo--box img.brand--logo {
	height: auto;
	width: 100%;
}

/* bottom */
footer .footer__bottom ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

footer .footer__bottom a {
	color: #000;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: -.0125rem;
	line-height: 1;
	transition: color .2s ease-in-out;
	text-decoration: none;
}

footer .footer__bottom a:hover {
	color: #FFF;
}



/* ============================
	FORMS
============================ */

.form__block {
	padding: 3rem 0;
}

.form--wrapper {
	background: linear-gradient(45deg, #00B4E0, #00D8BB);
	border-radius: 3.25rem;
	padding: 2rem;
}

.form--body--inner {
	background-color: #FFF;
	border-radius: 2rem;
	box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-wrap: wrap;
	padding: 3rem;
	width: 100%;
}

.form--body--inner h2 {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 1.85rem;
	font-weight: 700;
	letter-spacing: -.0125rem;
	line-height: 1.1;
	margin-bottom: .5rem;
}

.form--body--inner p {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5;
	font-family: 'Eina 01', Arial, sans-serif;
	margin-bottom: 0;
}

.form--body--inner hr {
	margin: 1rem 0;
	color: inherit;
	border: 0;
	border-top: 1.5px solid;
	opacity: .15;
}

.form--body--inner label {
	color: #000;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -.0125rem;
	line-height: 1.1;
	margin-bottom: .5rem;
}

.form--body--inner .form-control {
	border: 1.5px solid #ccc !important;
	color: #28282b;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.1rem;
	padding: .35rem .75rem .4rem .75rem;
	height: 50px;
}

.form--body--inner .form-control:focus {
	background-color: #fff !important;
	border-color: #333 !important;
	box-shadow: 0 0 0 .15rem rgba(0, 0, 0, .25) !important;
	color: #000743 !important;
}

.form--body--inner textarea.form-control {
	border: 1.5px solid #ccc !important;
	color: #28282b;
	font-size: 1.1rem;
	padding: .35rem .75rem .4rem .75rem;
	height: auto !important;
}

.form--body--inner .form-control::placeholder {
	color: #aaa;
	opacity: 1;
}

span.indication {
	color: #28282b;
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: 1.05rem;
}

.form--body--inner form .radio {
	background-color: #fff;
	border-radius: .25rem;
	display: flex;
	height: 22px;
	margin-bottom: 1px;
	position: relative;
	width: 22px;
}

.form--body--inner form .checkbox {
	background-color: #fff;
	border-radius: .25rem;
	display: flex;
	height: 22px;
	margin-bottom: 1px;
	position: relative;
	width: 22px;
}

.form--body--inner .checkbox span.indication,
.form--body--inner .radio span.indication {
	font-size: 1.05rem;
}

.form--body--inner .radio .cr .cr-icon {
	color: #000;
	font-size: 13px;
	left: 19%;
	line-height: 0;
	position: absolute;
	top: 50%;
}

.form--body--inner .checkbox .cr .cr-icon {
	color: #000;
	font-size: 13px;
	left: 19%;
	line-height: 0;
	position: absolute;
	top: 50%;
}

.form--body--inner main.form-clientinput .checkbox .cr.master {
	border: 2px solid #00dfb2;
}


/* button */

.form--body--inner button.btn--form {
	align-items: center;
	background-color: #000;
	border: none;
	border-radius: .5rem;
	color: #01D9BC;
	display: inline-flex;
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	height: auto;
	justify-content: center;
	letter-spacing: .0125rem;
	line-height: 1;
	padding: 1.2rem 1.25rem 1.1rem 1.25rem;
	position: relative;
	text-align: center;
	text-decoration: none !important;
	transition: all .2s ease-in-out;
	vertical-align: middle;
}

.form--body--inner button.btn--form:hover {
	background-color: #01D9BC;
	color: #000;
}

.form--body--inner button.btn--form i {
	transition: transform 0.3s ease;
}

.form--body--inner button.btn--form:hover i {
	transform: translateX(5px);
}


/* browse select */

.form--body--inner .form-control::file-selector-button {
	padding: .35rem .75rem;
	margin: -.25rem -.65rem;
	-webkit-margin-end: .75rem;
	margin-inline-end: .75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* select */
.form__block label small {
	font-family: "Eina 01", Arial, sans-serif;
	font-size: .9rem;
	font-weight: 400;
}

.form--select--wrapper {
	position: relative;
	width: 100%;
}

.form--select--wrapper select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1.5px solid #E2E2E2;
	border-radius: 0.5rem;
	color: var(--color-black);
	font-family: "Eina 01", Arial, sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	padding: 0.75rem 1rem;
	padding-right: 2.5rem;
	background-color: #FFF;
	background-image: none;
	cursor: pointer;
}

.form--select--wrapper select.form-control:focus {
	background-color: #FFF;
	border-color: #00C3FF;
	box-shadow: 0 0 0 0.15rem rgba(0, 195, 255, 0.25);
	outline: none;
}

.form--select--wrapper::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #333;
	pointer-events: none;
}

/* footer details */
.form--body--inner p.footer__details {
	font-family: 'Eina 01', Arial, sans-serif;
	font-size: .95rem;
}



/* ============================
	RADIO + CHECKBOX
============================ */

form .radio+.radio,
.checkbox+.checkbox {
	margin-top: -5px;
}

.modal .radio {
	background-color: #fff;
	border-radius: .25rem;
	height: 22px;
	margin-bottom: 1px;
	position: relative;
	width: auto;
}

.modal .radio label {
	height: 24px;
}

.checkbox label,
.radio label {
	cursor: pointer;
	font-weight: 400;
	margin-bottom: 0;
	min-height: 20px;
	padding-left: 0;
}

.checkbox label::after,
.radio label::after {
	clear: both;
	content: "";
	display: table;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
	display: none;
}

.checkbox .cr,
.radio .cr {
	border: 1.5px solid #cbcfd3;
	border-radius: .25rem;
	display: inline-block;
	height: 24px;
	position: relative;
	width: 24px;
}

.radio .cr {
	border-radius: 50%;
}

.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon,
.radio label input[type="radio"]:checked+.cr>.cr-icon {
	opacity: 1;
	transform: scale(1) rotateZ(0deg);
}

.checkbox label input[type="checkbox"]+.cr>.cr-icon,
.radio label input[type="radio"]+.cr>.cr-icon {
	opacity: 0;
	transform: scale(3) rotateZ(-20deg);
	transition: all 0.3s ease-in 0s;
}

.checkbox .cr .cr-icon {
	color: #000743;
	font-size: 16px;
	left: 16%;
	line-height: 0;
	position: absolute;
	top: 50%;
}

.checkbox .cr.master .cr-icon {
	left: 14%;
}

.checkbox .cr.master {
	border: 2px solid #000743;
}



/* ============================
	BUTTONS
============================ */

button.btn__appointment,
a.btn__appointment {
	background-color: #111;
	border: 2px solid #111;
	border-radius: 0;
	color: #FFF;
	display: inline-block;
	font-family: PP Formula Compressed;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: -.0125rem;
	text-decoration: none !important;
	transition: all .2s ease-in-out;
	padding: .75rem 1.25rem .55rem 1.25rem;
}

button.btn__appointment:hover,
a.btn__appointment:hover {
	border: 2px solid #FFF;
	background-color: #FFF;
	color: #111;
}



/* ============================
	TYPO
============================ */

h1,
h2,
h3 {
	font-family: PP Formula Compressed;
	letter-spacing: -.025rem;
	line-height: 1;
	margin-bottom: 0;
}

p {
	font-family: 'Eina 01', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.45;
	margin-bottom: 0;
}

h1 {
	font-size: 3rem;
	font-weight: bold;
}

h2 {
	font-size: 2rem;
	font-weight: bold;
}

h3 {
	font-size: 1.5rem;
	font-weight: bold;
}

p {
	font-size: 1.125rem;
}

a {
	color: #01D9BC;
	text-decoration: underline;
	transition: all 0.3s ease;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

.small,
small {
	font-size: .8em;
}

.text--nowrap {
	white-space: nowrap;
}



/* Colors */

.text-feathergrey {
	color: #EEE;
}

.text-grey {
	color: #AAA;
}

.text-blue {
	color: #00B4E0;
}

.text-green {
	color: #00D8BB;
}

.text-white {
	color: #FFF;
}

.text-dark {
	color: #000;
}

.bg-darkgrey {
	background-color: #222;
}

.bg-blue {
	background-color: #00B4E0;
}

.bg-green {
	background-color: #00D8BB;
}

.bg-feathergrey {
	background-color: #EEEEEE;
}

.bg-ash {
	background-color: #F6F6F6;
}

.bg-grey {
	background-color: #AAA;
}