:root {
    --openSans-regular: openSans-regular;
    --openSans-BoldItalic: openSans-BoldItalic;
    --openSans-semibold: openSans-semibold;
    --openSans-Bold: openSans-Bold;
    --Roboto-Light: Roboto-Light;
    --Roboto-Regular: Roboto-Regular;
    --Roboto-Medium: Roboto-Medium;
    --Roboto-Bold: Roboto-Bold;
    --helvetica: Helvetica;
    --black-color: #343434;
    --violet-color: #E31952;
    --white-color: white;
    --gray-color: #707070;
    --red-color: #E7192D;
    --gray-color-line: #e2dfdf;
    --background-gray-color: #F5F5F7;
    --background-blue-sky-color: #DFDEFF;
}


/* ****** Resets ******* */
/*html
{
    box-sizing: border-box;
    font-size: 16px;
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

*,
*::after,
*::before{
    box-sizing: inherit;
}

body{
    margin: 0;
    padding-bottom: 26px;
}
*/
h1 {
    margin: 0;
}

h2 {
    margin: 0;
    font-weight: normal;
}

h3 {
    margin: 0;
}

h4 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

a {
    cursor: pointer;
}
/* ***** */




/* ****** fonts ******* */
@font-face {
    font-family: openSans-BoldItalic;
    src: url('/RS/assets/fonts/OpenSans-BoldItalic.ttf');
}

