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

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

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

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

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

:root {
	--greycliff: 'Greycliff CF', sans-serif;
	--color: #093E52;
	--c-akcent: #096A8C;
	--c-whiteblue: #64CCC9;
}

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

body {
	font-family: var(--greycliff);
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	color: var(--color);
}

h2.title {
	font-size: 44px;
	line-height: 1.2;
	font-weight: 500;
	color: #0F5C78;
	margin-bottom: 8px;
}
h2.title span {color: #61CBC8;}

.subtitle {
	font-size: 20px;
	line-height: 1;
	color: #0F5C78;
}

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

a {text-decoration: none;}

.tx-c {text-align: center;}
.tx-l {text-align: left;}

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

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

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

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

.btn-box {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--c-akcent);
}
.btn-box h5 {
	font-size: 15px;
	margin-top: 13px;
	display: inline-flex;
	align-items: center;
}
.btn-box h5 svg {
	margin-left: 3px;
	position: relative;
	top: 1px;
	fill: #096A8C;
}
.btn-box p {
	font-size: 13px;
	line-height: 1.5;
	margin-top: 2px;
	position: relative;
	display: inline-block;
}
.btn-box p strong {
	font-weight: 500;
	position: relative;
}
.btn-box p strong svg {
	position: absolute;
	bottom: 2px;
	left: 100%;
	margin-left: 4px;
	fill: #096A8C;
}
.btn-box a:not(.btn) {
	color: #0b4053;
	text-decoration: underline;
}
.btn-box a:not(.btn):hover {text-decoration: none;}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 52px;
	width: 350px;
	font-size: 17px;
	font-weight: 500;
	background: #096A8C;
	border-radius: 16px;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	animation: shadow-pulse 3s infinite;
}
.btn b {font-weight: bold;}
.btn span,
.btn b {
	position: relative;
	z-index: 2;
}
.btn svg {
	width: 9px;
	height: 14px;
	fill: #fff;
	margin-left: 6px;
	position: relative;
	top: 1px;
	z-index: 2;
	transition: all 0.3s;
}
.btn:after {
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	z-index: 1;
	border-radius: 8px;
	background: #61cbc8;
	transform: scale(0);
	transition: all 0.3s;
}
.btn:hover:after {transform: scale(1);}
.btn:hover svg {transform: translateX(10px);}

.path {
    stroke-dasharray: 300;
    animation: dash 5s linear infinite;
}

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

@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}
}

.btn-fix {
	position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 99;
    padding: 10px;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0,0,0,.1);
    visibility: hidden;
    transition: all 0.3s;
}
.btn-fix.show {
	visibility: visible;
	bottom: 0;
}
.btn-fix .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #096A8C;
	color: #fff;
	padding: 12px 10px 14px 10px;
	animation: shadow-pulse 3s infinite;
	border-radius: 16px;
}
.btn-fix .inner strong {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}
.btn-fix .inner span {
	font-weight: 500;
	font-size: 13px;
	line-height: 1.3;
	margin-top: 3px;
}

#home > div.center > div.home-fda.d-none.s-750.animated.show > p {
    line-height:1.5
}
@media (max-width: 1500px) {
	body {font-size: 13px;}

	h2.title {font-size: 33px;}
	.subtitle {font-size: 16px;}

	.center {max-width: 1000px;}

	.btn {
	    height: 45px;
	    width: 300px;
	    font-size: 15px;
	    border-radius: 10px;
	}
	.btn svg {
		width: 7px;
		height: 12px;
	}
	.btn-box h5 {font-size: 13px;}
	.btn-box p {
		font-size: 11.5px;
		margin-top: 4px;
	}
} 

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

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

	.btn {
	    height: 55px;
	    width: 350px;
	    font-size: 18px;
	}
	.btn svg {
	    width: 7px;
	    height: 12px;
	    top: 2px;
	}
	.btn-box h5 {
		font-size: 15px;
		margin-top: 15px;
	}
	.btn-box p {font-size: 13.3px;}
}

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

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

@media (max-width: 413px) {
	h2.title {font-size: 25px;}
	.btn-box {width: 100%;}
	.btn {
	    height: 50px;
	    width: inherit;
	    font-size: 17px;
	}
	.btn-box h5 {
		font-size: 14px;
		margin-top: 17px;
	}
	.btn-box p {
		font-size: 12.5px;
	}
}

/* ------------------ HEADER ------------------ */
.head-sidebar {
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	color: #FFFFFF;
	background: linear-gradient(45deg, #00698B, #63C7C7, #00698B, #63C7C7);
	background-size: 300% 300%;
	animation: gradient-animation 25s ease infinite;
}

@keyframes gradient-animation {
    0% {background-position: 0% 50%;}
    25% {background-position: 50% 100%;}
    50% {background-position: 100% 50%;}
    75% {background-position: 50% 0%;}
    100% {background-position: 0% 50%;}
}

.head-sidebar strong {font-weight: 500;}
.head-sidebar a {
	text-decoration: none;
	transition: all 0.3s;
	color: #FFFFFF;
	font-weight: bold;
}
.head-sidebar a:hover {opacity: 0.7;}

#header {
	background: #E2F2F3; 
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 991;
}
#header .head-main .center {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 19px;
	padding-bottom: 19px;
	max-width: 1190px;
}

.logo {
    width: 132px;
    height: 40px;
    float: none;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/logo.svg) no-repeat center;
    background-size: contain;
}

#nav {
	margin-right: 24px;
	margin-left: auto;
}
#nav ul {
	display: flex;
	list-style: none;
}
#nav ul li + li {margin-left: 15px;}
#nav a {
	text-decoration: none;
	color: var(--color);
	position: relative;
	padding: 10px 0;
	transition: all 0.3s;
}
#nav a:after {
	content: '';
	display: block;
	height: 2px;
	background: var(--color);
	position: absolute;
	left: 0;
	top: 100%;
	width: 0;
	transition: all 0.3s;
}
#nav a:hover:after {width: 100%;}
#nav a:hover {opacity: 0.7;}

.head-btn {
	height: 44px;
	padding: 0 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 500;
	background: #096A8C;
	border-radius: 16px;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	margin-right: -50px;
}
.head-btn span {
	position: relative;
	z-index: 2;
}
.head-btn:after {
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	z-index: 1;
	border-radius: 15px;
	background: #61cbc8;
	transform: scale(0);
	transition: all 0.3s;
}
.head-btn:hover:after {transform: scale(1);}

@media (max-width: 1500px) {
	#header .head-main .center {max-width: 1000px;}
	.logo {
		width: 110px;
		height: 33px;
	}

	#nav {margin-right: 15px;}
	#nav ul li + li {margin-left: 10px;}

	.head-btn {
		height: 40px;
		padding: 0 15px;
		font-size: 14px;
		margin-right: 0;
	}
}

@media (max-width: 1300px) {
	.head-btn {
		height: 40px;
		padding: 0 15px;
		font-size: 13px;
	}
}

@media (max-width: 1100px) {
	.logo {margin-left: 50px;}

	.head-sidebar {font-size: 13px;}
	#header .head-main .center {
		padding-top: 15px;
		padding-bottom: 15px;
		position: relative;
	}

	.btn-nav {
		width: 20px;
		height: 20px;
		background: none;
		outline: none;
		border: none;
		display: block !important;
		position: absolute;
		left: 15px;
		top: 50%;
		z-index: 993;
		transform: translateY(-50%);
	}
	.btn-nav span {
		height: 1px;
		width: 100%;
		display: block;
		background: #093E52;
		transform-origin: center;
		transition: all 0.3s;
	}
	.btn-nav span + span {
		margin-top: 7px;
	}
	.nav-open .btn-nav span {
		position: absolute;
		top: 50%;
		margin-top: -0.5px;
	}
	.nav-open .btn-nav span:first-child {transform: rotate(45deg);}
	.nav-open .btn-nav span:nth-child(2) {display: none;}
	.nav-open .btn-nav span:last-child {transform: rotate(-45deg);}

	#nav {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    position: fixed;
	    top: 0;
	    left: -100%;
	    bottom: 0;
	    width: 100%;
	    z-index: -2;
	    background: #fff;
	    margin-right: 0;
	    visibility: hidden;
	    transition: all 0.3s;
	}
	#nav ul {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	#nav ul a {font-size: 20px;}
	#nav ul a:after {display: none;}
	#nav ul li + li {
		margin-left: 0;
		margin-top: 15px;
	}
	.nav-open #nav {
		left: 0;
		visibility: visible;
	}

	#nav .head-btn {
		display: inline-flex !important;
		color: #fff;
		padding: 0 35px;
		margin-top: 30px;
		font-weight: bold;
		font-size: 17px;
		height: 55px;
	}
}

@media (max-width: 767px) {
	.head-btn {display: none;}
	#header .head-main .center {justify-content: center;}
	.logo {
		width: 100px;
		height: 30px;
		margin-left: 0;
	}
}

/* ------------------ HOME ------------------ */
.home {
	position: relative;
	margin-top: 121px;
}
.home .svg-left {
	position: absolute;
	top: -15px;
	left: -5px;
	width: 312px;
	height: 429px;
}

.home .center {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 80px;
	padding: 50px 15px 58px 15px;
	max-width: 1190px;
}

.home-slider .main-slider .splide__slide {
	overflow: hidden;
	border-radius: 25px;
}

.home-slider .thumbnail-slider {
	margin-top: 15px;
	margin-left: -4.5px;
	margin-right: -4.5px;
}
.home-slider .thumbnail-slider .splide__track {overflow: visible;}
.home-slider .thumbnail-slider .splide__slide {
	padding: 0 4.5px;
	border: none !important;
}
.home-slider .thumbnail-slider .wrap {
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	transition: all 0.3s;
	display: flex;
}
.home-slider .thumbnail-slider .wrap img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.home-slider .thumbnail-slider .splide__slide.is-active .wrap,
.home-slider .thumbnail-slider .splide__slide:hover .wrap {
	box-shadow: 0 5px 10px rgba(0, 62, 82, 0.2);
}

