/* Указываем box sizing */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* Убираем внутренние отступы */

ul[class],
ol[class] {
    padding: 0;
}


/* Убираем внешние отступы */

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}


/* Выставляем основные настройки по-умолчанию для body */

body {
    min-height: 100vh;
    scroll-behavior: smooth;
}


/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/

ul[class],
ol[class] {
    list-style: none;
}


/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */

a:not([class]) {
    text-decoration-skip-ink: auto;
}


/* Упрощаем работу с изображениями */

img {
    max-width: 100%;
    display: block;
}


/* Наследуем шрифты для инпутов и кнопок */

input,
button,
textarea,
select {
    font: inherit;
}

button {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #323232;
    background-color: #FFFFFF;
}

.container {
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    height: 58px;
    padding: 0 37px;
    background-color: #F78434;
    font-weight: 700;
    color: #FFFFFF;
    border-radius: 29px;
    line-height: 58px;
    position: relative;
    z-index: 0;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    outline: none;
}

.btn:hover,
.btn:focus {
    color: #323232;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.btn:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    -webkit-animation: glowing 20s linear infinite;
    animation: glowing 20s linear infinite;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    border-radius: 29px;
}

.btn:active {
    color: #F78434;
}

.btn:active:after,
.btn:hover:after {
    background: transparent;
}

.btn:hover:before {
    opacity: 1;
}

.btn:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F78434;
    left: 0;
    top: 0;
    border-radius: 29px;
}

@-webkit-keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.header {
    padding: 35px 0;
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__logo-text {
    font-weight: bold;
    font-size: 24px;
}

.header__nav-link {
    margin-left: 38px;
    display: inline-block;
    text-decoration: none;
    color: #323232;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header__nav-link.active {
    color: #F78434;
    font-weight: 700;
}

.header__nav-link:hover {
    color: #F78434;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.intro {
    margin-bottom: 100px;
}

.intro__container {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.intro__text {
    margin-top: -10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 467px;
    flex: 0 0 467px;
}

.intro__title {
    position: relative;
    z-index: 10;
    margin-right: -160px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 54px;
    line-height: 79px;
    letter-spacing: 0.8px;
}

.intro__descr {
    margin-bottom: 42px;
    line-height: 27px;
    letter-spacing: 1.15px;
}

.intro__form {
    width: 459px;
    padding-left: 28px;
    -webkit-box-shadow: 0px 17px 42px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 17px 42px rgba(0, 0, 0, 0.12);
    border-radius: 29px;
    height: 58px;
    -webkit-transition: -webkit-box-shadow 0.2s ease-in;
    transition: -webkit-box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in, -webkit-box-shadow 0.2s ease-in;
}

.intro__form--active {
    -webkit-box-shadow: 0px 17px 42px rgba(88, 190, 191, 0.7);
    box-shadow: 0px 17px 42px rgba(88, 190, 191, 0.7);
}

.intro__form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.intro__form-input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 20px 0 40px;
    color: #323232;
    background-image: url(img/email_icon.svg);
    background-position: left;
    background-repeat: no-repeat;
    border: none;
    outline: none;
}

.intro__form-input::-webkit-input-placeholder {
    color: #BBBBBB;
}

.intro__form-input:-ms-input-placeholder {
    color: #BBBBBB;
}

.intro__form-input::-ms-input-placeholder {
    color: #BBBBBB;
}

.intro__form-input::placeholder {
    color: #BBBBBB;
}

.intro__image {
    overflow: hidden;
    border-radius: 40px 40px 40px 0px;
}

.partners {
    margin-bottom: 91px;
}

.partners__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.partners__item {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: scale 0.2s ease-in;
    transition: scale 0.2s ease-in;
}

.partners__item:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: scale 0.2s ease-in;
    transition: scale 0.2s ease-in;
}

.gallery {
    margin-bottom: 154px;
}

.gallery__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gallery__card {
    margin-left: 50px;
    position: relative;
    margin-right: 100px;
}

.gallery__card::after {
    content: url(img/new.png);
    position: absolute;
    top: 20px;
    left: -50px;
    width: 100px;
    height: 100px;
}

.gallery__card-image {
    width: 385px;
    border-radius: 20px 20px 0px 20px;
    overflow: hidden;
    margin-left: 32px;
}

