@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/greycliff-cf/GreycliffCF-Medium.woff2') format('woff2'),
        url('../fonts/greycliff-cf/GreycliffCF-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/greycliff-cf/GreycliffCF-Light.woff2') format('woff2'),
        url('../fonts/greycliff-cf/GreycliffCF-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/greycliff-cf/GreycliffCF-Bold.woff2') format('woff2'),
        url('../fonts/greycliff-cf/GreycliffCF-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/greycliff-cf/GreycliffCF-Regular.woff2') format('woff2'),
        url('../fonts/greycliff-cf/GreycliffCF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Greycliff CF';
    src: url('../fonts/greycliff-cf/GreycliffCF-DemiBold.woff2') format('woff2'),
        url('../fonts/greycliff-cf/GreycliffCF-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-Book.woff2') format('woff2'),
        url('../fonts/Campton/Campton-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-Black.woff2') format('woff2'),
        url('../fonts/Campton/Campton-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-Bold.woff2') format('woff2'),
        url('../fonts/Campton/Campton-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-SemiBold.woff2') format('woff2'),
        url('../fonts/Campton/Campton-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-Light.woff2') format('woff2'),
        url('../fonts/Campton/Campton-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-Thin.woff2') format('woff2'),
        url('../fonts/Campton/Campton-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-Medium.woff2') format('woff2'),
        url('../fonts/Campton/Campton-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Campton';
    src: url('../fonts/Campton/Campton-ExtraLight.woff2') format('woff2'),
        url('../fonts/Campton/Campton-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

:root {
	--campton: 'Campton', sans-serif;
	--greycliff: 'Greycliff CF', sans-serif;
	--color: #0F5C78;
	--c-bluewhite: #63CCC9;
	--c-blue: #096A8C;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	list-style: none;
	background: none;
	border: none;
}

body {
	font-family: var(--greycliff);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 300;
	color: var(--color);
}

a {color: var(--color);}
a:hover {text-decoration: none;}

img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 1600px) {
	body {font-size: 14px;}
}

@media (max-width: 767px) {
	body {font-size: 19px;}
}

@media (max-width: 550px) {
	body {font-size: 15px;}
}

@media (max-width: 413px) {
	body {font-size: 14px;}
}

.center {
	max-width: 1543px;
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}

@media (max-width: 1600px) {
	.center {max-width: 1200px;}
}

@media (max-width: 1200px) {
	.center {max-width: 900px;}
}

.d-none {display: none !important;}

@media (max-width: 767px) {
	.h-767 {display: none !important;}
	.s-767 {display: block !important;}
}

@media (max-width: 550px) {
	.h-550 {display: none !important;}
	.s-550 {display: block !important;}
}

.wrapper {
	overflow-x: hidden;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

.max-center {position: relative;}

@media (min-width: 1921px) {
	.max-center:after,
	.max-center:before {
		content: '';
		display: block;
		width: 100px;
		position: absolute;
		top: 0;
		bottom: 0;
		border: 1px solid reduction;
	}
	.max-center:after {
		left: 0;
		background: linear-gradient(90deg, #fff, transparent);
	}
	.max-center:before {
		right: 0;
		background: linear-gradient(90deg, transparent, #fff);
	}
}

.btn-fix {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100%;
	z-index: 99;
	background: #fff;
	gap: 8px;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	box-shadow: 0 -4px 21px rgba(0,0,0,.08);
	transition: all 0.3s;
	display: none;
}
.btn-fix a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
	background: var(--c-blue);
	border-radius: 15px;
	color: #fff;
	text-decoration: none;
	width: 100%;
	gap: 8px;
	-webkit-font-smoothing: antialiased;
}
.btn-fix a strong {
	font-weight: 500;
	font-size: 18px;
}
.btn-fix a span {
	font-weight: normal;
	font-size: 14px;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}
.btn-fix a svg {
	width: 8px;
	height: 13px;
	stroke: #fff;
	position: relative;
	top: 0;
}
.btn-fix p {
	display: flex;
	align-items: center;
	font-size: 14px;
	gap: 5px;
}
.btn-fix p strong {font-weight: 500;}

@media (max-width: 767px) {
	.btn-fix.active {
		display: flex;
		bottom: 0;
		animation: bottomTop 0.5s forwards;
	}

	@keyframes bottomTop {
		0% {bottom: -100%;}
		100% {bottom: 0;}
	}
}

.btn {
	min-width: 434px;
	min-height: 63px;
	background: var(--c-blue);
	color: #fff;
	border-radius: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	font-weight: normal;
	font-size: 20px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	letter-spacing: 1px;
	animation: shadow-pulse 3s infinite;
}
.btn b {font-weight: 600;}
.btn:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	transition: all 0.3s;
	background: var(--c-bluewhite);
}
.btn:hover:before {width: 100%;}
.btn svg {
	width: 8px;
	height: 13px;
	stroke: #fff;
	top: 1px;
}
.btn svg,
.btn span {
	position: relative;
	z-index: 2;
}

.btn-text {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.btn-text p {
	font-size: 16px;
	color: #093E52;
	margin-top: 17px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.btn-text p strong {
	font-weight: 500;
}
.btn-text p:last-child {
	margin-top: 5px;
}

@media (max-width: 1600px) {
	.btn {
		gap: 8px;
	    font-size: 14px;
	    min-width: 350px;
	    min-height: 55px;
	}
	.btn svg {
		width: 7px;
		height: 12px;
	}

	.btn-text p {margin-top: 17px;}
	.btn-text p {font-size: 13px;}
}

@media (max-width: 1200px) {
	.btn {
		min-width: 300px;
		min-height: 50px;
	}
	.btn-text p {font-size: 12px;}
}

@media (max-width: 991px) {
	.btn {
		min-width: 270px;
		min-height: 45px;
	}
	.btn-text p {font-size: 11px;}
}

@media (max-width: 767px) {
	.btn {
	    min-width: 360px;
	    min-height: 55px;
	}
	.btn-text p {font-size: 15px;}
}

@media (max-width: 550px) {
	.btn {
	    min-width: 340px;
	    min-height: 50px;
	    border-radius: 9px;
	    font-size: 14px;
	}

	.btn svg {
	    width: 8px;
	    height: 13px;
	}

	.btn-text p {
		font-size: 14px;
		margin-top: 15px;
		gap: 5px;
	}
	.btn-text p:last-child {margin-top: 5px;}
}

@media (max-width: 413px) {
	.btn {min-width: 315px;}
}

.anim-dot {
	display: block;
	width: 11px;
	height: 11px;
	background: radial-gradient(50% 50% at 50% 50%, #64C7C7 0%, rgba(100, 199, 199, 0.5) 100%);
	border-radius: 50%;
	animation: shadow-pulse 3s infinite;
	position: relative;
	top: 0.5px;
}

@media (max-width: 550px) {
	.anim-dot {
		width: 8px;
		height: 8px;
		top: 1px;
	}
}

@keyframes shadow-pulse {
    0% {box-shadow: 0 0 0 0 rgba(0, 0, 0, .8)}
    50% {box-shadow: 0 0 0 0 rgba(0, 0, 0, .2)}
    100% {box-shadow: 0 0 0 20px transparent}
}

.main-title {text-align: center;}
.main-title p {
	font-size: 16px;
	margin-top: 18px;
	line-height: 1.13;
}
.main-title h2 {
	font-size: 50px;
	font-weight: normal;
	line-height: 1.2;
	margin-top: 9px;
	-webkit-font-smoothing: antialiased;
}
.main-title h2 strong {
	font-weight: 500;
	color: var(--c-bluewhite);
}
.main-title h2 span {color: var(--c-bluewhite)}

@media (max-width: 1600px) {
	.main-title p {
		font-size: 14px;
		margin-top: 10px;
	}
	.main-title h2 {
		font-size: 42px;
	}
}

@media (max-width: 1200px) {
	.main-title p {font-size: 13px;}
	.main-title h2 {
	    font-size: 35px;
	}
}

@media (max-width: 991px) {
	.main-title h2 {font-size: 30px;}
}

@media (max-width: 767px) {
	.main-title p {font-size: 20px;}
	.main-title h2 {font-size: 38px;}
}

@media (max-width: 550px) {
	.main-title p {font-size: 17px;}
	.main-title h2 {font-size: 33px;}
	.main-title svg {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 413px) {
	.main-title p {font-size: 14px;}
	.main-title h2 {font-size: 29px;}
}

[data-src="crown"] {
    display: inline-block;
    width: 65px;
    height: 50px;
    line-height: 0;
}

.path {
	stroke-dasharray: 200;
	animation: path 10s linear infinite
}

@keyframes path {
	to {stroke-dashoffset: 1200;}
}

/* ------------------ HEADER ------------------ */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(255, 255, 255, .8);
	transition: all 0.3s;
	max-width: 1920px;
	margin: 0 auto;
	box-shadow: 0px 1px 10px rgba(0, 62, 82, 0.03), 0px 8px 8px -6px rgba(0, 62, 82, 0.05), 0px 10px 30px -30px rgba(0, 62, 82, 0.1);
}
#header.active {background: #fff;}

.head-bar {
	min-height: 49px;
	padding: 3px 0;
	background: var(--c-blue);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	position: relative;
   	z-index: 992;
}
.head-bar a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
}
.head-bar a:hover {opacity: 0.7;}

.logo {
	line-height: 0;
	position: relative;
	z-index: 992;
}

.head-main {
	min-height: 88px;
	display: flex;
	align-items: center;
	background: #E2F2F3;
}
.head-main .center {
	display: flex;
	align-items: center;
}

.nav {
	margin-left: auto;
	margin-right: 34px;
}
.nav ul {
	display: flex;
	align-items: center;
	gap: 22px;
}
.nav a {
	font-size: 17.38px;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
	color: #093E52;
}
.nav a:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	bottom: -5px;
	height: 1px;
	width: 0;
	background: var(--c-bluewhite);
	transition: all 0.3s;
}
.nav a:hover:after {
	width: 100%;
	left: 0;
}
.nav a:hover {color: var(--c-bluewhite);}

.head-btn {
	min-width: 204px;
	min-height: 43px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--c-blue);
	letter-spacing: 0;
	border-radius: 5px;
	gap: 10px;
}
.head-btn span {top: -0.3px;}
.head-btn svg {
	width: 6px;
	height: 10px;
	fill: #fff;
}

@media (max-width: 1600px) {
	.logo svg {
		width: 130px;
		height: 34px;
	}

	.head-main {min-height: 70px;}

	.nav {margin-right: 25px;}
	.nav a {font-size: 14px;}

	.head-btn {
		min-width: 180px;
	    min-height: 40px;
	    font-size: 12px;
	    gap: 7px;
	}
}

@media (max-width: 1200px) {
	.head-bar {
		min-height: 40px;
		font-size: 13px;
	}

	.nav {margin-right: 20px;}
	.nav ul {gap: 10px;}
	.nav a {font-size: 13px;}

	.head-btn {min-width: 160px;}
}

@media (max-width: 991px) {
	.head-main {min-height: 60px;}
	.head-btn {margin-left: auto;}
	.nav .head-btn {
	    display: flex !important;
	    margin-left: 0;
	    margin-top: 30px;
	    min-width: 300px;
	    height: 50px;
	    font-size: 16px;
	    color: #fff;
	}
	.nav .head-btn:hover {color: #fff;}
	.nav .head-btn svg {
		width: 8px;
		height: 12px;
	}

	.nav {
		display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        margin: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 991;
	}
	.nav ul {flex-direction: column;}
	.nav ul a {
	    font-size: 25px;
	    font-weight: 500;
	}
	.nav-open .nav {
		display: flex;
		animation: opacity 0.5s;
	}
	
	.btn-nav {
		display: block !important;
		width: 40px;
		height: 40px;
		margin-left: 15px;
		position: relative;
		z-index: 992;
		cursor: pointer;
	}
	.btn-nav span {
		display: block;
		width: 100%;
		height: 3px;
		background: #093E52;
		transition: all 0.3s;
		transform-origin: center;
		border-radius: 3px;
	}
	.btn-nav span + span {margin-top: 8px;}
	.nav-open .btn-nav span {
		position: absolute;
		top: 50%;
		margin-top: -1.5px;
	}
	.nav-open .btn-nav span:nth-child(1) {transform: rotate(45deg);}
	.nav-open .btn-nav span:nth-child(2) {transform: rotate(-45deg);}
	.nav-open .btn-nav span:nth-child(3) {display: none;}
}

@media (max-width: 550px) {
	.head-bar {
	    min-height: 40px;
/*	    font-size: 12px;*/
	    font-size: 13px;
	}

	.btn-nav {
		margin-left: auto;
		width: 22px;
		height: 30px;
	}
	.btn-nav span {height: 2px;}
	.btn-nav span + span {margin-top: 5px;}
}

@media (max-width: 413px) {
	.head-bar {
/*		font-size: 10px;*/
		font-size: 11px;
		
	}
}

/* ------------------ HOME ------------------ */
.home {
	padding-top: 50px;
	position: relative;
}
.home .lines {
	position: absolute;
	right: 0;
	bottom: 15px;
	z-index: -1;
	width: 785px;
}
.home .lines svg {width: 100%;}
.home .center {
	display: flex;
	align-items: start;
	gap: 130px;
}

.home-content {padding-top: 10px;}
.home-content .before {
	font-size: 18px;
	font-family: var(--campton);
	font-weight: 300;
	display: inline-flex;
	align-items: center;
}
.home-content .before div {
	background: var(--c-bluewhite);
	font-weight: 500;
	border-radius: 30px;
	color: #fff;
	padding: 0 8px;
	min-height: 28px;
	margin: 0 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top: -2px;
}
.home-content .before div span {
	position: relative;
	top: 0.5px;
}

.home-content h1.title {
	font-size: 61px;
	font-weight: 300;
	line-height: 1.2;
}
.home-content h1.title strong {
	font-weight: 500;
	background: linear-gradient(90deg, #096A8C 0%, #63C7C7 60.53%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.home-content .tx-small {
	font-weight: 600;
	font-size: 28px;
}

.home-content ul {
	margin-top: 34px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.home-content ul li {
	display: flex;
	align-items: start;
	font-size: 21px;
	line-height: 1.7;
	gap: 0 14px;
}
.home-content ul li strong {font-weight: 500;}
.home-content ul .ic {
	width: 40px;
	height: 50px;
	text-align: center;
	line-height: 0;
	display: flex;
	align-items: center;
}
.home-content ul .ic i {
	display: inline-block;
	position: relative;
}

.home-content ul li:nth-child(1) .ic i {
	width: 40px;
	height: 46px;
	right: -5px;
	top: 3px;
}

.home-content ul li:nth-child(2) .ic i {
	width: 40px;
	height: 45px;
	top: 4px;
}

.home-content ul li:nth-child(3) .ic i {
	width: 36px;
	height: 49px;
	right: -6px;
}

.home-content .foot {
	margin-top: 30px;
	display: inline-flex;
	align-items: flex-start;
	gap: 23px;
}
.home-content .foot > img {
	max-width: 135px;
}

.home-image {width: 713px;}
.home-image img {
	display: block;
	width: 100%;
}

.home-image .phone {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 446px;
}

@media (max-width: 1600px) {
	.home {padding-bottom: 30px;}
	.home .lines {width: 550px;}
	.home .center {gap: 50px;}
	.home-content .before {
		font-size: 13px;
	}
	.home-content .before div {
		margin: 0 5px;
		font-size: 13px;
	}

	.home-content h1.title {font-size: 45px;}

	.home-content ul {gap: 20px;}
	.home-content ul li {font-size: 16px;}

	.home-content .foot {margin-top: 30px;}
	.home-content .foot > img {max-width: 115px;}

	.home-image {zoom: 0.8;}
}

@media (max-width: 1200px) {
	.home {
		padding-bottom: 30px;
		padding-top: 30px;
	}
	.home .lines {width: 515px;}
	.home .center {
		gap: 30px;
		align-items: center;
	}
	.home-content h1.title {font-size: 37px;}
	.home-content ul li {font-size: 14px;}
	.home-content ul .ic {zoom: 0.86;}
	.home-content .foot > img {max-width: 110px;}
}

@media (max-width: 991px) {
	.home .lines {width: 490px;}
	.home .center {gap: 15px;}
	.home-content .before {font-size: 12px;}
	.home-content h1.title {font-size: 30px;}
	.home-content .foot {gap: 15px;}
	.home-content .foot > img {max-width: 95px;}
}

@media (max-width: 767px) {
	.home .center {
		flex-direction: column;
		gap: 30px;
	}
	.home .lines {
		top: -150px;
		right: -300px;
		height: 635px;
		overflow: hidden;
		width: 540px;
	}
	.home-content .foot > img {max-width: 115px;}
}

@media (max-width: 550px) {
	.home .lines {
	    top: -245px;
	    right: -80px;
	    left: inherit;
	    height: 300px;
	    overflow: hidden;
	    width: 260px;
	    bottom: initial;
	    transform-origin: center;
	    transform: rotate(25deg);
	}
	.home .lines i {width: 550px;}
	.home .center {
		gap: 15px;
		position: relative;
	}
	.home .center .line {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: -1;
		transform-origin: center;
		transform: rotate(-20deg);
	}
	.home .center .line svg {
		width: 100%;
	}

	.home-content {width: 100%;}
	.home-content .before {font-size: 14px;}
	.home-content .before div {
		position: relative;
        top: -2px;
        font-size: 12px;
        min-height: 20px;
	}     
	.home-content h1.title {
		font-size: 9vw;
		margin-top: 5px;
	}
	.home-content ul {gap: 25px;}
	.home-content ul li {
		font-size: 3.3vw;
		line-height: 6vw;
		gap: 0 3.33vw;
	}
	.home-content ul .ic {
		width: 9.66vw;
		height: 12vw;
		zoom: 1;
	}
	.home-content ul li:nth-child(1) .ic i {
		right: -1.20vw;
		top: 0;
		width: 9.66vw;
		height: 11vw;
	}
	.home-content ul li:nth-child(2) .ic i {
		width: 9.66vw;
		height: 10.86vw;
		top: -0.1vw;
	}
	.home-content ul li:nth-child(3) .ic i {
	    width: 8.69vw;
	    height: 11.83vw;
	    right: -1.44vw;
	}
	.home-content .tx-small {font-size: 6vw;}

	.home-content .foot {
	    gap: 0;
	    width: 100%;
	    display: flex;
	    justify-content: center;
	}
	.home-content .foot > img {display: none;}
	.home .tx-c {max-width: 250px;}

	.home-image {
	    zoom: 1;
	    width: 100%;
	    margin-top: 30px;
	}
}

/* ------------------ TILE ------------------ */
.tile .main-title {
	padding: 0 15px 50px 15px;
}
.tile .center {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.tile .col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	position: relative;
}
.tile .inner {
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s;
}
.tile .logo {
	position: absolute;
	right: 37px;
	bottom: 30px;
	z-index: 3;
}
.tile .inner:hover {
	transform: rotate3d(1, 1, 0, 10deg);
	box-shadow: -7px 7px 0px 2px rgba(0, 0, 0, .1);
}
.tile .inner > img,
.tile .inner > video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tile .content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 33px 15px 33px 40px;
	color: #fff;
}
.tile .content h3 {
	font-size: 50px;
	line-height: 1.13;
	font-weight: 600;
	margin-top: 15px;
	-webkit-font-smoothing: antialiased;
}
.tile .content p {
	font-size: 24px;
	line-height: 1.13;
	margin-top: 25px;
	-webkit-font-smoothing: antialiased;
}

.tile i {
	display: inline-block;
	min-height: 67px;
}
.tile .col-1 i {
	width: 66px;
	height: 59px;
}
.tile .col-2 i {
	width: 55px;
	height: 46px;
}
.tile .col-3 i {
	width: 52px;
	height: 64px;
}
.tile .col-4 i {
	width: 58px;
	height: 67px;
}

.tile .tx-small {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 10;
	text-align: center;
	font-size: 14px;
	margin-top: 15px;
}
.tile .tx-small a {
	font-weight: bold;
	text-decoration: none;
}
.tile .tx-small a:hover {text-decoration: underline;}

@media (max-width: 1600px) {
	.tile .content {padding: 25px 10px 25px 26px;}
	.tile i {zoom: 0.9;}
	.tile .content h3 {font-size: 40px;}
	.tile .content p {font-size: 18px;}
}

@media (max-width: 1200px) {
	.tile .center {gap: 13px;}
	.tile .col {gap: 13px;}
	.tile .content {padding: 15px 10px 15px 15px;}
	.tile i {zoom: 0.8;}
	.tile .content h3 {
	    font-size: 30px;
	    margin-top: 5px;
	}
	.tile .content p {
		font-size: 14px;
		margin-top: 15px;
	}

	.tile .tx-small {font-size: 12px;}
}

@media (max-width: 991px) {
	.tile .center {gap: 10px;}
	.tile .inner {border-radius: 10px;}
	.tile .col {gap: 10px;}
	.tile .content {padding: 12px 12px 12px 12px;}
	.tile .content h3 {font-size: 25px;}
	.tile .content p {font-size: 13px;}
	.tile .content p br {display: none;}

	.tile .tx-small {font-size: 10px;}
}

@media (max-width: 767px) {
	.tile .center {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.tile .center > .inner {min-height: 450px;}
	.tile .inner {border-radius: 15px;}
	.tile .col {gap: 15px;}
	.tile .content {padding: 20px;}
	.tile .content h3 {
	    font-size: 35px;
	    margin-top: 10px;
	}
	.tile .content p {font-size: 16px;}
}

@media (max-width: 550px) {
	.tile {position: relative;}
	.tile .inner {border-radius: 10px;}
	.tile .center > .inner {
	    min-height: 372px;
	}
	.tile .col {gap: 10px;}
	.tile .content {padding: 15px;}
	.tile i {zoom: 0.6;}
	.tile .content h3 {
	    font-size: 5vw;
	    margin-top: 5px;
	}
	.tile .content p {
	    font-size: 3.2vw;
	    margin-top: 10px;
	}
	.tile .tx-small {font-size: 2.5vw;}
}

@media (max-width: 413px) {
	.tile .content {padding: 10px;}
	.tile .content p {font-size: 12px;}
}

/* ------------------ SEMAGLUTIDE ------------------ */
.semaqlutide {
	padding: 110px 0 85px 0;
	position: relative;
}
.semaqlutide .svg-line {
	position: absolute;
	top: -5px;
	right: 100px;
	z-index: -1;
}
.semaqlutide .main-title h2 strong {color: var(--color);}
.semaqlutide > .center {
	display: flex;
	align-items: start;
	max-width: 1440px;
}

.semaqlutide-content .main-title {
	text-align: left;
}
.semaqlutide-content .main-title .icon-svg {
	position: relative;
    left: -15px;
}
.semaqlutide-content .main-title p {
	margin-top: 10px;
}
.semaqlutide-content .main-title h2 {
	font-size: 70px;
	line-height: 1;
}
.semaqlutide-content .text {
	font-size: 24px;
	margin-top: 22px;
	margin-bottom: 29px;
}
.semaqlutide-content .text strong {font-weight: 500;}
.semaqlutide-content p + p {
	margin-top: 25px;
}
.semaqlutide-content .foot {
	margin-top: 40px;
	display: inline-flex;
	align-items: flex-start;
	gap: 23px;
}
.semaqlutide-content .foot > img {max-width: 135px;}

.semaqlutide-image {
	position: relative;
	width: 700px;
	right: -90px;
}
.semaqlutide-image .svg-line {
	position: absolute;
	top: -120px;
	left: -150px;
}
.semaqlutide-image img {
	display: block;
	width: 100%;
}

.semaqlutide .bottom-text {
	text-align: center;
	margin-top: -15px;
	font-size: 12px;
	line-height: 1.6;
}

@media (max-width: 1600px) {
	.semaqlutide > .center {max-width: 1200px;}
	.semaqlutide-content .main-title h2 {font-size: 58px;}
	.semaqlutide-content .text {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.semaqlutide-content .foot {
		margin-top: 30px;
		gap: 23px;
	}
	.semaqlutide-content .foot > img {max-width: 115px;}

	.semaqlutide-image .svg-line {top: -150px;}
	.semaqlutide-image {zoom: 0.8;}

	.semaqlutide .bottom-text {margin-top: 30px;}
}

@media (max-width: 1200px) {
	.semaqlutide {padding: 65px 0 65px 0;}
	.semaqlutide .svg-line {
		top: -250px;
		left: -165px;
	}
	.semaqlutide > .center {
		max-width: 900px;
		align-items: center;
	}
	.semaqlutide:before {
		width: 1600px;
		height: 1500px;
		background-size: 1600px;
		top: -400px;
	}
	.semaqlutide-content {max-width: 495px;}
	.semaqlutide-content .main-title h2 {
		font-size: 50px;
	}
	.semaqlutide-content .text {
		font-size: 17px;
		margin-bottom: 15px;
	}
	.semaqlutide-content p + p {margin-top: 20px;}
	.semaqlutide-content p br {display: none;}
	.semaqlutide-content .foot > img {
	    max-width: 110px;
	}

	.semaqlutide-image {right: 0;}

	.semaqlutide .bottom-text br {display: none;}
}

@media (max-width: 991px) {
	.semaqlutide:before {
		width: 1200px;
		height: 1000px;
		background-size: 1200px;
		top: -300px;
	}
	.semaqlutide-content {max-width: 390px;}
	.semaqlutide-content .main-title h2 {font-size: 40px;}
	.semaqlutide-content .text br {display: none;}
	.semaqlutide-content .foot {gap: 15px;}
	.semaqlutide-content .foot > img {max-width: 95px;}
}

@media (max-width: 767px) {
	.semaqlutide > .center {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.semaqlutide-content {margin-bottom: 50px;}
	.semaqlutide-content {max-width: 500px;}
	.semaqlutide-content .main-title {text-align: center;}
	.semaqlutide-content .main-title h2 {
		font-size: 57px;
		margin-top: 18px;
	}
	.semaqlutide-content .main-title .icon-svg {left: 0;}
	.semaqlutide-content .main-title p {
	    margin-top: 15px;
	}
	.semaqlutide-content .text {
	    font-size: 25px;
	    margin-bottom: 25px;
	    margin-top: 25px;
	}

	.semaqlutide .foot {
		display: flex;
		justify-content: center;
		padding-top: 35px;
	}

	.semaqlutide .bottom-text {
	    margin-top: 35px;
	    font-size: 13px;
	    opacity: 0.75;
	}
}

@media (max-width: 550px) {
	.semaqlutide {
		padding-top: 50px;
		padding-bottom: 40px;
	}
	.semaqlutide:before {
		width: 414px;
		height: 800px;
		background: url(../img/lines/line-6.svg) no-repeat;
		background-size: 414px;
		right: inherit;
		top: -310px;
		left: 0;
	}
	.semaqlutide-content .main-title h2 {
	    font-size: 43px;
	    margin-top: 15px;
	}
	.semaqlutide-content .text {
	    font-size: 19px;
	    margin-bottom: 20px;
	    margin-top: 20px;
	}
	.semaqlutide-content .text {font-size: 19px;}
	.semaqlutide .foot {padding-top: 30px;}
	.semaqlutide .btn-text p strong {font-weight: normal;}
	.semaqlutide .btn-text .anim-dot {top: 1.5px;}

	.semaqlutide .bottom-text {font-size: 10px;}

	.semaqlutide-image {
		zoom: 1;
		width: auto;
	}
}

@media (max-width: 413px) {
	.semaqlutide-content .main-title h2 {font-size: 35px;}
	.semaqlutide-content .text {font-size: 17px;}
	.semaqlutide-content > p br,
	.semaqlutide .mobile p br {display: none !important;}
}

/* ------------------ PRESCRIPTION ------------------ */
.prescription {
	padding: 65px 0 0 0;
	border-top: 10px solid #D9F1F0;
}
.prescription .center {max-width: 1785px;}

.prescription-slider.is-initialized:not(.is-active) .splide__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0 33px;
}
.prescription-slider {
	margin-top: 69px;
	padding: 0 77px;
}
.prescription-slider .splide__track {overflow: visible;}
.prescription-slider .slide {
	height: 100%;
	background: #fff;
	padding: 47px 35px 60px 35px;
	display: flex;
	flex-direction: column;
	position: relative;
	cursor: grab;
}
.prescription-slider .slide:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	box-shadow: 0 1px 7px rgba(0, 62, 82, .03), 0 6px 6px rgba(0, 62, 82, .05), 0 18px 43px rgba(0, 62, 82, .15);
	border-radius: 11px;
	transition: all 0.3s;
}
.prescription-slider .slide:hover:after {transform: scale(1.01);}
.prescription-slider .slide h4 {
	color: var(--c-bluewhite);
	font-size: 20px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.prescription-slider .slide h3 {
	font-size: 30px;
	font-weight: 500;
	margin-top: 5px;
}
.prescription-slider .slide h5 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
}
.prescription-slider .slide > p {
	font-size: 20px;
	line-height: 1.7;
}

.prescription-slider .slide .btn {
	height: 68px;
	padding: 0 29px;
	border-radius: 50px;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.prescription-slider .slide .foot {
	margin-top: auto;
	padding-top: 28px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.prescription-slider .slide .foot > div {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-size: 20px;
	font-weight: normal;
}
.prescription-slider .slide .foot > div svg {
	width: 20px;
	height: 15px;
	fill: #0F5C78;
}

.splide__pagination {
	position: absolute;
	bottom: -45px;
}
.reviews-slider .splide__pagination {bottom: 65px;}
.splide__pagination li {
	display: block;
	margin: 0 9px;
}
.splide__pagination button {
	display: block;
	margin: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #E3E3E3;
	opacity: 1;
	transform: none;
	transition: all 0.3s;
}
.splide__pagination button.is-active {
	width: 11px;
	height: 11px;
	background: #0F5C78;
}

@media (max-width: 1750px) {
	.prescription-slider {
		padding-left: 15px;
		padding-right: 15px;
	}
	.prescription-slider .slide {padding: 35px 30px 50px 30px;}
	.prescription-slider .slide h4 {font-size: 15px;}
	.prescription-slider .slide h3 {font-size: 25px;}
	.prescription-slider .slide h5 {font-size: 17px;}
	.prescription-slider .slide > p {font-size: 15px;}
	.prescription-slider .slide .btn {
		height: 50px;
		padding: 0 25px;
		min-width: 300px;
		font-size: 17px;
	}
	.prescription-slider .slide .foot {padding-top: 25px;}
	.prescription-slider .slide .foot > div {
		font-size: 15px;
		margin-top: 25px;
	}
	.prescription-slider .slide .foot > div svg {
		width: 15px;
		height: 10px;
	}
}

@media (max-width: 1600px) {
	.prescription-slider .slide {padding: 30px 25px 35px 25px;}
	.prescription-slider .slide h4 {font-size: 12px;}
	.prescription-slider .slide h3 {font-size: 19px;}
	.prescription-slider .slide h5 {font-size: 14px;}
	.prescription-slider .slide > p {font-size: 13px;}

	.prescription-slider .slide .btn {
	    min-height: 45px;
	    height: auto;
	    padding: 0 25px;
	    min-width: inherit;
	    font-size: 13px;
	}
	.prescription-slider .slide .foot > div {
	    font-size: 13px;
	    margin-top: 15px;
	    gap: 5px;
	}
	.prescription-slider .slide .foot > div svg {
	    width: 13px;
	    height: 8px;
	}
}

@media (max-width: 1200px) {
	.prescription-slider.is-initialized:not(.is-active) .splide__list {
		gap: 0 20px;
	}
	.prescription-slider {margin-top: 40px;}
	.prescription-slider .slide .btn {font-size: 12px;}
}

@media (max-width: 767px) {
	.prescription-slider {padding: 0 100px;}
}

@media (max-width: 550px) {
	.prescription {
		padding-top: 40px;
		border-width: 5px;
	}
	.prescription-slider {padding: 0 30px;}
	.prescription-slider .slide {padding: 30px 20px 35px 20px;}
	.prescription-slider .slide h4 {font-size: 3vw;}
	.prescription-slider .slide h3 {font-size: 4.5vw;}
	.prescription-slider .slide h5 {font-size: 3.5vw;}
	.prescription-slider .slide .btn {
		padding: 0 15px;
		font-size: 12px;
	}
	.prescription-slider .slide .btn svg {
		width: 7px;
		height: 10px;
	}
}

/* ------------------ REVIEWS SLIDER ------------------ */
.reviews-slider .head {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.reviews-slider .splide {
	position: relative;
	z-index: 2;
}
.reviews-slider .splide__track {padding: 75px 0 115px 0;}
.reviews-slider .inner {
	background: #fff;
	border-radius: 11px;
	padding: 28px 25px 30px 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 7px rgba(0, 62, 82, .03), 0 6px 6px rgba(0, 62, 82, .05), 0 18px 43px rgba(0, 62, 82, .15);
}
.reviews-slider .star {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 12px;
}
.reviews-slider .star svg {
	fill: var(--c-bluewhite);
}
.reviews-slider p {
	font-size: 12px;
	line-height: 1.5;
	font-family: var(--greycliff);
}
.reviews-slider p strong {font-weight: 600;}
.reviews-slider .inner > p {
	margin-bottom: 10px;
	max-width: 290px;
}
.reviews-slider .body {max-width: 300px;}
.reviews-slider .foot {
	margin-top: auto;
	font-size: 12px;
	font-family: var(--greycliff);
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.reviews-slider .foot p:last-child {color: var(--c-bluewhite);}

.reviews-slider-first {
	pointer-events: none;
	position: relative;
}
.reviews-slider-first:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 150px;
	background: red;
	transform: translateY(-50%);
	background: linear-gradient(0, transparent, #fff);
}
.reviews-slider-first .inner {
	text-align: left;
	direction: ltr;
}
.reviews-slider-first .stars {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 4px;
}
.reviews-slider-first .stars svg {fill: var(--c-bluewhite)}

@media (max-width: 1600px) {
	.reviews-slider .inner {padding: 18px;}
	.reviews-slider .star {margin-bottom: 10px;}
	.reviews-slider .foot {margin-top: auto;}
}

@media (max-width: 767px) {
	.reviews-slider .splide__track {padding: 75px 0 95px 0;}
	.reviews-slider .inner > p {max-width: 300px;}
	.reviews-slider-second {margin-top: -110px;}
}

@media (max-width: 550px) {
	.reviews-slider-first {position: relative;}
	.reviews-slider-first:before {
		content: '';
	    display: block;
	    width: 550px;
	    height: 1011px;
	    background: url(../img/lines/line-mob-3.svg) no-repeat;
	    background-size: 550px;
	    position: absolute;
	    top: -77px;
	    left: 0;
	    z-index: -1;
	}

	.reviews-slider .inner {padding: 25px;}
	.reviews-slider .star {gap: 3px;}
	.reviews-slider .star svg {
		width: 15px;
		height: 15px;
	}
	.reviews-slider p {font-size: 15px;}
	.reviews-slider .foot {font-size: 13px;}

	.reviews-slider-second {
		position: relative;
	}
	.reviews-slider-second:after {
		content: '';
	    display: block;
	    width: 640px;
	    height: 1011px;
	    background: url(../img/lines/line-mob-6.svg) no-repeat;
	    position: absolute;
	    left: 0;
	    bottom: 100%;
	    z-index: -2;
	    margin-bottom: -300px;
	}
}

@media (max-width: 414px) {
	.reviews-slider-first:before {
	    width: 414px;
	    height: 1011px;
	    background-size: 414px;
	    top: -78px;
	}

	.reviews-slider-second:after {
		width: 414px;
	    height: 770px;
	    background-size: 414px;
	    margin-bottom: -325px;
	}
}

@media (max-width: 413px) {
	.reviews-slider-first:before {top: -75px;}
}

/* ------------------ HEALTHCARE ------------------ */
.healthcare {padding: 35px 0 0;}
.healthcare .center {
	display: flex;
	gap: 0 145px;
}

.healthcare-content h2.title {
	font-size: 46px;
	line-height: 1.2;
	font-weight: normal;
}
.healthcare-content h2.title span {
	background: linear-gradient(90deg, #3092A5 0%, #63C7C7 150%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.healthcare-content ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 5px;
}
.healthcare-content ul li {
	padding: 52px 10px 40px 10px;
	border-right: 1.5px solid var(--c-bluewhite);
	border-bottom: 1.5px solid var(--c-bluewhite);
	text-align: center;
}
.healthcare-content ul li:nth-child(2),
.healthcare-content ul li:nth-child(4) {border-right: none;}
.healthcare-content ul li:nth-child(3),
.healthcare-content ul li:nth-child(4) {border-bottom: none;}
.healthcare-content ul li .icon {
	display: inline-block;
	position: relative;
	min-height: 90px;
}
.healthcare-content ul li:nth-child(1) .icon {
	width: 75px;
	height: 75px;
}
.healthcare-content ul li:nth-child(2) .icon {
	width: 90px;
	height: 90px;
	top: -10px;
}
.healthcare-content ul li:nth-child(3) .icon {
	width: 75px;
	height: 75px;
}
.healthcare-content ul li:nth-child(4) .icon {
	width: 80px;
	height: 80px;
}
.healthcare-content ul li h5 {
	font-size: 24px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 10px;
	color: #1B3D50;
}
.healthcare-content ul li p {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 300;
}

.healthcare-card {
	position: relative;
	max-width: 535px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
}
.healthcare-card .svg-line {
	position: absolute;
	top: -270px;
	left: -270px;
	z-index: -1;
}
.healthcare-card .wrap {
	background: #0F5C78;
	border-radius: 43px;
	padding: 15px 40px 50px 40px;
	box-shadow: 0 2px 19px rgba(0, 62, 82, 0.03), 0 16px 16px rgba(0, 62, 82, 0.05), 0 0 60px rgba(0, 62, 82, 0.1);
}
.healthcare-card .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 21px;
	font-weight: 300;
	padding-right: 25px;
}
.healthcare-card .head svg {
	width: 52px;
	height: 52px;
}
.healthcare-card h3 {
	font-size: 39px;
	font-weight: normal;
	line-height: 1.1;
	margin-top: 10px;
}

.healthcare-card ul {
	margin-top: 25px;
	margin-bottom: 30px;
}
.healthcare-card ul li {
	display: flex;
	align-items: start;
	gap: 0 7px;
	font-size: 18px;
	font-weight: 300;
}
.healthcare-card ul li + li {margin-top: 20px;}
.healthcare-card ul li svg {
	width: 20px;
	height: 15px;
	fill: #fff;
	position: relative;
	top: 5px;
}
.healthcare-card ul li strong {
	font-weight: 600;
}

.healthcare-card .btn-text {
	text-align: left;
	align-items: start;
	width: 100%;
}
.healthcare-card .btn {
	background: #fff;
	color: #0F5C78;
	width: 100%;
}
.healthcare-card .btn svg {stroke: #0F5C78;}
.healthcare-card .btn:hover {color: #fff;}
.healthcare-card .btn:hover svg {stroke: #fff;}
.healthcare-card .btn-text > p {
	margin-top: 25px;
	color: #fff;
}
.anim-dot {background: #00FF88;}
.healthcare-card > img {
	max-width: 328px;
	margin-top: 40px;
}

@media (max-width: 1600px) {
	.healthcare {padding: 0;}
	.healthcare-content h2.title {font-size: 35px;}
	.healthcare .center {gap: 0 70px;}
	.healthcare-content ul li .icon {zoom: 0.8;}
	.healthcare-content ul li {padding: 35px 10px 30px 10px;}
	.healthcare-content ul li h5 {font-size: 18px;}
	.healthcare-content ul li p {font-size: 14px;}

	.healthcare-card .head {font-size: 15px;}
	.healthcare-card .head svg {
	    width: 45px;
	    height: 45px;
	}
	.healthcare-card h3 {font-size: 35px;}
	.healthcare-card ul li {font-size: 15px;}
}

@media (max-width: 1200px) {
	.healthcare-card {max-width: 390px;}
	.healthcare .center {gap: 0 40px;}
	.healthcare-content h2.title {font-size: 30px;}
	.healthcare-content ul li .icon {zoom: 0.7;}
	.healthcare-content ul li {padding: 25px 10px 25px 10px;}
	.healthcare-content ul li h5 {
		font-size: 15px;
		margin-top: 10px;
	}
	.healthcare-content ul li p {font-size: 13px;}


	.healthcare-card .wrap {
		border-radius: 30px;
		padding: 15px 30px 35px 30px;
	}
	.healthcare-card .head svg {
	    width: 40px;
	    height: 40px;
	}
	.healthcare-card h3 {font-size: 29px;}
	.healthcare-card ul li svg {
		width: 15px;
		height: 12px;
	}
	.healthcare-card ul li + li {margin-top: 15px;}
	.healthcare-card .btn-text > p {margin-top: 20px;}

	.healthcare-card > img {
	    max-width: 270px;
	    margin-top: 25px;
	}
}

@media (max-width: 991px) {
	.healthcare .center {gap: 0 25px;}
	.healthcare-content h2.title {font-size: 28px;}
	.healthcare-content ul li .icon {zoom: 0.6;}
	.healthcare-content ul li h5 {font-size: 14px;}
	.healthcare-content ul li p {font-size: 12px;}

	.healthcare-card {max-width: 330px;}
	.healthcare-card .wrap {
	    border-radius: 25px;
	    padding: 15px 20px 25px 20px;
	}
	.healthcare-card h3 {font-size: 25px;}
	.healthcare-card ul li {font-size: 13px;}
}

@media (max-width: 786px) {
	.healthcare .center {
	    gap: 50px 0;
	    flex-direction: column;
	}

	.healthcare-content h2.title {
	    font-size: 35px;
	    text-align: center;
	    margin-bottom: 50px;
	}
	.healthcare-content ul li .icon {zoom: 1;}
	.healthcare-content ul li h5 {font-size: 19px;}
	.healthcare-content ul li p {font-size: 16px;}

	.healthcare-card {
	    max-width: 500px;
	    margin: 0 auto;
	}
	.healthcare-card .svg-line {
		transform-origin: center;
		transform: rotate(-20deg);
	}
	.healthcare-card .wrap {width: 100%;}
	.healthcare-card h3 {font-size: 30px;}
	.healthcare-card ul li {font-size: 16px;}
	.healthcare-card ul li svg {
	    width: 17px;
	    height: 14px;
	}
}

@media (max-width: 550px) {
	.healthcare {margin-top: -30px;}
	.healthcare-content h2.title {font-size: 6.5vw;}
	.healthcare-content ul {
		margin-left: -15px;
		margin-right: -15px;
	}
	.healthcare-content ul li .icon {zoom: 0.7;}
	.healthcare-content ul li h5 {font-size: 4vw;}
	.healthcare-content ul li p {font-size: 3vw;}

	.healthcare-card h3 {font-size: 7.5vw;} 
	.healthcare-card ul li {font-size: 3.5vw;}
	.healthcare-card .btn {min-width: inherit;}
}

/* ------------------ QUESTION ------------------ */
.question {
	position: relative;
	z-index: 5;
}

.question .main-title {
	text-align: left;
}
.question .main-title h2 {
	margin-top: 0;
}
.question .main-title p {
	margin-top: 10px;
}

.question .center {
	border-radius: 25px;
	padding: 40px 55px 105px 55px;
	position: relative;
	z-index: 2;
}
.question .svg-line {
	position: absolute;
	top: 200px;
	right: 100%;
	margin-right: -60px;
}

.question .image {
	position: absolute;
	top: -35px;
	right: -30px;
	max-width: 500px;
}

.question .subtitle {
	font-size: 27px;
	margin-top: 5px;
}

.question .accordeon {margin-top: 45px;}

@media (max-width: 1600px) {
	.question .subtitle {font-size: 23px;}
}

@media (max-width: 1200px) {
	.question .subtitle {font-size: 19px;}
	.question .accordeon {margin-top: 30px;}
	.question .svg-line {top: 145px;}
}

@media (max-width: 991px) {
	.question .subtitle {font-size: 18px;}
	.question .center {
	    padding: 30px 15px 30px 15px;
	    margin-top: -50px;
	}
	.question .image {
	    max-width: 300px;
	    right: -10px;
	}

	.question .accordeon {margin-top: 35px;}
}

@media (max-width: 767px) {
	.question {padding-bottom: 30px;}
	.question:after {display: none;}

	.question .main-title {text-align: center;}

	.question .center {
	    padding: 50px 15px 0 15px;
	    margin-top: 0;
	    border-radius: 0;
	}

	.question .image {
	    max-width: 350px;
	    right: inherit;
	    left: 30px;
	    top: -80px;
	}

	.question .heading {gap: 15px;}
	.question .heading svg {
		width: 40px;
		height: 40px;
	}
	.question .subtitle {
	    margin-top: 0px;
	    font-size: 16px;
		text-align: center;
		padding-left: 0;
	}

	.question .accordeon {margin-top: 30px;}
	.question .heading {
		display: block;
		text-align: center;
	}
}

@media (max-width: 550px) {
	.question .main-title h2 {font-size: 28px;}
	.question .svg-line {display: none;}
}

@media (max-width: 413px) {
	.question .main-title h2 {font-size: 24px;}
	.question .subtitle {font-size: 15px;}
}

/* ------------------ ACCORDEON ------------------ */
.accordeon {list-style: none;}
.btn-accordeon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 23px;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
}
.btn-accordeon:hover {color: #64ccca;}
.plus {
	width: 16px;
	min-width: 16px;
	height: 16px;
	display: inline-block;
	position: relative;
}
.plus:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #60A5BC;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	transition: all 0.3s;
}
.plus:before {
	content: '';
	display: block;
	height: 100%;
	width: 2px;
	background: #60A5BC;
	position: absolute;
	left: 50%;
	margin-left: -1px;
	transition: all 0.3s;
}
.item-accordeon {
	border-radius: 10px;
	border: 1px solid #E3E3E3;
	background: #fff;
}
.item-accordeon + .item-accordeon {margin-top: 23px;}

.item-accordeon.active .btn-accordeon .plus:after {
	transform-origin: center;
	transform: rotate(45deg);
}

.item-accordeon.active .btn-accordeon .plus:before {
	transform-origin: center;
	transform: rotate(45deg);
}
.inner-accordeon {
	padding: 0 23px 35px 23px;
	margin: 0 !important;
}
.inner-accordeon ul {
	list-style: none;
	font-size: 18px;
}
.inner-accordeon p {
	font-size: 18px;
	line-height: 1.4;
}
.inner-accordeon a {
	color: #0F5C78;
	text-decoration: underline;
}
.inner-accordeon a:hover {text-decoration: none;}
.inner-accordeon p + p {margin-top: 20px;}
.inner-accordeon ul strong {font-weight: 600;}
.inner-accordeon ul li + li {margin-top: 35px;}
.inner-accordeon ul li {
	padding-left: 15px;
	position: relative;
}
.inner-accordeon ul li:before {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	position: absolute;
	top: 11px;
	left: 0;
	background: #091938;
}
.content-accordeon {
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
} 

@media (max-width: 1500px) {
	.btn-accordeon {
		padding: 18px;
		font-size: 20px;
	}
	.item-accordeon + .item-accordeon {margin-top: 15px;}
	.inner-accordeon ul {font-size: 16px;}
	.inner-accordeon ul li + li {margin-top: 20px;}
}

@media (max-width: 767px) {
	.btn-accordeon {
	    padding: 15px 18px;
	    font-size: 15px;
	}
	.item-accordeon {border-radius: 7px;}
	.inner-accordeon ul li + li {margin-top: 25px;}
	.inner-accordeon ul li,
	.inner-accordeon p {font-size: 15px;}

	.plus {
		width: 13px;
		min-width: 13px;
		height: 13px;
        margin-left:6px;
	}
    div.btn-accordeon > span {
        padding-right:4px;
    }
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #093E52;
    padding-top: 30px;
    position: relative;
    z-index: 10;
    color: #558297;
}
.footer a {
	text-decoration: none;
	color: #558297 !important;
}
.footer a:hover {text-decoration: underline;}
.footer-row {
    display: flex;
    margin-right: -15px;
    margin-left: -15px
}
.footer-logo {
    display: inline-block;
    margin-bottom: 0px
}
.footer-logo svg {
	width: 146px;
	height: 41px;
}
.social a {
    width: 50px;
    height: 50px;
    background-color: #121629;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    transition: all .3s;
    margin:1px;
}
.social a:hover {
    background-color: #ccb27a;
}
.ic-phone {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/ic-phone.webp) no-repeat;
}
.social a.ic-fb {
    background-image: url(../img/ic-fb.webp);
    margin-right: 10px
}
.social a.ic-tw {
    background-image: url(../img/ic-tw.webp?2)
}
.social a.ic-in {
    background-image: url(../img/insta.png?1)
}
.social a.ic-tiktok {
    background-image: url(../img/tiktok.svg);
    background-size: 40%;
}
.social a.ic-linkedin {
    background-image: url(../img/linkedin-in.svg);
    background-size: 40%;
}
.footer-item {
    width: 20%;
    padding: 0 15px
}
.footer-item ul {list-style: none;}
.footer-item:first-child {
    min-width: 360px
}
.footer-item h3 {
    font-weight: 600;
    color: #61cbc8;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 20px;
}
.footer-item ul li + li {
    margin-top: 15px
}
.footer-item ul li a {
    color: #fff;
    transition: all .3s;
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1.5;
    font-size: 16px;
}
.footer-item ul li a:hover, .footer-item ul li.active a {
    color: #66d4cf
}
.footer-item ul li a:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    background: url(../img/ic-plus.png?1) no-repeat;
    margin-right: 8px;
    transition: all .3s;
    transform: scale(0)
}
.footer-item ul li a:hover:before, .footer-item ul li.active a:before {
    transform: scale(1);
    width: 18px;
    height: 19px
}
.footer .phone {
    color: #fff;
    margin-top: 45px;
    display: inline-flex;
    align-items: center;
    transition: all .3s;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}
.footer .phone:hover {
    color: #61cbc8
}
.footer .phone i {
    margin-right: 10px
}
.footer-copy {
    border-top: 1px solid #13495E;
    margin-top: 30px
}
.footer-copy .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 15px;
    font-size: 15px
}
.footer-copy div {
    display: flex;
    align-items: center
}
.footer-copy div a {
    color: #fff
}
.footer-copy div a:hover {
    text-decoration: underline
}
.footer-copy div span {
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    margin: 0 15px
}

.footer-bottom {
	padding: 30px 0;
	border-top: 1px solid #13495E;
}
.footer-bottom .center {
	display: flex;
	align-items: center;
}
.footer-bottom .text {
	width: 100%;
	font-family: var(--greycliff);
	font-size: 13px;
	line-height: 16px;
}
.footer-bottom .text a {text-decoration: underline;}
.footer-bottom .text a:hover {text-decoration: none;}
.footer-bottom .image {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 400px;
	margin-left: auto;
}
.footer-bottom a {color: #6676a2;}

@media (max-width: 1200px) {
    .footer-logo {
        width: 90px;
        height: 27px;
        margin-bottom: 30px;
        background-size: 90px
    }
    .social a {
        width: 30px;
        height: 30px;
        background-size: 14px
    }
    .social a.ic-fb {background-size: 8px !important;}
    .footer-item {padding: 0 10px;}
    .footer-item:first-child {min-width: inherit;}
    .footer-item h3 {margin-bottom: 15px;}
    .footer-item ul li + li {margin-top: 8px;}
    .footer-copy {margin-top: 40px;}
    .footer-copy .center {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 11px
    }
}

@media (max-width: 767px) {
    .page-plans .footer {padding-top: 50px; }
    .footer-row {
        flex-wrap: wrap;
        padding: 0 30px
    }
    .footer-item {
        width: 50%;
        padding: 0 5px;
        margin-bottom: 45px
    }
    .footer-item:first-child {
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .footer-logo {
        width: 220px;
        height: 42px;
        margin-bottom: 0;
        background-size: 150px
    }
    .footer-item .social {
        width: 50%;
        padding: 0 15px;
        line-height: 0
    }
    .social a {
        width: 50px;
        height: 50px;
        background-size: 22px
    }
    .social a.ic-fb {background-size: 12px !important;}
    .footer-item h3 {
        margin-bottom: 16px;
        font-size: 18px;
        text-align: left;       
    }
    .footer .phone {margin-top: 25px;}
    .footer-copy {margin-top: 15px;}
    .footer-copy .center {
        font-size: 15px;
        flex-direction: column
    }

    .footer-bottom {padding-bottom: 140px;}
    .footer-bottom .center {flex-direction: column;}
    .footer-bottom .image {
        margin-bottom: 30px;
        padding-bottom: 15px;
        width: 100%;
        order: -1;
        justify-content: center;
    }
    .footer-bottom .image img {margin: 0 30px;}
}

@media (max-width: 370px) {
	.footer-logo {
	    width: 150px;
	    background-size: 145px;
	}
}

/* ------------------ POPUP VIDEO ------------------ */
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9991;
    background: rgba(0,0,0,.8);
}

.popup {
    position: absolute;
    left: 50%;
    z-index: 9992;
    transform: translateX(-50%);
}

.popup-overlay,
.popup {
    display: none;
    opacity: 0;
}

.popup-overlay.active,
.popup.active {
    display: block;
    animation: opacity 0.5s linear forwards;
}

.universal_popup-overlay.active, .universal_popup.active {
	animation: none !important;
	opacity: 1;
}

@keyframes opacity {100% {opacity: 1;}}

.noScroll {
    overflow: hidden !important;
}

.popup-video .popup-close {
	position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #076a8c;
}
.popup-video .popup-close:hover {
    background: var(--c-bluewhite);
}
.popup-video .body {
	width: 920px;
	height: 530px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.popup-video .body video {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}
.popup-video > .popup-close {
	right: 10px;
	top: 10px;
}
.popup-video .inner .popup-close {
	width: inherit;
	height: inherit;	
	background: none;
	position: static;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	text-decoration: underline;
	display: inline-block;
	margin-top: 16px;
}
.popup-video .inner .popup-close:hover {
	text-decoration: none;
	background: none !important;
}
.popup-video .tx-c {
	margin-top: 18px;
	text-align: center;
}
.popup-video .btn {
	height: 48px;
	width: 300px;
	font-weight: bold;
	cursor: pointer;
}
.popup-video .btn svg {
	position: relative;
	z-index: 3;
	margin-right: 6px;
}

.popup-video .play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    margin-top: -65px;
    margin-left: -65px;
    background: rgba(0,0,0,.2);
}
.popup-video .play:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    background: rgba(0,0,0,.2);
    border-radius: 50%;
    animation: pulse-border 3000ms ease-out infinite;
}
.popup-video .play svg {margin-left: 5px;}
.popup-video .pause {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -65px;
    margin-left: -65px;
}
.popup-video .pause:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    background: rgba(0,0,0,.2);
    border-radius: 50%;
}
.popup-video .pause span {
    display: block;
    width: 10px;
    height: 50px;
    background: #fff;
    position: relative;
    z-index: 2;
}
.popup-video .pause span:first-child {
    margin-right: 15px;
}

.popup-video .pause,
.popup-video .play {
    opacity: 0;
    display: none;
    pointer-events: none;
}

.popup-video.pause-video .pause,
.popup-video.play-video .play {
    display: inline-flex;
    animation: anVideoBtn 0.3s linear forwards !important;
}
@keyframes anVideoBtn {
    0% {opacity: 1;}
    100% {opacity: 0; transform: scale(0.5); visibility: hidden;}
}

.universal_popup > .universal_popup-close {
	background: none !important;
}

@media (max-width: 1500px) {
	.popup-video .play, .popup-video .pause {
        width: 80px;
        height: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }
    .popup-video .play svg {
    	width: 35px;
    	height: 35px;
    }
}

@media (max-width: 1450px) {
	.popup-video .body {
		width: 700px;
		height: 400px;
	}
}

@media (max-width: 991px) {
	.popup-video .play, .popup-video .pause {
		width: 90px;
		height: 90px;
		margin-top: -45px;
		margin-left: -45px;
	}
	.popup-video .play:after {
	    border-top: 12px solid transparent;
	    border-left: 20px solid #fff;
	    border-bottom: 12px solid transparent;
	}
}

@media (max-width: 750px) {
	.popup-video .body {
		width: 350px;
		height: 200px;
	}

	.popup-close {
		width: 30px;
		height: 30px;
	}
	.popup-close svg {
		width: 12px;
		height: 12px;
	}

	.popup-video .play, .popup-video .pause {
        width: 70px;
        height: 70px;
        margin-top: -35px;
        margin-left: -35px;
    }
    .popup-video .play svg {
    	width: 30px;
    	height: 30px;
    }
    .popup-video .play:after {
        border-top: 12px solid transparent;
        border-left: 20px solid #fff;
        border-bottom: 12px solid transparent;
    }

    .popup-video .pause span {
        width: 5px;
        height: 35px;
    }
    .popup-video .pause span:first-child {margin-right: 8px;}
}

/* ANIMATION
-------------------------------------- */
.animated {
    opacity: 0;
    transition: opacity 500ms;
}

.animated.show {
    animation: fade-bottom 0.6s ease-in-out both;
}

.animated.fade-right.show {
    animation: fade-right 0.6s ease-in-out both;
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(50%);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}










