@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "GFS Didot", serif; 
    font-size: 20px;
}
body{
    background: radial-gradient(circle, rgba(77,0,149,1) 0%, rgba(33,28,114,1) 100%);
}


.header{
    background: radial-gradient(circle, rgba(77,0,149,1) 0%, rgba(33,28,114,1) 100%);
    /*background: linear-gradient(to right, #211c72, #6a5acd, #b0c4de);*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 5px 10%;
}

.header .logo-nombre img{
    height: 150px;
    width: auto;
    animation: respirar 2s infinite;
}

.header .logo img{
    height: 150px;
    width: auto;
}

.header .nav-links{
    list-style: none;
}
.header .nav-links li{
    display: inline-block;
    padding: 0 20px;
    transition: all 0.3s;
}
.header .nav-links li:hover{
    transform: scale(1.1);
}
.header .nav-links a{
   font-size: 700;
   color: rgb(255, 255, 255);
   
}


.menu {
    display:none;
}

.fa-solid, .fas {
    color: white;
}


@media screen and (max-width: 872px) {
    .nav-links{
        display: none;
    }
    .menu{
        display: inherit;
        color:white;
    }
    .menu button{
        background-color: transparent; 
        border: none; 
        cursor: pointer;
    }
    .header .logo-nombre{
        padding-left: inherit;
    }
    .header .logo img{
        height: 90px;
        width: auto;
    }
   
}

@keyframes respirar { 0% { transform: scale(1); } 
50% { transform: scale(1.1); } 
100% { transform: scale(1); } }

/*nav */
.header a{
    text-decoration: none;
}
.header .overlay{
    position: absolute;
    height: 100%;
    width: 0;
    left: 0;
    top: 80px;
    background-color:#4d0095 ;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.header .overlay .overlay-header{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header .overlay a{
    padding: 15px;
    font-size: 20px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.header .overlay a:hover,
.header .overlay a:focus{
    color:#4d0095;
}

.header .overlay .close{
    position:absolute;
    top: 0;
    right: 5%;
    font-size: 30px;
}

@media screen and (max-height: 450px){
    .header .overlay a{
        font-size: 20px;
    }

    .header .overlay .close{
        font-size: 40px;
        top: 15px;
        right:35px;
    }
}
.content{
    position: relative;
    /*background-image: url(img/fondoo.jpg);*/
    background-color: rgb(54, 54, 58);
    width: 100%; 
    height: 70vh;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column; 
}
.inicio h1{ 
    /*font-size: 4em; color: #211c72;*/
    font-size: 4em; color: white;
    margin: 0;
    padding-top: 5%;    
    padding-left: 5%;  
}

.content .inicio{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.inicio{
    display: flex;
    justify-content: space-between;
    align-items: left;
}
.content a{
    padding-left: 5%;
    padding-bottom: 5%;
}
.content-descripcion{
    height:100%;
}

.content-button{
    background-color: #4d0095; 
    border: none; 
    color: rgb(255, 255, 255); 
    padding: 15px 30px; 
    text-align:left; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 20px; 
    margin: 4px 2px; 
    cursor: pointer; 
    border-radius: 15px; 
    transition: background-color 0.3s ease;
    
}
.content p{
    height: 100%;
}
.content-button:hover{
    background-color: #a45be9;
}

.elementos{
    gap: 10px ;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    
}
.elementos p{
    padding: 3px;
    text-align: center;
}
.footer{
    background-color: rgb(54, 54, 58);
    padding: 10px 0;
}
.footer-bottom { background-color: #222; color: #bbb; padding: 10px 0; }

@media (max-width: 768px) 
    { .inicio h1 { font-size: 2em; } } 
@media (max-width: 480px) 
    { .inicio h1 { font-size: 1.5em; } }


    .container{
        max-width: 1000px;
        margin:auto;
      }
      .row{
        display: flex;
        flex-wrap: wrap;
      }
      ul{
        list-style: none;
      }
      .footer{
        background-color: #24262b;
          padding: 20px 0;
      }
      .footer-col{
         width: 25%;
         padding: 0 15px;
      }
      .footer-col h4{
        font-size: 18px;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
      }
      .footer-col h4::before{
        content: '';
        position: absolute;
        left:0;
        bottom: -10px;
        background-color: #4d0095;
        height: 2px;
        box-sizing: border-box;
        width: 50px;
      }
      .footer-col ul li:not(:last-child){
        margin-bottom: 10px;
      }
      .footer-col ul li a{
        font-size: 16px;
        text-transform: capitalize;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: #bbbbbb;
        display: block;
        transition: all 0.3s ease;
      }
      .footer-col ul li a:hover{
        color: #ffffff;
        padding-left: 8px;
      }
      .footer-col .social-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255,255,255,0.2);
        margin:0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
      }
      .footer-col .social-links a:hover{
        color: #24262b;
        background-color: #ffffff;
      }
      
      /*responsive*/
      @media(max-width: 767px){
        .footer-col{
          width: 50%;
          margin-bottom: 30px;
      }
      }
      @media(max-width: 574px){
        .footer-col{
          width: 100%;
      }
    }