/*----------FONTS----------*/
@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-VariableFont.ttf');
}

*{
    font-family: 'Cairo'!important;
}

/*----------GERAL----------*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #f1f2f3;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
}

.principal{
    margin-top:76px;
}

.home h1{
    font-size:0;
    line-height:0;
}

img{
    max-width: 100%;
    display: inline-block;
}

.btns{
    padding:.25rem 1rem;
    cursor:pointer;
    border-radius:7px;
    transition: all .3s ease-in-out;
}

.btns--green{
    background-color: #BABD32;
    border:1px solid #BABD32;
    color:#fff;
}

.btns--green:hover{
    background-color: transparent;
    color: #BABD32;
}

.btns--blue{
    background-color: #4baedd;
    border:1px solid #4baedd;
    color:#fff!important;
}

.btns--blue:hover{
    background-color: #0472a3;
    border:1px solid #0472a3;
}

.the-content{
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #808080;
}

.the-content h2{
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-align: left;
    color: #333;
    margin-bottom:1.5rem;
}

.the-content ul > ul > li{
    list-style-type: disc;
}

.the-content a{
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: #0472a3;
    transition: all .3s ease-in-out;
}

.the-content a:hover{
    color: #4baedd;
}

@media only screen and (max-width:576px){
    .the-content{
        font-size: 14px;
    }
}