/*=================Waves Animation=================*/
.ocean {
  position: relative;
  text-align: center;
  display: flex;
  transform:translatey(0.55rem);
}
.waves {
  position: relative;
  width: 100%;
  height: 6.25rem;
}

.parallax > use {
  animation: move-forever 10s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

@keyframes move-forever {
  0% {
    transform: translate3d(85px, 0, 0);
  }
  100% {
    transform: translate3d(-90px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 769px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
	.container-footer {
		padding:0 1rem;
	}
}
/*=================Waves Animation End=================*/
/*=================Footer=================*/

.img-certi {
	display:flex;
	align-items:center;
	margin-top:1.5rem;
}
.img-certi img {
	height: 2.5rem;
	width:2.5rem;
	object-fit:contain;
	margin-right:0.5rem;
}
.container-footer {
  position: relative;
  min-height: 25rem;
}
.container-footer .background-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
  left: 0;
  z-index: -1;
}
.footer-description {
  padding-top: 0.94rem;
  width: 18.8rem;
}
.footer-description .logo-footer {
  	width: 5.45694rem;
    height: 5.875rem;
    object-fit: cover;
    margin-top: 0.1px;
    margin-left: -1.3rem;
    margin-bottom: -0.5rem;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(116deg) brightness(109%) contrast(109%);
}
.footer-description > p {
  color: var(--color-white, #fff);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 1.3125rem */
  margin-top: 1.19rem;
  margin-bottom: 1rem;
}
.contact-phone-footer,
.contact-email-footer {
  display: flex;
  flex-direction: column;
}
.contact-phone-footer {
  margin-bottom: 1rem;
}
.contact-phone-footer span,.contact-email-footer span {
  color: var(--color-white, #fff);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 1.3125rem */
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.contact-phone-footer a,.contact-email-footer a {
  color: var(--color-white, #fff);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 1.875rem */
}
.footer-content {
  display: flex;
  justify-content: space-between;
	margin-bottom:2.25rem;

}
.footer-content .footer-menu ul{
display: flex;
}
.footer-content .footer-menu ul li .sub-menu {
    display: flex;
    flex-direction: column;
}
.footer-content .footer-menu ul li:last-child .sub-menu {
    flex-direction: column-reverse;
}
.social-footer .social-list {
	display:flex;
	flex-direction:column;
}
.social-footer .social-list .social-item {
	display:flex;
}
.footer-menu {
	display:flex;
}
.footer-menu>ul>li>a>svg {
	display:none;
}
.footer-menu>ul>li{
	margin-right:2.5rem;
}
.footer-menu>ul>li>a,.social-footer>span {
	color: var(--collor-white, #FFF);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.8rem */
	display:block;
	margin-bottom:1.5rem;
}
.footer-menu .sub-menu li a {
	color: var(--collor-white, #FFF);
	font-size: 1rem;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 1.5rem */
	display:block;
	margin-bottom:1rem;
}
.footer-menu .current-menu-item > a {
	color: var(--collor-white, #FFF)!important ;
}
.social-item {
	margin-bottom:1rem;
}
.social-item a:first-child img {
	width: 1.5rem;
	height: 1.5rem;
	object-fit:cover;
	margin-right:0.5rem;
}
.social-item a:last-child {
		color: var(--collor-white, #FFF);
	font-size: 1rem;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 1.5rem */
}
.footer-form>h3 {
	color: var(--color-white, #FFF);
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.8rem */	
	margin-bottom:1.5rem;
}
.footer-form form p{
	display:flex;
}
.footer-form form input[type='email'] {
	width: 12.5625rem;
	outline:none;
	border-radius: 0.5rem;
	border: 1px solid var(--Gray-400, #CED4DA);
	background: var(--color-White, #FFF);
	padding: 0 0.75rem;
	color: var(--color-black, #000000)
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.5rem */
	margin-right:0.5rem;
	height:2.6875rem;
}
.footer-form form input[type='email']::placeholder{
	color: var(--color-grey-2, #CCC);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.5rem */
}
.footer-form form input[type='submit'] {
	padding: 0.75rem 2rem;
	border-radius: 0.5rem;
	background: var(--button-primary, #F98905);
	color: #F9FAFB;
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	border:none;
	line-height: 120%; /* 1.2rem */
	cursor:pointer;
	transition:0.25s ease-in-out;
}
.footer-form form input[type='submit']:hover {
	background-color:var(--button-hover,#bd6f00);
	transition:0.25s ease-in-out;
}
.copy-right {
	width:100%;
	z-index:1;
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 0.75rem 0rem;
	background: #325a2eaa;
	color: var(--color-white, #FFF);
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 1.5rem */
}
@media (max-width:769px){
	.container-footer .background-footer.mb {
	  background-color:var(--color-primary);
	}
	footer {
	width:100lvw;
	overflow:hidden;
}
	.copy-right{
		width:calc(100% + 2rem);
		margin-left: -1rem;
	}
	.footer-content,.footer-menu,.footer-nav {
		flex-direction:column;
	}
	.footer-menu .sub-menu li a{
		padding:0 !important;
	}
	.footer-form form input[type='email'] {
		width:10.3rem;
		padding:0.125rem 0.75rem 0;
		height:2.0675rem;
	}
	.footer-form form input[type='submit'] {
		padding:0.5rem 1.5rem;
	}
	.ocean {
		transform:translatey(1px);
	}
	.footer-description{
		margin-bottom:3.75rem;
	}
	.footer-menu>ul>li {
		margin-bottom:1.5rem;
	}
	.footer-form {
		margin-top:2.75rem;
	}
}