/*********************
GLOBAL TYPOGRAPHY
*********************/


.header__large {
    color: #000000;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.21px;
    line-height: 28px;
}

.header__medium {
    color: #000000;
    font-size: 21px;
    font-weight: bold;
    letter-spacing: 0.16px;
    line-height: 26px;
}

.header__small {
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.13px;
    line-height: 24px;
}

.header__body {
    color: #323232;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1px;
    line-height: 24px;
}

.text__body {
    color: #646464;
    font-size: 13px;
    letter-spacing: 0.1px;
    line-height: 22px;
}

.text__small {
    color: #646464;
    font-size: 12px;
    letter-spacing: 0.1px;
    line-height: 22px;
}


@media screen and (max-width: 48em) {

    .header__large {
        font-size: 21px;
        letter-spacing: 0.18px;
    }
    
    .header__medium {
        font-size: 18px;
        letter-spacing: 0.15px;
    }
    
    .header__small {
        font-size: 15px;
        letter-spacing: 0.13px;
        line-height: 20px;
    }

    .header__body {
        font-size: 13px;
        letter-spacing: 0.1px;
        line-height: 20px;
    }
    
    .text__body {
        font-size: 13px;
        letter-spacing: 0.1px;
        line-height: 20px;
    }
    
    .text__small {
        font-size: 12px;
        letter-spacing: 0.1px;
        line-height: 20px;
    }

}

/*********************
BUTTONS
*********************/

.button__hyperlink {
    align-items: center;
    color: #B62E5F;
    display: flex;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.1px;
    line-height: 22px;
}

.button__hyperlink span {
    margin-left: 4px;
    font-size: 16px;
}

.button__hyperlink:hover {
    color: #B62E5F;
}

/*********************
OTHERS
*********************/

.content {
    background-color: white;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    margin-bottom: 48px;
    margin-top: 12px;
    padding: 32px;
}

.content__text {
    margin-bottom: 32px;
}

@media screen and (max-width: 48em) {

    .content {
        padding: 24px;
        margin-top: 10px;
        margin-bottom: 32px;
    }

    .content:last-child {
        margin-bottom: 0;
    }

    .content__text {
        margin-bottom: 24px;
    }
}