/* Обнулюючий стиль */
*{padding: 0;margin: 0;border: 0;}
*, *:before, *:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus, :active{outline: none;}
a:focus, a:active{outline: none;}
nav,footer,header,aside{display: block;}
html, body{height: 100%;width: 100%;font-size: 100%;line-height: 1;font-style: 14px;-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}
input, button, textarea{font-family: inherit;}
input::-ms-clear{display:none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0;border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style-type: none;}
img{vertical-align: top;}
h1, h2, h3, h4, h5, h6{font-size: inherit; font-weight: 400;}

/*___________________________________________________________________*/

body {
	font-family: Rubik;
	font-size: 12px;
	color: #616161;
}

.wrapper {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
}

/*___________________________________________________________________*/

/* Встановлюємо обмеження ширини для контейнерів */
[class*="__container"] {
	max-width: 1087px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Обмеження ширини контейнерів для PC */
@media (max-width: 1087px) {
	[class*="__container"] {
		max-width: 970px;
	}
}

/* Обмеження ширини контейнерів для планшетів */
@media (max-width: 991.98px) {
	[class*="__container"] {
		max-width: 750px;
	}
}

/* Обмеження ширини контейнерів для телефонів */
@media (max-width: 767.98px) {
	[class*="__container"] {
		max-width: none;
	}
}

/*___________________________________________________________________*/

/* Стилі для шапки*/
.header {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 50;
}

.header__container {
	display: flex;
	align-items: center;
	min-height: 114px;
}

/* Стилі для лога */
.header__logo {
	position: relative;
	z-index: 5;
}

/* Для маленьких телефонів залишаємо тільки саме лого (без назви) */
@media (max-width: 479.98px) {
	.header__logo {
		flex: 0 0 40px;
		overflow: hidden;
	}
}

.header__menu {
	flex: 1 1 auto;
}

.header__button {
	display: flex;
	flex: 0 0 252px;
	justify-content: flex-end;
	align-items: center;

	position: relative;
	z-index: 5;	
}

/* Стилі для меню навігації */

.menu {
	display: flex;
	justify-content: flex-end;
}

.menu__list {
	display: flex;
}

.menu__item {
	margin-right: 40px;
}

.menu__link {
	font-family: Raleway;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.4px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000;
}

.menu__link:hover {
	text-decoration: underline;
}

/* Адаптивність меню для PC */
@media (max-width: 991.98px) {
	.header__container {
		min-height: 80px;
	}
	.menu__item {
		margin-right: 30px;
	}
	.header__button {
		flex: 0 0 170px;
	}
}

/* Адаптивність меню для планшетів */
@media (max-width: 767.98px) {

	/* Меню для бургера */
	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: #FFF;
		padding: 90px 15px 30px 15px;
		transition: left 0.3s ease 0s;
	}

	.header:target .menu__body{
		left: 0;
	}

	.header:target .menu__body:before {
		content: "";
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 80px;
		background-color: #FFF;
	}

	.menu__list {
		flex-direction: column;
		justify-content: center;
		align-items: center	;
	}

	.menu__item {
		margin: 0px 0px 25px 0px;
	}

	.menu__link {
		font-size: 20px;
	}
}

/* Стилі для кнопки */
.button {
	display: inline-block;
	padding: 14px 30px;

	font-family: Raleway;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.4px;

	color: #FCFDFE;
	background-color: #EC5863;
	border-radius: 5px;
	transition: background-color 0.3s ease 0s;
}
.button:hover {
	background-color: #a7555b;
}

.button_blue {
	background-color: #4285F4;;
}
.button_blue:hover	 {
	background-color: #779fe0;
}

/* Стилі для бургера */
.icon-menu,
.close-icon-menu {
	display: none;
}

