: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;
    --background-blue-light: #F1F0FF;
}


/* ****** 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;
}

h3 {
    margin: 0;
}

h4 {
    margin: 0;
}

h5 {
    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-Medium);
}

.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);
}

@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-credit {
    background-color: #F5F5F7;
    margin: 0 auto;
    width: 100%;
}


.hero-credit-info {
    display: flex;
    padding-top: 50px;
    margin-bottom: 20px;
}

.hero-credit-title {
    font-family: var(--Roboto-Bold);
    font-size: 2rem;
    color: var(--black-color);
    padding-bottom: 24px;
}

.hero-credit-title-text {
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
    font-size: 1rem;
    margin-bottom: 30px;
}

.hero-credit-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-credit-image {
    width: 300px;
}

@media screen and (min-width: 1280px) {

    .hero-credit {
    }

    .hero-credit-wrapper {
        display: flex;
        width: 85%;
    }

    .hero-credit-container {
        width: 50%;
    }

    .hero-credit-info {
        margin-bottom: 43px;
    }

    .hero-credit-title {
        font-size: 3.8rem;
    }

    .hero-credit-title-text {
        margin-bottom: 60px;
        font-size: 1.1rem;
    }


    .hero-credit-image-container {
        width: 50%;
    }

    .hero-credit-image {
        width: 95%;
    }
}


@media screen and (min-width: 1920px) {
    .hero-credit-wrapper {
        width: 1632px;
    }

    .hero-credit-title {
        font-size: 5rem;
    }

    .hero-credit-title-text {
        font-size: 1.4rem;
        margin-bottom: 70px;
    }
}

/* ***** */

/* ****** Benefits section ******* */


.benefits-title {
    font-size: 2rem;
    font-family: var(--Roboto-Bold);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    color: var(--black-color);
}

.benefits-title br {
    display: none;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.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-terms {
    color: var(--gray-color);
    font-size: .7rem;
    text-align: center;
    font-family: var(--Roboto-Regular);
    color: var(--black-color);
}


@media screen and (min-width: 1280px) {

    .benefits-title {
        font-size: 3.4rem;
        margin-bottom: 50px;
        margin-top: 100px;
    }

    .benefits-title br {
        display: block;
    }

    .benefits-container {
        display: flex;
        justify-content: space-around;
    }

    .benefit {
        width: 400px;
        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: 116px;
        height: 80px;
    }

    .benefit-image2 {
        width: 93px;
        height: 85px;
    }

    .benefit-image3 {
        width: 82px;
        height: 80px;
    }

    .benefit-text {
        font-size: 1.1rem;
    }

    .benefit-terms {
        font-size: .9rem;
        margin-bottom: 100px;
    }
}

@media screen and (min-width: 1920px) {

    .benefits-container {
        margin-bottom: 60px;
    }

    .benefits-title {
        font-size: 4.4rem;
        margin-bottom: 130px;
    }

    .benefit {
        width: 432px;
        margin-right: 104px;
    }

    .benefit-text {
        font-size: 1.1rem;
    }

    .benefit-terms {
        font-size: 1rem;
    }
}

/* ************* */

/* ****** box4 Section ******* */

.box4 {
    margin-top: 50px;
}

.box4-img-container {
    background-image: url('/RS/build/img/tarjetas-credito/background2-box4.webp');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.box4-img {
    width: 200px;
}

.box4-content {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--background-blue-light);
}

.box4-content-wrap {
    width: 85%;
    margin: 0 auto;
}

.box4-title {
    text-align: center;
    font-size: 2rem;
    font-family: var(--Roboto-Bold);
    color: var(--black-color);
    margin-bottom: 20px;
}

.box-content-item {
    font-family: var(--Roboto-Regular);
    font-size: .8rem;
    color: var(--black-color);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
}

.box-content-item-last {
    margin-bottom: 50px;
}

.box-content-contact {
    display: flex;
    margin-top: 50px;
}

.box-content-contact-img {
    margin-right: 20px;
}

@media screen and (min-width: 1280px) {
    .box4 {
        display: flex;
        flex-direction: row;
        margin-top: 0;
    }

    .box4-img-container {
        width: 40%;
        padding-top: 0;
        padding-bottom: 0;
    }



    .box4-img {
        width: 70%
    }

    .box4-content {
        width: 60%;
        display: flex;
        align-items: center;
    }

    .box4-content-wrap {
        width: 75%;
    }

    .box4-title {
        font-size: 3.4rem;
        text-align: left;
        margin-bottom: 40px;
    }

    .box-content-item {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1920px) {
    .box4-img-container {
        width: 40%;
    }

    .box4-title {
        font-size: 4.4rem;
    }
}

/* ************* */

/* ****** box5 Section ******* */

.box5-img-container {
    background: radial-gradient(#9D40FC, #6C2CF0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box5-img {
    width: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.box5-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.box5-content-wrap {
    width: 85%;
    margin: 0 auto;
}

.box5-title {
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--Roboto-Bold);
    color: var(--black-color);
    margin-bottom: 20px;
}

@media screen and (min-width: 1280px) {
    .box5 {
        display: flex;
        flex-direction: row-reverse;
    }

    .box5-img-container {
        width: 40%;
    }

    .box5-img {
        padding: 0;
        width: 328px;
    }

    .box5-content {
        width: 60%;
        display: flex;
        align-items: center;
        padding-top: 200px;
        padding-bottom: 200px;
    }

    .box5-content-wrap {
        width: 75%;
    }

    .box5-title {
        font-size: 3.4rem;
        text-align: left;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1920px) {
    .box5-img-container {
        width: 40%;
    }

    .box5-title {
        font-size: 4.4rem;
    }
}

/* ************* */

/* ****** box6 Section ******* */

.box6 {
    margin-top: 50px;
}

.box6-img {
    width: 100%;
}

.box6-content {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--background-blue-light);
}

.box6-content-wrap {
    width: 85%;
    margin: 0 auto;
}

.box6-title {
    text-align: center;
    font-size: 2rem;
    font-family: var(--Roboto-Bold);
    color: var(--black-color);
    margin-bottom: 20px;
}

.box6-p {
    font-family: var(--Roboto-Regular);
    font-size: .8rem;
    color: var(--black-color);
    margin-bottom: 40px;
}

@media screen and (min-width: 1280px) {
    .box6 {
        display: flex;
        flex-direction: row;
    }



    .box6-img {
        width: 45%;
        object-fit: cover;
    }

    .box6-content {
        width: 55%;
        display: flex;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .box6-content-wrap {
        width: 75%;
    }

    .box6-title {
        font-size: 3.4rem;
        text-align: left;
        margin-bottom: 25px;
    }

    .box6-p {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1920px) {

    .box6-title {
        font-size: 4.4rem;
    }
}

/* ************* */

/* ****** Product section ******* */

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto;
}

.product-img {
    width: 300px;
    margin-bottom: 20px;
}

@media screen and (min-width: 1280px) {
    .product {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .product-img {
        margin-bottom: 0;
        margin-right: 40px;
        width: 400px;
    }
}

@media screen and (min-width: 1920px) {

    .product-img {
        width: 530px;
    }
}

/* ************* */