.gallery__card-image:first-child {
    margin-left: 0;
}

.gallery__card-info {
    position: absolute;
    right: -85px;
    bottom: 60px;
    padding: 30px 20px 34px 30px;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #FFFFFF;
    -webkit-box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
    box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
}

.gallery__card-title {
    font-weight: 700;
    letter-spacing: -0.8px;
}

.gallery__card-descr {
    letter-spacing: 1.15px;
}

.gallery__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 374px;
    flex: 0 0 374px;
    margin-right: -10px;
}

.gallery__title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 42px;
    line-height: 62px;
    letter-spacing: 0.8px;
}

.gallery__content {
    margin-bottom: 20px;
    letter-spacing: 1.15px;
}

.gallery__btn {
    margin-top: 20px;
    text-decoration: none;
}

.product {
    margin-bottom: 144px;
}

.product__container {
    position: relative;
    background-color: #58BEBF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 59px;
    padding-right: 95px;
    border-radius: 20px;
}

.product__container::after {
    position: absolute;
    content: url(img/fill-top.svg);
    top: 0;
    right: 0;
}

.product__container::before {
    position: absolute;
    content: url(img/oval-top.svg);
    top: 0;
    right: 0;
}

.product__image-block {
    position: relative;
    padding: 25px 25px 0 0;
    background-color: #FFFFFF;
    -webkit-box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
    box-shadow: 4px 20px 42px -2px rgba(0, 0, 0, 0.12);
    border-top-right-radius: 21.6px;
}

.product__image-block::after {
    position: absolute;
    content: url(img/oval-bottom.svg);
    bottom: -7px;
    right: -118px;
}

.product__text {
    margin-top: -56px;
    width: 364px;
}

.product__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 42px;
    line-height: 62px;
    letter-spacing: 0.8px;
    color: #FFFFFF;
}

.product__descr {
    line-height: 27px;
    letter-spacing: 1.15px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.product__btn-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    column-gap: 20px;
}

.product__btn {
    text-decoration: none;
    padding: 0 40px;
}

.product__btn--white {
    color: #323232;
    background-color: #FFFFFF;
    padding: 0 30px 0 50px;
}

.product__btn--white:active {
    color: #FFFFFF;
}

.product__btn--white:after {
    background: #FFFFFF;
    background-image: url(img/icon-btn.svg);
    background-position: 32px center;
    background-repeat: no-repeat;
}

.service {
    margin-bottom: 113px;
    position: relative;
}

.service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 138%;
    background-color: #F5F6FA;
    top: -74%;
    left: 0;
    z-index: -1;
}

.service__container {
    text-align: center;
}

.service__title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 0.8px;
}

.service__descr {
    margin-bottom: 45px;
    letter-spacing: 1.15px;
}

.service__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.service__item {
    width: 540px;
    padding: 40px 100px 39px 100px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 40px 52px -22px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 40px 52px -22px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.service__item:hover {
    background-color: #F78434;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.service__item:hover .service__item-img path {
    fill: #FFFFFF;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.service__item-title {
    margin-top: 10px;
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    letter-spacing: 0.8px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.service__item:hover .service__item-title {
    color: #FFFFFF;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.service__item-descr {
    letter-spacing: 1.15px;
    margin-bottom: 30px;
}

.service__item:hover .service__item-descr {
    color: #FFFFFF;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.service__item-btn {
    text-decoration: none;
}

.service__item-btn {
    color: #F78434;
    background-color: #FFFFFF;
}

.service__item-btne:active {
    color: #FFFFFF;
}

.service__item-btn:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    left: 0;
    top: 0;
    border-radius: 29px;
}

.choose {
    margin-bottom: 118px;
}

.choose__title {
    margin-bottom: 58px;
    text-align: center;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: 0.8px;
}

.choose__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 35px;
    column-gap: 35px;
}

