/* Created By AkinaCss */
/* Footer area */

footer {
  background-color: var(--main);
  border-radius: 40px 40px 0px 0px;
  padding: 50px 0px;
  padding-bottom: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  position: relative;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  width: 80%;
  z-index: 1;
}

.footer .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
  width: 30%;
  padding-right: 20px;
}

.footer .footer-left img {
  width: 100%;
  height: 60px;
  object-fit: scale-down;
  object-position: left;
}

.footer .footer-left p {
  color: var(--bgLight);
  font-size: 14px;
}

.footer .footer-inside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  width: 60%;
  gap: 10px;
}

.footerBox {
  flex: 1 1 33%;
  width: 33%;
  max-width: calc(33% - 10px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footerBox a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bgLight);
}

.footerBox a:hover {
  color: var(--bg);
}

.fHeader {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  border-radius: 40px 40px 0px 0px;
  padding: 20px 10px;
  margin-top: 30px;
  text-align: center;
  background-color: var(--white);
}

/* Footer Css End */

/* ========================================================= */

/* Responsive Start */

@media (min-width: 1921px) {
  .footer, .footer-bottom, .footer .footer-inside {
      max-width: 1800px;
  }
}

@media (max-width: 1200px) {
  .footer {
      width: 90%;
  }
}

@media (max-width: 1130px) {
  .footer .footer-inside {
      width: 65%;
  }
}


@media (max-width: 767px) {
  .footer .footer-left {
      width: 100%;
      padding-right: 0px;
  }
  .footer .footer-inside {
      width: 100%;
      margin-top: 30px;
  }
}

@media (max-width: 350px) {
  .footerBox {
    flex: 1 1 50%;
    width: 50%;
    max-width: calc(50% - 10px);
  }
}

/* Responsive End */

/* ===================================================== */