.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2F083D;
}

.footerBox {
  width: 90%;
  display: flex;
  align-items: center;
  margin: 60px 0;
  justify-content: space-between;
}

.footerLeft img {
  height: 160px;
  width: auto;
}

.footerRight {
  width: 450px;
}

.footerRight h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.socialBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socialIcon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 75.26px 60.21px 0px #00000012;
  transition: all 0.3s ease-out;
}

.socialIcon:hover {
  transform: scale(1.1);
}

.socialIcon img {
  width: 24px;
}

.copyrightBox {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.contactUs {
  margin: 0;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.contactBox {
  display: flex;
  gap: 10px;
}

.contactBox a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.contactBox a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1440px) {
  .footerRight {
    width: 360px;
  }

  .footerLeft img {
    height: 110px;
  }
}

@media screen and (max-width: 1280px) {
  .footerRight {
    width: 300px;
  }

  .footerLeft img {
    height: 90px;
  }

  .footerRight h6 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contactUs {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 990px) {
  .footerBox {
    margin: 50px 0;
  }

  .footerLeft img {
    height: 80px;
  }

  .footerRight {
    width: 280px;
  }

  .footerRight h6 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .contactUs {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .socialIcon {
    width: 35px;
    height: 35px;
  }

  .socialIcon img {
    width: 20px;
  }

  .copyrightBox {
    height: 80px;
  }
}

@media screen and (max-width: 768px) {
  .footerBox {
    flex-direction: column;
    gap: 30px;
  }

  .footerRight {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .socialMediaBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .footerRight h6 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .contactUs {
    font-size: 20px;
    margin: 0;
  }

  .footerLeft img {
    height: 90px;
  }
}

@media screen and (max-width: 500px) {
  .footerLeft img {
    height: 65px;
  }

  .footerRight h6 {
    font-size: 16px;
  }

  .contactUs {
    font-size: 16px;
  }

  .socialMediaBox {
    gap: 16px;
  }

  .socialMediaBox {
    align-items: flex-start;
  }

  .contactBox {
    flex-direction: column;
  }

  .socialIcon {
    width: 30px;
    height: 30px;
  }

  .socialIcon img {
    width: 18px;
  }

  .copyrightBox {
    font-size: 14px;
  }
}


/* hidden on desktop */
@media (min-width: 769px) {
  .stickyMobBtn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .stickyMobBtn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    z-index: 9999;
    padding: 12px 16px;
    backdrop-filter: blur(6px);
    /* -webkit-backdrop-filter: blur(6px); */
    justify-content: center;
    align-items: center;

  }

  .stickyMobBtn .ctaBtn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    text-align: center;
  }

  body {
    padding-bottom: 80px;
  }
}


.stickybtn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  gap: 10px;
  padding: 10px;
  background: #F0BF09;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 1%;
  text-transform: uppercase;
  text-decoration: none;
      max-width: 430px;
    width: 100%;
}
.stickybtnimg {
  height: 40px;
  width: 40px;
}
.stickybtn:hover {
  box-shadow: 0px 4px 15px 0px #88121a;
  transition: all 0.3s ease-in-out;
}