@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,500;1,100&display=swap');

#btn-menu {
	display: none;
}

header label {
	float: right;
	font-size: 28px;
	margin: 6px 0;
	cursor: pointer;
	display: none;
}

.menu {
	margin-top: 0px;
	z-index:100;
	position: relative;
	height: 52px;
    justify-content:flex-end;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
}


.menu ul {
	display: flex;
	list-style: none;
}


.menu ul.subs {
    background-color:rgba(248,247,247,0.9);
    position: absolute;
}

.menu ul ul {
	display: none;
}

.menu ul ul a {
	text-align:left;
}






.menu a {
position: relative;
overflow: hidden;
display: inline-block;
color: #6ea3b1;
}
.menu a:after {
content: "";
position: absolute;
bottom: 0;
left: -100%;
width: 100%;
height: 2px;
background: #193038;
transition: left .8s;
}
.menu a:hover:after {
left: 0;
}





.menu a {
	display: block;
	padding: 15px 19px;
	color:#193038;
	text-decoration: none;
}

	.menu a:hover {
		color: #193038;
        transition: .8s;

}

.menu a span {
	margin-left: 10px;
}

.menu ul li:hover ul {
	display: block;
	position: absolute;
	background: #FFFFFF;
}

.menu ul ul a{
	color: #86888C;
}

.menu ul ul a:hover{
	color: #1B2110;
}


@media (max-width:1023px) {
	header label {
		display: block;
	}
	.menu { 
	position: absolute;
    margin-top: 50px;
	left: 0;
	width: 100%;
	transform: translateX(-100%);
	transition: all 0.3s;
    background: none;
	}
	
	.menu a {
	display: block;
	padding: 15px 20px;
	color: rgba(255,255,255,1);
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
	
	
	.menu a:hover {
	background: #34675C;
	color:#FFFFFF;
}

	
	.menu ul { 
	display: block;
	background: rgba(175, 12, 33, 0.8);
	}
	
	.menu ul li:hover ul {
		display: none;
		position: static;
		background: #34675C;
	}
	
	.menu a span { 
	position: absolute;
	right: 5px;
	}
	
	#btn-menu:checked ~ .menu {
		transform: translateX(0%);
	}
	
	.menu ul ul {
		background: #1F527D;
	}
	
	.menu ul ul a {
		padding: 35px 40px;
		color:#FFFFFF;
	}
	
	.menu ul ul a:hover{
	color: #FFFFFF;
}


    .menu ul.subs {
        position: relative;
		background-color: #1F527D;
    }


}




.whatsapp-button{
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}

@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}