* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

body {
    min-height: 100%;
    background: -webkit-linear-gradient(90deg, rgba(249, 249, 244, 1) 0%, rgba(225, 237, 219, 1) 50%, rgba(255, 231, 237, 1) 100%);
    background-size: 800% 800%;
    -webkit-animation: changeColor 12s ease-in-out infinite;
    animation: changeColor 12s ease-in-out infinite;
}

@-webkit-keyframes changeColor {
    0% {
        background-position: 93% 0%;
    }

    50% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 93% 0%;
    }
}

@keyframes changeColor {
    0% {
        background-position: 93% 0%;
    }

    50% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 93% 0%;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

a,
a:hover,
a.active,
a:active,
a:visited,
a:focus {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Barlow', sans-serif;
}

#home {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-blue {
    width: 100%;
    height: 100%;
    background: url(../img/bg-peru.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    animation: zoom-in-zoom-out 100s ease infinite;
    -webkit-animation: zoom-in-zoom-out 100s ease infinite;
    position: absolute;
    z-index: -9;
}

@-webkit-keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1, 1);
    }
}

#home {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(225, 225, 225, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fade-in 0.5s ease-in forwards;
    -webkit-animation: fade-in 0.5s ease-in forwards;
    animation-delay: 1s;
    opacity: 0;
    z-index: 999999999;
    padding: 0px 20px;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(225, 225, 225, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 75px;
    -webkit-box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.07);
    z-index: 99999;
    padding: 0px 20px;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

.cnt-menu {
    display: block;
    padding: 0;
}

#btn-menu {
    display: none;
}

.cnt-menu label.btn-menu {
    display: none;
    width: 40px;
    height: 25px;
    font-size: 20px;
    color: #222f3e;
    text-align: center;
}

.cnt-menu label.btn-menu {
    cursor: pointer;
}

.menu {
    display: flex;
    justify-content: center;
}

.menu li a {
    padding: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #222f3e;
}

.menu li a i {
    color: #1dd1a1;
}

.menu li a:hover {
    color: #266FB8;
}

a.clt-on {
    display: inline-block;
    color: #fff;
    border-radius: 50px;
    background: #266FB8;
    padding: 10px 20px;
}

a.clt-on,
a.clt-on i {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

a.clt-on:hover {
    color: #fff;
    background: #ff9f43;
}

.bajar-fijo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 99;
}

.bajar-fijo a:hover {
    opacity: .5;
}

.bajar-fijo a {
    width: 50px;
    height: 50px;
    display: block;
    padding: 10px;
    color: #fff;
    border-radius: 100%;
    text-align: center;
    background-color: rgba(225, 225, 225, 0.2);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.bajar-fijo a span {
    padding-top: 5px;
    font-size: 20px;
}

.bajar-fijo a span {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    margin-left: -23px;
    border: 1px solid #fff;
    border-radius: 100%;
    box-sizing: border-box;
}

.bajar-fijo a span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 16px;
    height: 16px;
    margin: -12px 0 0 -8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

.bajar-fijo a span::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .1);
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: sdb03 3s infinite;
    animation: sdb03 3s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb03 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, .1);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb03 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, .1);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.formulario-pe {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 20px 50px;
    border-radius: 30px;
    background: rgba(225, 225, 225, 0.25);
    backdrop-filter: blur(10px);
}

.formulario-pe h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.formbx {
    padding: 10px 30px 30px 30px;
}

.formbx label {
    width: 100%;
    height: auto;
    padding-bottom: 15px;
}

.formbx .form-in {
    width: 100%;
    display: block;
    padding: 10px;
    border: solid 1px #eaeaea;
    border-radius: 50px;
    -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
    margin-bottom: 20px;
}

.formbx .form-in:focus,
.formbx .mensaje:focus {
    outline: none !important;
    outline-width: 0 !important;
}

.formbx .mensaje {
    width: 100%;
    display: block;
    padding: 20px;
    border: solid 1px #eaeaea;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.16);
    margin-bottom: 20px;
}

.formbx .btn-send {
    display: block;
    margin: auto;
    padding: 15px 20px;
    border: none;
    font-weight: 400;
    color: #fff;
    border-radius: 50px;
    letter-spacing: 2px;
    font-size: 12px;
    background: #2665BB;
    float: right;
}

.g-recaptcha {
    opacity: 0;
}

.ct-home {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 20px 50px;
}

.ct-home h2 {
    color: #ffffff;
    font-size: 35px;
    margin: 0;
}

