:root {
  --one: #007bff;
  --tow: #004fe1;
  --three: rgba(0, 205, 174, 0.5);
  --glass: rgba(255, 255, 255, 0.3);
  --glass2: rgba(255, 255, 255, 0.6);
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow2: rgba(0, 0, 0, 0.5);
}

.footerF {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: transparent;
}

.footer-sectionF {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding-top: 60px;
  color: var(--black);
  font-family: "Poppins", sans-serif;
  text-align: left;
  box-sizing: border-box;
  border: 1px solid var(--white);
  border-radius: 8px;
}

.containerF {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.containerC {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}

.footer-ctaF {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.single-ctaF {
  display: flex;
  align-items: center;
}

.single-ctaF i {
  font-size: 30px;
  margin-right: 20px;
  color: var(--tow);
}

.cta-textF h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cta-textF span {
  font-size: 15px;
}

.footer-contentF {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
}

.footer-widgetF {
  width: 30%;
}

.footer-logoF {
  margin-bottom: 25px;
}

.footer-logoF a img {
  width: 100px;
  border-radius: 50%;
}

.footer-textF p {
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-social-iconF {
  margin-top: 20px;
}

.footer-social-iconF span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-social-iconF a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff; /* Change to your desired color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-iconF a:hover {
  color: var(--black); /* Change to your desired hover color */
}

.facebook-bg {
  background-color: #3b5998;
  border-radius: 50%;
  padding: 10px 14px;
}

.twitter-bg {
  background-color: #1da1f2;
  border-radius: 50%;
  padding: 10px;
}

.google-bg {
  background-color: #db4437;
  border-radius: 50%;
  padding: 10px 8px;
}

.footer-widget-headingF h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  color: var(--black);
}

.footer-widget-headingF h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 50px;
  background: var(--tow);
}

.footer-ul {
  display: flex;
  justify-content: left;
  gap: 50px;
}

.footer-widgetF ul {
  list-style: none;
  padding: 0;
}

.footer-widgetF ul li {
  margin-bottom: 10px;
}

.footer-widgetF ul li a {
  color: var(--black);
  text-decoration: underline;
}

.footer-widgetF ul li a:hover {
  color: var(--tow);
}

.footer-textF p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}

.subscribe-formF {
  position: relative;
  overflow: hidden;
}

.subscribe-formF input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background: #222222;
  color: #ffffff;
}

.subscribe-formF button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: #ff5e14;
  border: none;
  padding: 0 20px;
  color: #ffffff;
  cursor: pointer;
}

.copyright-areaF {
  background: var(--glass2);
  padding: 25px 0;
  text-align: center;
}

.copyright-textF {
  margin-bottom: 0;
  color: var(--black);
}

.footer-menuF ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.footer-menuF ul li {
  margin: 0 10px;
}

.footer-menuF ul li a {
  color: var(--black);
  text-decoration: none;
}

.footer-menuF ul li a:hover {
  color: var(--tow);
}

.apk {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #000;
  text-align: center;
  color: #000;
  width: 180px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.apk-a a:nth-last-child(1):hover {
  background-color: var(--tow);
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .footer-ctaF {
    flex-direction: column;
    gap: 40px;
    /* align-items: center; */
    text-align: center;
  }

  .footer-contentF {
    flex-direction: column;
    align-items: center;
  }

  .footer-widgetF {
    width: 100%;
    margin: 20px 0;
    text-align: center;
  }

  .footer-ul {
    justify-content: space-around;
    text-align: left;
    gap: 20px;
  }

  .single-ctaF {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .single-ctaF i {
    margin: 0;
  }

  .footer-widget-headingF h3::before {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    height: 2px;
    width: 80px;
    background: var(--tow);
  }

  .containerC {
    flex-wrap: wrap-reverse;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .cta-textF h4 {
    font-size: 18px;
  }

  .cta-textF span {
    font-size: 14px;
  }

  .footer-widget-headingF h3 {
    font-size: 18px;
  }

  .footer-textF p {
    font-size: 13px;
  }

  .footer-social-iconF span {
    font-size: 18px;
  }

  .footer-social-iconF a {
    font-size: 16px;
  }

  .footer-widgetF ul li a {
    font-size: 14px;
  }
}
