
:root {
    --red: #FB162A;
    --blue: #072071;
    --yellow: #FEFE04;
}

sup {
    font-size: 0.5em;
}

.page-end-spacer {
    display: none;
}

.quote-section {
    background: var(--blue);
    margin-bottom: 0;
    padding-bottom: 5%;
    padding-top: 5%;
}

.quote-outer {
    border-radius: 20px;
    padding: 60px 60px 70px 60px;
    /*border: 5px solid var(--yellow);*/
    background: #fff;
}

.quote-outer * {
    color: var(--blue);
}

.quote-outer .grid-row {
    display: grid;
    grid-template-columns: 200px auto;
    column-gap: 10%;
    align-items: center;
    position: relative;
}

.quote-outer .nerissa {
    margin-bottom: 30px;
}

.quote-outer .quote-left {
    width: 50px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.quote-outer p {
    color: #000;
}

.quote-outer .quote-text {
    position: relative;
    margin-bottom: 30px;
}

.quote-outer .quote-text p {
    margin-bottom: 0;
}

.quote-outer .line-vert {
    position: absolute;
    left: -40px;
    height: 80%;
    width: 3px;
    background: var(--yellow);
    top: 50%;
    transform: translateY(-50%);
}

.quote-outer .uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: bold;
    color: var(--red);
}

.quote-outer span i {
    opacity: 0;
}

.quote-outer .lowercase {
    display: block;
    font-style: italic;
}

.quote-outer .lowercase::before {
    content: '__.';
    opacity: 0;
}

.quote-outer path {
    fill: var(--red);
}

h1 {
    text-align: center;
    font-size: 40px;
    max-width: 1100px;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.apply-now {
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 50px;
}

.apply-now .btn-black {
    margin-top: 30px;
}

.resp-480-sm {
    display: none !important;
}



@media (min-width: 992px) {
    .quote-outer {
        /*width: 85%;*/
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .line-vert {
        display: none;
    }
    .quote-outer .grid-row {
        display: block;
    }
    .quote-outer .nerissa {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 7vw;
        margin-top: 30px !important;
    }
    .quote-outer {
        padding: 40px 30px;
    }
    .resp-480-sm {
        display: block !important;
    }
    .resp-480-lg {
        display: none !important;
    }
    .quote-outer .nerissa {
        max-width: 65%;
        width: auto;
    }
    .quote-outer .quote-left {
        max-width: 16%;
        width: auto;
    }
    .apply-now {
        padding: 10%;
    }
}