﻿body {
    font-family: Georgia;
    color: white;
    font-size: 1.3rem;
    line-height: 1.6em;
    background-color: #19191a;
}

#tit1 {
    color: black;
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 30px;
}

hr{
    width: 150px;
}

h1{
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 30px;
}

p{
    
}

.container{
    width: 85%;
    max-width: 850px;
}

.header {
    background-color: #fafa05;
    color: white;
    padding: 0.5rem 0;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
}

.header a{
    color: black;
    text-decoration: none;
}

.logo-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.logo {
    width: 190px;
    height: 150px;
    float: left;
}

.menu-icon{
    display: none;
}

.navigation ul{
    margin: 0;
    padding: 0; 
    list-style: none;
}

  .navigation ul li{
      display: inline-block;

  }
    
    .navigation ul li a{
        display: block;
        padding: 0.5rem 1rem;
        transition: all 0.4s linear;
        border-radius: 5px;
    }

        .navigation ul li a:hover {
            background: #ACAAAA;
        }


/*.main{
    margin-top: 2em;
}*/


.footer {
    background: #fafa05;
    width: 100%;
}

.grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.figura{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoblanco{
    width: 250px;
}

.footer .grupo-1 .box .sig{
    color:black;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 30px;
}

.tit2 {
    color: black;
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 30px;
}

.footer .grupo-1 .box p{
    color: black;
    margin-bottom: 10px;
}

.footer .grupo-1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: black;
    margin-right: 10px;
    background-color: #fff;
    transition: all 0.4s linear;
    border-radius: 5px;
    text-align: center;
}

.footer .grupo-1 .red-social a:hover{
    background: #4a4a4a;
}

.footer .grupo-2 {
    background-color: #F7F955;
    padding: 15px 10px;
    text-align: center;
    color: black;
}

.footer .grupo-2 small{
    font-size: 15px;
}

/*.container video {
    width: 158.6%;
    height: 100%;
    margin-top: 0;
}*/

#imgFes{
    width: 158.6%;
    height: 100%;
    margin-top: 0;
}

@media only screen and (max-width: 767px) {
    .grupo-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }
    .menu-icon{
       display: block;
       cursor: pointer;
       padding: 0.5rem 1rem;
   }

    .navigation{
        width: 100%;
        margin-top: 1rem;
    }

     .navigation ul{
        display: none;
     }
       
       .navigation ul.show{
           display: block;
       }

        .navigation ul li {
            display: block;
        }

            .navigation ul li a {
                display: block;
                padding: 0.5rem 0;
                transition: all 0.4s linear;
                border-radius: 5px;
            }

                .navigation ul li a:hover {
                    background: #ACAAAA;
                }
}