*{
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.social{
    position: fixed;
    left:0;
    top:200px;
    z-index: 2000px;
}

.social ul{
    list-style: none;
}

.social ul li a{
    display: inline-block;
    color: #fff;
    background: #000;
    padding: 10px 15px;
    text-decoration: none;
    -o-transition: 500ms ease;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
}

.social ul li .icon-facebook2{ background: #3b5998;}
.social ul li .icon-instagram{ background: #e63244;}
.social ul li .icon-tiktok{ background: #2d3323;}

.social ul li a:hover{
    background: #000;
    padding: 10px 20px;
    
}

body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif,Georgia, 'Times New Roman', Times, serif;
    color:#1d6ea4;
    font-size: 1.2rem;
    line-height: 1.6em;
    margin:0;

}

.header{
    padding: 0 0;
}

.header a{
    color:#1d6ea4;
    text-decoration: none;
}

.logo-nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
} 

.menu-icon{
    display: none;
}
.container{
    width:95%;
    max-width: 1170px;
    margin: 0 auto;
}



.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: #9dbad5;
 }


.footer {
    background: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

nav{
    background: #fff;
    height: 80px;
    width: 95%;
}

.enlace{
    position: absolute;
    padding: 20px 50px;
 
}

.logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{

    color: #fff;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}



.checkbtn{
    font-size: 20px;
    color: #000;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}


@media (max-width: 952px){
    .enlace{
        padding-left: 20px;
    }
    nav ul li a{
        font-size: 16px;
    }
}

@media (max-width: 858px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 20%;
        height: 100vh;
        background: #fff;
        top: 80px;
        left: -100%;
        text-align: left;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 20px;
    }
    nav ul li a{
        font-size: 15px;
    }
    li a:hover, li a.active{
        background: none;
        
    }
    #check:checked ~ ul{
        left:0;
    }
}