@media (max-width: 767.98px) {

	/* Стилі для відкриваючого бургера*/
	.icon-menu {
		display: flex;
		position: relative;
		height: 18px;
		flex: 0 0 30px;
		flex-direction: column;
		justify-content: space-between;
		margin: 0px 0px 0px 20px;
	}
	
	.icon-menu::before,
	.icon-menu::after {
		content: '';
		background-color: #000;
		height: 2px;
	}
	.icon-menu span {
		background-color: #000;
		height: 2px;
	}

	/* Стилі для закриваючого бургера */
	.close-icon-menu {
		height: 30px;
		flex: 0 0 30px;
		position: relative;
		margin: 0px 0px 0px 20px;
	}

	.close-icon-menu::before,
	.close-icon-menu::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		background-color: #000;
		height: 2px;
	}

	.close-icon-menu::before {
		transform: rotate(45deg);
	}
	.close-icon-menu::after {
		transform: rotate(-45deg);
	}

	.header:target .icon-menu {
		display: none;
	}
	.header:target .close-icon-menu {
		display: flex;
	}
}

/*___________________________________________________________________*/

/*		Стилі для текстових блоків 		*/

.block-text_center {
	text-align: center;
}

/* Стилі для заголовків текстових блоків */
.block-text__title {
	font-family: Rubik;
	font-size: 44px;
	font-weight: 700;
	font-style: normal;
	line-height: 126%; /* 55.44px */
	color: #000;
}

.block-text__title:not(:last-child) {
	margin: 0px 0px 12px 0px;
}

.block-text__title span {
	color: #EC5863;
}
.block-text__title_blue span {
	color: #4285F4;
}

/* Стилі для основного тексту текстових блоків */
.block-text__text {
	line-height: 138.5%; /* 16.62px */
	letter-spacing: 0.96px;
}
.block-text__text_mw {
	max-width: 600px;
	margin: 0px auto;
}
.block-text__text:not(:last-child) {
	margin: 0px 0px 24px 0px;
}

@media (max-width: 767.98px) {
	.block-text__title {
		font-size: 34px;
	}
}

/*___________________________________________________________________*/

/*		Стилі для секції get-started 		*/

