@import "variables.css";
*{
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

#content{
    width: 100%;
    height: auto;
    padding: 40px;
    background-color: whitesmoke;
    
}
#info-contact{
    width: 300px;
    height: 160px;
    background-color: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px 5px 5px rgba(0,0,0,.5);

    position: fixed;
    bottom: -120px;
    right: 10px;
    transition: 1s;
    z-index: 5;
}
#info-contact:hover{
    bottom: 0;
}
#contact1{
    width: 300px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 20px 20px 0 0;
    color: white;
    float: left;
    text-align: center;
}
#contact1 h3{
    margin: 0;
line-height: 40px;

}
#contact2{
    width: 300px;
    height: 120px;
    color: rgb(58, 58, 58);
    float: left;
}
#contact2 a{
    display: inline-block;
    color: dimgray;
    text-decoration: none;
    font-size: 14px;
}
#contact2 .fa{
    margin: 10px 15px;
}
section{
    width: 90%;
    height: auto;
    text-align: center;
    padding: 2%;
    margin: 20px auto;
}
#info-reconocimiento{
    background-color: white;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 5px 5px 5px rgba(0,0,0,.5);
    text-align: center;
    overflow: hidden;
}
.item1{
    width: 45%;
    float: left;

}
.item2{
    width: 45%;
    float: right;

}
.item2 img{
    width: 100%;

}
.item3 {
    background-color: var(--secondary-color);
    color: whitesmoke;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    padding: 20px;
    float: left;
  }
.item4 {
    width: 100%;
    padding-top: 40px ;
    height: 80px;
    float: left;
  }


.conoce{
    background-color: var(--secondary-color);
    color: whitesmoke;
    padding: 15px;
    border-radius: 15px;
    margin: 20px;
    text-decoration: none;
}
.conoce:hover{
    text-decoration: underline;
    color: whitesmoke;
}
/*-- cursos --*/
.info-curso{
    width: 100%;
    height: 150px;

}
.titulo-curso{
    width: 100%;
    height: auto;
    padding: 30px 20px;
}
.titulo-curso h2{
    display: inline;
    color: var(--main-color);
    font-size: 30px;
    font-weight: 700;
}
.titulo-curso img{
    width: 100px;
}
.pointer-izq{
    float: left;
}
.pointer-der{
    float: right;
}
.curso-datos{
    display: flex;
    justify-content: space-evenly;
    height: 50px;
}
.curso-datos > div{
    display: flex;
    color: #06478e;
}
.curso-datos .fa{
    margin: 0 10px;
}

/* -- media de 1024 -- */

@media screen and (max-width: 1024px) {
    .titulo-curso{
        width: 100%;
    
        padding: 30px 0;
    }
    .titulo-curso img{
        width: 70px;
    }
    .titulo-curso h2{
        display: inline;
        font-size: 24px;
        font-weight: 700;
    }

}
@media screen and (max-width: 768px) {
    .titulo-curso{
        width: 100%;
        padding: 30px 0;
    }
    .titulo-curso img{
        display: none;
    }
    .titulo-curso h2{
        font-size: 30px;
    }
    .info-curso{
        width: 100%;
        height: auto;
    
    }
    .item1{
        width: 100%;
        float: left;
    
    }
    .item2{
        width: 100%;
        float: right;
    
    }
    .curso-datos{
        height: auto;
    }

}
@media screen and (max-width: 480px) {
    .titulo-curso h2{
        font-size: 24px;
    }
    #tabs .tabContent {
        height: auto;
    }
    .curso-datos > div{
        font-size: small;
        flex-wrap: wrap;
        flex-direction: column;
    }
    #content{
        padding: 20px;
        
    }
    section{
        width: 100%;
    }

}



