footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: -20%;
  left: 0;
  transform: rotate(180deg);
}

.footer-header {
  width: 100%;
  padding: 25em 1.5em 0 1.5em;
  display: flex;
  justify-content: space-between;
}

.footer-header h1 {
  color: var(--color-text);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 9vw;
  margin: 0;
}

.footer-sub-header {
  width: 100%;
  padding: 0 1.5em 1em 1.5em;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--color-text);
  margin-bottom: 10em;
}

.footer-sub-header h2 {
  color: var(--color-text);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 1.5vw;
  letter-spacing: 0.025em;
  margin: 0;
}

.footer-ctas {
  width: 100%;
  padding: 0.5em 1.5em;
  display: flex;
  justify-content: space-between;
  color: var(--color-text);
}

.footer-cta-icon {
  display: inline-block;
  padding: 1em 1.125em 0.75em 1.125em;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  transition: 0.5s;
}

.footer-cta-icon:hover {
  background: rgba(255, 255, 255, 0.175);
}

.footer-cta-icon ion-icon {
  font-size: 20px;
  transition: 0.3s;
}

.footer-cta-icon:hover ion-icon {
  color: #ff6b00;
}

.footer-copyright {
  width: 100%;
  padding: 0.5em 1.5em 2em 1.5em;
  display: flex;
  justify-content: space-between;
}

.footer-copyright p {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-form {
  width: 100%;
  padding: 0 1.5em;
  display: flex;
  gap: 0.5em;
}

.form-col:nth-child(1) {
  flex: 4;
  width: 100%;
  padding: 0.25em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.form-col:nth-child(2) {
  position: relative;
  flex: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff6b00;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
}

.submit-btn h3 {
  font-family: var(--font-secondary);
  font-size: 3vw;
  color: var(--color-text);
  text-transform: uppercase;
}

.form-row {
  display: flex;
  gap: 0.25em;
}

input,
textarea {
  flex: 1;
  border: none;
  outline: none;
  text-transform: uppercase;
  padding: 1.5em 1em;
  border-radius: 6px;
  transition: 0.3s;
  outline: 1.5px solid var(--color-text-secondary);
  background: var(--color-text-secondary);
}

input:focus {
  outline: 1.5px solid #ff6b00;
}

@media (max-width: 900px) {
  .footer-sub-header h2 {
    font-size: 3vw;
  }

  .footer-bg {
    top: 0%;
  }

  .footer-header {
    padding: 20em 1.5em 0 1.5em;
  }

  .footer-form {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .submit-btn {
    padding: 3em 0;
  }

  .footer-copyright {
    padding: 0.5em 1.5em 15em 1.5em;
  }
}

@media (max-width: 430px) {
    .footer-copyright {
        margin-top:10px;
        display: flex;
        flex-direction: column !important;
        align-items: center;
        padding: 0.5em 1.5em 3em 1.5em;
        border-bottom: 1px solid white;
    }

    .footer-copyright p {
        text-transform: uppercase;
        color: #eaeaea;
        text-align:center;
    }
    
}

@media (max-width: 430px) {
    .footer-copyright {
        padding: 0.5em 1.5em 3em 1.5em
    }
}



.contact-left{
  display: flex;
  flex-direction: column;
  align-items:center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact-inputs{
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
}
.contact-left textarea{
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
.contact-inputs:focus{
  border: 2px solid #ff6b00;
}
.contact-left button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: white;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #fc002d, #ff6b00);
}