/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 1136px;
    padding: 0 0px;
    background-color: white;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 728px;
    width: 100%;
    background-color: black;
    padding: 0 64px 160px 64px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  width: 100%;
  color: white;
}

.footer-content > img {
  height: 64px;
  width: 100%;
  fill: white;
}

.footer-contact-links-container {
  display: flex;
  flex-direction: column;
}

.footer-contact-links-container > a {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  align-items: center;
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%; /* 56px */
  text-decoration: none;
  transition: .3s;
}

.footer-contact-links-container:hover > a {
  opacity: 0.5;
}

.footer-contact-links-container:hover > a:hover {
  opacity: 1;
}


.footer-contact-links-container > a > svg {
  width: 28px;
  height: 28px;
  stroke-width: 2px;
  stroke: white;
  opacity: 50%;
}

.contact-form-wrapper {
    position: absolute;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 64px;
}

.contact-form-container {
    display: flex;
    max-width: 1768px;
    width: 100%;
    height: 640px;
    /*border: 1px solid black;*/
}

.contact-form-container .wpcf7 {
  width: 100%;
}
.grecaptcha-badge { visibility: hidden; }

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 896px;
    width: 100%;
    padding: 80px;
    background-color: #FAFAFA;
    height: 100%;
}

.video-title-container {
    position: relative;
    max-width: 872px;
    width: 100%;
    overflow: hidden;
    padding: 0 112px;
}

.video-title-container > h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 96px;
    font-weight: 500;
    line-height: 100%; /* 120px */
    letter-spacing: -6px;
    z-index: 2;
    width: 560px;
}

.video-title-container > video,
.video-title-container > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
}

.video-title-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Adjust the width for the gradient effect */
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)); /* Gradient from left */
  z-index: 1; /* To place it above the video */
}

.input-field-container > textarea {
    width: 100%; /* Fixed width, adjust as needed */
    height: 160px; /* Adjust height as needed */
    border: none; /* Remove all borders */
    border-bottom: 1px solid #ccc;
    background: none; /* Remove background */
    outline: none; /* Remove focus outline */
    resize: none; /* Disable resizing */
    font-size: 16px; /* Adjust font size for better readability */
    padding: 0;
    margin: 0;
    color: black;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
}

.input-field-container > textarea::placeholder {
    color: black;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    opacity: 50%;
}

.input-field-container {
    position: relative;
    margin: 24px auto;
    width: 100%;
  }
  
  .input-field-container input {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
    color: black;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
  }
  
  .input-field-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
    color: black;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    opacity: 50%;
  }
  
  .input-field-container input:focus ~ .label,
  .input-field-container input:not(:placeholder-shown) ~ .label {
    top: -20px;
    font-size: 16px;
    color: #333;
  }
  
  .input-field-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #333;
    transform: scaleX(0);
    transition: all 0.3s ease;
  }

  .input-field-container:nth-child(4) .underline {
    bottom: 4px;
  }
  
  .input-field-container input:focus ~ .underline,
  .input-field-container input:not(:placeholder-shown) ~ .underline {
    transform: scaleX(1);
  }

  .input-field-container textarea:focus ~ .underline,
  .input-field-container textarea:not(:placeholder-shown) ~ .underline {
    transform: scaleX(1);
  }

  .follow-btn {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 24px;
    overflow: hidden;
    cursor: pointer;
    background-color: black;
    width: 100% ;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .submit-button-label {
    position: relative;
    font-family: Montserrat ,sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
    transition: color 0.3s ease-out;
    z-index: 1;
  }
  
  .follow-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 225%;
    min-height: 225%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: white;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
  }

  .contact-form-wrapper .wpcf7 form.sent .wpcf7-response-output {
    font-family: 'Montserrat Alternates';
    display: block;
    width: 100%;
    text-align: center;
  }
  
  /* Nav Button Hover Styles */
  .follow-btn:hover .submit-button-label {
    color: black;
  }
  .follow-btn:hover .follow-btn-bg {
    transform: translate(-50%, -50%) scale(1);
  }

  .submit-arrow {
    display: flex;
    align-items: center;
    transition: ease 0.5s;
    z-index: 20;
}

.submit-arrow > span:first-child {
    width: 14px;
    height: 1.5px;
    background-color: white;
    transition: ease 0.5s;
}

.submit-arrow > span:nth-child(2) {
    width: 12px;
    height: 12px;
    border-top: 1.5px solid;
    border-right: 1.5px solid;
    border-color: white;
    transform: rotate(45deg);
    margin-left: -12px;
    transition: ease 0.5s;
}

.follow-btn:hover .submit-arrow > span:first-child {
    border-color: black;
    width: 80px;
    background-color: black;
    transition: ease 0.5s;
}

.follow-btn:hover .submit-arrow > span:nth-child(2) {
  border-color: black;
}


.follow-btn:hover .submit-arrow {
    border-color: black;
    transition: ease 0.5s;
}

.footer-bottom-container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 88px;
  background-color: black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 64px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1320px;
  width: 100%;
}

.footer-bottom-content > ul {
  display: flex;
  gap: 32px;
  list-style: none;
  color: white;
}

.footer-bottom-list > li {
  position: relative;
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  opacity: 50%;
  transition: .2s;
}

.footer-bottom-list > li:hover {
  opacity: 100%;
  transition: .2s;
}

.footer-bottom-list > li > a {
  display: flex;
  text-decoration: none;
  color: white;
}

.footer-bottom-list > li::after {
  position: absolute;
  right: -16px;
  top: 1px;
  content: '';
  display: block;
  height: 14px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-list > li:last-child::after {
  display: none;
}

.social-media-list {
  display: flex;
  gap: 16px !important;
}

.social-media-list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s;
}

.social-media-list > li > a > svg {
  height: 24px;
  width: 24px;
  fill: white;
  transition: 0.2s;
}


.social-media-list > li > a:hover {
  background-color: white;
  transition: 0.2s;
}

.social-media-list > li > a:hover > svg {
  fill: black;
  transition: 0.2s;
}

.wpcf7 form .wpcf7-response-output {
  color: black;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  border: none;
}


@media only screen and (min-width: 980px) and (max-width: 1320px) {
  .contact-form-wrapper {
    padding: 0 24px;
  }

  .contact-form {
    padding: 56px;
  }
}


@media only screen and (max-width: 980px) { 

    footer {
      height: 100%;
    }
    
    .footer-container {
      height: 100%;
      padding: 80px 24px;
    }

    .footer-content {
      flex-direction: column;
      gap: 64px;
    }
    
    .footer-content > svg {
      height: 56px;
    }

    .footer-bottom-container {
      height: 100%;
      padding: 40px 24px;

    }

    .footer-bottom-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 48px;
    }

    .footer-bottom-list {
      flex-direction: column;
    }

    .contact-form-wrapper {
      position: static;
      padding: 0;
    }
    .contact-form-container {
      flex-direction: column;
      height: 100%;
      border: none;
    }
    
    .contact-form {
      padding: 40px 24px;
      max-width: unset;
    }

    .video-title-container {
      height: 400px;
      max-width: unset;
    }

    .video-title-container > h2 {
      font-size: 64px;
      letter-spacing: -3.2px;
      width: 400px;
    }

    .video-title-container > video {
      width: 100%;
      object-fit: cover;
    }

    .footer-bottom-list > li::after {
      display: none;
    }

    .footer-contact-links-container {
      align-items: center;
    }

    .footer-contact-links-container > a {
      font-size: 24px;
      letter-spacing: -0.48px;
      gap: 16px;
    }
    
    .footer-contact-links-container > a > svg {
      width: 24px;
      height: 24px;
    }
}