.get-started {
	background-color: #FAFBFD;
}
.get-started__container {
	padding: 162px 15px 48px 15px;
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

/* Декоративний прямокутник */
.get-started__container::before {
	content: "";
	position: absolute;
	width: 100vh;
	height: 100%;
	right: 267px;
	top: 0;
	transform: translate(100%, 0px);
	background-color: #EC5863;
	border-radius: 30px 0px 0px 30px;
}

/* Адаптивність блока get-started */
@media (max-width: 991.98px) {
	.get-started__container::before {
		right: 185px;
		border-radius: 20px 0px 0px 20px;
	}
}

/* Стилі для основного блока (лівий блок) блока get-started */
.get-started__content {
	flex: 0 1 48%;
	padding: 0px 20px;
}

.get-started__block-text {
	max-width: 410px;
}

/* Стилі для блока із зображенням (правий блок) блока get-started */

.get-started__image {
	flex: 0 1 52%;
	position: relative;
	z-index: 5;
}

.get-started__image img {
	max-width: 100%;
}

/* Стилі для блока із посиланням на відео (нижній блок) блока get-started */

.get-started__video {
	flex: 1 1 100%;
	padding: 60px 0px 0px 18px;
}

.video-get-started {
	display: inline-flex;
	align-items: center;
}

.video-get-started__icon {
	flex: 0 0 44px;
}

.video-get-started__body {
	padding: 0px 0px 0px 12px;
}

.video-get-started__title {
	color: #B0B0B0;
	font-size: 13px;
	line-height: 126%; /* 16.38px */
	letter-spacing: 1.04px;
}
.video-get-started__title:not(:last-child) {
	margin: 0px 0px 5px 0px;
}
.video-get-started__text {
	text-transform: uppercase;
	color: #000;
	font-size: 9px;
	line-height: 126%; /* 11.34px */
	letter-spacing: 1.485px;
}

@media (max-width: 767.98px) {
	.get-started__container {
		padding: 100px 15px 30px 15px;
	}
	.get-started__container::before {
		display: none;
	}

	.get-started__block-text {
		max-width: none;
	}
	.get-started__content {
		flex: 1 1 100%;
		padding: 0;
	}
	.get-started__image {
		flex: 1 1 100%;
		text-align: center;
		padding: 30px 0;
	}
	.get-started__video{
		padding: 0;
	}
}

/*___________________________________________________________________*/

/*		Стилі для секції stay-safe 		*/

.stay-safe {
	padding: 80px 0px;
}

.stay-safe__container {
	display: flex;
	align-items: center;
}

/* Стилі для блока media блока stay-safe*/
.stay-safe__media {
	flex: 0 1 50%;
}

.media-stay-safe {
	width: 373px;
	text-align: center;
	position: relative;
	padding: 56px 0px 27px 0px;
}
.media-stay-safe__image {
	display: inline-block;
	border-radius: 16px;
	box-shadow: 2px 4px 32px 0px rgba(0, 0, 0, 0.12);
	position: relative;
	width: 61.5%;
}

.media-stay-safe__image img {
	position: relative;
	z-index: 5;
	max-width: 100%;
}

/* Декоративна тінь під блоком media-stay-safe__image */
.media-stay-safe__image::after {
	content: "";
	position: absolute;
	left: 12px;
	bottom: -12px;

	border-radius: 16px;
	background: rgba(240, 240, 240, 0.49);
	height: 27px;
	width: 206px;
	z-index: 2;
}

/* Стилі для декоратинвих квадратів*/
.media-stay-safe__item {
	position: absolute;
	border-radius: 30px;
	background-color: #EC5863;
	width: 77px;
	height: 77px;
}

.media-stay-safe__item_1 {
	width: 147px;
	height: 147px;
	top: 0;
	left: 0;
}

.media-stay-safe__item_2{
	bottom: 0;
	left: 32px;
}

.media-stay-safe__item_3{
	bottom: 107px;
	right: 34px;
}

.stay-safe__content {
	flex: 0 1 50%;
}

/* Адаптивність блока stay-safe */
@media (max-width: 991.98px) {
	.stay-safe {
		padding: 40px 0px;
	}
}

@media (min-width: 991.98px) {
	.stay-safe__media {
		padding: 0px 0px 0px 47px;
	}
}

@media (max-width: 767.98px) {
	.stay-safe__container {
		flex-direction: column-reverse;
	}
	.stay-safe__content {
		margin: 0px 0px 30px 0px;
	}
}

@media (max-width: 479.98px) {
	.media-stay-safe {
		width: 290px;
	}
}

/*___________________________________________________________________*/

/*		Стилі для секції experts 		*/

.experts {
	background-color: #FAFBFD;
	padding: 103px 0px 116px 0px;
}

.experts__block-text {
	max-width: 400px;
}

/* Стилі для блока statistics-experts */
.statistics-experts {
	max-width: 654px;
	margin: 0px auto;
	position: relative;
}

.experts__body {
	display: flex;
	align-items: center;
}

.statistics-experts__body {
	border-radius: 16px;
	background-color: #FFF;
	box-shadow: 0px 2px 24px 0px rgba(88, 126, 236, 0.15);
	position: relative;
	z-index: 2;
	margin: 0px 0px 80px 0px;
}

.body-statistics-experts {
	padding: 20px 80px;
	display: flex;
	align-items: center;
}

.body-statistics-experts__item {
	flex: 0 1 25%;
	text-align: center;
}

.body-statistics-experts__item:last-child {
	flex: 0 1 50%;
}

.body-statistics-experts__value {
	color: #EC5863;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 5.04px;
	margin-bottom: 5px;
}

.body-statistics-experts__text {
	color: #000;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.37em;
	text-transform: uppercase;
	line-height: 3;
}

/* Стилі для декора блока statistics-experts */
.statistics-experts__decor {
	position: absolute;
	border-radius: 30px;
	background-color: #EC5863;
}
.statistics-experts__decor_1 {
	height: 65px;
	width: 65px;
	transform: rotate(-30deg);
	left: -21px;
	bottom: -21px;
	border-radius: 16px;
}
.statistics-experts__decor_2 {
	height: 96px;
	width: 96px;
	transform: rotate(105deg);
	right: 50%;
	top: -40px;
}
.statistics-experts__decor_3 {
	height: 128px;
	width: 128px;
	transform: rotate(-30deg);
	right: -55px;
	top: 0px;
}

/* Стилі для блока experts__content */
.experts__content {
	flex: 0 1 50%;
	padding: 0px 20px 0px 0px ;
}

/* Стилі для блока experts__video */
.experts__video {
	padding: 0px 0px 30% 0px;
	position: relative;
	flex: 0 1 50%;
	border-radius: 8px;
	box-shadow: 0px 4px 18px 0px rgba(88, 126, 236, 0.18);
	overflow: hidden;
}

.experts__video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

/* Адаптивність блока experts */
@media (max-width: 767.98px) {
	.experts {
		padding: 80px 0px 30px 0px;
	}
	.experts__body {
		flex-direction: column;
		align-items: stretch;
	}
	.experts__content {
		padding: 0;
		margin: 0px 0px 30px 0px;
	}
	.experts__video {
		padding: 0px 0px 58% 0px;
	}
	.statistics-experts__body {
		margin: 0px 0px 50px 0px;
	}
	.body-statistics-experts {
		padding: 25px;
	}
	.experts__block-text {
		max-width: none;
	}
}

@media (max-width: 479.98px) {
	.body-statistics-experts {
		flex-direction: column;
	}	
	.body-statistics-experts__item:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}

/*___________________________________________________________________*/

/*		Стилі для секції healthcare 		*/

.healthcare {
	padding: 80px 0px 30px 0px;
}

.healthcare__block-text {
	margin: 0px 0px 46px 0px;
}

.healthcare__column {
	position: relative;
	padding: 0px 36px;
	flex: 0 1 33.333%;
}

.healthcare__items {
	display: flex;
}

.item-healthcare {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	padding: 35px 17px;
	height: 100%;
	text-align: center;
	background: #FFF;
	box-shadow: 0px 4px 18px 0px rgba(88, 126, 236, 0.18);
	border-radius: 8px;
}

.item-healthcare__icon {
	margin: 0px 0px 58px 0px;
}

.item-healthcare__title {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 138.5%; /* 22.16px */
	letter-spacing: 1.28px;
	margin: 0px 0px 4px 0px;
}

.item-healthcare__text {
	font-weight: 400;
	line-height: 138.5%; /* 16.62px */
	letter-spacing: 0.96px;
}

/* Стилі для декора блока healthcare */

.healthcare__column_1::before,
.healthcare__column_1::after {
	content: "";
	position: absolute;
	background: #EC5863;
}

.healthcare__column_1::before {
	width: 65px;
	height: 65px;
	transform: rotate(-30deg);
	border-radius: 16px;
	bottom: -30px;
	left: 15px;
}

.healthcare__column_1::after {
	width: 97px;
	height: 97px;
	transform: rotate(105deg);
	border-radius: 30px;
	top: 35px;
	right: -10px;
}

.healthcare__column_2::after {
	content: "";
	position: absolute;
	background: #EC5863;
	width: 127px;
	height: 127px;
	transform: rotate(-30deg);
	border-radius: 30px;
	bottom: -35px;
	right: -35px;
}

.healthcare__column_3::after {
	content: "";
	position: absolute;
	background: #EC5863;
	width: 65px;
	height: 65px;
	transform: rotate(-30deg);
	border-radius: 16px;
	top: -25px;
	right: 10px;
}

/* Адаптивність healthcare */

@media (max-width: 1087px) {
	.healthcare__column {
		padding: 0px 15px;
	}
}

@media (max-width: 991.98px) {
	.healthcare {
		padding: 30px 0px;
	}
	.healthcare__items {
		flex-direction: column;
	}
	.healthcare__column:not(:last-child) {
		margin: 0px 0px 25px 0px;
	}
	.healthcare__column_3::after {
		display: none;
	}
}

/*___________________________________________________________________*/

/*		Стилі для футера 		*/

.footer {
	padding: 70px 0px 45px 0px;
}

.footer__items {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 56px;
	row-gap: 20px;
}

/* Адаптивність футера */

@media (max-width: 500px) {
	.footer {
		padding: 30px 0px;
	}
	.footer__items {
		flex-direction: column;
	}
}