.ct-home h1 {
    color: #ffffff;
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.ct-home p {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.5em;
}

/* nosotros */
.distribucion {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.distribucion2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.title-box {
    font-size: 120px;
    font-weight: 400;
    color: #232323;
    margin: 0px;
}

.title-box span {
    color: #D52B1E;
    font-weight: 900;
}

.box {
    width: 50%;
    padding: 40px;
}

.txt-box {
    font-size: 18px;
    font-weight: 400;
    color: #232323;
    line-height: 1.5em;
    text-align: justify;
}

.espacio-top {
    padding-top: 90px;
}

.titulos {
    font-size: 35px;
    font-weight: 400;
    margin: 0;
    padding: 80px 0px 50px 0px;
    text-align: center;
    color: #122942;
}

.titulos span {
    font-weight: 900;
}

.subtitulos {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 40px 0px 20px 0px;
    text-align: center;
    color: #576574;
}

.textos {
    color: #576574;
    font-size: 15px;
    text-align: center;
}

.titulos-2 {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    padding: 0px 0px 20px 0px;
    color: #e3451e;
    text-align: center;
}

.titulos-3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 30px 0px 20px 0px;
    color: #e3451e;
    text-align: center;
}

.titulos-4 {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    padding: 0px 0px 20px 0px;
    text-align: center;
    color: #576574;
}

.txt {
    color: #576574;
    font-size: 15px;
    line-height: 23px;
}

.box-number {
    width: 250px;
    height: 200px;
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
    box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.25);
}

.title-num {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5em;
    color: #172B4D;
    text-align: center;
}

.txt-num {
    font-weight: 700;
    font-size: 15px;
    color: #004E8F;
}

.txt-num span {
    font-weight: 700;
    font-size: 30px;
    color: #72C6EF;
}

.box-number:nth-child(2) {
    margin-bottom: 80px;
}

#nosotros {
    padding-top: 80px;
}

.cont-nosotros {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.img-equipo,
.box-nosotros {
    width: 50%;
}

.img-equipo {
    height: 500px;
    overflow: hidden;
    border-radius: 30px 0px 0px 30px;
}

.box-nosotros {
    height: 450px;
    border-radius: 0px 30px 30px 0px;
    background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%);
    padding: 30px;
}

.box-nosotros h3 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 300;
    padding-bottom: 30px;
}

.box-nosotros h3 span {
    font-weight: 900;
}

.box-nosotros p {
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
    font-weight: 400;
}

.cont-valores {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    position: absolute;
    bottom: -180px;
}

.box-mision-vision {
    background: linear-gradient(90deg, #1488CC 0%, #2B32B2 100%);
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    height: auto;
    padding: 30px;
    margin: 0% 5%;
}

.box-mision-vision h4 {
    font-weight: 900;
    font-size: 40px;
    color: #ffffff;
}

.box-mision-vision p {
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
}

/* soluciones financieras */
#soluciones-financieras {
    margin-top: 300px;
    background: #122942;
    border-radius: 30px 30px 0px 0px;
    padding-bottom: 100px;
}

.box-financiera {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.title-factoring,
.cont-factoring {
    width: 50%;
    height: auto;
}

.title-factoring h3 {
    font-weight: 100;
    font-size: 50px;
    color: #ffffff;
    padding: 30px;
    margin: 0px;
}

.title-factoring h3 span {
    font-weight: 900;
    font-size: 100px;
    color: #ffffff;
}

.cont-factoring p {
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
    font-weight: 400;
    padding: 20px;
    margin: 0px;
}

.box-beneficios {
    width: 50%;
    height: auto;
    position: absolute;
    bottom: -300px;
    right: 0;
    background: linear-gradient(90deg, #FF8008 0%, #FFC837 100%);
    border-radius: 30px;
    padding: 30px;
}

.box-beneficios h4 {
    font-weight: 900;
    font-size: 40px;
    color: #ffffff;
    padding: 0px 0px 20px;
    margin: 0px;
    text-transform: uppercase;
}

.box-beneficios ul {
    --icon-space: 1.3em;
}

.box-beneficios ul li {
    display: block;
    padding: 2px;
    color: #ffffff;
    font-size: 18px;
}

.box-beneficios ul li:before {
    content: "\f058";
    /* FontAwesome Unicode */
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    width: var(--icon-space);
}

/* requisitos */
#requisitos {
    padding-top: 250px;
}

.title-requisitos h4 {
    font-weight: 900;
    font-size: 40px;
    color: #172B4D;
    padding: 0px 0px 30px;
    margin: 0px;
    text-transform: uppercase;
}

.cont-requisitos {
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, #FF8008 0%, #FFC837 100%);
    border-radius: 55.5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.box-requisitos {
    width: 25%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.number {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.25);
}

.number p {
    font-size: 30px;
    font-weight: 700;
    color: #FF8008;
    padding: 0;
    margin: 0;
}

.txt-requisitos {
    width: 100%;
    max-width: 200px;
    padding: 0px 0px 0px 20px;
}

.txt-requisitos p {
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 400;
    color: #ffffff;
    padding: 0px;
    ;
    margin: 0;
}

/* funcionamiento */
#funcionamiento {
    padding-top: 80px;
}

.title-funcionamientos h4 {
    font-weight: 900;
    font-size: 40px;
    color: #172B4D;
    padding: 0px 0px 30px;
    margin: 0px;
    text-transform: uppercase;
    text-align: center;
}

.cont-funcion {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.box-funcionamiento-1,
.box-funcionamiento-2 {
    width: 33.3%;
    height: auto;
    padding: 20px;
}

.box-funcionamiento-1 {
    text-align: left;
}

.box-funcionamiento-2 {
    text-align: right;
}

.icon-funcionamiento {
    padding-bottom: 20px;
}

.txt-funcionamiento h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #FF8008;
}

.txt-funcionamiento p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #232323;
}

