body {
    font-family: 'Futura-Medium';
    margin: 0;
    background: white;
}

@font-face {
    font-family: 'Renogare-Regular';
    src:url("fonts/Renogare-Regular.otf");
}
@font-face {
    font-family: 'Futura-Medium';
    src:url("fonts/Futura-Medium.otf");
}

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    transition: 0.7s;
    padding: 30px 20px;
    z-index: 10;
}

header.abajo {
    background: linear-gradient(90deg, rgba(0, 131, 202, 1) 0%, rgba(191, 214, 48, 1) 100%);
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, rgb(0, 131, 202) 0%, rgb(192, 214, 48) 100%);
}
  
.navbar img {
    height: 50px;
}
  
.navbar-nav {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bolder;
    transition: all 500ms ease;
    border-bottom: 2px solid transparent;
}

.navbar-nav a:hover {
  color:  #494949;
  border-bottom: 2px solid #494949;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 131, 202, 1) 0%, rgb(191, 214, 48) 100%);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 131, 202, 0.4);
    z-index: 1;
    padding: 10px;
}

.dropdown-content .submenu {
    position: relative;
}

.dropdown-content .submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 131, 202, 1) 0%, rgb(191, 214, 48) 100%);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 131, 202, 0.5);
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(87, 87, 87, 0.3);
    color: rgb(191, 214, 48);
    transition: all 500ms ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.submenu:hover .submenu-content {
    display: block;
}

.menu_bar{
	display: none;
}

.redes {
    display: none;
}


.float-wa{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background: #25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
    transition: all 500ms ease;
}

.float-fb {
    position:absolute;
    width:30px;
    right:25px;
    color:#ffffff;
    text-align:center;
    z-index:100;
    transition: all 500ms ease;
    border-bottom: 2px solid transparent;
}

.float-li {
    position:absolute;
    width:30px;
    right:60px;
    color:#ffffff;
    text-align:center;
    z-index:100;
    transition: all 500ms ease;
    border-bottom: 2px solid transparent;
}

.float-wa:hover {
    color:  #494949;
}
#fb:hover {
    color:  #3b5998;
    border-bottom: 2px solid #3b5998;
}
#li:hover{
    color:  #0077b5;
    border-bottom: 2px solid #0077b5;
}

.footer {
    background: linear-gradient(90deg, rgb(0, 131, 202) 0%, rgb(191, 214, 48) 100%);
    text-align: center;
    padding: 0px;
    margin: 0px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    color: #000000;
}
.footer-column {
    width: 200px;
    margin: 20px;
}
.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-column a {
    text-decoration: none;
    color: #000000;
}

.footer-column p, .footer-column p a, #direccion{
    font-size: 14px;
    color: #12121291;
    margin: 8px 0;
    text-decoration: none;
}

.material-icons {
    width: 16px;
    height: 16px;
    color: #12121291;
}

@media (max-width:800px ) {
    #icon{
        position: absolute;
        top: 0;
        align-items: center;
        height: 70px;
        padding-top: 15px;
    }
 
    .navbar-nav {
        padding-top: 100px;
        position: fixed;
        flex-direction: column;
        width: 70%;
        height: 100%;
        justify-content:flex-start;
        top: 0;
        left: -100%;
        background: linear-gradient(90deg, rgba(0, 131, 202, 1) 0%, rgba(191, 214, 48, 1) 100%);
        transition: left 0.3s ease;
        box-shadow: 0px 8px 16px rgba(0, 131, 202, 0.5);
    }

    .navbar-nav a {
        color: white;
        font-size: 24px;
        padding: 0;
        margin: 0;
        border-bottom: 2px solid;
    }

	.menu_bar {
		display:block;
        width:100%;
	}	

    .menu_bar .bt-menu {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 25px;
        margin: auto;
    }
	.menu_bar span {
		float:right;
		font-size:40px;
	}

    .navbar-nav.active {
        left: 0;
    }

    #redes {
        font-weight: bolder;
        font-size: 24px;
        color: #ffffff;
        position: fixed;
        display: block;
        bottom: 75px;
    }

    #fb {
        display: block;
        position: absolute;
        right: 38%;
        bottom: 135px;
    }
    
    #li {
        display: block;
        position: absolute;
        left: 38%;
        bottom: 135px;

    }

    .dropdown:hover .dropdown-content{
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        margin: 10px 0;
    }
}