p {
    margin-bottom: 24px;
    margin-top: 0;
    color: var(--color-black);
    font-family: "RalewayRegular", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.divider {
    height: 1px;
    width: 100%;
    background: var(--color-black);
    margin: 36px 0;
}

.no-break {
    white-space: nowrap;
}

.text-bold {
    font-family: "RalewaySemiBold", sans-serif;
    font-weight: 700;
}

.text-extra-bold {
    font-family: "RalewayExtraBold", sans-serif;
    font-weight: 900;
}

.text-semi-bold {
    font-family: "RalewaySemiBold", sans-serif;
    font-weight: 600;
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.text-italic {
    font-style: italic;
}

.text-small {
    font-size: 9.5px;
    line-height: 11.5px;
}

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

.bg-primary {
    background-color: var(--color-primary);
}

.bg-dark-grey {
    background-color: var(--color-dark-grey-1);
}

.bg-light-blue {
    background-color: var(--color-light-blue);
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-space-between {
    justify-content: space-between;
}

.mb-0 {
    margin-bottom: 0;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    font-family: "RalewayBold", sans-serif;
    font-size: 26px;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

.btn-primary-blue {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.btn-white {
    color: var(--color-primary);
    background-color: var(--color-white);
    padding: 0 52px;
}

.btn-grey {
    color: var(--color-white);
    background-color: var(--color-light-grey-2);
}

/* LEGAL PAGES */

.legal-content h1 {
    margin-bottom: 16px;
    color: #000000;
    font-family: "RalewaySemiBold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 47px;
    text-transform: uppercase;
}

.legal-content h3,
.legal-content p,
.legal-content a,
.legal-content ul {
    font-family: "Arial", sans-serif;
    color: #000000;
}

.legal-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

.legal-content p {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.legal-content a {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    color: var(--color-primary);
    font-weight: inherit;
}

.legal-content ul {
    margin-bottom: 12px;
    margin-top: 0;
    padding-left: 38px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    line-height: normal;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content .text-bold {
    font-family: "Arial", sans-serif;
    font-weight: 700;
}

.legal-content .text-big {
    font-family: "Arial", sans-serif;
    font-size: 18px;
    line-height: normal;
}

.legal-content .icons {
    display: flex;
    margin: 12px 0;
    gap: 100px;
}

.legal-content figure {
    margin: 0;
    width: 100%;
    max-width: 100px;
}

.legal-content figure img {
    width: 100%;
}

.legal-content figcaption {
    font-size: 14px;
}

@media (max-width: 768px) {
    .btn-white {
        height: auto;
        width: 90%;
        padding: 15px;
    }

    .btn {
        font-size: 22px;
    }
}