@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../fonts/NeoSansPro-Black.eot');
    src: url('../fonts/NeoSansPro-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeoSansPro-Black.woff2') format('woff2'),
        url('../fonts/NeoSansPro-Black.woff') format('woff'),
        url('../fonts/NeoSansPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../fonts/NeoSansPro-Bold.eot');
    src: url('../fonts/NeoSansPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../fonts/NeoSansPro-Bold.woff') format('woff'),
        url('../fonts/NeoSansPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../fonts/NeoSansPro-Regular.eot');
    src: url('../fonts/NeoSansPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../fonts/NeoSansPro-Regular.woff') format('woff'),
        url('../fonts/NeoSansPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root{
    --light-color:#ffffff;
    --primary-color: #3eadd8;
    --secondary-color: #47b2d2;
    --terciary-color: #da443b;
    --terciary-color-mobile: #ed3030;
}
.color-light,
.color-light:hover,
.color-light:visited,
.color-light:focus,
.color-light:active{
    color: var(--light-color)!important;
}
.color-primary{
    color: var(--primary-color)
}
.color-secondary,
.color-secondary:hover,
.color-secondary:focus,
.color-secondary:visited{
    color: var(--secondary-color)!important
}
.bg-primary{
    background-color: var(--primary-color)!important;
}
.bg-light{
    background-color: var(--light-color);
}
.fw-extra-bold{
    font-weight: 900;
}
html{
    font-size: 16px;
}
body{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: normal;
    letter-spacing: -.5px;
    color: var(--light-color);
    background-color: var(--terciary-color);
}
.fs-3 {
    font-size: 1.9vw !important;
}
.fs-5 {
    font-size: 1.25vw !important;
}
.fs-6 {
    font-size: 1.175vw !important;
}
h1, h2{
    letter-spacing: -1px;
    font-size: 2.65vw;
}
.fs-3 .small{
    margin-top: -2px;
    font-size: .45em;
}
.border-secondary{
    border-color: var(--secondary-color)!important;
}
.btn.color-secondary{
    width: 82%;
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:visited,
.btn-outline-light:active{
    background-color: unset!important;

}

@media screen and (max-width:1600px) {
    html{
        font-size: 14px;
    }    
}
@media screen and (max-width:1400px) {
    html{
        font-size: 13px;
    }    
    h1, h2{
        letter-spacing: -1px;
        font-size: 2.3vw;
    }
    .fs-3 {
    font-size: 1.6vw !important;
    }
    .fs-5 {
    font-size: 1.1vw !important;
    }
}
@media screen and (max-width:1200px) {
    html{
        font-size: 12px;
    }    
}
@media screen and (max-width:991px) {
    .vh-100{
        height: auto!important;
        min-height: 100vh;
    }
    body{
        background-color: var(--terciary-color-mobile);
    }
    h1, h2{
        font-size: 7.5vw;
    }
    .fs-3 {
        font-size: 5.2vw !important;
    }    
    .fs-5 {
        font-size: 4vw !important;
    } 
    .fs-6 {
        font-size: 3.8vw !important;
    }  
    .btn.color-secondary {
        width: 65%;
    }
    .logotipo-mobile{
        max-width: 33vw;
    }
    .bottom{
        background-color: var(--primary-color);
    }
}
@media screen and (max-width:567px) {
    html{
        font-size: 10px;
    }
    
}
@media screen and (min-width:992px) {
    
    .bg-desktop{
           background-image: url('../images/bg-desktop.webp');
           background-position: top center;
           background-size: cover;
           background-repeat: no-repeat;
           padding-left: 4vw;
           padding-right: 4vw;
    }
    .content{
        width: 30vw;        
    }
    .content-padding{
        padding-right: 3vw;
    }
    .logotipo{
        max-width: 15vw;
    }
    .bottom{
        flex-direction: column-reverse!important;
    }
    
}