@font-face {
    font-family: openSans-regular;
    src: url('/RS/assets/fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: openSans-semibold;
    src: url('/RS/assets/fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: openSans-Bold;
    src: url('/RS/assets/fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: helvetica-neue;
    src: url('/RS/assets/fonts/helvetica_regular.otf');
}

@font-face {
    font-family: Roboto-Light;
    src: url('/RS/assets/fonts/Roboto-Light.ttf');
}

@font-face {
    font-family: Roboto-Regular;
    src: url('/RS/assets/fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('/RS/assets/fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('/RS/assets/fonts/Roboto-Bold.ttf');
}

/* ***** */



/* ****** utilities ******* */

/* *** wrapper *** */

.wrapper {
    width: 85%;
    margin: 0 auto;
}

@media screen and (min-width: 1980px) {
    .wrapper {
        width: 1683px;
    }
}

/* ** */


/* *** button *** */

.button {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
    font-family: var(--Roboto-Regular);
}

.button-violet {
    background-color: var(--violet-color);
    color: var(--white-color);
}

.button-violet:hover {
    opacity: .8;
    color: var(--white-color);
}

.button-white {
    border: 2px solid var(--violet-color);
    color: var(--violet-color);
}

    .button-white:hover {
        background-color: var(--violet-color);
        color: var(--white-color);
    }

.button-white-white {
    background-color: white;
    color: var(--black-color);
}

.button-border-white {
    border: 2px solid var(--white-color);
    color: var(--white-color);
}


    .button-border-white:hover {
        background-color: var(--violet-color);
        border: 2px solid var(--violet-color);
    }


@media screen and (min-width: 1280px) {
    .button {
        font-size: 1.1rem;
        border-radius: 30px;
    }
}

@media screen and (min-width: 1920px) {
    .button {
        font-size: 1.4rem;
    }
}

/* ** */



/* *** check *** */

.check {
    width: 20px;
    margin-right: 6px;
}

/* ** */


/* ***** */




/* ****** Hero ******* */

.hero {
    background-color: #F5F5F7;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 20px;
}


.hero-info {
    display: flex;
    padding-top: 50px;
    margin-bottom: 20px;
}

.hero-info-position {
    color: var(--black-color);
    font-family: var(--Roboto-Regular);
    font-size: .8rem;
    margin-left: 24px;
}

.hero-title {
    font-family: var(--Roboto-Bold);
    font-size: 2rem;
    color: var(--black-color);
    padding-bottom: 24px;
}

.hero-title-text {
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
    font-size: 1rem;
    margin-bottom: 30px;
}


.hero-alert {
    margin-top: 40px;
    background-color: var(--white-color);
    padding: 24px 32px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.hero-alert-title {
    color: var(--violet-color);
    font-family: var(--Roboto-Bold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.hero-alert-text {
    font-size: .8rem;
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
}

.hero-alert a {
    color: var(--violet-color);
    font-family: var(--Roboto-Regular);
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-debit {
    width: 300px;
}

.hero-image-shadow {
    width: 150px;
}


.features-dc-text {
    font-family: var(--Roboto-Regular);
    font-size: .8rem;
    color: var(--black-color);
    margin-bottom: 24px;
}

@media screen and (min-width: 1280px) {

    .hero {
        padding-bottom: 20px;
    }

    .hero-wrapper {
        display: flex;
        width: 85%;
    }

    .hero-container {
        width: 50%;
    }

    .hero-info {
        margin-bottom: 43px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title-text {
        margin-bottom: 60px;
        font-size: 1.1rem;
    }


    .hero-alert {
        margin-top: 70px;
    }

    .hero-alert-title {
        font-size: 1.5rem;
    }

    .hero-alert-text {
        font-size: 1rem;
    }


    .hero-image-container {
        width: 50%;
        display: flex;
        align-items: center;
    }

    .hero-image-debit {
        width: 570px;
    }

    .hero-image-shadow {
        width: 250px;
    }
}


@media screen and (min-width: 1920px) {
    .hero {
        padding-bottom: 0;
    }

    .hero-wrapper {
        width: 1632px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-title-text {
        font-size: 1.4rem;
        margin-bottom: 70px;
    }


    .hero-alert-text {
        font-size: 1.1rem;
    }

    .hero-alert {
        margin-top: 100px;
    }
}



/* ***** */






/* ****** Benefits section ******* */


.benefits-title {
    font-size: 1.6rem;
    font-family: var(--Roboto-Bold);
    text-align: center;
    margin-bottom: 40px;
    color: var(--black-color);
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.benefits-p {
    text-align: center;
}

.benefit-image {
    width: 60px;
    margin-bottom: 14px;
}

.benefit-text {
    font-family: var(--Roboto-Regular);
    font-size: .8rem;
    text-align: center;
    color: var(--black-color);
}

    .benefit-text span {
        font-family: var(--Roboto-Bold);
    }

.benefit-terms {
    color: var(--black-color);
    font-size: .7rem;
    text-align: center;
    margin-top: 30px;
    font-family: var(--Roboto-Regular);
}


@media screen and (min-width: 1280px) {

    .benefits {
        padding-top: 50px;
    }


    .benefits-title {
        font-size: 2.8rem;
        margin-bottom: 74px;
    }

    .benefits-container {
        display: flex;
        justify-content: center;
    }

    .benefit {
        width: 336px;
        margin-right: 20px;
    }

        .benefit:last-child {
            margin-right: 0;
        }

    .benefit-image-container {
        width: 115px;
        height: 138px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 17px;
    }

    .benefit-image {
        margin-bottom: 0;
    }

    .benefit-image1 {
        width: 82px;
    }

    .benefit-image2 {
        width: 115px;
    }

    .benefit-image3 {
        width: 115px;
    }

    .benefit-text {
        font-size: 1.1rem;
    }

    .benefit-terms {
        font-size: .9rem;
    }
}

@media screen and (min-width: 1920px) {

    .benefits-container {
        margin-bottom: 60px;
    }

    .benefits-title {
        font-size: 4.3rem;
        margin-bottom: 130px;
    }

    .benefit {
        width: 336px;
        margin-right: 104px;
    }

    .benefit-text {
        font-size: 1.1rem;
    }

    .benefit-terms {
        font-size: 1rem;
    }
}

/* ************* */





/* ****** Account section ******* */
.account-type {
    background-color: #DFDEFF;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 40px;
}


.account-type-title {
    margin-bottom: 33px;
}

.account-type-p {
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
    text-align: center;
    margin-bottom: 33px;
}

.account-type-subtitle {
    color: var(--violet-color);
    font-size: 1.2rem;
    font-family: var(--Roboto-Bold);
    margin-bottom: 17px;
}

.account-type-text {
    margin-bottom: 20px;
}

@media screen and (min-width: 1280px) {
    .account-type-p {
        width: 955px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .account-type-container {
        margin-top: 64px;
    }

    .account-type-subtitle {
        font-size: 2rem;
        margin-bottom: 34px;
    }

    .account-type-text {
        height: 107px;
        margin-bottom: 34px;
    }
}

@media screen and (min-width: 1920px) {
    .account-type-p {
        font-size: 1.4rem;
    }

    .account-type-text {
        margin-bottom: 70px;
    }
}

/* ************* */



/* ****** car section ******* */

.car-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.car-contain-wrap {
    width: 85%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.car-title {
    font-size: 2rem;
    font-family: var(--Roboto-Bold);
    text-align: center;
    color: var(--black-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.car-img-wrap {
    width: 100%;
    height: 300px;
    background-color: var(--violet-color);
    background-image: url('/RS/build/img/ahorros/palcarrito.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.car-img {
    width: 300px;
}

.car-text {
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
    font-size: 1rem;
    margin-bottom: 30px;
}

@media screen and (min-width: 1280px) {
    .car {
        display: flex;
        flex-direction: row-reverse;
    }

    .car-img-wrap {
        width: 45%;
        height: 700px;
    }

    .car-img {
        width: 500px;
    }


    .car-contain {
        width: 55%;
        justify-content: center;
    }

    .car-contain-wrap {
        width: 75%;
    }



    .car-title {
        font-size: 3.4rem;
        text-align: left;
    }

    .car-text {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1920px) {
    .car-title {
        font-size: 4.4rem;
    }

    .car-text {
        font-size: 1.4rem;
    }

    .car-img {
        width: 650px;
    }
}

/* ************* */




/* ****** contact section ******* */

.contact-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-contain-wrap {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2rem;
    font-family: var(--Roboto-Bold);
    text-align: center;
    color: var(--black-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-img-wrap {
    width: 100%;
    height: 300px;
    background-image: url('/RS/build/img/ahorros/contact.webp');
    background-position-x: left;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-img {
    width: 300px;
}

.contact-text {
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-buttons 
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-button:first-child 
{
    margin-bottom: 20px;
}

/* .contact-button {
    margin-right: 32px;
} */

@media screen and (min-width: 1280px) {
    .contact {
        display: flex;
        flex-direction: row;
    }

    .contact-img-wrap {
        width: 40%;
        height: 500px;
    }

    .contact-img {
        width: 500px;
    }

    .contact-contain {
        width: 60%;
        justify-content: center;
    }

    .contact-contain-wrap {
        width: 75%;
    }

    .contact-title {
        font-size: 3.4rem;
        text-align: left;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-buttons 
    {
        flex-direction: row;
    }

    .contact-button:first-child 
    {
        margin-bottom: 0;
        margin-right: 32px;
    }

}

@media screen and (min-width: 1920px) {
    .contact-title {
        font-size: 4.4rem;
    }

    .contact-text {
        font-size: 1.4rem;
    }
}

/* ************* */





/* ****** campaign section ******* */

.campaign {
    background-image: url('/RS/build/img/ahorros/background-campaign.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: right;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
}


.campaign-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.campaign-title {
    text-align: center;
    color: var(--white-color);
    font-family: var(--Roboto-Medium);
    font-size: 2rem;
}

    .campaign-title br {
        display: none;
    }

.campaign-text {
    color: var(--white-color);
    font-family: var(--Roboto-Regular);
    margin-top: 32px;
    margin-bottom: 65px;
    text-align: center;
}

    .campaign-text br {
        display: none;
    }

@media screen and (min-width: 1280px) {
    .campaign {
        padding-top: 87px;
        padding-bottom: 87px;
    }

    .campaign-title {
        font-size: 3.4rem;
    }

        .campaign-title br {
            display: block;
        }

    .campaign-text {
        font-size: 1.4rem;
        text-align: center;
    }

        .campaign-text br {
            display: block;
        }
}


@media screen and (min-width: 1280px) {

    .campaign-title {
        font-size: 4.4rem;
    }
}





/* ************* */
