.contact-page-wrapper{
  padding: 60px 120px;
  padding-bottom: 150px;
  text-align: center;
}

.title-6{
  font-size: 20px;
  font-weight: 550;
  color: white;
  margin-bottom: 50px;
}

.contact-dis {
  color: rgba(255, 255, 255, 0.594);
  font-size: 20px;
  margin-bottom: 40px ;
}

.btn-contact{
  padding: 12px 20px;
  background-color:#39FF14 ;
  color: black;
  font-weight: bold;
  border: none;
  font-size: 16px;
  border-radius:3px 12px;
  cursor: pointer;
  opacity: 0.8;
  border: none;
}

.contact-page-wrapper button:hover{
  padding: 12px 22px;
  font-size: 18px;
  opacity: 1;
  transition: all 0.2s ease 0s;
}

/* ================= FOOTER ================= */

.footer{
  background: #050505;
  color: white;
  padding: 40px 80px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* LEFT */
.footer-left h3{
  margin: 0;
  color: #39FF14;
}

.footer-left p{
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* CENTER */
.footer-center p{
  margin: 5px 0;
  font-size: 14px;
}

.footer-center a{
  color:white;
  text-decoration: none;
}

.footer-center a:hover{
  text-decoration: underline;
}

/* RIGHT */
.footer-right{
  display: flex;
  gap: 15px;
}

.footer-right a{
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-right a:hover{
  color: #39FF14;
}

/* BOTTOM */
.footer-bottom{
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* MOBILE */
@media screen and (max-width:600px){

  .footer{
    padding: 30px 20px;
  }

  .footer-container{
    flex-direction: column;
    text-align: center;
  }

  .footer-right{
    justify-content: center;
  }
}

