*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
    color: #2c2b2b;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.container {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.header {
    background-image: url(../images/header.bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    color: #fff;
}

.header__top {
    padding: 47px 0 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cont:after {
    content: "";
    clear: both;
    display: block;
}

.phone,
.email {
    font-weight: 400;
    font-size: 25px;
    line-height: 54px;
    position: relative;
}

.phone {
    padding-left: 20px;
    padding-right: 30px;
}

.email {
    padding-left: 25px;
}

.phone:before {
    content: "\f095";
    font-family: 'icomoon';
    position: absolute;
    left: -5px;
    color: #ffc222;
}

.email:before {
    content: "\f003";
    font-family: 'icomoon';
    position: absolute;
    left: -6px;
    color: #ffc222;
}

.header__content {
    padding-top: 60px;
    position: relative;
}

.header__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 107px;
    text-transform: uppercase;
}

.header__subtitle {
    font-size: 38px;
    line-height: 54px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.header__text {
    margin-bottom: 30px;
    max-width: 800px;
}

.button {
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    padding: 14px 54px 15px;
    background-color: #620865;
    transition: all .5s;
}

.button:hover {
    color: #620865;
    background-color: #fff;
}

.header__images {
    position: absolute;
    right: 140px;
    bottom: 67px;
    max-width: 700px;
}

.services {
    padding-top: 100px;
}

.title {
    color: #ffc222;
    font-size: 36px;
    line-height: 54px;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
}

.title::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: #2106a2;
    position: absolute;
    top: 20px;
    margin-left: 20px;

}

.services__inner {
    display: flex;
    margin-bottom: 100px;
}

.services__content {
    width: 505px;
    margin-right: 96px;
}

.services__content-title {
    color: #620865;
    font-size: 28px;
    line-height: 27px;
    font-weight: 300;
    margin-bottom: 12px;
}

.services__content-textbox {
    margin-bottom: 57px;
}

.services__content-text {
    margin-bottom: 12px;

}

.services__list {
    list-style: none;
    counter-reset: counter;
}

.services__item {
    counter-increment: counter;
    border: 1px solid #c4c4c4;
    margin-bottom: 12px;
    width: 525px;
    padding: 10px 15px 10px 113px;
    position: relative;
    transition: all .5s;
}

.services__item::before {
    content: '0' counter(counter);
    position: absolute;
    left: 20px;
    font-size: 36px;
    line-height: 54px;
    font-weight: 400;
    color: #c4c4c4;
    transform: rotate(270deg);
    transition: all .5s;
}

.services__item:hover {
    border: 2px solid #620865;
    width: 500px;
}

.services__item:hover .services__item-title {
    color: #620865;
}

.services__item:hover::before {
    color: #620865;
}

.services__item-title {
    font-size: 24px;
    font-weight: 300;
}

.benefits {
    margin-bottom: 100px;
}

.benefits__inner {
    display: flex;
}

.benefits__images {
    margin-right: 95px;
    max-width: 600px;
    max-height: 457px;
    margin-top: 121px;
}

.benefits__content {
    width: 100%;
    color: #fff;
}

.benefits__title {
    margin-left: 185px;

}

.benefits__list {
    list-style: none;
    background-color: #7c267d;
    padding: 25px 0 25px 185px;
}

.benefits__item {
    width: 320px;
    margin-bottom: 20px;
}

.benefits__item-num {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
}

.benefits__item-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
}

.benefits__item-text {
    color: #c4c4c4;
}

.whatsapp:before {
    content: "\e900";
    font-family: 'icomoon';
    position: absolute;
    left: -5px;
    color: #25d366;
}

.contacts__inner {
    display: flex;
    justify-content: space-between;
}

.contacts__list {
    list-style: none;
}

.contacts__item {
    margin-bottom: 20px;
}

.contacts__item-title {
    color: #69206f;
}

.footer {
    background-color: #620865;
}

.footer__iner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    height: 75px;
}

iframe {
    width: 750px;
    height: 300px;
}

@media (max-width: 1300px) {
    .header__images {
        width: 70%;
        right: 0px;
    }

    .logo__img {
        width: 99%;
    }
}

