html{
  height: 100%;
}
body {
  min-height: 100%;
}

/* MENU OFFCANVAS */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 10px 8px 10px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#header {
    transition: margin-left .5s;
    padding: 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/* / */

/* header */
.logo-site{
    width: 100%;
    height: auto;
}
ul.social-icons{
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}
ul.social-icons li{
    display: inline-block;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #008f88;
    color: #fff;
    line-height: 1.5;
    margin-right: 5px;
    font-size: 32px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}
ul.social-icons li a{
    color: #fff;
}
ul.social-icons li:hover{
    background: #006963;
}
/* / */

/* content */
.bg-banner-home{
    background: rgb(217,224,232);
    background: radial-gradient(circle, rgba(217,224,232,1) 10%, rgba(196,205,214,1) 90%);
}
.img-banner{
    width: 100%;
    height: auto;
}
.img-others{
    width: 100%;
    height: auto;
}
.bg-blue-light{
    background: #d3dce3
}
.relato{
    font-style: italic;
    text-align: justify;
}
/* / */

/* TEXTING */
.frase-impacto{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.frase-impacto h2, .frase-impacto h3{
    font-size: 12pt;
    color: #fff;
}
.big-font{
    font-size: 30px;
}
.normal-font{
    font-size: 18px;
}
.text-green{
    color: #008f88;
    font-size: 16pt;
}
/* / */

/* buttons */
.btn-verde{
    background: #008f88;
    padding: 10px 14px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    border-radius: 16px;
    transition: .3s;
    line-height: 1.2;
}
.btn-verde:hover{
    background: #006963;
    text-decoration: none;
    color: #fff;
}
/* / */

/* UTILS */
.p-t-25{padding-top: 25px;}
.p-b-25{padding-bottom: 25px;}
.p-t-50{padding-top: 50px;}
.p-b-50{padding-bottom: 50px;}
.flex-v-center {
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
}
.img-full{
    width: auto;
    height: 500px;
    margin: auto;
}
/* / */

/* footer */
.site-footer{
    margin-top: 50px;
    padding: 15px;
    border-top: 4px solid #008f88;
    position: relative;
}
.site-footer ul.social-icons div{
    display: flex;
}
    
img.logo-footer{
    width: 150px;
    height: auto;
    position: relative;
    margin: auto;
    bottom: 40px;
}

ul.social-footer{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: -25px;
}
ul.social-footer li{    
    margin-right: 20px;
}
ul.social-footer li:last-child{    
    margin-right: 0px;
}
ul.social-footer i{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #008f88;
    color: #fff;
    line-height: 1.4;
    font-size: 32px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    margin-right: 8px;
}
ul.social-footer li a{
    color: #fff;
}
ul.social-footer i:hover{
    background: #006963;
}
ul.social-footer span{
    display: none;
}
/* / */

/* MEDIA QUERYS - MOBILE FIRST */

/* DESKTOP */
@media only screen and (min-width:1024px){
    .img-banner{
        width: auto;
        height: 500px;
    }
    .img-others{
        width: auto;
        height: 350px;
        margin: auto;
    }
    ul.social-footer{
        margin-top: -35px;
    }
    ul.social-footer span{
        color: #008f88;
        font-size: 20px;
    }
    ul.social-footer li:last-child{    
        margin-right: 20px;
    }
    .logo-site{
        width: 190px;
    }
    ul.social-icons li{
        margin-right: 20px;
    }
    .frase-impacto h2, .frase-impacto h3{
        font-size: 30pt;
    }
    .img-banner{
        width: auto;
        height: 450px;
    }
}

/* EXTRA LARGE SECRENS */
@media only screen and (min-width:1501px) {
   
}
 /* ONLY MOBILE */
@media (min-width: 320px) and (max-width: 480px) {
    .p-t-c{padding-top: 30px;}
    .m-center{text-align: center;}
}