:root{
    --hm-green: #20b583;
    --hm-blue: #1450a4;
    --azulmv: #0082CB;
    --grismv: #545454;
    --linkfooteerActivo: #ffc107;
}

@font-face {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/AvenirLTStd-Roman.woff') format('woff');
}

@font-face {
    font-family: 'Avenir Light';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/AvenirLTStd-Light.woff') format('woff');
}

body{
    font-family: 'Avenir';
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.text-xl{
    font-size: 3em !important;
}
.text-lg{
    font-size: 2em !important;
}

@media screen and (max-width: 600px) {
    .info-text .text-xl{
        font-size: 2em !important;
    }

    .info-text .text-lg{
        font-size: 1.5em !important;
    }
}

@media screen and (min-width: 601px) and (max-width: 992px) {

    .info-text .text-xl{
        font-size: 2.2em !important;
    }

    .info-text .text-lg{
        font-size: 1.8em !important;
    }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
    .info-text .text-xl{
        font-size: 1.6em !important;
    }
    
    .info-text .text-lg{
        line-height: 100%;
        font-size: 1.5em !important;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
    .info-text .text-xl{
        font-size: 2.4em !important;
    }

    .info-text .text-lg{
        line-height: 100%;
        font-size: 2em !important;
    }
}

@media screen and (min-width: 1601px) {
    .info-text .text-xl{
        font-size: 3em !important;
    }

    .info-text .text-lg{
        font-size: 2.5em !important;
    }
}

.strong{
    font-weight: 600 !important;
}

.extra-strong{
    font-weight: 900 !important;
}

.hm-green{
    background-color: var(--hm-green) !important;
}

.hm-green-text{
    color: var(--hm-green) !important;
}

.hm-blue{
    background-color: var(--hm-blue) !important;
}
.hm-blue-text{
    color: var(--hm-blue) !important;
}

.gris-text{
    color: var(--grismv);
}

.row-margin-sm{
    margin-bottom: 5px !important;
}

.versalitas{
    font-variant: small-caps;
}

.lighter{
    font-family: 'Avenir Light';
}

.link-footer:hover,
.link-footer:active{
    color: var(--hm-green) !important;
}

.btn-multiline{

    /*height: auto;*/
    line-height: 1.5em;
    padding: 0.5em;
    width:320px;
    height:109px;

}

.btn-rounded{
    border-radius: 1em;
}

.font-normal{
    text-transform: none !important;
}

.img-fullwidth{
    width: 100%;
}

.elem-space{
    margin: 0em 0.2em 0em 0.2em;
}

.cursor-select {
    cursor: pointer !important;
}

#auto-parallax{
    height: auto !important;
    padding-left: 3%;
}

/* IMAGE WITH BUTTON */
.box-img-bg{
    position: relative;
}

@media screen and (max-width: 600px) {
    .box-img-content{
        position: relative;
        bottom: 7%;
        left: 1%;
    }
}

@media screen and (min-width: 601px) and (max-width: 992px) {
    .box-img-content{
        position: absolute;
        bottom: 10%;
        left: 5%;
    }

    .box-img-content.btn-multiline{
        font-size: 1.8em;
    }
}

@media screen and (min-width: 993px) {
    .box-img-content{
        position: absolute;
        bottom: 10%;
        left: 5%;
    }

    .box-img-content.btn-multiline{
        font-size: 2em;
    }
}


/* EXTRA LARGE QUOTE */
.quote-xl{
    font-size: 2em;
}

@media screen and (max-width: 600px) {
    .quote-xl{
        font-size: 1.8em;
    }
}

@media screen and (min-width: 601px) and (max-width: 992px) {
    .quote-xl{
        font-size: 2.5em;
    }
}

@media screen and (min-width: 993px) {
    .quote-xl{
        font-size: 4em;
    }
}

