@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap');
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body{
	margin:0;
	font-family: sans-serif;
	overflow-x: hidden;
    background-color: #F2F2F2;
}
h1{
    font-family: 'Roboto', sans-serif; 
    font-weight: 700;
    color: #03658C;
}
h2{
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #00AAD8;
}
p{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #000000;
}
a{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
/* codigo de header */
header{
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 30;
    background-color: rgba(0, 0, 0, 0);
    transition-duration: 500ms;
    font-family: 'Roboto', sans-serif; ;;
}
.menu_scroll{
    background-color: #fff;
    transition-duration: 500ms;
}
header.menu_scroll .links, .container-boton{
			color: rgba(17, 17, 17, 0.952);
            /* opacity: 1; */
}
.logo{
    padding: 5px 0px;
    width: 70px;
    height: 70px;
    margin-left: 10px;
}
.logo img{
    width: 100%;
    height: auto;
    margin-left: 20px;
}
.list{
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
    margin-left: 16px;
    margin-right: 16px;
    padding: 8px;
}
.list li{
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}
.cool-link::after{
    display: flex;    
    align-items: center;
    justify-content: center;
  
    content: '';
    position: relative;    
    width: 0;
    height: 2px;
    background: #03658C;
    transition: width .3s;
    margin-left: 0px;
}
.cool-link:hover::after{
    width: 100%;
    transition: width .3s;
}
.links{
    width: auto;
    color: #696565cc;
    font-size: 18px;
    text-decoration: none;
    
    transition-duration: 500ms;
    transform: translateX(-50%) translateY(-50%);
   
}
.list a:hover{
    color: #03658C;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
    /* text-decoration: underline; */
}
.menubar{
    margin-right: 26px;
    border-radius: 0.375rem;
    border-width: 2px;
    border-color: #03658C ;
    --tw-border-opacity: 0.5;
}
.menubar button{
    color: #03658C;
    font-size: 20px;   
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}
/* header reponsivo */
.menuresp{
    margin-top: 80px;
    padding-top: 16px;
    z-index: 20;
    position: fixed;
    background-color: #043f57e5;
    height: 60vh;
    width: 70%;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.links_reps{
    width: 100%;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: center;
    font-weight: 500;
    transition-duration: 400ms;
    padding-top: 16px;
    padding-bottom: 16px;
}
.menuresp a:hover{
    color: #00AAD8;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
    
}
/* fin responsivo */
/* fin de header disño */
/* SEPARADOR  */
.separador{
    left: 50%;
    position: absolute;
    content: "";
    width: 3px;
    height: 12px;
    background-color: #ada9a9;    
    z-index: 1;
    margin-top: 10px; 
      
}
.separador::before{
    height: 1px;
    width: 40px;
    background: #ada9a9;
    position: absolute;
    right: 0px;
    top: 5px;
    content: "";
    margin-right: 6px;
    
}
.separador::after{
    height: 1px;
    width: 40px;
    background: #ada9a9;
    position: absolute;
    left: 0px;
    top: 5px;
    content: "";
    margin-left: 6px;
}
/* fin de separador */

/* footer */
.footer-header{
    background-color: #03658C;
    margin-bottom: 52px;
    padding-bottom: 10px ;
}
.footer-header h1{
    color: white;
}
.footer-header h2{
    color: white;
}


@media (max-width: 768px) {
    
}
/* fin footer */
/* boton contactame */
.boton-contact{
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 50px;
    bottom: 0.1px;    
    transition-duration: 500ms;
}

.inf-hover{
    color: white;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: #03658C;;
}
.inf-hover:hover{
    background-color: #00AAD8;
}
@keyframes boton-efect{
    0%{
        bottom: 40px;
        
    }
    100%{
    
        bottom: 30px;
        
    }
}

/* fin boton contactame */