@media (max-width: 1064px) {
    .header__images {
        right: 0px;
    }

    iframe {
        width: 550px;
        height: 300px;
    }

    .benefits__title {
        margin-left: 0;
    }

    .services__inner {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .services {
        padding-top: 65px;
    }

    .services__inner {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .services__list {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
    }

    .services__item {
        width: 100%;
    }

    .services__item:hover {
        width: 100%;
    }

    .services__content {
        width: 100%;
        margin-right: 0;
    }

    .benefits__images {
        display: none;
    }

    .contacts__inner {
        display: block;
        text-align: center;
    }

    .benefits {
        margin-bottom: 30px;
    }
}

@media (max-width: 960px) {
    .header__images {
        right: 0;
        bottom: 75px;
    }

    .header__title {
        font-size: 56px;
        line-height: 100px;
    }

    .header__subtitle {
        font-size: 32px;
        line-height: 54px;
        margin-bottom: 23px;
    }

    .phone,
    .email {
        font-size: 21px;
    }
}

@media (max-width: 800px) {

    .phone,
    .email {
        font-size: 20px;
    }

    .header__images {
        right: 0;
        bottom: 84px;
    }

    .header__subtitle {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 22px;
    }

    .header__title {
        font-size: 50px;
    }
}

@media (max-width: 760px) {
    .header__images {
        right: 0;
        bottom: 90px;
    }

    .benefits__inner {
        text-align: center;
    }

    .benefits__list {
        padding: 25px 15px;
    }

    .benefits__item {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .header__images {
        right: 0;
        bottom: 97px;
    }

    .benefits__inner {
        text-align: center;
    }

    .benefits__list {
        padding: 25px 15px;
    }

    .benefits__item {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .header__content {
        padding-top: 0;
        text-align: center;
    }

    .header__title {
        font-size: 37px;
    }

    .header__top {
        padding: 47px 0 45px;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .phone,
    .email {
        font-size: 23px;
        padding-right: 0px;
        line-height: 39px;
    }

    .header__images {
        position: static;
        width: 100%;
        margin-bottom: -65px;
        margin-top: -70px;
    }

    .title {
        font-size: 22px;
        line-height: 45px;
        margin-bottom: 30px;
        text-align: center;
    }

    .title::after {
        display: none;
    }

    body {
        font-size: 16px;
        line-height: 22px;
    }

    .services__item {
        padding: 10px 15px 10px 60px;
    }

    .services__item::before {
        top: 5px;
        left: 11px;
    }

    .services__content {
        text-align: center;
    }

    .services__inner {
        margin-bottom: 0px;
    }

    .benefits__item-num {
        font-size: 28px;
        line-height: 36px;
    }

    iframe {
        width: 400px;
    }

    .footer__copy {
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    .header__content {
        text-align: center;
    }

    .header__top {
        padding: 47px 0 45px;
        display: flow-root;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .phone,
    .email {
        font-size: 23px;
        padding-right: 7px;
        line-height: 38px;
    }

    .header__title {
        font-size: 33px;
        font-weight: 400;
        line-height: 51px;
    }

    .header__subtitle {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .header__content {
        padding-top: 0px;
    }

    .button {
        font-size: 10px;
        line-height: 21px;
        padding: 10px 40px 8px;
    }

    .header__images {
        position: static;
        width: 100%;
        margin-bottom: -50px;
    }

    iframe {
        width: 300px;
    }
}

@media (max-width: 396px) {
    .header__content {
        text-align: center;
    }

    .header__top {
        padding: 50px 0 34px;
        display: flow-root;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .phone,
    .email {
        font-size: 20px;
        padding-right: 7px;
        line-height: 33px;
    }

    .header__title {
        font-size: 35px;
        font-weight: 400;
        line-height: 51px;
    }

    .header__subtitle {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .header__content {
        padding-top: 0px;
    }

    .button {
        font-size: 10px;
        line-height: 21px;
        padding: 10px 40px 8px;
    }

    .header__images {
        position: static;
        width: 100%;
        margin-bottom: -50px;
    }

    iframe {
        width: 300px;
    }
}


@media (max-width: 340px) {
    .header__content {
        text-align: center;
    }

    .header__top {
        padding: 47px 0 45px;
        display: flow-root;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .phone,
    .email {
        font-size: 17px;
        padding-right: 13px;
        line-height: 30px;
    }

    .header__title {
        font-size: 33px;
        font-weight: 400;
        line-height: 51px;
    }

    .header__content {
        padding-top: 0px;
    }

    .header__images {
        position: static;
        width: 100%;
        margin-bottom: -159px;
    }

    iframe {
        width: 250px;
    }
}