@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    box-sizing: border-box;
    background-color: #5d60d5;
}

.consumer-information__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 20px;
    padding-right: 20px;
}

.header__logo {
    font-size: 13.2vw;
    line-height: 13.2vw;
    color: #FD9DCC;
    font-weight: 700;
}

h1 {
    margin-top: 50px;
    font-size: 12.2vw;
    line-height: 14.2vw;
    color: #FD9DCC;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

.consumer-information__content {
    display: flex;
    justify-content: center;
}

.full-center-content {
    min-height: calc(100vh - 516px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-center-content p {
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    color: #FD9DCC;
    text-align: center;
}

.consumer-information__documents {
    margin-top: 90px;
    margin-bottom: 90px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1160px;
    width: 100%;
}

.document {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 24px;
    width: 100%;
    box-sizing: border-box;
}

.document+.document {
    margin-top: 4px;
}

.document__title {
    font-size: 22px;
    line-height: 28px;
    margin-right: 35px;
    font-weight: 600;
}

.document__header {
    position: relative;
}

.document__header button {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}

.icon-plus {
    width: 24px;
    height: 24px;
}

.document__header:hover {
    cursor: pointer;
}

.document__header:hover button {
    border-radius: 50%;
    background: #eee;
}

.document.active .icon-plus {
    transform: rotate(45deg);
}

.icon-plus {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.document.active .document__body {
    max-height: 1000px;
}

.document__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.document__description {
    margin-top: 25px;
    font-size: 16px;
    line-height: 28px;
}

.document__pages {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.document__pages a {
    color: #ff8562;
    text-decoration: none;
}

.document__pages a+a {
    margin-top: 20px;
}

.consumer-information__contact {

    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.consumer-information__contact-inner {
    max-width: 1160px;
    width: 100%;
}

.contact__title {
    color: white;
    line-height: 34px;
    font-size: 28px;
    font-weight: 700;
    word-break: break-all;
}

.contact__description {
    margin-top: 20px;
    color: white;
    line-height: 28px;
    font-size: 20px;
    font-weight: 400;
}

.contact__items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-item__title {
    color: white;
    line-height: 22px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px;
}

.contact-item__value {
    color: white;
    line-height: 22px;
    font-size: 16px;
    opacity: 0.7;
}

.contact-item__value a {
    color: white;
    text-decoration: none;
}


.contact-item__value+.contact-item__value {
    margin-top: 10px;
}

.consumer-information__footer {
    padding-bottom: 75px;
    background-color: #171717;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__social {
    margin-top: 40px;
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer__social a {
    width: 30px;
    height: 30px;
}

.footer__social a+a {
    margin-left: 8px;
}

.footer__social a svg {
    width: 100%;
    height: 100%;
}

.footer__logo {
    order: 2;
    margin-top: 20px;
    color: white;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.footer__back-to-top {
    order: 3;
    margin-top: 20px;
    color: white;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-up {
    margin-left: 6px;
    width: 6px;
    height: 17px;
}

.document-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.document-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
}

.document-popup__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.document-popup__image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
}

.document-popup__close {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 40px;
    z-index: 1000;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
}

.icon-x {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    fill: white;
    color: white;
}

@media screen and (min-width:768px) {

    .full-center-content {
        min-height: calc(100vh - 413px);
    }

    .document-popup__close {
        right: 40px;
        top: 40px;
    }

    .document-popup__image {
        display: block;
        max-width: 100%;
        max-height: 85vh;
    }

    .document {
        padding: 25px 30px;
    }

    .contact__items {
        margin-top: 90px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        width: calc(25% - 15px);
    }

    .consumer-information__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 90px;
        padding-bottom: 45px;
    }

    .footer__logo {
        margin-top: 0px;
        margin-left: 40px;
        font-size: 14px;
        order: 1;
        width: auto;
    }

    .footer__social {
        margin-top: 0px;
        order: 2;
        width: auto;
    }

    .footer__back-to-top {
        margin-top: 0px;
        font-size: 14px;
        margin-right: 40px;
        order: 3;
        width: auto;
    }

}

@media screen and (min-width:1024px) {
    .consumer-information__header {
        flex-direction: row;
    }

     .consumer-information__contact {
        padding: 150px 20px;
    }

    .header__logo {
        font-size: 5.2vw;
        line-height: 5.2vw;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40%;
    }

    h1 {
        margin-top: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60%;
        font-weight: 400;
        font-size: 6.77vw;
        letter-spacing: 4px;
        line-height: 6.77vw;
        max-width: none;
    }
}
