.main-footer{

  width:100%;

  padding:55px 80px 30px;

  background:
  linear-gradient(
  135deg,
  #020d0a,
  #051712,
  #08241d
  );

  position:relative;

  overflow:hidden;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* TOP */

.footer-top{

  display:grid;

  grid-template-columns:1.2fr 0.8fr 0.8fr 1fr;

  gap:50px;

  margin-bottom:70px;
}
.footer-about img{
  width: 70%;
  height: auto
}
/* ABOUT */

.footer-about h2{

  color:#fff;

  font-size:39px;

  margin-bottom:22px;

  font-weight:800;
  margin-top: 0px;
}

.footer-about p{

  color:#d8d8d8;

  line-height:1.9;

  font-size:16px;

  max-width:400px;

  margin-bottom:30px;
}

/* SOCIAL */

.footer-socials{

  display:flex;

  gap:16px;
}

.footer-socials a{

  width:52px;
  height:52px;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  font-size:22px;

  background:
  rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  transition:0.4s ease;
}

/* HOVER */

.footer-socials a:hover{

  transform:translateY(-6px);

  background:
  linear-gradient(
  135deg,
  #73ff95,
  #d8ff67
  );
}

/* TITLES */

.footer-links h3,
.footer-contact h3{

  color:#fff;

  font-size:24px;

  margin-bottom:28px;
}

/* LIST */

.footer-links ul{

  list-style:none;

  display:flex;

  flex-direction:column;

  gap:18px;
}

/* LINKS */

.footer-links a{

  text-decoration:none;

  color:#cfcfcf;

  transition:0.3s ease;

  font-size:16px;
}

/* HOVER */

.footer-links a:hover{

  color:#73ff95;

  padding-left:8px;
}

/* CONTACT */

.contact-line{

  display:flex;

  align-items:center;

  gap:14px;

  margin-bottom:20px;
}

.contact-line span{

  width:46px;
  height:46px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  rgba(255,255,255,0.05);

  font-size:20px;
}

.contact-line p{

  color:#d8d8d8;

  font-size:15px;
}

/* NEWSLETTER */

.footer-newsletter{

  width:100%;

  padding:35px 40px;

  border-radius:35px;

  margin-bottom:50px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:30px;

  background:
  linear-gradient(
  135deg,
  rgba(115,255,149,0.12),
  rgba(216,255,103,0.05)
  );

  border:1px solid rgba(255,255,255,0.08);
}

/* TEXT */

.footer-newsletter h3{

  color:#fff;

  font-size:34px;

  margin-bottom:10px;
}

.footer-newsletter p{

  color:#d8d8d8;
}

/* FORM */

.newsletter-form{

  display:flex;

  align-items:center;

  gap:15px;

  width:100%;

  max-width:500px;
}

/* INPUT */

.newsletter-form input{

  flex:1;

  padding:18px 20px;

  border:none;

  outline:none;

  border-radius:60px;

  background:
  rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  color:#fff;
}

/* BUTTON */

.newsletter-form button{

  padding:18px 30px;

  border:none;

  border-radius:60px;

  background:
  linear-gradient(
  135deg,
  #d8ff67,
  #73ff95
  );

  color:#111;

  font-weight:700;

  cursor:pointer;

  transition:0.4s ease;
}

/* HOVER */

.newsletter-form button:hover{

  transform:translateY(-4px);
}

/* BOTTOM */

.footer-bottom{

  padding-top:30px;

  border-top:1px solid rgba(255,255,255,0.08);

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:20px;
}

/* TEXT */

.footer-bottom p{

  color:#bdbdbd;

  font-size:14px;
}

/* LINKS */

.bottom-links{

  display:flex;

  gap:25px;
}

.bottom-links a{

  text-decoration:none;

  color:#bdbdbd;

  font-size:14px;

  transition:0.3s ease;
}

.bottom-links a:hover{

  color:#73ff95;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .footer-top{

    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:700px){

  .main-footer{

    padding:22px 11px 25px;
  }

  .footer-top{

    grid-template-columns:1fr;
    gap: 12px;
    margin-bottom: 10px;
  }
  .footer-about img{
  width: 55%;
  height: auto
}

  .footer-about h2{

    font-size:26px;
    margin-bottom: 5px;
  }
  .footer-about p {
  line-height: 19px;
    font-size: 14px;
    max-width: 400px;
    margin-bottom: 10px;
    }
.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  font-size: 20px;
}

.footer-socials {
  gap: 5px;
}
  .footer-newsletter{

    padding:12px 16px;
      flex-direction:column;

    align-items:flex-start;
    margin-bottom: 25px;
    gap: 10px;
    border-radius: 20px;
  }
.newsletter-form input
 { 
  padding: 8px 17px;
  width: 100%;
 }


  .footer-newsletter h3{

    font-size:18px;
    margin-top: 4px;
    margin-bottom: 2px;
  }
  .footer-newsletter p{
    margin: 0px;
  }

  .newsletter-form{

    flex-direction:column;
    gap: 10px;
  }

  .newsletter-form button{

    width:100%;
    padding: 9px
  }

  .footer-bottom{

    flex-direction:column;
     align-items:center;
     gap: 12px;
     padding-top: 20px;
  }
  .footer-links h3,
.footer-contact h3{
  margin-bottom: 5px;
  margin-top: 2px;
  font-size: 20px;
}
.footer-links a{
  font-size: 13px;
}
.contact-line {
  margin-bottom: 12px
}
.contact-line span{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 15px;
}
.footer-links ul{
  gap: 4px;
}
}