.home-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home-content .title {
	font-size: 43px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--c-akcent);
}
.home-content .title > b {
	background: linear-gradient(90deg, #096A8C, #63C7C7);
	background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}
.home-content .title .sup {
	font-size: 14px;
	font-weight: 500;
	position: relative;
	top: -19px;
/*	top: -12px;*/
	color: #64C8C8;
}

.home-content .subtitle {
	font-size: 15px;
	margin-top: 5px;
	color: #093E52;
}

.home-content .subtitle b{
    display:block;
    margin-top:10px;
    font-size: 20px;
}
.home-list {
	list-style: none;
	margin: 25px 0 25px;
}
.home-list li {
	font-size: 20px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.home-list li sup {
	line-height: 0;
	font-size: 0.8em;
	position: relative;
	top: 3px;
}
.home-list li:nth-child(1) .icon * {fill: #083e52;}
.home-list li:nth-child(2) {animation-delay: 0.8s !important;}
.home-list li:nth-child(3) {animation-delay: 1s !important;}
.home-list li + li {margin-top: 15px;}
.home-list .ic-wrap {
	min-width: 26px;
	display: flex;
	align-items: center;
}
.home-list .icon {margin-top: 7px;}
.home-list .ic-one {
	width: 26px;
	height: 26px;
}
.home-list .ic-two {
	width: 26px;
	height: 26px;
}
.home-list .ic-three {
	width: 26px;
	height: 21px;
}

.home-content .btn-box {
	max-width: 460px;
	width: 100%;
	animation-delay: 1s !important;
}
.home-content .btn {width: 100%;}

/*
.home-fda {
	display: inline-block;
	margin-top: auto;
	min-width: 440px;
	text-align: center;
	padding: 40px 30px 20px;
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	border: 1px solid #4298C0;
	border-radius: 20px;
    max-width: 87%;
	font-smoothing: auto;
	-webkit-font-smoothing: auto;
}
*/

.home-fda {
	display: inline-block;
    margin-top: auto;
	margin-left: 15px;
	min-width: 440px;
	text-align: center;
	padding: 40px 20px 20px;
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	border: 1px solid #4298C0;
	border-radius: 20px;
	font-smoothing: auto;
	-webkit-font-smoothing: auto;
    max-width: 87%;
    margin-left: 0;
    margin-right: 0;

}
.home .home-fda {    
	margin-top: 45px;
    margin-bottom: 20px;
}
.home .home-fda .r {
	line-height: 0;
	font-size: 0.8em;
	position: relative;
	top: 2px;
}
.home-fda.h-750{
/*    top: 30px;*/
    top: 10px;
}
.home-fda .icon {
	width: 80px;
	height: 80px;
	padding: 0 5px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.home-fda .icon:after {
	content: '';
	display: block;
	position: absolute;
	top: -5px;
	right: -5px;
	left: -5px;
	bottom: -5px;
	background: #fff;
	border-radius: 50%;
	z-index: -1;
}
.home-fda .icon img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -40px;
	margin-left: -40px;
}
.home-fda .icon img:first-child {
	display: block;
	animation: spin 5s linear infinite;
}
.home-fda span {color: var(--c-whiteblue);}

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

@media (max-width: 1500px) {
	.home {margin-top: 114px;}

	.home .svg-left {
		width: 250px;
		height: 340px;
	}

	.home .center {
	    gap: 24px 50px;
	    padding: 40px 15px 50px 15px;
	    max-width: 1000px;
	}

	.home-slider .main-slider .splide__slide {border-radius: 20px;}
	.home-slider .thumbnail-slider .wrap {border-radius: 14px;}

	.home-content .title {font-size: 33px;}
	.home-list li {
		font-size: 16px;
		gap: 15px;
	}
	.home-list li + li {margin-top: 10px;}

	.home-content .btn-box {max-width: 360px;}

	.home-fda {
	    padding: 35px 10px 15px;
	    font-size: 14px;
	    border-radius: 17px;
	    margin-left: 0;
		width: 360px;
        min-width:unset;
	}
	.home-fda .icon {
		width: 65px;
		height: 65px;
	}
	.home-fda .icon img {
		margin-top: -32.5px;
		margin-left: -32.5px;
	}
}

@media (max-width: 991px) {
	.home {margin-top: 105px;}

	.home .svg-left {
	    width: 200px;
	    height: 300px;
	}

	.home .center {gap: 24px 35px;}

	.home-slider .thumbnail-slider .wrap {max-height: 75px;}

	.home-content .title {font-size: 23px;}
	.home-content .subtitle {font-size: 12px;}

	.home-list {margin: 15px 0 15px;}
	.home-list li {
	    font-size: 14px;
	    gap: 10px;
	}

	.home-content .btn-box {max-width: 320px;}

	.home-fda {
	    padding: 25px 15px 15px;
	    font-size: 12px;
        max-width:316px;
        min-width: unset;
	}
	.home-fda .icon {
		width: 55px;
		height: 55px;
	}
	.home-fda .icon img {
		margin-top: -27.5px;
		margin-left: -27.5px;
	}
}

@media (max-width: 750px) {
	.home {margin-top: 95px;}

	.home .svg-right {
		position: absolute;
		top: -5px;
		right: -5px;
	}

	.home .image {
		position: absolute;
		top: 200px;
		right: 0;
	}
	.home .center {grid-template-columns: 1fr;}
	.home-content {
		order: -1;
		position: relative;
	}
	.home-content .title {font-size: 8vw;}
	.home-content .subtitle {
		font-size: 20px;
		margin-top: 10px;
	}
    .home-content .subtitle,
    .home-content .subtitle b{
        padding:0;
        margin:0;
        font-size: 24px;
    }
    .home-content .subtitle b{
        margin-top:10px;
    }
	.home-list {margin: 40px 0 35px;}
	.home-list li {
	    font-size: 20px;
	    gap: 20px;
	}
	.home-list li + li {margin-top: 30px;}

	.home-fda {
		padding: 70px 20px 25px;
		font-size: 20px;
		margin-top: 60px;
        width:100%;
        max-width:unset;
	}
	.home-fda .icon {
		width: 100px;
		height: 100px;
	}
	.home-fda .icon img {
		margin-top: -50px;
		margin-left: -50px;
	}
}

@media (max-width: 600px) {
	.home {margin-top: 105px;}

	.home .center {padding: 40px 15px 40px 15px;}

	.home-content .title .sup {top: -15px;}
	.home-content .subtitle {
	    font-size: 13px;
	    color: #093E52;
	}
    .home-content .subtitle b{
        font-size: 18px;
    }

	.home .svg-right {
	    position: absolute;
	    top: -50px;
	    right: -5px;
	    width: 200px;
	    height: 200px;
	}

	.home-list {margin: 30px 0 20px;}
	.home-list li {
	    font-size: 16px;
	    gap: 15px;
	}
	.home-list li + li {margin-top: 20px;}
	.home-list .icon {margin-top: 3px;}

	.home .image {
	    position: absolute;
	    top: 120px;
	    right: 0px;
	    max-width: 125px;
	}

	.home-content .btn-box {
	    max-width: inherit;
	    position: relative;
	    z-index: 2;
	}
	.home-slider .thumbnail-slider {margin-top: 10px;}
	.home-slider .thumbnail-slider .splide__slide {padding: 0 4px;}

	.home-fda {
	    padding: 55px 15px 15px 15px;
/*	    font-size: 15px;*/
	    font-size: 13px;
	    margin-top: 40px;
	}
	.home-fda .icon {
		width: 90px;
		height: 90px;
	}
	.home-fda .icon img {
		margin-top: -45px;
		margin-left: -45px;
	}
}

@media (max-width: 413px) {
	.home-list li {
	    font-size: 14px;
	    gap: 10px;
	}
	.home .image {
	    top: 115px;
	    max-width: 115px;
	}

	.home-fda {
		font-size: 14px;
		padding-top: 45px;
	}
	.home-fda .icon {
		width: 80px;
		height: 80px;
	}
	.home-fda .icon img {
		margin-top: -40px;
		margin-left: -40px;
	}
}

@media (max-width: 375px) {
	.home-fda {font-size: 13px;}
}

/* ------------------ MEDICATION SLIDER ------------------ */
.medication-slider {
	background: #F0F7FA;
	padding-top: 40px;
	padding-bottom: 5px;
}

.medication-slider + .section-btn {background: #F0F7FA;}
.medication-slider .splide__slide {padding: 0 12.5px;}
.medication-slider .item {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	height: 100%;
}
.medication-slider .js-play {
	top: initial;
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	background: #378fab;
}
.medication-slider .js-play:after {
	border-top: 9px solid transparent;
	border-left: 14px solid #fff;
	border-bottom: 9px solid transparent;
	margin-right: -4px;
}
.medication-slider .js-stop {display: none;}
.medication-slider .item > img {
	display: block;
	width: 100%;
	height: 100%;
}
.medication-slider .item.c-white {color: #fff;}
.medication-slider .item.c-black {color: #005B79;}
.medication-slider .head {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 30px 15px 0 15px;
}
.medication-slider .head strong {
	display: block;
	font-size: 16px;
}
.medication-slider .item.c-black strong {color: #00698B;}
.medication-slider .head p.tx-small {
	font-size: 19px;
	line-height: 1.3;
	margin-top: 15px;
}
.medication-slider .head p {
	font-size: 22px;
	margin-top: 15px;
}
.medication-slider .head a {color: #005B79;}
.medication-slider .head span {
	display: block;
	font-size: 13px;
	margin-top: 10px;
}
.medication-slider .foot {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 20px;
	text-align: center;
	color: #00698B;
}
.medication-slider [data-universal_popup="important"] {
	font-size: 13px;
	font-weight: 300;
	color: #00698B;
	margin-top: 15px;
	display: inline-flex;
	text-decoration: underline;
}
.medication-slider [data-universal_popup="important"]:hover {text-decoration: none;}
.medication-slider .splide__pagination {display: none;}

.splide__pagination {
	position: static;
	margin-top: 40px;
	display: flex;
	align-items: center;
}
.splide__pagination li {
	margin: 0 8px;
}
.splide__pagination button {
	width: 15px;
	height: 15px;
	background: rgba(100, 204, 201, 0.3);
	opacity: 1;
	margin: 0;
	display: block;
}
.splide__pagination button:after {
	content: '';
	display: block;
	border-radius: 50%;
	background: #64CCC9;
	transition: all 0.3s;
	position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
	opacity: 0;
}
.splide__pagination button.is-active {
	background: rgba(100, 204, 201, 0.3);
	transform: none;
}
.splide__pagination button.is-active:after {
	opacity: 1;
}

@media (max-width: 1800px) {
	.medication-slider .foot {font-size: 13px;}
}

@media (max-width: 1600px) {
	.medication-slider .splide__slide {padding: 0 8px;}
	.medication-slider .item {border-radius: 20px;}
	.medication-slider .js-play {zoom: 0.8;}
	.medication-slider .head {padding: 20px;}
	.medication-slider .head strong {font-size: 14px;}
	.medication-slider .head p.tx-small {
		font-size: 13px;
		margin-top: 10px;
	}
	.medication-slider .head span {
		font-size: 9px;
		margin-top: 7px;
	}
	.medication-slider .head p {font-size: 14px;}
	.medication-slider .foot {
		left: 10px;
		right: 10px;
		bottom: 15px;
		font-size: 10px;
	}
	.medication-slider .foot br {display: none;}
	.medication-slider [data-universal_popup="important"] {font-size: 11px;}
}

@media (max-width: 1200px) {
	.medication-slider .head {padding: 15px;}
	.medication-slider .head strong {font-size: 12px;}
	.medication-slider .head p.tx-small {
	    font-size: 12px;
	    margin-top: 5px;
	}
	.medication-slider .head p {font-size: 14px;}
}

@media (max-width: 767px) {
	.medication-slider .splide__slide {padding: 0 10px;}
}

@media (max-width: 600px) {
	.medication-slider .head strong {
	    font-size: 14px;
	}

	.medication-slider .head p.tx-small {
	    font-size: 17px;
	    margin-top: 10px;
	}

	.medication-slider .head span {
	    font-size: 11px;
	    margin-top: 13px;
	}

	.medication-slider .head p {
	    font-size: 20px;
	    margin-top: 10px;
	}
}

@media (max-width: 413px) {
	.medication-slider .head p.tx-small {font-size: 17px;}
	.medication-slider .head p.tx-small br {display: none;}
	.medication-slider .head p {font-size: 19px;}
	.medication-slider .head p br {display: none;}
}

/* ------------------ SLIDER LINE ------------------ */
.slider-line {
	background: #F0F7FA;
	pointer-events: none;
	padding: 20px 0;
}
.slider-line .splide__pagination {display: none;}
.slider-line-2 {background: #fff;}
.slider-line .splide__slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1500px) {
	.slider-line {padding: 5px 0;}
}

@media (max-width: 767px) {
	.slider-line {padding: 20px 0;}
	.slider-line .splide__slide img {
		max-height: 50px;
		max-width: 75px;
	}
}

/* ------------------ ZEPBOUND ------------------ */
.zepbound {
	padding: 30px 0 0;
	background: url(../img/bg-zepbound.png) no-repeat center;
	background-size: cover;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.zepbound .svg-left {
	position: absolute;
	top: -50px;
	left: 0;
}
.zepbound .svg-right {
	position: absolute;
	bottom: 0;
	right: 0;
}

.logo-body {
	background: url(../img/logo-white.svg) no-repeat;
	width: 123px;
	height: 48px;
	display: inline-block;
}

.zepbound .title {
	font-weight: 500;
	font-size: 58px;
	line-height: 1;
	color: #fff;
	margin-top: 20px;
}
.zepbound .title .sup {
	font-size: 17px;
	position: relative;
	top: -31px;
	color: #fff;
}
.zepbound .title strong {font-weight: bold;}

.zepbound .subtitle {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	color: #fff;
}
.zepbound .subtitle strong {font-weight: bold;}

.zepbound .wrap {position: relative;}

.zepbound-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 270px;
	max-width: 790px;
	margin: 0 auto 0 auto;
	padding: 87px 0 98px 0;
}
.zepbound-list .left {text-align: right;}
.zepbound-list .right {text-align: left;}
.zepbound-list .item {
	min-height: 60px;
	background: #003E53;
	border-radius: 40px;
	padding: 0 30px;
	display: inline-flex;
	align-items: center;
	font-size: 17px;
	font-weight: 500;
}
.zepbound-list .left .item {justify-content: flex-end;}
.zepbound-list .right .item {justify-content: flex-start;}
.zepbound-list .item:nth-child(1) {min-width: 250px;}
.zepbound-list .item:nth-child(2) {
	min-width: 200px;
	animation-delay: 0.8s !important;
}
.zepbound-list .item:nth-child(3) {
	min-width: 265px;
	animation-delay: 1s !important;
}
.zepbound-list .item.inversion {background: #086A8D;}
.zepbound-list .item + .item {margin-top: 22px;}
.zepbound-list .item .icon {
	min-width: 22px;
	margin-right: 10px;
	display: inline-flex;
	align-items: center;
}

.zepbound .image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 195px;
	margin-left: 5px;
	margin-top: 40px;
}

@media (max-width: 1500px) {
	.zepbound .svg-left {left: -100px;}
	.zepbound .svg-right {right: -55px;}

	.zepbound .title {
	    font-size: 45px;
	    margin-top: 15px;
	}
	.zepbound .subtitle {font-size: 21px;}

	.zepbound-list {
		gap: 0 225px;
		max-width: 705px;
		padding: 70px 0 75px 0;
	}
	.zepbound-list .item {
		min-height: 50px;
		padding: 0 20px;
		font-size: 15px;
	}
	.zepbound-list .item:nth-child(1) {min-width: 215px;}
	.zepbound-list .item:nth-child(2) {min-width: 175px;}
	.zepbound-list .item:nth-child(3) {min-width: 230px;}
	.zepbound-list .item + .item {margin-top: 18px;}

	.zepbound .image {
		max-width: 150px;
		margin-top: 35px;
	}
}

@media (max-width: 1200px) {
	.zepbound .svg-left {
	    width: 250px;
	    height: 360px;
	}
	.zepbound .svg-right {
	    width: 200px;
	    height: 300px;
	}
}

@media (max-width: 991px) {
	.zepbound .title {font-size: 30px;}
	.zepbound .title .sup {top: -12px;}
	.zepbound .subtitle {font-size: 14px;}
	.zepbound-list {gap: 0 200px;}
}

@media (max-width: 750px) {
	.zepbound-list {
	    gap: 0 160px;
	}
	.zepbound-list .item {
		min-height: 45px;
		padding: 0 15px;
		font-size: 14px;
	}
	.zepbound-list .item .icon {
		min-width: 20px;
		margin-right: 5px;
	}
	.zepbound-list .item:nth-child(1) {min-width: 185px;}
	.zepbound-list .item:nth-child(2) {min-width: 155px;}
	.zepbound-list .item:nth-child(3) {min-width: 200px;}

	.zepbound .image {
		max-width: 130px;
		margin-top: 40px;
		margin-left: 0;
	}
}

@media (max-width: 600px) {
	.zepbound {
		padding: 20px 0 0px;
		background: url(../img/bg-zepbound-mob.png) no-repeat center;
		background-size: cover;
	}
	.zepbound:after {display: none;}

	.zepbound .title {
	    font-size:12vw;
	    line-height: 1.2;
	    margin-top: 10px;
	}
	.zepbound .subtitle {
	    font-size: 17px;
	    line-height: 1.3;
	    margin-top: 15px;
	}

	.zepbound .image {
	    max-width: 170px;
	    margin-top: 0;
	    margin-left: 0;
	    position: static;
	    transform: none;
	}

	.zepbound .wrap {
	    position: relative;
	    display: flex;
	    align-items: center;
	    margin-top: 30px;
	}

	.zepbound-list {
	    gap: 15px;
	    grid-template-columns: 1fr;
	    padding: 0;
	    order: 1;
	    margin: 0 0 0 auto;
	}
	.zepbound-list .left,
	.zepbound-list .right {
		text-align: left;
	    display: flex;
	    flex-direction: column;
	    align-items: flex-start;
	}
	.zepbound-list .item {
		width: 100% !important;
	    max-width: 200px;
	    min-width: auto !important;
		min-height: 35px;
		padding: 0 15px;
		font-size: 14px;
		flex-direction: row;
	    justify-content: flex-start !important;
	    align-items: center;
	}
	.zepbound-list .item + .item {margin-top: 12px;}
	.zepbound-list .item .icon {
	    min-width: auto;
	    max-width: 18px;
	    margin-right: 7px;
	}
}

@media (max-width: 413px) {
	.zepbound .image {max-width: 160px;}
	.zepbound-list .item {font-size: 11px;}
	.zepbound-list .item + .item {margin-top: 9px;}
}

/* ------------------ PATIENTS ------------------ */
.main-title {text-align: center;}
.main-title p {
    font-size: 16px;
    font-weight: 300;
    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;
    color: #096A8C;
}
.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;}
}

.patients {
    padding: 50px 0 0 0;
    position: relative;
    color: #0f5c78;
    font-smoothing: auto;
    -webkit-font-smoothing: auto;
}
.question + .patients {
    padding:0;
    margin:40px auto 40px;
}
.patients .center {max-width: 1543px;}
.patients .slider-preparation__foot {
    width:90%;
    margin:0 auto;
}
.patients:after {
    content: '';
    display: block;
    background: linear-gradient(90deg, #fff, transparent);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
}
.patients .svg-line {
    position: absolute;
    top: -70px;
    right: 0;
    z-index: -1;
}
.patients .svg-line:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0, transparent, #fff);
}

.patients .svg-left {
    position: absolute;
    left: 0;
    bottom: -100px;
    transform-origin: center;
    transform: rotate(260deg);
}

.patients .svg-right {
    position: absolute;
    right: 0;
    bottom: -5px;
}

.patients .subtitle {font-size: 18px;}

.text-bottom {
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
    position: relative;
    z-index: 3;
    color: #096A8C;
}

.mainslider {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
}

.mainslider .svg-line {
    position: absolute;
    right: 100%;
    top: 100%;
    margin-top: -190px;
    margin-right: -150px;
}
.mainslider .svg-line:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent, #fff);
}
.mainslider .slide {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 0 60px;
    padding: 0 20px;
    height: 100%;
}
.mainslider .image {
    padding-left: 86px;
    position: relative;
}

.mainslider .position {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}
.mainslider .position .before {animation-delay: 0.2s !important;}

.mainslider .before {
    max-width: 172px;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}
.mainslider .before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mainslider .before .label {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 63px;
    height: 21px;
    border-radius: 30px;
    font-family: var(--addingtoncf);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    background: rgba(255, 255, 255, .8);
    text-align: center;
    color: #096A8C;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainslider .before .label span {
    position: relative;
    top: -1px;
}

.mainslider .weight {
    width: 100%;
    box-shadow: 3px 4px 6.2px 6px rgba(0, 0, 0, 0.03);
    border-radius: 27px;
    color: #096A8C;
    font-size: 24px;
    font-weight: 500;
    padding: 13px 20px;
    background: #fff;
    margin-top: 35px;
    text-align: center;
    animation-delay: 0.4s !important;
}
.mainslider .weight div {padding: 3px 0;}
.mainslider .weight strong {
    font-size: 50px;
    line-height: 1;
    border-top: 1px solid rgba(9, 106, 140, .25);
    border-bottom: 1px solid rgba(9, 106, 140, .25);
    display: block;
    padding: 4px 0 8px 0;
}

.mainslider .after {
    border-radius: 27px;
    overflow: hidden;
    height: 100%;
    max-width: 450px;
    position: relative;
}
.mainslider .after img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mainslider .after .label {
    position: absolute;
    right: 15px;
    bottom: 20px;
    width: 86px;
    height: 29px;
    border-radius: 30px;
    font-family: var(--addingtoncf);
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    background: rgba(255, 255, 255, .8);
    text-align: center;
    color: #096A8C;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainslider .after .label span {
    position: relative;
    top: -2px;
}
.mainslider .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 50px 0;
}
.mainslider .content h6 {
    font-size: 24px;
    font-weight: normal;
    color: #096A8C;
    margin-bottom: 34px;
}
.mainslider .content h3 {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 35px;
    animation-delay: 0.1s;
}
.mainslider .content h3 span {color: #67CCCA;}
.mainslider .content p {
    font-size: 21px;
    line-height: 1.4;
    animation-delay: 0.2s;
    margin-bottom: 30px;
}
.mainslider .content p strong {font-weight: 600;}
.mainslider .content .btn {
    border-radius: 50px;
    padding: 0 43px;
    animation-delay: 0.3s;
    margin-top: auto;
    gap: 0 11px;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
.mainslider .content .btn span:first-letter {text-transform: uppercase;}
.mainslider .content .btn svg {
    fill: #fff;
    position: relative;
    z-index: 2;
}
.mainslider .splide__arrow {
    opacity: 1;
    width: 29px;
    height: 60px;
    border-radius: 0;
    background: none;
    outline: none;
}
.mainslider .splide__arrow:after {
    display: block;
    content: '';
    background: url(../img/patients/arr.svg) no-repeat center;
    transform-origin: center;
    width: 29px;
    height: 60px;
}
.mainslider .splide__arrow svg {display: none;}
.mainslider .splide__arrow--prev:after {transform: rotate(-180deg);}
.mainslider .splide__arrow--prev {left: -50px;}
.mainslider .splide__arrow--next {right: -50px;}

.thumbnail-slider {
    z-index: 2;
    margin-top: 50px;
}
.thumbnail-slider .splide__track {padding: 10px 0;}
.thumbnail-slider:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    background: linear-gradient(90deg, #fff 20%, transparent);
}
.thumbnail-slider:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    background: linear-gradient(90deg, transparent 20%, #fff);
}
.thumbnail-slider .slide {
    position: relative;
    display: flex;
    justify-content: end;
    padding-left: 37px;
    height: 100%;
    min-height: 255px;
}
.thumbnail-slider a {color: #0f5c78;}
.thumbnail-slider .position {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 75px;
}
.thumbnail-slider .before {
    height: 106px;
    position: relative;
    border-radius: 11px;
    overflow: hidden;
}
.thumbnail-slider .before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider .before .label {
    right: 5px;
    bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-slider .weight {
    width: 100%;
    margin-top: 15px;
    background: #FFFFFF;
    box-shadow: 1.30324px 1.73765px 2.69336px 2.60647px rgba(0, 0, 0, 0.03);
    border-radius: 11px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    padding: 5px 8px;
}
.thumbnail-slider .weight div {padding: 3px 0;}
.thumbnail-slider .weight strong {
    display: block;
    border-top: 1px solid rgba(9, 106, 140, 0.25);
    border-bottom: 1px solid rgba(9, 106, 140, 0.25);
    font-size: 19px;
    line-height: 1.2;
}

.thumbnail-slider .after {
    border-radius: 11px;
    overflow: hidden;
    height: 100%;
    max-width: 195px;
    transition: all 0.3s;
}
.thumbnail-slider .after:hover {box-shadow: 0 0 10px rgba(0,0,0,.3)}
.thumbnail-slider .after img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-slider .label {
    position: absolute;
    right: 6px;
    bottom: 9px;
    background: rgba(255,255,255,.8);
    color: #096A8C;
    border-radius: 30px;
    width: 38px;
    height: 12px;
    font-family: var(--addingtoncf);
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnail-slider .label span {
    position: relative;
    top: -1px;
}

.thumbnail-slider .splide__track--nav>.splide__list>.splide__slide {border: none !important;}

@media (max-width: 1700px) {
    .mainslider {padding: 0 50px;}
    .mainslider .slide {
        grid-template-columns: 500px 1fr;
        gap: 0 50px;
    }
    .mainslider .splide__arrow--prev {left: 0;}
    .mainslider .splide__arrow--next {right: 0;}
    .mainslider .content h3 {font-size: 40px;}
    .mainslider .content p {font-size: 18px;}
}

@media (max-width: 1600px) {
    .patients {
        padding-top: 0;
    }
    .mainslider .slide {grid-template-columns: 450px 1fr;}
    .mainslider .position {zoom: 0.8;}
    .mainslider .content h6 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .mainslider .content h3 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .mainslider .content p {
        font-size: 15px;
    }
    .mainslider .content .btn {
        min-width: inherit;
        padding: 0 40px;
    }
    .mainslider .splide__arrow {zoom: 0.8;}
}

@media (max-width: 1200px) {
    .mainslider {padding: 0 40px;}
    .mainslider .slide {
        grid-template-columns: 350px 1fr;
        gap: 0 30px;
    }
    .mainslider .position {zoom: 0.6;}
    .mainslider .image {padding-left: 50px;}
    .mainslider .content h6 {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .mainslider .content h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .mainslider .content p {font-size: 14px;}
    .mainslider .content p br {display: none;}
    .mainslider .content .btn {padding: 0 30px;}
    .mainslider .splide__arrow {zoom: 0.6;}

    .thumbnail-slider .slide {
        min-height: 200px;
        max-height: 200px;
        max-width: 190px;
    }
    .thumbnail-slider .position {zoom: 0.9;}
    .thumbnail-slider .weight {margin-top: 10px;}
}

@media (max-width: 991px) {
    .patients:after {display: none;}

    .mainslider {padding: 0 25px;}
    .mainslider .slide {
        grid-template-columns: 300px 1fr;
        gap: 0 20px;
    }
    .mainslider .image {padding-left: 35px;}
    .mainslider .content h3 br {display: none;}
    .mainslider .splide__arrow {zoom: 0.4;}

    .thumbnail-slider .slide {
        min-height: 170px;
        max-height: 170px;
        max-width: 170px;
        padding-left: 40px;
    }
    .thumbnail-slider .position {zoom: 0.8;}
}

@media (max-width: 767px) {
    .mainslider {padding: 0;}
    .mainslider .slide {
        grid-template-columns: 1fr;
        gap: 30px 20px;
        padding: 0;
    }
    .mainslider .content {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .mainslider .content .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .mainslider .image {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .mainslider .svg-line {display: none;}

    .splide__pagination {
        bottom: 0;
        padding: 0;
        display: flex;
        gap: 0 7px;
        margin-bottom: -40px;
    }
    .splide__pagination li {line-height: 0;}
    .splide__pagination button {
        margin: 0;
        width: 7px;
        height: 7px;
        background: rgba(103,204,202,.25);
        border-radius: 50%;
        opacity: 1;
    }
    .splide__pagination button.is-active {
        background: rgba(9,106,140,.5);
        transform: none;
    }

    .thumbnail-slider {margin-top: 65px;}
    .mainslider .after .label span {top: -1px;}
    .mainslider .before .label span {top: -1px;}
    .thumbnail-slider .label span {top: -0.5px;}
}

@media (max-width: 550px) {
    .patients {padding-bottom: 0;}
    .patients .svg-line {display: none;}
    .mainslider {margin-top: 35px;}
    .mainslider .splide__track {overflow: visible;}
    .mainslider .splide__pagination {
        gap: 0 5px;
        margin-top: 25px;
    }
    .mainslider .splide__pagination li {margin: 0;}
    .mainslider .slide {
        display: flex;
        flex-direction: column;
    }
    .mainslider .after {border-radius: 18px;}
    .mainslider .image {padding-left: 70px;}
    .mainslider .before {border-radius: 18px;}
    .mainslider .content {justify-content: start;}
    .mainslider .position {zoom: 0.7;}
    .mainslider .weight {
        border-radius: 18px;
        margin-top: 20px;
    }
    .mainslider .after .label {
        position: absolute;
        right: 13px;
        bottom: 13px;
        width: 70px;
        height: 25px;
        font-size: 20px;
    }
    .mainslider .content h3 {
        font-size: 8.28vw;
        margin-bottom: 30px;
    }
    .mainslider .content h6 {display: none;}
    .mainslider .content p {font-size: 4.37vw;}
    .mainslider .content p br {display: none;}
    .mainslider .before .label {
        right: 50%;
        transform: translateX(50%);
    }

    .thumbnail-slider {margin-top: 60px;}
    .thumbnail-slider:before,
    .thumbnail-slider:after {display: none;}
    .thumbnail-slider .after {
        max-width: inherit;
        width: 100%;
        border-radius: 10px;
    }
    .thumbnail-slider .slide {
        padding-left: 35px;
        min-height: inherit;
        max-width: 170px;
    }

    .thumbnail-slider .position {zoom: 0.7;}

    .thumbnail-slider .before {
        height: 100px;
        border-radius: 10px;
        overflow: hidden;
    }
    .thumbnail-slider .before .label {
        right: 50%;
        bottom: 3px;
        transform: translateX(50%);
    }

    .thumbnail-slider .weight {
        margin-top: 8px;
        padding: 0px 8px;
        border-radius: 10px;
    }
    .thumbnail-slider .weight strong {
        padding: 0 0 1px 0;
    }

    .thumbnail-slider .label {bottom: 6px;}
    .mainslider .content p {margin-bottom: 40px;}
    .mainslider .content .btn {
        width: 95%;
        margin-top: auto;
    }
}

@media (max-width: 413px) {
    .mainslider .position {zoom: 0.7;}
}

@media (max-width: 390px) {
    .mainslider .position {zoom: 0.65;}
}

@media (max-width: 375px) {
    .mainslider .position {zoom: 0.6;}
}

.patients-foot {
	margin-top: 30px;
	margin-bottom: 20px;
}
.question + .patients .patients-foot {
	margin-top: 0px;
	margin-bottom: 0px;
}
.patients-foot h6 {
	font-size: 17px;
	font-weight: normal;
	color: #096A8C;
}
.patients-foot h3 {
	font-size: 30px;
	font-weight: normal;
	margin-top: 10px;
	color: #096A8C;
}
.patients-foot h3 sup {font-size: 0.6em;}
.patients-foot h3 span {
	color: transparent; 	
	background: linear-gradient(90deg, #096A8C, #63C7C7);
	background-clip: text;
	text-fill-color: transparent;
}
.patients-foot .btn-box {margin-top: 25px;}
.patients-foot .btn-box h5 {font-size: 13px;}

.mainslider .splide__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 18px;
    bottom: initial;
    top: 100%;
    height: 12px;
    margin-top: 50px;
}
.mainslider .splide__pagination li {line-height: 0;}
.mainslider .splide__pagination button {
    margin: 0;
    opacity: 1;
    width: 8px;
    height: 8px;
    background: #E3E3E3;
    transition: all 0.3s;
    transform: none !important;
}
.mainslider .splide__pagination button.is-active {
    width: 11px;
    height: 11px;
    background: #0F5C78;
}

.mainslider .splide__pagination button:after {
    display:none;
}

@media (max-width: 767px) {
    .splide__pagination {
        bottom: 0;
        padding: 0;
        display: flex;
        gap: 0 7px;
        margin-bottom: -40px;
    }
    .splide__pagination li {line-height: 0;}
    .splide__pagination button {
        margin: 0;
        width: 7px;
        height: 7px;
        background: rgba(103,204,202,.25);
        border-radius: 50%;
        opacity: 1;
    }
    .splide__pagination button.is-active {
        background: rgba(9,106,140,.5);
        transform: none;
    }
    .patients-foot h3 {
        font-size: 5vw;
    }
    .patients-foot h6 {font-size:4vw;}
    .patients-foot .btn-box{ width:100%}
    .patients-foot .btn { width:100%;max-width:280px}
    .home .thumbnail-slider {display:none;}
}

@media (max-width: 550px) {
    .mainslider .splide__pagination {
        gap: 0 5px;
        margin-top: 25px;
    }
}

/* ------------------ SLIDER PREPARATION ------------------ */
.slider-preparation {
	background: #F0F7FA;
	padding: 45px 15px 0 15px;
}
.slider-preparation-2 {
	padding-bottom: 50px;
	padding-top: 0;
}
.slider-preparation .splide__track {overflow: visible;}
.slider-preparation .splide__slide {
	border-radius: 26px;
	border: 2px solid transparent;
	transition: all 0.3s;
}
.slider-preparation .splide__slide:hover {border-color: #61cbc9;}
.slider-preparation .slide {
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 10px 60px rgba(38, 45, 118, 0.08);
	overflow: hidden;
	height: 100%;
	min-width: 370px;
	display: flex;
	flex-direction: column;
}

.slider-preparation .slide-head {
	padding: ;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 13px 20px;
}
.slider-preparation .slide-head h3 {
	font-size: 31px;
	font-weight: 500;
	line-height: 1;
	color: #005B79;
}
.slider-preparation .slide-head h3 span {
	position: relative;
	display: inline-block;
}
.slider-preparation .slide-head h3 svg {
	width: 13px;
	height: 15px;
	position: absolute;
	left: 100%;
	top: 2px;
	margin-left: 2px;
}
.slider-preparation .slide-head h4 {
	font-weight: normal;
	font-size: 21px;
	margin-top: 5px;
	color: #3D3179;
}
.slider-preparation .slide-head h4.с-blue {color: #12D8BF;}
.slider-preparation .slide-head h4.с-green {color: #2B9C50;}
.slider-preparation .slide-head h4.с-red {color: #F7473C;}
.slider-preparation .slide-head h5 {
	font-size: 17px;
	font-weight: 500;
	margin-top: 5px;
	color: #00698B;
}
.slider-preparation .fda {
	width: 60px;
	height: 60px;
	display: inline-block;
}

.slider-preparation .slide-body {
	display: grid;
	grid-template-columns: 45% 55%;
	margin-top: auto;
	position: relative;
}
.slider-preparation .slide-body img {
	display: inline-block;
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	max-width: 210px;
}
.slider-preparation .splide-three .slide-body img {max-width: 185px;}
.slider-preparation .splide-four .slide-body img {max-width: 170px;}
.slider-preparation .splide-five .slide-body img {max-width: 210px;}
.slider-preparation .splide-sex .slide-body img {max-width: 210px;}
.slider-preparation .slide-body:after {
	content: '';
	display: block;
	width: 220px;
	height: 222px;
	border-radius: 50%;
	background: rgba(155,204,233,.20);
	position: absolute;
	left: -70px;
	bottom: -70px;
	z-index: 1;
}
.slider-preparation .slide-body.blue:after {background: #C8F1F0;}
.slider-preparation .slide-body.green:after {background: rgba(98,165,70,0.24);}
.slider-preparation .slide-body.red:after {background: rgba(243,62,53,0.19);}
.slider-preparation .slide-body.violet:after {background: rgba(80,79,161,0.19);}
.slider-preparation .slide-body .body {
	display: flex;
	flex-direction: column;
	padding-right: 20px;
}

.slider-preparation .tags {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}
.slider-preparation .tags .tag {
	background: #EDEDED;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 75px;
	font-size: 16px;
	font-weight: 500;
	color: #00698B;
	min-height: 30px;
	padding: 0 12px;
}
.slider-preparation .tags .tag span {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.slider-preparation .tags .tag:nth-child(2) {background: #FDEDE3;}
.slider-preparation .tags .tag:nth-child(3) {background: #E2F3F3;}
.slider-preparation .tags .tag:nth-child(4) {background: rgba(155,204,233,0.31);}
.slider-preparation .tags .ticket {
	width: 12px;
	height: 9px;
	fill: #096A8C;
	margin-left: 5px;
}
.slider-preparation .tags .plus {
	width: 13px;
	height: 14px;
	margin-left: 5px;
}

.slider-preparation .text {
	font-size: 14px;
	font-weight: 500;
	color: #00698B;
	min-height: 39px;
	margin: 25px 0 30px;
	text-align: center;
}
.slider-preparation .text .c-red {color: #F7473C;}
.slider-preparation .text .c-blue {color: #12D8BF;}
.slider-preparation .text .c-green {color: #2B9C50;}
.slider-preparation .text .c-violet {color: #6753AA;}

.slider-preparation .group {
	margin-top: auto;
	text-align: center;
	padding-bottom: 20px;
}
.slider-preparation .btn {
	font-size: 17px;
	font-weight: 500;
	width: inherit;
	height: 32px;
	padding: 0 30px;
	border-radius: 70px;
}
.slider-preparation .btn svg {
	width: 8px;
	height: 12px;
	fill: #fff;
	margin-left: 10px;
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}
.slider-preparation .btn:hover svg {transform: translateX(5px);}
.slider-preparation .btn-universal_popup {
	display: inline-block;
	margin-top: 10px;
	color: #096A8C;
	font-size: 13px;
	text-decoration: underline;
}
.slider-preparation .btn-universal_popup:hover {text-decoration: none;}

.slider-preparation .splide__pagination {display: none;}

.slider-preparation__foot {padding: 35px 0 80px 0;}
.slider-preparation__foot p {
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 1500px) {
	.slider-preparation__foot {padding: 35px 0 60px 0;}
	.slider-preparation__foot p br {display: none;}
}

@media (max-width: 600px) {
	.slider-preparation {background: #EDF5F9;}
	.slider-preparation-2 {padding-top: 40px;}
	.slider-preparation .splide__slide {
		border-radius: 0 !important;
		border: none !important;
		transition: none;
	}
	.slider-preparation .slide {min-width: inherit;}

	.slider-preparation .slide-body img {max-width: 200px;}
	.slider-preparation .splide-three .slide-body img {max-width: 180px;}
	.slider-preparation .splide-four .slide-body img {max-width: 165px;}
	.slider-preparation .splide-five .slide-body img {max-width: 200px;}
	.slider-preparation .splide-sex .slide-body img {max-width: 200px;}

	.slider-preparation .tags .tag {
		font-size: 14px;
		min-height: 28px;
		padding: 0 10px;
	}

	.slider-preparation .text {font-size: 13px;}

	.slider-preparation .btn {padding: 0 22px;}
	.slider-preparation .btn span {top: -1.5px;}
	.slider-preparation .btn svg {
		width: 7px;
		height: 11px;
		margin-left: 8px;
		top: 0px;
	}

	.slider-preparation .splide__pagination {display: flex;}
	.gallery-calc__foot h3 {line-height: 1.3;}
	.slider-preparation .gallery-calc__foot .btn {
		height: 55px;
		border-radius: 10px;
	}

	.slider-preparation__foot {padding: 35px 0 40px 0;}
	.slider-preparation__foot .center {padding: 0;}
	.slider-preparation__foot p {
	    font-size: 11px;
	    line-height: 1.6;
	    text-align: justify;
	    color: #093E52;
	}
}

@media (max-width: 413px) {
	.gallery-calc__foot h3 {font-size: 23px;}
	.slider-preparation .btn {font-size: 15px;}
	.slider-preparation .gallery-calc__foot .btn svg {
	    width: 6px;
	    height: 10px;
	    margin-left: 7px;
	    top: 2px;
	}
}

@media (max-width: 400px) {
	.slider-preparation .slide-head h3 {font-size: 26px;}
	.slider-preparation .slide-head h4 {
		font-size: 17px;
		margin-top: 3px;
	}
	.slider-preparation .slide-head h5 {
		font-size: 14px;
		margin-top: 1px;
	}
	.slider-preparation .slide-head img {max-width: 50px;}

	.slider-preparation .slide-body:after {
		width: 200px;
		height: 200px;
	}
	.slider-preparation .slide-body img {max-width: 180px;}
	.slider-preparation .splide-three .slide-body img {max-width: 160px;}
	.slider-preparation .splide-four .slide-body img {max-width: 145px;}
	.slider-preparation .splide-five .slide-body img {max-width: 175px;}
	.slider-preparation .splide-sex .slide-body img {max-width: 175px;}

	.slider-preparation .tags .tag {
		font-size: 13px;
		min-height: 28px;
		padding: 0 10px;
	}
	.slider-preparation .tags .ticket {
	    width: 10px;
	    height: 7px;
	    margin-left: 3px;
	}
	.slider-preparation .tags .plus {
	    width: 11px;
	    height: 12px;
	    margin-left: 3px;
	}

	.slider-preparation .text {
	    font-size: 11px;
        min-height: 35px;
        margin: 15px 0 15px;
	}

	.slider-preparation .btn-universal_popup {font-size: 11px;}
}

/* ------------------ GET ZEPBOUND ------------------ */
.get-zepbound {
	min-height: 650px;
	background: url(../img/bg-get-zepbound.jpg) no-repeat right top;
	background-size: cover;
	display: flex;
	align-items: center;
	color: #fff;
}
.get-zepbound .title {
	font-size: 49px;
	font-weight: 500;
	margin-top: 60px;
	color: #fff;
	transition: all 0.1s;
}
.get-zepbound .title sup {
	font-size: 0.8em;
	line-height: 0;
	position: relative;
	top: 5px;
}
.get-zepbound .list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	max-width: 760px;
	margin: 45px auto 0 auto;
}
.get-zepbound .list h5 {
	font-size: 51px;
	font-weight: normal;
}
.get-zepbound .list p {
	font-size: 19px;
}

@media (max-width: 1500px) {
	.get-zepbound {min-height: 550px;}
	.get-zepbound .title {
		font-size: 35px;
		margin-top: 0;
	}
	.get-zepbound .list {
		max-width: 550px;
		margin: 25px auto 0 auto;
	}
	.get-zepbound .list h5 {font-size: 35px;}
	.get-zepbound .list p {font-size: 13px;}
}

@media (max-width: 991px) {
	.get-zepbound {min-height: 400px;}
	.get-zepbound .title {font-size: 30px;}
	.get-zepbound .list {max-width: 480px;}
	.get-zepbound .list h5 {font-size: 30px;}
}

@media (max-width: 600px) {
	.get-zepbound {
		background: url(../img/bg-get-zepbound-mob.jpg) no-repeat right top;
		background-size: cover;
		padding: 40px 0 130px 0;
	}

	.get-zepbound .list {
		grid-template-columns: 1fr;
		margin: 50px auto 0 auto;
		gap: 30px;
	}

	.get-zepbound .title {
	    font-size: 34px;
	    line-height: 1.2;
	}

	.get-zepbound .list h5 {
	    font-size: 36px;
	}
	.get-zepbound .list p {
	    font-size: 16px;
	    margin-top: 2px;
	}
}

@media (max-width: 413px) {
	.get-zepbound {padding: 40px 0 60px 0;}
	.get-zepbound .title {font-size: 31px;}
}

/* ------------------ HOW WORKS ------------------ */
.works {
	padding: 0 0 100px 0;
	position: relative;
	line-height: 1.4;
	font-weight: 300;
}
.works .svg-left {
	position: absolute;
	left: 0;
	bottom: -5px;
	z-index: 5;
}
.works .svg-right {
	width: 664px;
	height: 709px;
	position: absolute;
	top: 300px;
	left: 100%;
	z-index: -2;
	margin-left: -350px;
}
.works .center {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 60px;
	padding: 70px 55px 0 55px;
	position: relative;
    z-index: 2;
    margin-top: -80px;
    background: #fff;
    border-radius: 25px;
}
.works .bg {
	position: absolute;
	left: 0;
	bottom: 100%;
	max-width: 470px;
	margin-bottom: -65px;
}

.works-left h2.title {
	display: flex;
	flex-direction: column;
	margin-top: -20px;
}

.works-left .text {
	font-size: 18px;
	font-weight: normal;
	margin-top: 15px;
}
.works-left .text strong {font-weight: 500;}

.works .box {
	border-radius: 20px;
	background: #fff;
	max-width: 475px;
	width: 100%;
	padding: 48px 25px 20px 25px;
	position: relative;
	top: 50px;
	box-shadow: 0 1px 10px rgba(0, 62, 82, 0.03), 0 8px 8px rgba(0, 62, 82, 0.05), 0 25px 60px rgba(0, 62, 82, 0.15);
}
.works .box > svg {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
}
.works .box > p {
	font-size: 19px;
	font-weight: 300;
	color: #096A8C;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}
.works .box h3 {
	font-size: 33px;
	line-height: 1.3;
	font-weight: normal;
	color: #096A8C;
	margin-top: 5px;
	margin-bottom: 15px;
}
.works .box h3 span {color: #61CBC8;}
.works .box h3 sup {
	line-height: 0;
	font-size: 0.7em;
}

.works .box ul {
	list-style: none;
	margin-top: 20px;
	margin-bottom: 25px;
}
.works .box li {
	display: flex;
	align-items: center;
	font-size: 16px;
}
.works .box li + li {margin-top: 10px;}
.works .box .icon {
	min-width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.works .box .descr {
	font-size: 16px;
	font-smoothing: initial;
	-webkit-font-smoothing: initial;
}
.works .box .descr strong {font-weight: 500;}

.works-right {position: relative;}
.works-right .item {
	padding-bottom: 75px;
	position: relative;
}
.works-right .item:before {
	content: '';
    position: absolute;
    top: 10px;
    right: 100%;
    bottom: 0;
    width: 2px;
    margin-right: 20px;
    background: url(../img/line.png) repeat-y left bottom;
    animation: line 10s infinite linear;
}
.works-right .item:last-child {
	padding-bottom: 0;
}
.works-right .item:last-child:after {
	content: '';
    display: block;
    width: 10px;
    height: 90px;
    position: absolute;
    right: 100%;
    bottom: 0;
    margin-right: 15px;
    background: #fff;
}
@keyframes line {
    0% {background-position-y: 0;}
    100% {background-position-y: 100%;}
}
.works-right .heading {position: relative;}
.works-right .heading .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #64ccc9;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translateY(-50%);
	margin-right: 15px;
	animation: shadow-pulse 3s infinite;
	margin-top: 2px;
}

.works-right .heading span {
	font-size: 20px;
    font-weight: 500;
    background: linear-gradient(45deg, #61CBCB 0%, #1F89A0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.works-right h3 {
	font-size: 32px;
	line-height: 1.2;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 15px;
}
.works-right p {
	font-size: 18px;
	font-weight: normal;
}
.works-right p + p {margin-top: 20px;}

.works-right .card {
	width: 450px;
	height: 250px;
	position: relative;
	margin-top: 25px;
	background: #fff;
	box-shadow: 0 1px 10px rgba(0, 62, 82, 0.03), 0 8px 8px rgba(0, 62, 82, 0.05), 0 10px 30px rgba(0, 62, 82, 0.1);
}
.works-right .card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.works-right .card .image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.works-right .card .visit-card {
	position: absolute;
    right: -35px;
    bottom: -50px;
    max-width: 260px;
}
.works-right .chart {
	position: absolute;
	top: 20px;
	left: 15px;
	max-width: 190px;
}
.works-right .ozempic {
	position: absolute;
	right: -57px;
	bottom: -25px;
	max-width: 165px;
}
.works-right .btn-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.btn-play {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgba(93, 163, 187, 0.8);
	border: none;
	display: grid;
	place-items: center;
	cursor: pointer;
}
.btn-play svg {
	position: relative;
	left: 3px;
}

.works-right .foot {
	font-size: 15px;
	margin-top: 32px;
	font-weight: normal;
	font-smoothing: initial;
	-webkit-font-smoothing: initial;
}
.works-right .foot a {
	font-weight: bold;
	text-decoration: underline;
	color: #093E52;
}
.works-right .foot a:hover {
	text-decoration: none;
}

@media (max-width: 1500px) {
	.works .bg {
	    max-width: 350px;
	    margin-bottom: -50px;
	}

	.works .center {padding: 55px 40px 0 40px;}

	.works .svg-right {
	    width: 450px;
	    height: 450px;
	    position: absolute;
	    top: 300px;
	    margin-left: -150px;
	}

	.works .svg-left {
		width: 300px;
		height: 500px;
	}

	.works .box {
		border-radius: 15px;
	    max-width: 400px;
	    padding: 35px 20px 15px 20px;
	}
	.works .box > p {font-size: 16px;}
	.works .box h3 {font-size: 27px;}
	.works .box .descr {font-size: 14px;}

	.works-right .item {padding-bottom: 50px;}
	.works-left .text {
		font-size: 15px;
		line-height: 1.6;
	}
	.works-right h3 {
		font-size: 25px;
		margin-bottom: 10px;
	}
	.works-right p {font-size: 16px;}
	.works-right .card {
		width: 400px;
		height: 230px;
		margin-top: 20px;
	}
	.works-right .ozempic {
	    right: -54px;
	    bottom: -23px;
	    max-width: 150px;
	}
	.works-right .chart {max-width: 150px;}

	.works-right .foot {font-size: 13px;}
}

@media (max-width: 1100px) {
	.works {padding-top: 50px;}
	.works .bg {max-width: 280px;}

	.works .svg-left {
	    width: 200px;
	    height: 300px;
	}

	.works .svg-right {
		margin-left: -240px;
		top: 150px;
	}
	.works .center {
		grid-gap: 35px;
		padding: 65px 15px 0 15px;
	}
	.works-left .text {font-size: 14px;}
	.works-left .text br {display: none;}

	.works .box {max-width: 320px;}
	.works .box h3 {font-size: 20px;}
	.works .box .icon {margin-right: 5px;}
	.works .box .descr {font-size: 11.5px;}
	.works-left .btn-box,
	.works-left .btn-box .btn {width: 100%;}

	.works-right .card {
	    width: 350px;
	    height: 210px;
	}
	.works-right .item {padding-bottom: 30px;}
	.works-right p {font-size: 14px;}
	.works-right p br {display: none;}

	.works-right .foot br {display: none;}
}

@media (max-width: 767px) {
	.works {padding-bottom: 60px;}
	.works .center {
		grid-template-columns: 1fr;
		grid-gap: 20px;
	}

	.works-left h2.title svg {
		width: 35px;
		height: 35px;
		margin-bottom: 5px;
	}
	.works-left .text {font-size: 15px;}
	.works .svg-right {display: none;}

	.works-right {padding-left: 23px;}
	.works-right h3 {font-size: 22px;}
	.works-right .item {padding-bottom: 50px;}
	.works-right .card {
		width: 100%;
		height: 230px;
		max-width: 340px;
	}
	.works-right p {font-size: 15px;}
	.works-right .card .visit-card {
	    position: absolute;
	    right: -25px;
	    bottom: -40px;
	    max-width: 230px;
	}
	.works-right .chart {
	    max-width: 145px;
	    left: 7px;
	}

	.works-right .foot {
	    font-size: 15px;
	    margin-top: 50px;
	}

	.works .box {
	    max-width: inherit;
	    padding: 25px 20px 30px 20px;
	    top: 0;
	    margin-top: 20px;
	}
	.works .box > svg {display: none;}
	.works .box > p {font-size: 15px;}
	.works .box h3 {font-size: 26px;}
	.works .box ul {margin-top: 15px;}
	.works .box .icon {margin-right: 10px;}
	.works .box .descr {font-size: 16px;}
	.works .box li + li {margin-top: 8px;}
	.works .btn-box h5 {
		font-size: 13px;
		margin-top: 20px;
	}
}

@media (max-width: 600px) {
	.works .center {
		margin-top: 0;
		border-radius: 0;
		padding: 0px 15px 0 15px;
	}

	.works-left h2.title {font-weight: 500;}

	.works .bg {
		max-width: 320px;
		margin-bottom: 15px;
	}

	.works .svg-right {display: none;}
}

@media (max-width: 413px) {
	.works .bg {max-width: 260px;}
	.works .box h3 {font-size: 22px;}
	.works .box .descr {font-size: 14px;}
}

/* ------------------ ACCORDEON ------------------ */
.accordeon {list-style: none;}
.btn-accordeon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 23px;
	font-size: 24px;
	color: #0F5C78;
	cursor: pointer;
}
.btn-accordeon:hover {color: #4d4d4d;}
.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;}
.inner-accordeon ul {
	list-style: none;
	font-size: 18px;
	color: #0F5C78;
}
.inner-accordeon p {
	font-size: 18px;
	line-height: 1.4;
	color: #0F5C78;
}
.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: #0F5C78;
}
.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;
    }
}

/* ------------------ QUESTION ------------------ */
.question {
	position: relative;
	z-index: 5;
	padding-bottom: 70px;
}

.question .head {
	min-height: 580px;
	display: flex;
}
.question .head img {
	width: 100%;
	object-fit: cover;
	object-position: right top;
	display: block;
}

.question .center {
	border-radius: 25px;
	margin-top: -125px;
	padding: 55px 55px 0 55px;
	position: relative;
	z-index: 2;
	background: #fff;
}
.question .svg-right {
	position: absolute;
	top: 300px;
	left: 100%;
	margin-left: -90px;
}

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

.question .heading {
	display: flex;
	align-items: center;
	gap: 18px;
}
.question .heading h2 {line-height: 1;}
.question .subtitle {
	padding-left: 70px;
	font-size: 22px;
}

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

@media (max-width: 1500px) {
	.question .head {min-height: 480px;}
	.question .center {padding: 40px 40px 0 40px;}
	.question .image {max-width: 400px;}
}

@media (max-width: 1200px) {
	.question .svg-right {
		width: 250px;
		height: 300px;
	}
}

@media (max-width: 991px) {
	.question .head {min-height: 300px;}
	.question .center {
	    padding: 30px 15px 0 15px;
	    margin-top: -50px;
	}
	.question .image {
	    max-width: 300px;
	    right: -10px;
	}

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

@media (max-width: 600px) {
	.question {padding-bottom: 30px;}

	.question .head {
		background: url(../img/bg-question-mob.jpg) no-repeat center top;
		background-size: cover;
		min-height: 400px;
	}
	.question .head img {display: none;}

	.question .center {
	    padding: 45px 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 {
	    padding-left: 55px;
	    margin-top: 0px;
	    font-size: 16px;
	}

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

/* ------------------ PATIENTS ------------------ */
.patients-second {
	padding: 0 0 50px 0;
	position: relative;
	overflow: hidden;
}

.patients-second .svg-left {
	position: absolute;
	left: 0;
	bottom: 0;
}

.patients-second .svg-right {
	position: absolute;
	right: 0;
	bottom: -5px;
}

.patients-second .subtitle {font-size: 18px;}

.patients-second .splide {
	position: relative;
	z-index: 10;
}
.patients-second .splide__pagination {display: none;}
.patients-second .wrap {
	position: relative;
	cursor: pointer;
}
.patients-second .head {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 20px 16px 0 25px;
	color: #fff;
	display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
}
.patients-second .head h5 {
	font-weight: bold;
	font-size: 16px;
	text-align: left;
}
.patients-second .head h3 {
	font-size: 18px;
	font-weight: normal;
	margin-top: 5px;
	line-height: 1.1;
	text-align: left;
}
.patients-second .btn-play {
	width: 60px;
	min-width: 60px;
	height: 60px;
	background: #F3F3F3;
	position: relative;
}
.patients-second .btn-play:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	background: #fff;
	border-radius: 50%;
	z-index: 2;
}
.patients-second .btn-play:after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	background: rgba(0,0,0,.2);
	border-radius: 50%;
}
.patients-second .splide__slide:hover .btn-play:after {
    animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.patients-second .btn-play svg {
	fill: #00698B;
	position: relative;
	z-index: 2;
}
.patients-second .image {
	overflow: hidden;
	border-radius: 30px;
	border: 3px solid transparent;
	transition: all 0.3s;
}
.patients-second .image:hover {border-color: #61CBC8;}
.patients-second .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.patients-foot {
	margin-top: 40px;
}
.patients-foot h6 {
	font-size: 17px;
	font-weight: normal;
	color: #096A8C;
}
.patients-foot h3 {
	font-size: 30px;
	font-weight: normal;
	margin-top: 10px;
	color: #096A8C;
}
.patients-foot h3 span {
	color: transparent; 	
	background: linear-gradient(90deg, #096A8C, #63C7C7);
	background-clip: text;
	text-fill-color: transparent;
}
.patients-foot .btn-box {margin-top: 25px;}
.patients-foot .btn {min-width: 350px;}
.patients-foot .btn-box h5 {font-size: 13px;}

@media (max-width: 1800px) {
	.patients-second .head h3 {
		font-size: 14px;
		padding-right: 10px;
	}
	.patients-second .head h3 br {display: none;}
}

@media (max-width: 1600px) {
	.patients-second .svg-right {
	    position: absolute;
	    top: -500px;
	    right: -80px;
	    width: 550px;
	}
}

@media (max-width: 1500px) {
	.patients-second .subtitle {font-size: 14.5px;}
	.patients-second .head {padding: 15px 10px 0 15px;}
	.patients-second .head h5 {font-size: 14px;}
	.patients-second .head h3 {font-size: 14px;}
	.patients-second .btn-play {
		width: 50px;
	    min-width: 50px;
	    height: 50px;
	}
	.patients-second .btn-play svg {
		width: 20px;
		height: 23px;
	}
}

@media (max-width: 1450px) {
	.patients-second .head h3 {
	    font-size: 13px;
	    padding-right: 5px;
	}

	.patients-second .btn-play {
		width: 40px;
	    min-width: 40px;
	    height: 40px;
	}
	.patients-second .btn-play svg {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 991px) {
	.patients-second .svg-right {
	    right: -15px;
	    top: inherit;
	    width: 200px;
	    height: 250px;
	}

	.patients-second .svg-left {
	    position: absolute;
	    left: -100px;
	    bottom: 40px;
	    width: 200px;
	    height: 300px;
	}

	.patients-foot h6 {font-size: 15px;}
	.patients-foot h3 {font-size: 25px;}
	.patients-foot .btn {min-width: 320px;}
}

@media (max-width: 750px) {
	.patients-second .svg-right {display: none;}
	.patients-second .splide__pagination {display: flex;}
	.patients-second .head {align-items: flex-start;}
	.patients-second .head h5 {font-size: 13px;}
	.patients-second .head h3 {font-size: 12px;}
	.patients-second .btn-play {
	    width: 35px;
	    min-width: 35px;
	    height: 35px;
	}
	.patients-second .btn-play svg {
	    width: 16px !important;
	    height: 16px !important;
	}

	.patients-second .image img {min-height: 370px;}

	.patients-second .svg-left {bottom: 90px;}
}

@media (max-width: 600px) {
	.patients-second .splide__pagination {display: none;}
	.patients-second .svg-left {display: none;}
	.patients-foot h6 {font-size: 12px;}
	.patients-foot {
		margin-top: 25px;
		padding: 0 15px;
	}
	.patients-foot h3 {
		margin-top: 15px;
		font-size: 20px;
		line-height: 1.4;
	}
	.patients-foot .btn-box {margin-top: 15px;}
}

/* ------------------ ASKED ------------------ */
.asked .head {
	min-height: 560px;
	background: url(../img/bg-asked.jpg) no-repeat center top;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}
.asked .head h6 {
	font-size: 33px;
	font-weight: normal;
}
.asked .head h3 {
	font-size: 49px;
	font-weight: normal;
	margin-top: 10px;
	line-height: 1.3;
}
.asked .head h3 span {font-weight: bold;}

.asked .center {
	border-radius: 25px;
	margin-top: -75px;
	padding: 25px 55px 0 55px;
	position: relative;
	z-index: 2;
	background: #fff;
}
.asked .subtitle {font-size: 24px;}

.asked .accordeon {margin-top: 20px;}

@media (max-width: 1500px) {
	.asked .head {min-height: 480px;}
	.asked .head h6 {font-size: 25px;}
	.asked .head h3 {font-size: 30px;}
	.asked .center {padding: 40px 40px 0 40px;}
	.asked .subtitle {font-size: 18px;}
}

@media (max-width: 750px) {
	.asked .head {min-height: 350px;}
	.asked .head h6 {font-size: 20px;}
	.asked .head h3 {
	    font-size: 25px;
	    margin-top: 5px;
	}
	.asked .center {margin-top: -50px;}
}

@media (max-width: 600px) {
	.asked .head {
		background: url(../img/bg-asked-mob.jpg) no-repeat center top;
		background-size: cover;
	}
	.asked .center {
	    margin-top: 0;
	    border-radius: 0;
	    padding: 30px 15px 0 15px;
	}
	.asked .head h6 {font-size: 22px;}
	.asked .head h3 {
	    font-size: 32px;
	    margin-top: 20px;
	}

	.asked .subtitle {font-size: 16px;}

	.asked .heading {text-align: left;}
	.asked .heading svg {
		width: 40px;
		height: 40px;
	}

	.asked-foot {
		padding: 40px 0;
		text-align: center;
	}
	.asked-foot > p {
		color: #096A8C;
		margin-bottom: 30px;
		font-size: 15px;
		line-height: 1.4;
	}
	.asked-foot .btn-box h5 {font-size: 14px;}
}

@media (max-width: 413px) {
	.asked .head h6 {font-size: 19px;}
	.asked .head h3 {font-size: 27px;}
	.asked-foot > p {font-size: 14px;}
}

/* ------------------ FEEL ------------------ */
.feel-reviews {
	padding: 40px 0 0;
	position: relative;
}
.feel-reviews .tx-c svg {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}
.feel-reviews .splide + .splide {margin-top: 15px;}
.feel-reviews .splide + .splide .item-review {
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.feel-reviews .splide + .splide .item-review .rating {order: -1;}
.feel-reviews .splide__slide {padding-bottom: 15px;}
.feel-reviews .item-review {
	padding: 28px 28px 20px;
	border: 1px solid #61cbc8;
	border-radius: 10px;
	box-shadow: 5px 3px 10px 0px rgba(0, 0, 0, .1);
	background: #fff;
	transition: all 0.3s;
	height: 225px;
}
.feel-reviews .item-review:hover {
	box-shadow: 5px 3px 10px 0px rgba(0, 0, 0, .2);
}
.feel-reviews .item-review .head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.feel-reviews .item-review .rating {margin-top: 7px;}
.feel-reviews .item-review .rating svg {fill: #f19d81;}
.feel-reviews .item-review .head h3 {
	font-size: 19px;
	font-weight: 600;
	padding: 0 0 5px;
}
.feel-reviews .item-review .head p {
	font-size: 16px;
	font-weight: 600;
	color: #61cbc8;
}
.feel-reviews .item-review .descr {
	font-size: 17px;
	font-weight: normal;
	margin-top: 13px;
	font-smoothing: initial;
	-webkit-font-smoothing: initial;
}
.feel-reviews .splide__pagination {display: none;}

@media (max-width: 767px) {
	.feel-reviews .item-review {
		padding: 20px 20px 15px;
		height: 200px;
	}
	.feel-reviews .item-review .descr {font-size: 13px;}
	.feel-reviews .splide + .splide {margin-top: 0;}
	.feel-reviews {padding: 50px 0 0 0;}
	.feel-reviews .item-review .rating svg {
		width: 13px;
		height: 13px;
	}
}

@media (max-width: 600px) {
	.feel-reviews-2 {padding: 40px 0 0 0;}
}

/* ------------------ PROGRAM ------------------ */
.program {
	padding: 60px 0 95px 0;
	background: #F0F7FA;
	position: relative;
	overflow: hidden;
}

.program .svg-left {
	position: absolute;
	left: 0;
	bottom: 150px;
}

.program .svg-right {
	position: absolute;
	top: -5px;
	right: 0;
}

.program .center {
	display: grid;
	grid-template-columns: 555px 1fr;
	align-items: flex-start;
	grid-gap: 67px;
}

.program-image {
	position: relative;
	padding-top: 15px;
	max-width: 555px;
}
.program-image .prod-zepbound {
	position: absolute;
    left: -60px;
    bottom: -45px;
    max-width: 340px;
}
.program-image .chart {
	width: 230px;
	position: absolute;
	top: -5px;
	left: -63px;
	display: block;
}
.program-image .gupta {
	width: 407px;
    display: block;
    position: absolute;
    top: -85px;
    right: -130px;
}
.program-image .image {
	display: block;
	border-radius: 15px;
}

.program-content .logo {margin-left: 0;}
.program-content h2.title {
	margin-bottom: 15px;
	font-size: 42px;
}
.program-content .text {
	font-size: 18px;
	line-height: 1.6;
	font-weight: normal;
	-webkit-font-smoothing: auto;
}

.program-card {
	margin: 35px 0 0 45px;
	width: 450px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 10px rgba(0, 62, 82, 0.03), 0 8px 8px rgba(0, 62, 82, 0.05), 0 25px 60px rgba(0, 62, 82, 0.15);
}
.program-card .heading {
	height: 36px;
	background: #7CBACE;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: #fff;
}
.program-card .heading strong {font-weight: 600;}
.program-card .inner {padding: 30px 25px 40px;}
.program-card h3 {
	font-size: 33px;
	font-weight: normal;
	color: #096A8C;
}
.program-card ul {
	margin-top: 20px;
	list-style: none;
}
.program-card ul li {
	display: flex;
	align-items: center;
}
.program-card ul .icon {
	width: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
.program-card ul .descr {font-size: 20px;}
.program-card ul li + li {margin-top: 20px;}
.program-card .btn-box {
	width: 100%;
	margin-top: 35px;
}

.program-card .btn-box .btn {margin-bottom: 20px;}
.program-card .btn-box p {
	font-size: 13px;
	color: #063E51;
}
.program-card .btn-box p strong {font-weight: 500;}

@media (max-width: 1500px) {
	.program .svg-left {
	    width: 350px;
	    height: 370px;
	    position: absolute;
	    top: 300px;
	    left: 0;
	}

	.program .svg-right {
	    position: absolute;
	    top: -5px;
	    right: 0;
	    width: 350px;
	    height: 550px;
	}

	.program .center {
		grid-gap: 30px;
		grid-template-columns: 467px 1fr;
	}

	.program-image {max-width: 467px;}

	.program-image .prod-zepbound {
	    left: -51px;
	    bottom: -40px;
	    max-width: 265px;
	}

	.program-image .chart {
	    width: 200px;
	    top: 0;
	    left: -60px;
	}
	.program-image .gupta {
	    width: 320px;
	    top: -60px;
	    right: -95px;
	}

	.program-content h2.title {
	    margin-bottom: 10px;
	    font-size: 30px;
	}
	.program-content .text {font-size: 14px;}

	.program-card {
		width: 390px;
		margin: 25px 0 0 30px;
	}
	.program-card .heading {
		height: 35px;
		font-size: 16px;
	}
	.program-card ul {margin-top: 15px;}
	.program-card h3 {font-size: 27px;}
	.program-card ul .icon {margin-right: 15px;}
	.program-card ul .descr {font-size: 17px;}
	.program-card ul li + li {margin-top: 15px;}

	.program-card .btn-box {margin-top: 25px;}
}

@media (max-width: 1100px) {
	.program .svg-left {top: 0;}

	.program-image .chart {
	    width: 150px;
        top: 300px;
        left: 55px;
	}
	.program-image .gupta {
	    width: 250px;
	    top: -45px;
	    right: -75px;
	}

	.program-content h2.title {font-size: 25px;}
	.program-card {width: 350px;}
	.program-card .inner {padding: 15px 20px 15px;}
	.program-content .text br {display: none;}
	.program-card .heading {font-size: 15px;}
	.program-card h3 {font-size: 25px;}
	.program-card ul .icon {margin-right: 10px;}
	.program-card ul .descr {font-size: 15px;}
}

@media (max-width: 991px) {
	.program {padding: 60px 0 70px 0;}
	.program .svg-left {    
		width: 200px;
    	height: 200px;
	}
	.program .svg-right {
	    top: -100px;
	    right: -50px;
	    width: 250px;
	    height: 250px;
	}

	.program .center {grid-template-columns: 350px 1fr;}
	.program-image {max-width: 350px;}

	.program-image .prod-zepbound {
	    left: -15px;
	    bottom: -40px;
	    max-width: 210px;
	}

	.program-card {
	    width: 100%;
	    margin-left: 0;
	}
}

@media (max-width: 750px) {
	.program {
		padding: 40px 0 60px 0;
		overflow: hidden;
	}
	.program .center {
		position: relative;
		z-index: 2;
		grid-template-columns: 1fr;
		grid-gap: 35px;
	}
	.program-content h2.title {
	    font-size: 29px;
	    margin-bottom: 15px;
	    margin-top: 10px;
	}
	.program-content .text {font-size: 15px;}
	.program .svg-left {
	    top: -48px;
	    left: inherit;
	    right: -200px;
	    width: 350px;
	    height: 300px;
	    transform-origin: center;
	    transform: rotate(-15deg);
	}

	.program-image {margin: 0 auto;}

	.program-image .chart {
	    width: 150px;
	    top: 0px;
	    left: -35px;
	}
	.program-image .image {border-radius: 10px;}
	.program-image .prod-zepbound {
	    left: -39px;
	    bottom: -30px;
	    max-width: 215px;
	}
	.program-image .gupta {
	    width: 250px;
        top: -43px;
        right: -75px;
	}

	.program-content {
		display: flex;
		justify-content: center;
	}

	.program-card {
	    max-width: 350px;
	    width: 100%;
	    margin-top: 0;
	   	position: relative;
	}

	.program-card .svg {
		position: absolute;
		right: -10px;
		bottom: 135px;
		width: 130px;
		height: 190px;
	}
	
	.program-card .inner {padding: 20px 20px 25px;}
	.program-card ul {margin-top: 20px;}
	.program-card ul .icon {margin-right: 15px;}
	.program-card .btn {width: 100%;}
	.program-card .btn-box h5 {font-size: 13px;}
	.program-card .btn-box p {
	    font-size: 12.5px;
	    margin-top: 5px;
	}

	.program-card .btn-box .btn {margin-bottom: 0;}
	.program-card .btn-box p {color: #076a8c;}
}

@media (max-width: 600px) {
	.program {
/*		padding-bottom: 0;*/
/*		overflow: visible;*/
		overflow: hidden;
	}

	.program-content h2.title {
	    font-size: 27px;
	    font-weight: normal;
	    margin-bottom: 15px;
	    margin-top: 5px;
	}

	.program .center {grid-gap: 45px;}

	.program-content .text {
		-webkit-font-smoothing: antialiased;
		font-smoothing: antialiased;
	}

	.program-image .chart {left: -15px;}
	.program-image .prod-zepbound {left: -15px;}
}

@media (max-width: 413px) {
	.program-card .heading {font-size: 14px;}
	.program-content h2.title {font-size: 23px;}
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #093e52;
    padding-top: 30px;
    position: relative;
    z-index: 3
}
.footer-row {
    display: flex;
    margin-right: -15px;
    margin-left: -15px
}
.footer-logo {
    display: inline-block;
    width: 146px;
    height: 41px;
    background: url(../img/logo-inverse.webp) no-repeat;
}
.social a {
    width: 50px;
    height: 50px;
    background-color: #1a4c5e;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    transition: all .3s;
    margin:1px;
}
.social a:hover {
    background-color: #66d4cf
}
.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)
}
.social a.ic-in {
    background-image: url(../img/insta.png)
}
.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) 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: 40px;
}
.footer-copy .center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 15px;
    color: #396273;
    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;
	color: #5a8397;
	border-top: 1px solid #12495e;
}
.footer-bottom .center {
	display: flex;
	align-items: center;
}
.footer-bottom .text {width: 100%;}
.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;
}
.footer-bottom a {color: #5a8397;}

@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: 40px
    }
    .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: 0px;}
    .footer-copy .center {
        font-size: 15px;
        flex-direction: column
    }

    .footer-bottom {padding-bottom: 105px;}
    .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;
	}
}

/* ------------------ FOOTER ------------------ */
.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;
}

.popup .head {
	background: var(--color);
    padding: 30px 30px 30px 30px;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    min-height: 65px;
    margin-right: -2px;
    margin-left: -2px;
}
.popup .head h4 {
	font-size: 44px;
	line-height: 1.2;
}
.popup .head h6 {font-size: 15px;}

/* POPUP INFO */
.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    transition: all .3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
}
.popup-close svg {
    fill: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.popup-important {
    background: #fff;
    max-width: 60%;
    width: 100%;
}
.popup-important .body {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    font-size: 17px;
    padding-bottom: 150px;
}
.popup-important h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-important h5 {
    font-size: 25px;
    line-height: 30px;
    padding: 20px 0;
    margin-top: 20px;
}
.popup-important ul {
    margin-top: 20px;
    margin-left: 25px;
    list-style: none;
}
.popup-important ul li {
    position: relative;
    padding-left: 25px;
}
.popup-important ul li + li {margin-top: 10px;}
.popup-important ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #151a29;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10px;
}
.popup-important p u {text-decoration: underline;}
.popup-important p a,
.popup-important ul a {color: var(--akcent);}
.popup-important p a:hover,
.popup-important ul a:hover {text-decoration: underline;}
.popup-important p {margin-top: 20px;}
.popup-important p span {color: #a20e1e;}

.popup-info {
	background: #fff;
	max-width: 560px;
	width: 100%;
	padding: 30px;
	font-size: 17px;
	border-radius: 10px;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25), -4px 4px 8px rgba(0, 0, 0, 0.25);
}
.popup-info p + p {margin-top: 15px;}
.popup-info .popup-close {
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: #e6f3f7;
}
.popup-info .popup-close svg {fill: #0a3e52;}

@media (max-width: 767px) {
	.popup-important {
		max-width: inherit;
		width: inherit;
		top: 30px !important;
		position: fixed;
		bottom: 30px;
		left: 30px;
		right: 30px;
		transform: none;
	}
	.popup .head {
	    padding: 10px 30px 15px 30px;
	    font-size: 19px;
	    min-height: auto;
	    line-height: inherit;
	}
	.popup .head h4 {font-size: 24px;}
	.popup .head h6 {
	    font-size: 13px;
	    margin-top: 15px;
	}

	.popup-important .body {font-size: 15px;}
	.popup-important ul {margin-left: 0;}
	.popup-important ul li {padding-left: 10px;}
	.popup-important ul li:before {
		width: 4px;
		height: 4px;
		margin-top: 9px;
	}
	.popup-important .body h4,
	.popup-important .body h1 {font-size: 20px;}
}

@media (max-width: 600px) {
	.popup-info {
		max-width: inherit;
		width: inherit;
		left: 15px !important;
		right: 15px !important;
		transform: none;
	}
}

.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;
}
.popup-video .btn {
	height: 48px;
	width: 300px;
	font-weight: bold;
	cursor: pointer;
}
.popup-video .btn svg {
	position: relative;
	z-index: 3;
	margin-right: 6px;
}

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

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

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

.universal_popup-important p {
	font-weight: 300;
	line-height: 1.5;
	-webkit-font-smoothing: auto;
	font-smoothing: auto;
}

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

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

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

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

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

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

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

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

.strikethrough { text-decoration: line-through; }

.space {
    margin-left:-3px !important;
}

div.works-right > div:nth-child(5) > div.card {
    height:auto;
}
