/* --- SMOOTH WAVE SECTION --- */
.wave-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    margin-bottom: -1px;
    margin-top: 5em;
}

.waves 
{ 
	width: 100%; 
	height: 100%; 
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}




/***********Footer***************/

footer
{
	max-width: 100%;
	margin: 0px;
	padding: 0px;
	background:#001A33;
	color:#70849F;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	padding-top: 3em;
}


.footer_grid
{
	max-width:70%;
	margin: 0 auto;
	padding: 0px;
	display: grid;
	grid-template-columns:repeat(4, 1fr);
	grid-column-gap: 5em;
}

.footer_title
{
	font-size: 1.3rem;
	text-transform: uppercase;
	color: #FAC363;
	margin: 0px;
	padding: 0px;
	font-weight: 800;
	background: none;
}

.footer_grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

 

.footer_left ul li
{
	padding-bottom: 2em;
}

.social-container 
{ 
	display: flex; 
	gap: 15px; 
	padding-top: 20px;
 
}

.social-icon 
{
	width: 30px; height: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #f4d06f;
    z-index: 20; 
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 5s ease-in-out infinite;
}

.social-icon:hover 
{
    background: #f4d06f;
    color: #01132e;
    box-shadow: 0 0 3px #f4d06f;
}

 
 

.footer_middle_text ul li, .footer_right ul li
{
	margin-bottom: 1em;
}


.footer_middle_text ul li a,.mymail
{
	color: #70849F;
}

.footer_middle_text ul li span a
{
	color: #FAC363;
}




.mymail {color: #70849F;}



.footer_middle_text ul li a:hover, .mymail:hover
{
	color: #FAC363;
	
}

.footer_grid ul li:hover
{
	font-weight: bolder;
}



.btn_drink 
{
    display: inline-block;
    background:#f4d06f;
    color: #001A33;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-gold 2s infinite;
    transition: 0.3s;
}

.btn_drink:hover 
{
    transform: scale(1.05);
    background: #fff;
}

.footer_booton
{
	border-top: 1px solid #70849F;
	max-width: 70%;
	margin: auto;
	padding-top:1em;
	padding-bottom: 2em;
	margin-top: 3em;
}

/* --- ANIMATIONS --- */
@keyframes float 
{
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(244, 208, 111, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(244, 208, 111, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 208, 111, 0); }
}


.footer_right
{
	text-align: left;
	padding-left: 5em;
}
 

@media only screen and (max-width:900px)
{
	footer
	{
	  border: none;
      padding: 0px;
      margin: 0px;
      overflow: hidden;
      outline: hidden;
      padding-top:5em;
	}
	 
	.footer_grid 
	{
		grid-template-columns: 1fr;
		grid-row-gap: 2em;
	}

	.footer_middle_text
	{
		padding:0px;
	}

	.footer_right
	{
		padding-top: 2em;
		padding-bottom: 2em;
	}

	.footer_middle
	{
		text-align: center;
		grid-template-columns: 1fr;
	}

	.footer_left,.social-container,.footer_right,.footer_booton,.footer_title
	{
		text-align: center;
		display: flex; 
		align-items: center; 
		justify-content: center;
	}

	.footer_middle_text ul li
	{
		text-align: center;
		background: #0D263D;
		line-height: 3em;
		border-radius: 10px;
	}

	.footer_middle_text ul li a:hover
	{
		padding: 0px;

	}

	.footer_right
	{
		padding: 0px;
	}

	.footer_grid, .footer_booton
	{
		max-width: 80%;
	}

	.footer_middle_text ul .withoutbg
	{
		background: none;
	}


}