/* ------------------------------------------------------------footer start------------------------------------------------------------ */
.section-footer {
	position: relative;
  background-size: cover;
	background-position: bottom;
	padding: 75px 0px 0px 0px;
}

.section-footer::before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(4, 35, 86, 0.95);
}

.footer-root {
	width: 100%;
  height: 100%;
  position: relative;
}

.footer-main-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	margin-bottom: 25px;
	h5 {
		font-size: 20px;
		font-weight: 600;
		color: rgb(255, 255, 255);
	}
	p {
		color: rgb(255, 255, 255);
	}
}

.footer-foundation {
	p {
		text-transform: uppercase;
		margin-top: 5px;
		font-weight: 600;
	}
}

.footer-logo {
	display: flex;
	gap: 25px;
	margin-bottom: 10px;
}

.logo-body {
	border-radius: 5px;
	img {
		max-width: 100%;
		object-fit: cover;
		object-position: center;
	}
}

.footer-socials {
	margin-top: 50px;
	margin-bottom: 25px;
	h3 {
		font-size: 20px;
		font-weight: 700;
		color: rgb(255, 255, 255);
		text-transform: capitalize;
	}
}

.socials-icon {
	display: flex;
	width: 100%;
}

.socials-instagram {
	display: flex;
	align-items: center;
  justify-content: center;
	position: relative;
	height: 50px;
	width: 50px;
	border: solid 2px rgb(255, 255, 255);
	border-radius: 100%;
	margin-right: 10px;
	img {
		height: 30px;
		width: 30px;
		background-image: transparent;
		transition: 1s;
	}
}

.socials-instagram::before {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: linear-gradient(165deg,rgb(131, 58, 180) 15%, rgb(253, 29, 29) 55%, rgb(252, 176, 69) 85%);
	border-radius: 100%;
	opacity: 0;
	transition: 0.5s;
}

.socials-instagram:hover::before {
	opacity: 1;
}

.socials-link {
	position: relative;
}

.footer-hyperlink {
	margin-bottom: 25px;
	h3 {
		font-size: 20px;
		font-weight: 700;
		color: rgb(255, 255, 255);
		text-transform: capitalize;
	}
}

.footer-menu {
	width: 100%;
	height: auto;
}

.footer-menu ul {
	list-style: none;
	padding-left: 10px;
}

.footer-menu ul li {
	margin-top: 15px;
	a {
		font-size: 16px;
		text-transform: capitalize;
	}
}

.menu-highlight {
	font-size: 18px;
	font-weight: 500;
	color: rgb(255, 255, 255);
	transition: 0.25s;
}

.menu-highlight:hover {
	color: rgb(250, 0, 0);
}

.footer-information {
	margin-bottom: 25px;
	h3 {
		font-size: 20px;
		font-weight: 700;
		color: rgb(255, 255, 255);
		text-transform: capitalize;
	}
	p {
		font-size: 16px;
		margin-bottom: 0;
	}
}

.information-icon {
	display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: rgb(209, 0, 0);
  border-radius: 100%;
  margin-right: 15px;
  img {
    position: absolute;
    height: 25px;
    width: 25px;
    z-index: 2;
  }
}

.information-icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(8, 21, 44);
  border-radius: 100%;
  transform: scale(0);
  transition: 0.5s;
  z-index: 0;

}

.information-icon:hover::before {
  width: 100%;
  height: 100%;
  transform: scale(1);
}

.information-location {
	display: flex;
	align-items: center;
	height: auto;
	width: 100%;
	margin: 15px 0px 20px 0px;
	p {
		color: rgb(255, 255, 255);
	}
}

.information-contact {
	display: flex;
	align-items: center;
	height: auto;
	width: 100%;
	margin-bottom: 20px;
	span {
		color: rgb(255, 255, 255);
		margin-right: 15px;
	}
	p {
		color: rgba(255, 255, 255, 0.75);
	}
}

.information-email {
	display: flex;
	align-items: center;
	height: auto;
	width: 100%;
	margin-bottom: 20px;
	span {
		color: rgb(255, 255, 255);
		margin-right: 15px;
		transition: 0.5s;
	}
	p {
		color: rgba(255, 255, 255, 0.75);
	}
}

.information-email span:hover {
	color: rgb(255, 113, 113);
}

.footer-bottom {
	display: flex;
	position: relative;
	height: 50px;
	background-color: rgb(8, 21, 44);
	align-items: center;
}

.footer-copyright {
	span {
		color: rgb(255, 255, 255);
		text-transform: uppercase;
		font-weight: 600;
	}
	p {
		color: rgb(255, 255, 255);
		text-transform: capitalize;
		margin-bottom: 0;
	}
}
/* ------------------------------------------------------------footer end------------------------------------------------------------ */