.choose__item {
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.choose__item:hover .choose__item-image circle {
    fill: #F78434;
    fill-opacity: 1;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.choose__item:hover .choose__item-image path,
.choose__item:hover .choose__item-image ellipse {
    fill: #FFFFFF;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.choose__item-title {
    margin-top: 6px;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.choose__item-descr {
    letter-spacing: 1.15px;
}

.reviews__container {
    padding: 59px 0 45px;
}

.reviews__text {
    margin-bottom: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reviews__title {
    max-width: 454px;
    font-weight: 700;
    font-size: 42px;
    line-height: 62px;
    letter-spacing: 0.8px;
}

.reviews__subtitle {
    max-width: 435px;
    line-height: 27px;
    letter-spacing: 1.15px;
}

.cards {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 28px;
    column-gap: 28px;
    border-radius: 5px 5px 0px 0px;
}

.cards::after {
    position: absolute;
    content: url(img/shape.svg);
    width: 80px;
    height: 80px;
    right: -5px;
    top: -40px;
}

.cards__item {
    max-width: 350px;
    cursor: pointer;
}

.cards__item:hover {
    -webkit-box-shadow: 0px 10px 52px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 52px rgba(0, 0, 0, 0.08);
}

.cards__item:hover .cards__img-btn {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.cards__img-block {
    width: 350px;
    height: 204px;
    overflow: hidden;
}

.cards__img-block {
    position: relative;
}

.cards__img-btn {
    position: absolute;
    bottom: 13px;
    right: 20px;
    opacity: 0;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
    -webkit-transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.cards__img-btn:hover circle {
    fill: #F78434;
    -webkit-transition: fill 0.2s ease-in;
    transition: fill 0.2s ease-in;
}

.cards__img-btn:hover path {
    fill: #FFFFFF;
    -webkit-transition: fill 0.2s ease-in;
    transition: fill 0.2s ease-in;
}

.cards__text-block {
    padding: 31px 29px 31px 24px;
}

.cards__text-descr {
    letter-spacing: 1.15px;
    margin-bottom: 28px;
}

.cards__text-name {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.6px;
}

.cards__text-city {
    letter-spacing: 1.15px;
    color: #58BEBF;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
}

.cards__text-city:hover {
    color: #F78434;
    -webkit-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
}

.expert {
    background-color: #FFFFFF;
    position: relative;
    background-image: url(img/expert__bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.expert::before {
    content: url(img/expert_oval.svg);
    position: absolute;
    bottom: 0;
    left: 43%;
    width: 372px;
    height: 372px;
    z-index: 1;
}

.expert__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.expert__text {
    max-width: 360px;
    padding-top: 215px;
    margin-right: 175px;
}

.expert__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 42px;
    line-height: 62px;
    letter-spacing: 0.8px;
    color: #FFFFFF;
}

.expert__descr {
    margin-bottom: 30px;
    max-width: 340px;
    letter-spacing: 1.15px;
    color: #FFFFFF;
}

.expert__btn {
    color: #323232;
    background-color: #FFFFFF;
    padding: 0 41px;
}

.product__btn--white:active {
    color: #FFFFFF;
}

.expert__btn:after {
    background: #FFFFFF;
}

.expert__img {
    position: relative;
    z-index: 2;
}

.footer {
    padding: 86px 0 82px;
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__left-block {
    max-width: 300px;
}

.footer__logo {
    margin-left: -5px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__logo-text {
    font-weight: bold;
    font-size: 24px;
}

.footer__descr {
    margin-bottom: 40px;
    letter-spacing: 1.15px;
}

.footer__social-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.footer__social-link {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.1s ease-in;
    transition: -webkit-transform 0.1s ease-in;
    transition: transform 0.1s ease-in;
    transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
}

.footer__social-link:hover {
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
    -webkit-transition: -webkit-transform 0.1s ease-in;
    transition: -webkit-transform 0.1s ease-in;
    transition: transform 0.1s ease-in;
    transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
}

.footer__right-block {
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 88px;
    column-gap: 88px;
}

.footer__info-title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.5px;
}

.footer__info-item:not(:last-child) {
    margin-bottom: 15px;
}

.footer__info-link {
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: inherit;
    -webkit-transition: color 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: color 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: color 0.2s ease-in, transform 0.2s ease-in;
    transition: color 0.2s ease-in, transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.footer__info-link:hover {
    color: #F78434;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: color 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: color 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: color 0.2s ease-in, transform 0.2s ease-in;
    transition: color 0.2s ease-in, transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}


/*# sourceMappingURL=main.css.map */