.Footer {
  background: linear-gradient(
    120deg,
    #bda6df 0%,
    #b7cae7 45%,
    #85d4e7 100%
  );

  color: #fff;
  position: relative;
  padding-top: 50px;
}

/* =========================================
   TOP 4 COLUMNS
========================================= */

.Footer .footer_top {
  align-items: flex-start;
  padding-bottom: 30px;
}

/* =========================================
   COLUMN 1 - LOGO
========================================= */

.Footer .footer_logo_section {
  max-width: 280px;
}

.Footer .footer_logo_section .img_wrapper {
  width: 150px;
  margin-bottom: 15px;
}

.Footer .footer_logo {
  width: 100%;
  height: auto;
  display: block;
}

.Footer .footer_desc {
  color: #000;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

/* =========================================
   COLUMN 2 - QUICK LINKS
========================================= */

.Footer .footer_link_group {
  display: flex;
  flex-direction: column;
}

.Footer .footer_title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 18px;
}

.Footer .footer_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Footer .footer_links a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.Footer .footer_links a:hover {
  transform: translateX(4px);
}

/* =========================================
   COLUMN 3 - CONTACT
========================================= */

.Footer .footer_contact_section {
  width: 100%;
}

.Footer .contact_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.Footer .contact_item .icon_circle {
  width: 28px;
  height: 28px;
  min-width: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;
  font-size: 14px;
}

.Footer .contact_item p {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.Footer .footer_social_section {
    width: 100%;
   
}
.Footer .social_icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.Footer .social_link {
  width: 40px;
  height: 40px;

  background: #000;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 18px;

  transition: 0.3s ease;
}

.Footer .social_link:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* =========================================
   GOOGLE PLAY
========================================= */

.Footer .footer_playstore {
  border-top: 1px solid rgba(0, 0, 0, 0.15);

  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.Footer .playstore_btn {
  height: 45px;
  width: auto;
  display: block;
}

/* =========================================
   COPYRIGHT
========================================= */

.Footer .footer_text_div {
  background: linear-gradient(
    92deg,
    #100621 0%,
    #0c021c 100%
  );

  width: 100%;
  text-align: center;
  padding: 7px 0;
}

.Footer .footer_text {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .Footer {
    padding-top: 40px;
  }

  .Footer .footer_logo_section .img_wrapper {
    width: 120px;
  }

  .Footer .footer_desc {
    font-size: 16px;
  }
  .Footer .footer_social_section{
    margin-top: 20px;
  }

  .Footer .footer_title {
    font-size: 18px;
  }

  .Footer .footer_links a,
  .Footer .contact_item p {
    font-size: 15px;
  }

  .Footer .social_link {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .Footer {
    padding-top: 35px;
  }

  .Footer .footer_logo_section {
    max-width: 100%;
    margin-top: 20px;
  }

  .Footer .footer_logo_section .img_wrapper {
    width: 100px;
  }

  .Footer .footer_desc {
    font-size: 15px;
  }

  .Footer .footer_title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .Footer .footer_links a,
  .Footer .contact_item p {
    font-size: 14px;
  }

  .Footer .contact_item {
    margin-bottom: 10px;
  }

  .Footer .social_icons {
    gap: 9px;
  }

  .Footer .social_link {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .Footer .footer_playstore {
    padding: 18px 0;
  }

  .Footer .playstore_btn {
    height: 35px;
  }

  .Footer .footer_text {
    font-size: 12px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

  .Footer {
    padding-top: 30px;
  }

.Footer .footer_logo_section {
    text-align: center;
    margin: 19px auto;
}

  .Footer .footer_logo_section .img_wrapper {
    width: 90px;
    margin: 0 auto 12px;
  }

  .Footer .footer_title {
    font-size: 16px;
  }

  .Footer .footer_links a,
  .Footer .contact_item p {
    font-size: 12px;
  }

  .Footer .social_link {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .Footer .playstore_btn {
    height: 32px;
  }
}