/*===============
IMPORT GLOBAL CSS
================*/
@import url(global.css);

.footer-section {
    position: relative;
    background-color: #001367;
    overflow: hidden;
}

.footer-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-image: url(../images/about/abou-sae-bg.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 0.02;
    pointer-events: none;
}
.footer-section h6{
    color: #ffffff;
}
.footer-section .list-unstyled li{
    color: #ffffff;
}
.footer-section ul li span {
    color: #ffffff;
}
.social-media-links svg {
  font-size: x-large;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.social-media-links li a span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.social-media-links li a span::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: var(--custom-blue);
  transition: all 0.3s ease-in-out;
}
.social-media-links li a span:hover::after {
  background: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid #c6c7c8;
}
.social-media-links li a span:hover svg {
  color: var(--custom-blue);
}
.useful-links ul li a span {
  font-weight: 400;
  transition: color 0.15s ease-in-out;
  color: #dcdcdc;
  font-size: 15px;
}
.pt-70 {
  padding-top: 70px;
}
.useful-links ul li a span:hover {
  color: #868383;
}
@media (max-width: 1200px) {
  .footer-section {
    padding: 40px 0px;
  }
}
@media (max-width: 520px) {
  .footer-content div {
    margin-bottom: 1rem;
  }
  .pt-70 {
    padding-top: 40px;
  }
}
@media (max-width: 350px) {
  .contact-info {
    font-size: 13px;
  }
}
@media (min-width: 520px) and (max-width: 990px) {
  .footer-content div {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
