/* xs: 0.8rem, s: 1.2rem, m: 1.6rem, l: 2.4rem, xl: 3.2rem */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

html {
    font-size: 62.5%;
}

body {
    height: 100vh;
    margin: 0;
    background: #EDEDEA;
    font-family: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
}

.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    overflow: auto;
}

.card-container {
    background-color: #ffffff;
    width: 48.0rem;
    height: auto;
    box-shadow: 0px 4px 12px 0px rgba(10, 25, 20, 0.15);
    border-radius: 0.8rem;
    flex: 0 0 auto;
    padding: 1.6rem 0rem;
    margin-bottom: 3.2rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.6rem;
}

.logo {
    height: 3.2rem;
}

.info-container {
    background: white;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    height: auto;
    border-radius: 0.8rem;
}

.info-section-container {
    padding-top:  1.2rem;
    padding-bottom:  1.2rem;
}

.info-title {
    color: #242424;
    font-size: 2.2rem;
    font-family: Nunito Sans;
    font-weight: 700;
    word-wrap: break-word;
}

.info-text {
    color: #242424;
    font-size: 1.4rem;
    font-family: Nunito Sans;
    font-weight: 400;
    word-wrap: break-word;
    padding-top:  0.8rem;
    line-height: 2.0rem;
}

.info-customer-service-text {
    color: #242424;
    font-size: 1.4rem;
    font-family: Nunito Sans;
    font-weight: 400;
    word-wrap: break-word;
    padding-top:  0.8rem;
    line-height: 2.0rem;
}

.icon {
    width: 8.8rem;
    height: 8.8rem;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 1.6rem;
}

@media screen and (max-width: 544px) {
    .card-container {
        width: 100%;
        height: 100%;
        margin-top: 0;
        margin-bottom: 1.2rem;
        border-radius: 0;
        box-shadow: none;
        align-self: flex-start;
    }

    .info-container {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    body {
        background: white;
        padding: 0;
    }
}
