/* footer_wrapper */
.footer_wrapper {
  color: var(--white-color);
  background-color: var(--main-color);
  padding: 50px 0;
}

.footer_wrapper h3 {
  font-size: 60px;
  font-weight: 600;
  text-transform: capitalize;
}
.footer_wrapper p {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 1rem;
}
.company-info {
  margin-top: 1rem;
}
.copyright {
  background-color: #2a4202;
  color: var(--white-color);
}
.company-info a {
  display: flex;
  gap: 3px;
  color: var(--white-color);
  margin-bottom: 12px;
}
.company-info a i {
  margin-top: 4px;
}
.company-info p {
  font-size: 20px;
}
.social_link {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 1rem;
  gap: 12px;
}
.social_link a {
  color: var(--white-color);
  font-size: 16px;
}
.social_link img {
  width: 25px;
}

.copyright {
  padding: 10px 0;
}

.copyright_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright_content p {
  text-transform: capitalize;
}

.footer_right h3 {
  font-size: 40px;
}
.footer_right {
  text-align: right;
}

.company_logo {
  display: grid;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.company_logo a img {
  width: 100%;
  aspect-ratio: 3/2;
  padding: 10px;
  object-fit: contain;
  border-radius: 5px;
  transition: 0.3s ease;
  background-color: var(--white-color);
}
.company_logo a {
  width: 100%;
  display: block;
}
.company_logo a:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.map_box iframe {
  width: 100%;
}

.map_box {
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .footer_right {
    margin-top: 2rem;
    text-align: left;
  }
  .company_logo {
    justify-content: start;
  }
}

@media (max-width: 768px) {
  .footer_wrapper h3 {
    font-size: 25px;
  }
  .company-info a {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .map_box iframe {
    width: 100%;
  }
  .footer_wrapper p {
    margin-top: 10px;
  }
}
