* {
    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-size: 14px;
    font-family: Montserrat;
    -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-style: inherit;
    font-weight: 400;
}
/* ===================================================================== */
body{
    font-family: Rubik;
    font-size: 12px;
    color: #616161;
}
.wrapper{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
[class*="__container"]{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}
/* --pc-- */
@media(max-width: 1079.98px){
    [class*="__container"]{
        max-width: 970px;
    }
}
/* --tablet-- */
@media(max-width: 991.98px){
    [class*="__container"]{
        max-width: 750px;
    }
}
/* --mobile-- */
@media(max-width: 767.98px){
    [class*="__container"]{
        max-width: none;
    }
}
/* --mobile-small-- */
@media(max-width: 479.98px){}
/* ====header========================================================= */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}
.header__container {
    display: flex;
    min-height: 114px;
    align-items: center;
}
.header__logo {
    position: relative;
    z-index: 5;
}
.header__menu {
    flex: 1 1 auto;
}
.menu {
    display: flex;
    justify-content: end;
    
}
.menu__list {
    display: flex;
    gap: 40px;
}
.menu__item {
   margin: 0 40px 0 0;
}

.menu__link {
    text-transform: uppercase;
    font-family: Raleway;
    font-weight: 700;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #000;
}
.menu__link:hover {
    text-decoration: underline;
}
.header__button {
    position: relative;
    z-index: 5;
    flex: 0 0 252px;
    display: flex;
    justify-content: end;
    align-items: center;
   
}

.button {
    display: inline-block;
    font-family: Raleway;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #FCFDFE;
    padding: 13px 30px;
    border-radius: 5px;
    background-color: #EC5863;
    transition: background-color 0.3s ease 0s;
}
.button:hover {
    background-color: #a83f46;
}
.button-blue {
    background-color: #4285F4;
}
.button-blue:hover{
    background-color: #2c5ca8;
}
/* ==burger============================================= */
.close-icon-menu,
.icon-menu{
    display: none;   
}

