@import url('https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0px;
    padding: 0px;
    border: none;
}

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

h1,
h2 {
    font-family: 'Cuprum', sans-serif;
    text-transform: uppercase;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

body {
    font-family: 'PT Sans', sans-serif;
    color: #333333;
}

.content {
    margin: 0 auto;
    padding: 80px 30px;
    width: 100%;
    max-width: 1040px;
}

.hero {
    background-color: #E3FAFF;
}

.hero__content {
    background-image: url('https://chinatoday.ru/components-min/img/book_free/thank/men.png');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    min-height: 400px;
}

.hero__content__title {
    font-family: 'Cuprum', sans-serif;
    width: 60%;
    margin-bottom: 50px;
    font-size: 56px;
}

.hero__content__text {
    max-width: 50%;
}

.hero__content__btn {
    padding: 20px 32px;
    font-size: 16px;
    background-color: #FF7B4F;
    border-radius: 6px;
    text-decoration: none;
    color: #333333;
}

.send-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.send__content__title {
    margin-bottom: 50px;
    font-family: 'Cuprum', sans-serif;
    font-size: 40px;
}

.solution__text {
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
}

.text {
    font-family: 'PT Sans', sans-serif;
    font-size: 27px;
}

@media (max-width: 576px) {

    .hero__content {
        background-image: none;
    }

    .hero__content__title {
        font-size: 50px;
    }

    .hero__content__text {
        max-width: 100%;
    }

    .send-container {
        flex-direction: column;
    }

    .send-container__img-container {
        margin-bottom: 30px;
        max-width: 300px;
    }

    .hidden-overlay__content {
        text-align: center;
    }

    .hidden-overlay__content h2 {
        font-size: 16px;
    }
}