.line-funcionamiento {
    position: absolute;
    width: 105%;
    height: 265px;
    left: 50%;
    transform: translateX(-50%);
    top: 140px;
    border: 2px solid #122942;
    border-radius: 30px;
    z-index: -999;
}

/* Partners */
#cont-organizaciones {
    background: #F8F8F8;
    border-radius: 0px 0px 30px 30px;
    padding-bottom: 100px;
    margin: 100px 0px 50px;
}

.cont-financiamiento {
    position: absolute;
    width: 80%;
    height: auto;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%);
    border-radius: 100px;
    z-index: 9;
}

.box-financiamiento {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-financiamiento h6 {
    font-weight: 300;
    font-size: 30px;
    color: #ffffff;
    margin: 0px;
    padding: 0px 0px 0px 70px;
}

.box-financiamiento h6 span {
    font-weight: 900;
}

a.cta-contactanos {
    display: inline-block;
    padding: 20px 30px;
    border: none;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    background: #FF8008;
    border-radius: 100px;
}

a.cta-contactanos:hover {
    background: #FF866D;
}

.partners .container {
    padding: 60px 0px;
}

.part {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.img-organizaciones {
    width: 250px;
    height: auto;
    margin: 20px;
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
}

.img-partner {
    width: 150px;
    height: auto;
    margin: 0px 20px;
    mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
}

.img-partner:nth-child(2) {
    width: 100px;

}

/* footer */
footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0px;
    margin: 100px 0px 0px;
    border-top: 1px solid #FF8008;
}

footer p {
    color: #282828;
    padding: 20px 0px;
    margin: 0;
    font-size: 12px;
    line-height: 1.5em;
    font-weight: 400;
}

.direccion {
    color: #122942;
    font-weight: 700;
    font-size: 16px;
}

footer li a {
    display: block;
    color: #122942;
    padding: 10px 0px;
}

footer .rrss a {
    display: inline-block;
    padding: 5px;
    color: #122942;
}

footer li a:hover,
footer li a:focus,
footer .rrss a:hover,
footer .rrss a:focus {
    color: #e2451e;
}

.legal {
    width: 100%;
    height: auto;
    padding: 20px 10px;
    background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%);
    border-radius: 30px 30px 0px 0px;
}

.legal p {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 12px;
}

/* responsive */
@media only screen and (max-width: 1200px) {
    .title-box {
        font-size: 110px;
    }

    .cont-valores {
        bottom: -280px;
    }

    .box-mision-vision {
        max-width: 300px;
    }

    .box-mision-vision p {
        font-size: 15px;
    }

    .img-equipo,
    .box-nosotros {
        height: auto;
    }

    .box-nosotros {
        padding: 30px 30px 50px;
    }

    #soluciones-financieras {
        margin-top: 380px;
    }

    .title-factoring h3 span {
        font-size: 80px;
    }

    .box-beneficios {
        bottom: -350px;
    }

    .txt-requisitos {
        max-width: 160px;
    }

    .line-funcionamiento {
        width: 100%;
        height: 310px;
    }
}

