* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #25293D;
}

body {
    font-family: 'Mulish', sans-serif;
    color: #25293D;
}

h1 {
    margin-bottom: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #fff;
    border-bottom: 1px solid #25293D29;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header a svg {
    width: 36px !important;
    height: 36px !important;
}

.header-phone {
    font-size: 20px;
    font-weight: 600;
}

.hero {
    padding: 120px 120px 210px 120px;
    display: flex;
    flex-direction: column;
    background: radial-gradient(65.2% 149.73% at 79.3% 54.77%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 29.22%, rgba(255, 255, 255, 0.650833) 43.98%, rgba(255, 255, 255, 0.84) 65.08%, rgba(255, 255, 255, 0.9) 100%), url(/static/img/woman.webp) 50% 40% / cover no-repeat;
}

.hero-header {
    width: 100%;
}

h3 {
    font-size: 36px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'Wix Madefor Display';
}

h2 {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Wix Madefor Display';
    margin-bottom: 12px;
}

h1 {
    font-family: 'Wix Madefor Display';
    font-weight: 700;
    font-size: 58px;
    max-width: 914px;
    margin-bottom: 24px;
}

h1 span,
h2 span {
    color: #00923A;
}

h4 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 24px;
}

.hero p {
    max-width: 500px;
    font-size: 18px;
    font-weight: 500;
}

.timer {
    text-align: center;
    padding: 90px 0;
}

.timer img {
    margin-bottom: 16px;
}

.gray-text {
    color: #25293D99;
}

.gray-bg {
    background-color: #F0F1F5;
    padding-top: 65px;
    padding-bottom: 120px;
}

.how {
    margin-bottom: 128px;
}

.how-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.how-item {
    position: relative;
    padding-top: 36px;
}

.how-item-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border: 6px solid #F0F1F5;
    border-radius: 600px;
    font-weight: 500;
    font-size: 32px;
    width: 58px;
    height: 58px;
    text-align: center;
    padding-top: 3px;
}

.how-item-block {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    text-align: center;
}

.how-item-header {
    font-weight: 700;
    font-size: 24px;
}

.how-item-header:not(:first-child) {
    margin-bottom: 10px;
}

.how-item-bottom {
    color: #00923A;
    font-weight: 700;
    font-size: 16px;
}

.how-item-header .how-item-bottom {
    font-size: 24px;
}

#messanger {
    padding-bottom: 120px;
}

.messenger-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.messenger-item-top {
    width: 100%;
    height: 280px;
    padding: 25px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messenger-item h5 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.messenger-item p {
    font-weight: 700;
    font-size: 16px;
    color: #00923A;
    text-align: center;
}

footer .container {
    padding: 48px 20px;
    display: flex;
    justify-content: space-between;
}

footer .header-right {
    display: flex;
    gap: 36px;
}

footer .container a {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

footer .container a span {
    font-weight: 600;
    font-size: 20px;
}

.hero-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .hero {
        padding: 60px 20px 210px 20px;
    }
}

@media (max-width: 1100px) {
    footer .container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 990px) {
    .hero {
        padding: 36px 20px;
        background: none;
    }

    .hero-mobile {
        display: block;
        margin: 32px 0;
    }

    h3 {
        font-size: 28px;
    }

    h1 {
        font-size: 48px;
    }

    h2,
    h4 {
        font-size: 36px;
    }

    .how-items {
        gap: 15px;
    }

    .headr-logo img {
        height: 50px;
    }
}

@media (max-width: 850px) {
    .how-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .how {
        margin-bottom: 70px;
    }

    .messenger-item:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid #25293D29;
    }

    .messenger-item:not(:first-child) {
        padding-top: 8px;
    }

    footer .header-right {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    footer .header-right a {
        padding-bottom: 16px;
        border-bottom: 1px solid #25293D29;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .headr-logo img {
        height: 30px;
    }

    .header-phone,
    .hero p {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    header .container {
        padding: 12px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 36px 0;
    }

    .timer img {
        width: 90px;
        height: 90px;
    }

    .timer {
        margin-bottom: 60px;
    }

    h2,
    h4 {
        font-size: 28px;
    }

    .how-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .how {
        margin-bottom: 80px;
    }

    .messenger-item:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid #25293D29;
    }

    .messenger-item:not(:first-child) {
        padding-top: 8px;
    }

    #messanger {
        padding-bottom: 50px;
    }

    .gray-bg {
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .header-phone {
        font-size: 14px;
        margin-right: 4px !important;
    }

    .hero p {
        font-size: 14px;
    }

    .header-right {
        gap: 4px;
    }

    .headr-logo img {
        height: 28px;
    }

    .header a svg {
        width: 24px !important;
        height: 24px !important;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .timer img {
        width: 80px;
        height: 80px;
    }

    h2,
    h4 {
        font-size: 24px;
    }

    .how-item-header {
        font-size: 20px;
    }

    .how {
        margin-bottom: 60px;
    }

    #messanger {
        padding-bottom: 36px;
    }
}