
footer {
  position: relative;
}

footer .footer-col {
    position: inherit;
}

footer .footer-top {
    position: relative;
}

footer .footer-top .footer-top-box {
  background: #E2E8F0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 15px;
  gap: 15px;
}

footer .footer-top .footer-top-box .icon {
  background: #50657F;
  width: 93px;
  /* height: 95px; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 11px;
}

footer .footer-top .footer-top-box .text .title {
  color: #284463;
  font-weight: 600;
  font-size: 20px;
}

footer .footer-top .footer-top-box .text .desc {
  font-size: 16px;
}

footer .footer-title {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

footer .footer-logo{
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

footer .footer-logo::before {
  content: "";
  position: absolute;
  left: 0%;
  width: 40%;
  height: 1px;
  background: var(--primary-color);
  top: 50%;
}

footer .footer-logo::after {
  content: "";
  position: absolute;
  right: 0%;
  width: 40%;
  height: 1px;
  background: var(--primary-color);
  top: 50%;
}

footer .footer-logo img {
  display: block;
  margin: 0 auto;
}

footer .footer-text {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
}

footer .footer-social-container {
  margin-bottom: 15px;
  gap: 10px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

footer .footer-social-container .footer-top-social-link{
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid var(--primary-color);
  transition: 0.3s ease-in;
  background: var(--text-light);
}

footer .footer-social-container .footer-top-social-link:hover {
  transform: scale(1.1);
}

footer .footer-social-container .footer-top-social-link svg {
  color:var(--primary-color);
  width: 30px;
  height: 30px;
}


footer .footer-contact-container .footer-contact{
  color: #fff;
  gap: 5px;
  margin-bottom: 15px;
}

footer .footer-contact-col .footer-contact{
  gap: 10px;
  color: #fff;
  margin-bottom: 10px;
}

footer .footer-top-inner{
  margin-bottom: 50px;
}

footer .footer-link {
  background: #4e7475;
  padding: 10px 40px;
  color: #fff;
  border-radius: 10px;
  display: inline-block;
}

footer .footer-inner .footer-menu {
  margin-top: 25px;
}

footer .footer-inner .footer-menu ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .footer-inner .footer-menu ul.footer-grid-menu{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

footer .footer-inner .footer-menu ul li a{
  color: var(--primary-color);
  font-size: 18px;
  transition: 0.3s ease-in;
}

footer .footer-inner .footer-menu ul li a:hover{
  opacity: 0.5;
}

footer .footer-center {
  padding: 0px 0 50px;
}

footer .footer-map {
    margin-top: 35px;
}

footer .footer-center .footer-contact-container{
    margin-top: 25px;
}

footer .footer-center .footer-contact-container .footer-contact {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 10px;
  gap: 10px;
}

footer .footer-center iframe{
  margin-bottom: 25px;
}

footer .footer-map iframe {
  height: 225px;
  border-radius: 20px;
}

footer .footer-center .certificates-content {
  height: 100%;
}

/* footer bottom */

footer .footer-bottom {
  background-color:var(--text-color);
  padding: 15px 0;
  border-top: 1px solid #fff;
}

footer .footer-bottom .copyright{
  font-size: 18px;
  color: #fff;
}