@media(max-width: 767.98px){
    .icon-menu{ 
        position: relative;
        flex: 0 0 30px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 0 0 20px;
    }
    .icon-menu::before,
    .icon-menu::after{ 
        content: '';
        background-color: #000;
        height: 2px;
    }
    .icon-menu span{    
        height: 2px;
        background-color: #000;
    }
    .close-icon-menu{
        flex: 0 0 30px;
        height: 30px;
        position: relative;
        margin: 0 0 0 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;
    }
}
/* ============================================================= */
@media(max-width: 991.98px){
    .header__container {
        min-height: 80px;
    }
    .header__button {
        flex: 0 0 170px;
    }
    .menu__item {
        margin: 0 20px 0 0;
     }
}
@media(max-width: 767.98px){
    .menu__body{
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: #616161;
        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;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background-color: #616161;
    }
    .menu__list{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .menu__item{
        margin: 0 0 25px 0;
    }
    .menu__item:last-child{
        margin-bottom: 0;
    }
    .menu__link{
        color: #fff;
        font-size: 20px;
    }
}
@media(max-width: 479.98px){
    .header__logo{
        flex: 0 0 40px;
        overflow: hidden;
    }
}
/* ====main========================================================= */
.main{
    flex: 1 1 auto;
}
/* ====get-started==block================================================ */
.block-text {

}
.block-text_center {
    text-align: center;
}
.block-text__title {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.25;
    color: #000;
}
.block-text__title:not(:last-child) {
    margin: 0 0 12px 0;
}
.block-text__title span{
    color: #EC5863;
}
.block-text__title_blue span{
    color: #4285F4;
}
.block-text__text {
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #616161;
}
.block-text__text:not(:last-child) {
    margin: 0 0 24px 0;
}
.block-text__text_mw{
    max-width: 620px;
    margin: 0 auto;
}
.block-text__button {

}
/* -------------------------------- */
@media(max-width: 767.98px){
    .block-text__title {
        font-size: 34px;
    }
}
/* ====get-started================================================== */

.get-started {
    background: #FAFBFD;
    
}
.get-started__container {
    padding: 150px 15px 50px 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.get-started__container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 267px;
    transform: translate(100%, 0);
    border-radius: 30px 0 0 30px;
    background-color: #EC5863;
}

.get-started__content {
    flex: 0 1 48%;
    padding: 0 20px;
}
.get-started__block-text{
    max-width: 410px;
}

.get-started__image {
    flex: 0 1 52%;
    position: relative;
    z-index: 5;
}
.get-started__image img{
    max-width: 100%;
}

.get-started__video {
    flex: 1 1 100%;
    padding: 60px 0 0 20px;
}
.video-get-started {
    display: inline-flex;
    align-items: center;
}
.video-get-started__icon {
    flex: 0 0 44px;
}
.video-get-started__body {
    padding: 0 0 0 12px;
}
.video-get-started__title {
    font-size: 13px;
    line-height: 1.26;
    letter-spacing: 0.08em;
    color: #B0B0B0;
}
.video-get-started__title:not(:last-child) {
    margin: 0 0 5px 0;
}
.video-get-started__text {
    text-transform: uppercase;
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 0.165em;
    color: #000;
}
/* =============================================================== */
@media(max-width: 991.98px){
    .get-started__container::before {
        right: 185px;
        border-radius: 20px 0 0 20px;
    }
}
@media(max-width: 767.98px){
    .get-started__container {
        padding: 100px 15px 30px 15px;
    }
    .get-started__container::before {
       display: none;
    }
    .get-started__content {
        flex: 1 1 100%;
    }
    .get-started__block-text {
        max-width: none;
    }
    .get-started__image {
        flex: 1 1 100%;
        text-align: center;
        padding: 30px 0;
    }
    .get-started__video {
        padding: 0;
    }
}
/* ====stay-safe=========================================================== */
.stay-safe {
    padding: 80px 0;
}
.stay-safe__container {
    display: flex;
    align-items: center;
}
.stay-safe__media {
    flex: 0 1 50%;
    padding: 0 0 0 47px;
}
.media-stay-safe{
    width: 373px;
    position: relative;
    text-align: center;
    padding: 56px 0 27px 0;
}
.media-stay-safe__image{
    position: relative;
    display: inline-block;
    box-shadow: 2px 4px 32px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    width: 61.5%;
    /* 229/372 */
}
.media-stay-safe__image img{
    position: relative;
    z-index: 5;
    max-width: 100%;
}
.stay-safe__content {
    flex: 0 1 50%;
    max-width: 375px;
}
.media-stay-safe__item {
    position: absolute;
    background-color: #EC5863;
    border-radius: 30px;
    width: 77px;
    height: 77px;
}
.media-stay-safe__item_1 {
    top: 0;
    left: 0;
    width: 147px;
    height: 147px;
}
.media-stay-safe__item_2 {
    bottom: 0;
    left: 33px;
}
.media-stay-safe__item_3 {
    bottom: 107px;
    right: 34px;
}
/* ============================================================= */
@media(max-width: 991.98px){
    .stay-safe{
        padding: 40px 0;
    }
}
@media(min-width: 991.98px){
    .stay-safe__media {
        padding: 0 0 0 47px;
    }
}
@media(max-width: 767.98px){
    .stay-safe__container{
        flex-direction: column-reverse;
    }
    .stay-safe__content{
        margin: 0 0 30px 0;
    }
}
@media(max-width: 479.98px){
    .media-stay-safe{
        width: 290px;
    }
}
/* =====experts======================================================== */
.experts {
    background-color: #FAFBFD;
    padding: 103px 0 116px 0;
}
.experts__container {
}
.experts__statistics {
}
.statistics-experts {
    max-width: 655px;
    margin: 0 auto;
    position: relative;
}
.statistics-experts__body {
    position: relative;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0px 2px 24px rgba(88, 126, 236, 0.15);
    border-radius: 16px;
    margin: 0 0 80px 0;
}
.body-statistics-experts {
    padding: 28px 80px;
    display: flex;
    align-items: center;

}
.body-statistics-experts__item {
    flex: 0 1 25%;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}
.body-statistics-experts__item:last-child {
    flex: 0 1 50%;
}
.body-statistics-experts__value {
    font-size: 36px;
    letter-spacing: 1px;
    color: #EC5863;
    margin-bottom: 5px;
}
.body-statistics-experts__text {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #000;
}
.statistics-experts__decor {
    position: absolute;
    background-color: #EC5863;
    border-radius: 30px;
    transform: rotate(-30deg);
}
.statistics-experts__decor_1 {
    width: 65px;
    height: 65px;
    bottom: -21px;
    left: -21px;
    border-radius: 16px;
}
.statistics-experts__decor_2 {
    width: 97px;
    height: 97px;
    right: 50%;
    top: -40px;
    transform: rotate(30deg);
}
.statistics-experts__decor_3 {
    width: 128px;
    height: 128px;
    right: -55px;
    top: 0;
}
.experts__body{
    display: flex;
    align-items: center;
}
.experts__content{
    flex: 0 1 50%;
    padding: 0 20px 0 0;
}
.experts__block-text{
    max-width: 400px;
}
.experts__video{
    flex: 0 1 50%;
    position: relative;
    padding: 0 0 27% 0;
    box-shadow: 0px 4px 18px rgba(88, 126, 236, 0.18);
    border-radius: 8px;
    overflow: hidden;
}
.experts__video iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
/* ============================================================= */
@media(max-width: 767.98px){
    .experts{
        padding: 80px 0 30px 0;
    }
    .experts__body{
        flex-direction: column;
        align-items: stretch;
    }
    .experts__video{
        padding: 0 0 58% 0;
    }
    .experts__content{
        padding: 0;
        margin: 0 0 30px 0;
    }
    .statistics-experts__body {
        margin: 0 0 50px 0;
    }
    .body-statistics-experts {
        padding: 28px;
    }
}
@media(max-width: 479.98px){
    .body-statistics-experts {
        flex-direction: column;
    }
    .body-statistics-experts__item:not(:last-child) {
        margin: 0 0 15px 0;
    }
}
/* =====healthcare======================================================== */
.healthcare {
    padding: 80px 0 30px 0;
}
.healthcare__container {
}
.healthcare__block-text {
    margin: 0 0 46px 0;
}
.healthcare__items {
    display: flex;
    max-width: 980px;
    gap: 72px;
    margin: 0 auto;
}
.healthcare__column{
    flex: 0 1 33.333%;
    position: relative;
}
.healthcare__item {
    
}
.item-healthcare {
    height: 100%;
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    box-shadow: 0px 4px 18px rgba(88, 126, 236, 0.18);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 17px;
}
.item-healthcare__icon {
    padding: 0 0 50px 0;
}
.item-healthcare__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.item-healthcare__text {
    line-height: 1.4;
}
.healthcare__column_1::before,
.healthcare__column_1::after{
    content: '';
    position: absolute;
    background-color: #EC5863;
}
.healthcare__column_1::before{
    width: 65px;
    height: 65px;
    left: -20px;
    bottom: -30px;
    transform: rotate(-30deg);
    border-radius: 16px;
}
.healthcare__column_1::after{
    width: 97px;
    height: 97px;
    right: -52px;
    top: 35px;
    transform: rotate(30deg);
    border-radius: 30px;
}
.healthcare__column_2::after{
    content: '';
    position: absolute;
    background-color: #EC5863;
    width: 127px;
    height: 127px;
    right: -75px;
    bottom: -30px;
    transform: rotate(55deg);
    border-radius: 30px;
}
.healthcare__column_3::after{
    content: '';
    position: absolute;
    background-color: #EC5863;
    width: 65px;
    height: 65px;
    right: -20px;
    top: -35px;
    transform: rotate(55deg);
    border-radius: 16px;
}

/* ============================================================= */
@media(max-width: 1087px){
    .healthcare__items {
        gap: 32px;
    }
}
@media(max-width: 991.98px){
    .healthcare__items {
        flex-direction: column;
        gap: 20px;
        width: 80%;
    }
    .healthcare {
        padding: 30px 0 30px 0;
    }
    .healthcare__column_1::before,
    .healthcare__column_1::after, 
    .healthcare__column_2::after, 
    .healthcare__column_3::after{
        display: none;
    }
}

/* ====footer============================================================== */
.footer {
    padding: 45px 0;
}
.footer__container {
}
.footer__items {
    display: flex;
    column-gap: 50px;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
}
.footer__item {
}

/* ============================================================= */
@media(max-width: 500px){
    .footer__items {
        flex-direction: column;
    }
}