.Footer {
  padding: 55px 0px 20px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(146, 198, 61, 0.18),
      transparent 28%
    ),
    radial-gradient(circle at 10% 90%, rgba(0, 111, 78, 0.2), transparent 30%),
    linear-gradient(135deg, #063f2d 0%, #075a3f 45%, #043728 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.Footer::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  top: -180px;
  right: -100px;
  background: rgba(146, 198, 61, 0.12);
  filter: blur(5px);
}

.Footer::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  bottom: -170px;
  left: -100px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(3px);
}

.Footer .container {
  position: relative;
  z-index: 2;
}

.Footer .right_side_logo {
  position: absolute;
  right: 0;
  top: 30px;
  opacity: 0.08;
}

.Footer .fisrt_col {
  padding-right: 35px;
}

.Footer .about-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.Footer .logo_holder {
  width: 135px;
}

.Footer .logo_holder .logo_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Footer .tag_line {
  color: #a8d65a;
  font-size: 13px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 500;
}

.Footer .col_div {
  position: relative;
}

.Footer .col_div .footer_section_title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  padding-bottom: 9px;
  margin: 0;
  display: inline-block;
}

.Footer .social-wrapper {
  display: flex;
  gap: 5px;
}

.Footer .col_div .nav .first_nav_div {
  margin-right: 41px;
}

.Footer .col_div .nav .first_nav_div .nav-item .nav-link {
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  width: fit-content;
}

.Footer .col_div .nav .first_nav_div .nav-item .nav-link::before {
  content: "›";
  position: absolute;
  left: -15px;
  opacity: 0;
  color: #92c63d;
  transition: all 0.3s ease;
}

.Footer .col_div .nav .first_nav_div .nav-item .nav-link:hover {
  color: #a8d65a;
  transform: translateX(5px);
}

.Footer .col_div .nav .first_nav_div .nav-item .nav-link:hover::before {
  opacity: 1;
  left: -12px;
}

.Footer .col_div .footer_info_div {
  margin-bottom: 17px;
}

.Footer .col_div .footer_info_div .icon_text {
  font-size: 14px;
  color: #92c63d;
  margin-right: 8px;
}

.Footer .col_div .footer_info_div .bold_text {
  padding: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2px;
}

.Footer .col_div .footer_info_div .info_text {
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
  margin-bottom: 0;
}

.Footer .col_div .footer_info_div .info_text svg {
  font-size: 13px;
  color: #92c63d;
  margin-right: 4px;
}

.Footer .col_div .icons_holder {
  margin-top: 18px;
  display: flex;
  gap: 9px;
}

.Footer .col_div .icons_holder .icon_div {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.Footer .col_div .icons_holder .icon_div:hover {
  background: #92c63d;
  border-color: #92c63d;
  transform: translateY(-4px);
  box-shadow: 0 7px 18px rgba(146, 198, 61, 0.25);
}

.Footer .col_div .icons_holder .icon_div .icon_class {
  font-size: 15px;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.Footer .col_div .app_imgs_holder .img_holder {
  width: 108px;
  height: auto;
  margin: 15px 0;
}

.Footer .col_div .app_imgs_holder .img_holder .app_img {
  width: 100%;
  height: 100%;
}

.Footer .custom_row {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.Footer .footer_text_div .footer_text {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);

  font-size: 13px !important;
  margin-bottom: 0;
  margin-top: 20px;
}

.Footer .footer_text_div .footer_text a {
  text-decoration: none;
  transition: 0.3s ease;
  color: rgba(255, 255, 255, 0.65);
}

.Footer .footer_text_div .footer_text a:hover {
  color: #ffffff !important;
}

.Footer .col_div .images_holder .download_img {
  width: auto;
  height: auto;
  margin-bottom: 10px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .Footer .fisrt_col {
    padding: 0 10px;
  }

  .Footer .col_div .nav {
    justify-content: space-between;
  }

  .Footer .logo_holder {
    width: 110px !important;
  }

  .Footer .about-text {
    font-size: 14px;
  }

  .Footer .col_div .footer_section_title {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Footer {
    padding: 40px 0 20px;
  }

  .Footer .fisrt_col {
    width: 70%;
    margin: 0 auto 30px;
    text-align: center;
  }

  .Footer .logo_holder {
    margin: auto;
  }

  .Footer .about-text {
    text-align: center;
  }

  .Footer .col_div {
    margin-bottom: 18px;
  }

  .Footer .col_div .icons_holder {
    justify-content: center;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .Footer {
    padding: 35px 0 20px;
  }

  .Footer .fisrt_col {
    width: 100%;
    margin: 0 auto 25px;
    text-align: center;
  }

  .Footer .logo_holder {
    margin: auto;
  }

  .Footer .about-text {
    text-align: center;
  }

  .Footer .col_div {
    margin-bottom: 15px;
  }

  .Footer .col_div .nav .first_nav_div {
    margin-right: 22px;
  }
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .Footer {
    padding: 35px 0 18px;
  }

  .Footer .fisrt_col {
    width: 100%;
    margin: 0 auto 25px;
    padding: 0 10px;
    text-align: center;
  }

  .Footer .logo_holder {
    width: 115px;
    margin: auto;
  }

  .Footer .about-text {
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }

  .Footer .col_div {
    margin-bottom: 15px;
  }

  .Footer .col_div .footer_section_title {
    font-size: 15px;
    margin-bottom: 17px;
  }

  .Footer .col_div .footer_info_div {
    margin-bottom: 10px;
  }

  .Footer .col_div .footer_info_div .info_text,
  .Footer .col_div .nav .first_nav_div .nav-item .nav-link {
    font-size: 13px;
  }

  .Footer .col_div .nav {
    display: flex;
    justify-content: space-between;
  }

  .Footer .col_div .icons_holder {
    justify-content: center;
  }

  .Footer .footer_text_div .footer_text {
    font-size: 11px !important;
  }

  .Footer .custom_row {
    justify-content: center;
  }
}