@media only screen and (max-width: 995px) {
    .cnt-menu {
        width: 50px;
        height: auto;
        text-align: center;
    }

    .logo,
    .cont-clientes {
        position: relative;
        z-index: 99;
    }

    .cnt-menu label.btn-menu {
        display: block;
        position: relative;
        z-index: 99;
    }

    .menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin-left: -200%;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 9;
        background: -webkit-linear-gradient(90deg, rgba(249, 249, 244, 1) 0%, rgba(225, 237, 219, 1) 50%, rgba(255, 231, 237, 1) 100%);
        background-size: 800% 800%;
        -webkit-animation: changeColor 12s ease-in-out infinite;
        animation: changeColor 12s ease-in-out infinite;
    }

    .menu {
        display: flex;
        flex-direction: column;
    }

    .menu li a {
        display: block;
        margin: 0px;
        padding: 10px;
    }

    #btn-menu:checked ~ .menu {
        margin: 0;
    }

    .ct-home p {
        font-size: 30px;
        line-height: 1.5em;
    }

    .title-box {
        font-size: 80px;
    }

    .cont-valores {
        flex-flow: column;
    }

    .box-mision-vision {
        margin: 20px 25px;
    }

    .title-factoring h3 {
        font-size: 30px;
    }

    .title-factoring h3 span {
        font-size: 60px;
    }

    .espacio-top {
        padding-top: 50px;
    }

    .box-beneficios {
        width: 100%;
        bottom: -320px;
    }

    .box-beneficios ul li {
        font-size: 15px;
    }

    .box-requisitos {
        width: 50%;
    }

    .box-requisitos:nth-child(1),
    .box-requisitos:nth-child(2) {
        margin-bottom: 20px;
    }

    .txt-requisitos {
        max-width: 200px;
    }

    .box-financiamiento h6 {
        font-size: 25px;
        padding: 0px 0px 0px 40px;
    }

    #cont-organizaciones {
        margin: 50px 0px 50px;
    }
}


@media only screen and (max-width: 967px) {}

@media only screen and (max-width: 770px) {
    #home {
        flex-wrap: wrap;
        height: auto;
        padding-bottom: 100px;
    }

    .ct-home {
        width: 70%;
        max-width: 70%;
        margin-top: 100px;
    }

    .formulario-pe {
        width: 70%;
        max-width: 70%;
    }

    .part {
        flex-wrap: wrap;
    }

    .img-partner {
        width: 40%;
        max-width: 50%;
        padding: 10px;
        margin: 1%;
    }

    .title-box {
        font-size: 70px;
    }

    .line-funcionamiento {
        width: 95%;
        height: 310px;
        height: 310px;
    }
}

@media only screen and (max-width: 650px) {
    .box {
        width: 100%;
    }

    .title-box {
        font-size: 70px;
        text-align: center;
    }

    .box-number:nth-child(2) {
        margin-bottom: 20px;
    }

    .img-equipo {
        width: 100%;
        border-radius: 30px 30px 0px 0px;
    }

    .box-nosotros {
        width: 100%;
        border-radius: 0px 0px 30px 30px;
    }

    .cont-valores {
        position: relative;
        bottom: 0px;
        padding-top: 20px;
        align-items: center;
    }

    .box-mision-vision {
        max-width: 100%;
    }

    .box-mision-vision:nth-child(1) {
        border-radius: 30px 30px 0px 0px;
        margin-bottom: 0px;
    }

    .box-mision-vision:nth-child(2) {
        border-radius: 0px 0px 30px 30px;
        margin-top: 0px;
    }

    #soluciones-financieras {
        margin-top: 50px;
    }

    .title-factoring,
    .cont-factoring {
        width: 100%;
    }

    .box-requisitos {
        width: 100%;
    }

    .box-requisitos:nth-child(3) {
        margin-bottom: 20px;
    }

    .txt-requisitos {
        max-width: 80%;
    }

    .line-funcionamiento {
        width: 95%;
        height: 380px;
        border: 1px solid #122942;
    }

    .box-financiamiento h6 {
        font-size: 20px;
        padding: 0px 0px 0px 30px;
    }

    .bajar-fijo {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    header {
        padding: 0px 10px;
    }

    .line-funcionamiento {
        display: none;
    }

    .box-funcionamiento-1,
    .box-funcionamiento-2 {
        width: 100%;
    }

    .box-financiamiento {
        flex-wrap: wrap;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }

    .box-financiamiento h6 {
        padding: 10px 0px;
        text-align: center;
    }

    a.cta-contactanos {
        font-size: 25px;
        padding: 20px 40px;
        margin-top: 10px;
    }

    .cont-financiamiento {
        bottom: -180px;
    }
}
