.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    width: fit-content;

    font-weight: bold;
    font-size: 16px;
    line-height: 24px;

    background: #226AF6;
    border-radius: 4px;
    transition: background-color .2s;
}

.button:hover {
    background: #0054F6;
}

.button:active {
    background: #004ADB;
}

.button.button_white {
    background: #fff;
    color: #226AF6;
}

.button.button_white:hover {
    background: #F1F4FA;
}

.button.button_white:active {
    background: #e5e7f1;
}

h1 {
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 56px;
    margin-bottom: 24px;
}

h2 {
    font-weight: bold;
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 24px;
}

h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #061229;
    margin-bottom: 16px;
}

h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #061229;
    margin-bottom: 8px;
}

h6 {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}

p {
    font-size: 18px;
    line-height: 32px;
}

.cw {
    color: #fff;
}

.cgl {
    color: #939CAD;
}

.cgd {
    color: #4E535C;
}

@media (max-width: 940px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    h4 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    h5 {
        font-size: 18px;
        line-height: 24px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }
}
