@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/**************** Basic ****************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #F5F5F5;
    line-height: normal;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

input:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/******************************/

.header {
    width: 100%;
    position: relative;
    background-color: #fff;
}

.header__row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.header__logo {
    width: 100px;
    position: relative;
}

.header__logo__img {
    width: 100%;
}

.header__top__menu {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
}

.header-list__item {
    position: relative;
    margin-left: 20px;
}

.header-list__link {
    color: #131313;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-list__link:hover {
    color: #e5289d;
}

.header__block {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header__block__social {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
    margin-left: 10px;
}

.header__block__social > svg {
    width: 100%;
    border-radius: 50%;
}

.header__block__social > svg > path {
    transition: all 0.2s ease;
}

.header__block__social:hover > svg > path {
    fill: #e5289d;
}

.header__block__sub {
    padding: 10px 25px;
    border-radius: 30px;
    background-color: #e5289d;
    border: 1px solid #e5289d;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    margin-left: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.header__block__sub:hover {
    background-color: transparent;
    color: #e5289d;
}

.mobile__menu__bg {
    display: none;
}

.header__mobile__burger {
    display: none;
}

.banner {
    width: 100%;
    position: relative;
    background-image: url('../img/banner1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner__row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.banner__content {
    width: 60%;
    margin: 150px 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.banner__title {
    color: #5c3bca;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.banner__text {
    color: rgb(92, 59, 202);
    font-weight: 300;
    font-size: 20px;
    margin-top: 50px;
}

.banner__button {
    width: 400px;
    padding: 25px 35px;
    border-radius: 30px;
    background-color: #e5289d;
    border: 1px solid #e5289d;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 50px;
}

.banner__button:hover {
    background-color: #F5F5F5;
    color: #e5289d;
}

.about {
    width: 100%;
    position: relative;
    background-color: #f0f5f2;
}

.about__row {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.about__content {
    width: 100%;
    max-width: 1000px;
    padding: 60px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #000000;
}

.about__text {
    font-size: 26px;
    text-align: center;
    line-height: 1.45;
    color: #000000;
    font-weight: 400;
    margin-bottom: 70px;
}

.about__text > strong {
    color: rgb(92, 59, 202);
    font-weight: 600;
}

.about__img {
    width: 550px;
}

.services {
    width: 100%;
    position: relative;
    padding: 90px 0;
}

.services__row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services__title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.services__title > strong {
    color: #5c3bca;
}

.services__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.services__block {
    width: 32%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}

.services__block > svg {
    width: 55px;
}

.services__text {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-left: 20px;
}

.offer {
    width: 100%;
    position: relative;
    background-color: #f0f5f2;
}

.offer__row {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.offer__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
}

.offer__title {
    color: #5c3bca;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.offer__text {
    color: #000;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

.offer__form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 80px;
}

label[for="name1"],
label[for="email1"],
label[for="tel1"] {
    position: relative;
    width: 24%;
    height: 50px;
    border-radius: 20px;
}

#name1,
#email1,
#tel1 {
    width: 100%;
    height: 100%;
    border: 1px solid #f0f5f2;
    border-radius: 20px;
    padding: 10px 20px;
}

label[for="checkbox1"] {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    cursor: pointer;
}

label[for="checkbox1"] > p {
    font-size: 14px;
    margin-left: 5px;
}

.offer__form__button {
    width: 24%;
    height: 50px;
    position: relative;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #e5289d;
    background-color: #e5289d;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer__form__button:hover {
    background-color: transparent;
    color: #e5289d;
}

.why {
    width: 100%;
    position: relative;
    padding: 90px 0;
}

.why__row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why__title {
    font-size: 24px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 500;
}

.why__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.why__content__block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.why__content__block > svg {
    width: 8% !important;
}

.why__text {
    width: 90%;
    font-size: 20px;
    color: #e5289d;
    font-weight: 400;
    margin-left: 10px;
}

.doctors {
    width: 100%;
    position: relative;
    padding: 60px 0;
    background-color: rgba(229, 40, 157, 0.08);
}

.doctors__row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctors__title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

.doctors__title > strong {
    font-weight: 500;
    color: #e5289d;
}

.doctors__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
}

.doctors__block {
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.doctor__block__name {
    margin: 20px 0 10px 20px;
    font-size: 16px;
    color: #3b3dca;
}

.doctors__list {
    position: relative;
    margin: 20px 5px 20px 40px;
}

.doctors__list__item {
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
}

.doctor__block__text {
    margin: 20px 0 0 20px;
    font-size: 16px;
}

.doctors__block__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sub {
    width: 100%;
    position: relative;
    background-color: #f0f5f2;
}

.sub__row {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.sub__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
}

.sub__title {
    color: #5c3bca;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
}

.sub__text {
    color: #000;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.sub__form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

label[for="name2"],
label[for="email2"],
label[for="tel2"] {
    position: relative;
    width: 24%;
    height: 50px;
    border-radius: 20px;
}

#name2,
#email2,
#tel2 {
    width: 100%;
    height: 100%;
    border: 1px solid #f0f5f2;
    border-radius: 20px;
    padding: 10px 20px;
}

label[for="checkbox2"] {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    cursor: pointer;
}

label[for="checkbox2"] > p {
    font-size: 14px;
    margin-left: 5px;
}

.sub__form__button {
    width: 24%;
    height: 50px;
    position: relative;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #e5289d;
    background-color: #e5289d;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub__form__button:hover {
    background-color: transparent;
    color: #e5289d;
}

.video {
    width: 100%;
    position: relative;
    padding: 60px 0;
}

.video__row {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video__row > iframe {
    width: 100%;
}

.footer {
    width: 100%;
    position: relative;
    padding: 30px 0;
    background-color: #4b4949;
}

.footer__row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer__socs {
    position: relative;
    display: flex;
    flex-direction: row;
}

.footer__block__social {
    width: 30px;
    height: 30px;
    text-decoration: none;
    margin-right: 10px;
}

.footer__block__social > svg > path {
    fill: #fff;
}

.footer__text {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

/**************** Media *****************/

@media only screen and (max-width: 1070px) {

    .doctors__block {
        width: 40%;
    }

    .footer__text {
        font-size: 15px;
    }

}

@media only screen and (max-width: 992px) {

    .header {
        z-index: 15;
    }

    .header__top__menu,
    .header__block__sub {
        display: none;
    }

    .header__mobile__burger {
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        background-color: transparent;
        border: none;
    }

    .header__mobile__burger.active > span:first-child {
        transform: rotate(45deg);
    }

    .header__mobile__burger.active > span:nth-child(2) {
        display: none;
    }

    .header__mobile__burger.active > span:nth-child(3) {
        margin-top: -12px;
        transform: rotate(-45deg);
    }

    .header__mobile__span {
        height: 2px;
        width: 100%;
        margin-bottom: 10px;
        display: block;
        background-color: #000000;
        transition: all 0.5s ease;
    }

    .mobile__menu__bg {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        right: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .mobile__menu__bg.active {
        left: 0;
    }

    .mobile__menu__list {
        width: 100%;
        padding: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style-type: none;
        margin-top: 300px;
    }

    .mobile__menu__item {
        position: relative;
        margin-bottom: 20px;
    }

    .mobile__menu__link {
        font-size: 24px;
        text-decoration: none;
        color: #3b3dca;
    }

    .banner__content {
        width: 75%;
        margin: 90px 0;
    }

    .services__block {
        width: 45%;
    }

    .doctors__block {
        width: 45%;
    }

}

@media only screen and (max-width: 768px) {

    .banner__content {
        width: 90%;
        margin: 60px 0;
    }

    .banner__title {
        font-size: 34px;
    }

    .banner__button {
        width: 300px;
        padding: 15px 25px;
        font-size: 16px;
    }

    .about__text {
        font-size: 20px;
    }

    .about__img {
        width: 430px;
    }

    .services__content {
        justify-content: center;
    }

    .services__block {
        width: 80%;
    }

    .offer__form__button,
    label[for="name1"],
    label[for="email1"],
    label[for="tel1"],
    .sub__form__button,
    label[for="name2"],
    label[for="email2"],
    label[for="tel2"] {
        width: 45%;
        margin-bottom: 10px;
    }

    .why__content__block > svg {
        width: 6% !important;
    }

    .why__text {
        font-size: 16px;
    }

    .doctors__content {
        flex-direction: column;
        align-items: center;
    }

    .doctors__block {
        width: 75%;
        margin-bottom: 30px;
    }

    .footer__row {
        flex-direction: column-reverse;
    }

    .footer__text {
        text-align: center;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 450px) {

    .header__logo {
        width: 80px;
    }

    .header__mobile__burger {
        width: 30px;
    }

    .header__mobile__span {
        margin-bottom: 7px;
    }

    .header__mobile__burger.active > span:nth-child(3) {
        margin-top: -10px;
    }

    .banner__title {
        font-size: 24px;
    }

    .banner__content {
        width: 90%;
        margin: 50px 0 150px;
    }

    .banner__text {
        font-size: 18px;
    }

    .about__content {
        padding: 45px 0;
    }

    .about__text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .about__img {
        width: 300px;
    }

    .services {
        padding: 45px 0;
    }

    .services__block {
        width: 95%;
    }

    .services__title {
        font-size: 20px;
    }

    .services__text {
        font-size: 16px;
    }

    .services__block > svg {
        width: 30px !important;
        height: 30px !important;
    }

    .offer__content {
        padding: 45px 0;
    }

    .offer__form__button,
    label[for="name1"],
    label[for="email1"],
    label[for="tel1"],
    .sub__form__button,
    label[for="name2"],
    label[for="email2"],
    label[for="tel2"] {
        width: 110%;
        margin-bottom: 15px;
        height: 40px;
    }

    label[for="checkbox1"],
    label[for="checkbox2"] {
        width: 100%;
        margin-top: 10px;
        align-items: flex-start;
    }

    label[for="checkbox1"] > p,
    label[for="checkbox2"] > p {
        font-size: 10px;
    }

    .why {
        padding: 45px 0;
    }

    .why__text {
        font-size: 14px;
    }

    .doctors__title {
        font-size: 20px;
    }

    .doctors__block {
        width: 95%;
    }

    .doctors__block__img {
        height: 400px;
    }

    .video {
        padding: 30px 0;
    }

    .video__row > iframe {
        width: 100%;
        height: 200px;
    }

}