body{
    display: block;
    overflow-x: hidden;
}

.buttom-dft{
    position: relative;
    padding: 11px 5px;
    width: 100%;
    border: 0;
    overflow: hidden;
}
.buttom-dft:focus{
    outline: none;
}
@media screen and (min-width:768px){
    .buttom-dft:hover:before{
        position: absolute;
        content: ' ';
        width: 100%;
        height: 100%;
        background-color: var(--white);
        opacity: .2;
        top: 0;
        left: 0;
    }
}

.text-white{
    color: var(--white);
}
.text-darkBlue{
    color: var(--darkBlue);
}
.text-blue{
    color: var(--blue);
}

/* Alineacion texto */
.tc{
  text-align: center;
}
.tl{
  text-align: left;
}
.tr{
  text-align: right;
}

.m-auto{
    margin: 0 auto;
}


.section-title{
    font-size: 7vw;
    line-height: normal;
    margin-bottom: 20px;
}

.section-subTitle{
    font-size: 4vw;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 30px;
    padding: 0 15px;
}
.section-subTitle br{
    display: none;
}

@media screen and (min-width:500px) {
    .section-title{
        font-size: 30px;
    }
    .section-subTitle{
        font-size: 18px;
    }
}

@media screen and (min-width:768px) {
    .section-subTitle br{
        display: block;
    }
}