@charset "UTF-8";


/* Footer */
footer {
  background-image: url("../images/footer.jpgg");
  background-size: cover;
  background-position: 100% 40%;
  background-color: #0d0d0d;
  color: #fff;
  font-size: 16px;
  padding: 100px 0 50px 0;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-address {
  margin-bottom: 20px;
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-menu {
  margin-bottom: 20px;
}


footer a {
  color: #fff;
  position: relative;
  text-decoration: none;
}

footer a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgba(0, 67, 83, 0.8);
  transition: width 1s ease-in-out;
}

footer a:hover::before {
  width: 100%;
  transition-delay: 0.5s;
}




.footer-social {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.footer-social a {
  color: #fff;
  margin-left: 20px;
}
.footer-links div ul li {
  display: inline-block;
  margin-right: 10px;
}
.footer-copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
	margin-top: 50px;
}





@media screen and (max-width: 1000px){
	.footer-menu img{
		width: 90%;
	}
}
	
@media screen and (max-width: 768px) {
	.footer-content {
		text-align: center;
		display: block;
		max-width: 80%;
	}
}