/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.form__input--fullname {
    color: var(--gray_800) !important;
    margin-top: 14px;
  }
  
  .form__divider {
    height: 1px;
    margin-top: 12px;
    background-color: var(--white_a700);
    align-self: stretch;
    width: 100%;
  }

  .form__divider1 {
    position: relative;
    height: 1px;
    margin-top: 15px;
    background-color: var(--white_a700);
    align-self: stretch;
    width: 100%;
  }
  
  .form__input-group--phone {
    margin-top: 64px;
    gap: var(--space-sm);
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form__label--name {
    font-family: Etna !important;
    text-transform: uppercase;
  }
  
  .navigation__item--home {
    text-transform: uppercase;
  }
  
  /*-------------------------------------
    2. Page CSS
  --------------------------------------*/
  .contact-us {
    gap: 30px;
    background-color: var(--black_900);
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  
  .header {
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    @media only screen and (max-width: 1050px) {
      flex-direction: column;
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  
  .header__row {
    gap: 6px;
    align-self: center;
    display: flex;
    align-items: center;
  }
  
  .header__title {
    color: var(--yellow_500) !important;
    font-family: Suifak !important;
    font-size: 80px;
    font-weight: 400;
    @media only screen and (max-width: 1050px) {
      font-size: 48px;
    }
  }
  
  .header__logo {
    height: 56px;
    width: 128px;
    object-fit: contain;
  }
  
  .header__menu {
    color: var(--white_a700);
    margin-bottom: 36px !important;
    font-family: Glacial Indifference;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    gap: 54px;
    display: flex;
    flex-wrap: wrap;
    @media only screen and (max-width: 1050px) {
      gap: 20px;
    }
  }
  
  .header__contact {
    margin-bottom: 26px;
    font-family: Etna !important;
    text-transform: uppercase;
  }
  
  .column {
    gap: 72px;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: center;
    background-image: 
      linear-gradient(to bottom,
        #000000 1100px,
        transparent 100px
      ),
      linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7)),
      linear-gradient(to left, rgba(255,196,0,0.3), transparent 60%);
  }

  @media only screen and (max-width: 1050px) {
    .column {
        gap: 54px;
    }
  }

  @media only screen and (max-width: 550px) {
    .column {
        gap: 0px !important;
        margin-bottom: 84px !important;
    }
  }
  
  .columncontactus {
    display: flex;
    flex-direction: column;
    align-items: center;
    @media only screen and (max-width: 1050px) {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  
  .contact-link {
    font-family: Etna !important;
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 400;
  }
  
  .navigation {
    margin-top: 8px;
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .navigation__item--contact {
    color: var(--gray_800) !important;
    text-transform: uppercase;
  }
  
  .content {
    margin-top: 80px;
    gap: 38px;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .content__heading {
    font-family: Etna !important;
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 400;
    width: 84%;
    line-height: 70px;
    @media only screen and (max-width: 1050px) {
      width: 100%;
      font-size: 48px;
    }
  }
  
  .content__heading-span {
    color: var(--white_a700);
  }
  
  .content__heading-span-1 {
    color: var(--yellow_500);
  }
  
  .content__description-container {
    height: 90px;
    width: 38%;
    position: relative;
    align-content: center;
    @media only screen and (max-width: 1050px) {
      height: auto;
    }
  }
  
  .content__description {
    height: 100%;
    text-transform: uppercase;
    width: 100%;
    line-height: 25px;
  }
  
  .content__description-span {
    text-transform: lowercase;
    font-size: 13px;
    font-weight: 400;
  }
  
  .content__view-more {
    height: 10px;
    background-color: var(--yellow_500);
    width: 10px;
    position: absolute;
    left: 0px;
    top: 8px;
    margin: auto;
    border-radius: var(--radius-xs);
  }
  
  .form {
    height: 456px;
    margin-top: 76px;
    margin-left: 24px;
    align-self: stretch;
    position: relative;
    @media only screen and (max-width: 1050px) {
      margin-left: 0px;
    }
  }
  
  .form__input-group {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0px;
    top: 0px;
    margin: auto;
  }
  
  .form__input-container {
    gap: var(--space-xs);
    display: flex;
    align-self: stretch;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form__input--phone-number {
    color: var(--gray_800) !important;
  }
  
  .form__divider--phone {
    height: 1px;
    background-color: var(--white_a700);
    align-self: stretch;
    width: 100%;
  }
  
  .form__label--message {
    margin-top: 64px;
    font-family: Etna !important;
    text-transform: uppercase;
  }
  
  .form__input-group--email {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    right: 0px;
    top: 0px;
    margin: auto;
  }
  
  .form__input--company {
    color: var(--gray_800) !important;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    height: 30px;
    border-bottom: 1px solid var(--white_a700) !important;
  }
  
  .form__divider--main {
    height: 1px;
    background-color: var(--white_a700);
    width: 88%;
    position: absolute;
    bottom: 15%;
    left: 0px;
    margin: auto;
  }
  
  .form__submit-container {
    height: 136px;
    background-color: var(--white_a700);
    width: 136px;
    position: absolute;
    bottom: 1px;
    right: 2px;
    margin: auto;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
    @media only screen and (max-width: 1050px) {
      height: auto;
    }
  }
  
  .form__submit-container:hover {
    background-color: #f0f0f0;
  }
  
  .form__submit-container:active {
    background-color: #e0e0e0;
  }
  
  .form__submit-container:disabled {
    background-color: #8f8f8f;
    cursor: not-allowed;
  }
  
  .form__submit-button {
    color: var(--black_900) !important;
    text-transform: uppercase;
  }
  
  .stackdigitalcor {
    height: 435px !important;
    align-self: stretch;
    position: relative;
  }
  
  /* Removed CSS for the top part of the footer */
  
  .middle__background-image {
    height: 550px;
    width: 46%;
    object-fit: contain;
    position: absolute;
    bottom: -0.36px;
    right: -1px;
    margin: auto;
  }
  
  .middle__location-section {
    height: 388px;
    background-image: url(../public/images/contactus.webp);
    background-size: cover;
    background-repeat: no-repeat;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 64px 56px;
    @media only screen and (max-width: 1050px) {
      height: auto;
      padding: 20px;
    }
  }
  
  .middle__location-container {
    gap: 60px;
    display: flex;
    width: 88%;
    flex-direction: column;
    @media only screen and (max-width: 1050px) {
      width: 100%;
    }
  
    @media only screen and (max-width: 550px) {
      gap: 30px;
    }
    
  
  }
  
  .middle__location-container h6 {
    @media only screen and (max-width: 768px) {
      font-size: 10px !important;
    }
  }

  .middle__location-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .middle__label--location {
    font-family: Etna !important;
    text-transform: uppercase;
    font-size: 40px !important;
    @media only screen and (max-width: 1050px) {
      font-size: 38px !important;
    }
  
    @media only screen and (max-width: 550px) {
      font-size: 36px !important;
    }
  }
  
  .middle__address {
    text-transform: capitalize;
  }
  
  .middle__contact-container-1 {
    gap: 58px;
    display: flex;
    flex-direction: column;
    @media only screen and (max-width: 550px) {
      gap: 29px;
    }
  }
  
  .middle__contact-details--email-phone {
    text-transform: lowercase;
  }
  
  .middle__social-group {
    display: flex;
    justify-content: center;
    align-items: center;
    @media only screen and (max-width: 1050px) {
      flex-direction: column;
    }
  }
  
  .middle__social-links-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    @media only screen and (max-width: 1050px) {
      align-self: stretch;
    }
  }
  
  .middle__social-link--instagram {
    margin-left: 46px;
    text-transform: uppercase;
  }
  
  .middle__social-link--linkedin {
    margin-left: 48px;
    text-transform: uppercase;
  }
  




  /* Footer Layout */
.footer-section {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 60px 0 0 0;
  position: relative;
  margin-top: -350px;
  overflow: hidden;
  z-index: 10;
  margin-bottom: 0;
}

/* Footer Images */
.hom__image {
  opacity: 0.05;
  height: 552px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46%;
  object-fit: contain;
  z-index: 1;
  margin-bottom: -470px;
}

.middle__icon--vector {
  position: absolute;
  width: 212px;
  height: 192px;
  right: 10%;
  bottom: 120px;
  z-index: 5;
  opacity: 0.1;
}

.column-about-us__image {
  position: absolute;
  right: 9%;
  bottom: 200px;
  width: 112px;
  height: auto;
  z-index: 4;
  opacity: 0.1;
}

/* Footer Content */
.column-about-us {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 17%;
  right: 1px;
  margin: auto auto auto 114px;
}

.column-about-us__column {
  padding-left: 38px;
  padding-right: 38px;
  z-index: 7;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Footer Grid */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 20px;
  position: relative;
  z-index: 12;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background-color: white;
  width: 90%;
  margin-bottom: 45px;
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Typography */
.footer-title {
  font-family: Suifak;
  font-size: 32px;
  color: white;
  margin: 0 0 20px 0;
  text-align: left;
}

.footer-text {
  font-size: 14px;
  color: white;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav p {
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

/* Footer Form */
.footer-email {
  width: 100%;
  max-width: 250px;
  position: relative;
}

.footer-email input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 10px 0;
  color: white;
  outline: none;
  font-size: 14px;
}

.footer-send {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-send span {
  color: #F9E200;
  font-weight: 500;
  font-size: 14px;
}

.footer-send img {
  height: 8px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.footer-social img {
  height: 14px;
}

/* Responsive Styles */
@media only screen and (max-width: 1050px) {
  .column-about-us {
    margin-left: 0;
  }
  
  .column-about-us__column {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}

.footer__icon--vector {
  position: absolute;
  width: 212px;
  height: 192px;
  right: 10%;
  bottom: 18%;
  z-index: 5;
  opacity: 0.05;
  margin-top: 670px;
}

/* Message textarea styling */
textarea.form__input--fullname {
  resize: none;
  overflow-y: auto;
  min-height: 86px;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid var(--white_a700);
  background-color: transparent;
  color: var(--gray_800);
  outline: none;
  font-family: inherit;
  padding: 5px 0;
}/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.form__input--fullname {
  color: var(--gray_800) !important;
  margin-top: 14px;
}

.form__divider {
  height: 1px;
  margin-top: 12px;
  background-color: var(--white_a700);
  align-self: stretch;
  width: 100%;
}

.form__divider1 {
  position: relative;
  height: 1px;
  margin-top: 15px;
  background-color: var(--white_a700);
  align-self: stretch;
  width: 100%;
}

.form__input-group--phone {
  margin-top: 64px;
  gap: var(--space-sm);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

.form__label--name {
  font-family: Etna !important;
  text-transform: uppercase;
}

.navigation__item--home {
  text-transform: uppercase;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.contact-us {
  gap: 30px;
  background-color: var(--black_900);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.header {
  margin-top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header__row {
  gap: 6px;
  align-self: center;
  display: flex;
  align-items: center;
}

.header__title {
  color: var(--yellow_500) !important;
  font-family: Suifak !important;
  font-size: 80px;
  font-weight: 400;
  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }
}

.header__logo {
  height: 56px;
  width: 128px;
  object-fit: contain;
}

.header__menu {
  color: var(--white_a700);
  margin-bottom: 36px !important;
  font-family: Glacial Indifference;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  gap: 54px;
  display: flex;
  flex-wrap: wrap;
  @media only screen and (max-width: 1050px) {
    gap: 20px;
  }
}

.header__contact {
  margin-bottom: 26px;
  font-family: Etna !important;
  text-transform: uppercase;
}

.column {
  gap: 72px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  background-image: 
    linear-gradient(to bottom,
      #000000 1100px,
      transparent 100px
    ),
    linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7)),
    linear-gradient(to left, rgba(255,196,0,0.3), transparent 60%);
}

@media only screen and (max-width: 1050px) {
  .column {
      gap: 54px;
  }
}

@media only screen and (max-width: 550px) {
  .column {
      gap: 36px;
      margin-bottom: 3px !important;
  }
}

.columncontactus {
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contact-link {
  font-family: Etna !important;
  text-transform: uppercase;
  font-size: 64px;
  font-weight: 400;
}

.navigation {
  margin-top: 8px;
  gap: 4px;
  display: flex;
  flex-wrap: wrap;
}

.navigation__item--contact {
  color: var(--gray_800) !important;
  text-transform: uppercase;
}

.content {
  margin-top: 80px;
  gap: 38px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

.content__heading {
  font-family: Etna !important;
  text-transform: uppercase;
  font-size: 64px;
  font-weight: 400;
  width: 84%;
  line-height: 70px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    font-size: 48px;
  }
}

.content__heading-span {
  color: var(--white_a700);
}

.content__heading-span-1 {
  color: var(--yellow_500);
}

.content__description-container {
  height: 90px;
  width: 38%;
  position: relative;
  align-content: center;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.content__description {
  height: 100%;
  text-transform: uppercase;
  width: 100%;
  line-height: 25px;
}

.content__description-span {
  text-transform: lowercase;
  font-size: 13px;
  font-weight: 400;
}

.content__view-more {
  height: 10px;
  background-color: var(--yellow_500);
  width: 10px;
  position: absolute;
  left: 0px;
  top: 8px;
  margin: auto;
  border-radius: var(--radius-xs);
}

.form {
  height: 456px;
  margin-top: 76px;
  margin-left: 24px;
  align-self: stretch;
  position: relative;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.form__input-group {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: auto;
}

.form__input-container {
  gap: var(--space-xs);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

.form__input--phone-number {
  color: var(--gray_800) !important;
}

.form__divider--phone {
  height: 1px;
  background-color: var(--white_a700);
  align-self: stretch;
  width: 100%;
}

.form__label--message {
  margin-top: 64px;
  font-family: Etna !important;
  text-transform: uppercase;
}

.form__input-group--email {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  right: 0px;
  top: 0px;
  margin: auto;
}

.form__input--company {
  color: var(--gray_800) !important;
  padding-left: var(--space-xs);
  padding-right: var(--space-xs);
  height: 30px;
  border-bottom: 1px solid var(--white_a700) !important;
}

.form__divider--main {
  height: 1px;
  background-color: var(--white_a700);
  width: 88%;
  position: absolute;
  bottom: 15%;
  left: 0px;
  margin: auto;
}

.form__submit-container {
  height: 136px;
  background-color: var(--white_a700);
  width: 136px;
  position: absolute;
  bottom: 1px;
  right: 2px;
  margin: auto;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.form__submit-container:hover {
  background-color: #f0f0f0;
}

.form__submit-container:active {
  background-color: #e0e0e0;
}

.form__submit-container:disabled {
  background-color: #8f8f8f;
  cursor: not-allowed;
}

.form__submit-button {
  color: var(--black_900) !important;
  text-transform: uppercase;
}

.stackdigitalcor {
  height: 400px;
  align-self: stretch;
  position: relative;
}

/* Removed CSS for the top part of the footer */

.middle__background-image {
  height: 550px;
  width: 46%;
  object-fit: contain;
  position: absolute;
  bottom: -0.36px;
  right: -1px;
  margin: auto;
}

.middle__location-section {
  height: 388px;
  background-image: url(../public/images/contactus.webp);
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 56px;
  @media only screen and (max-width: 1050px) {
    height: auto;
    padding: 20px;
  }
  @media only screen and (max-width: 768px) {
    background-image: url(../public/images/contactusmobile.webp);
    margin-top: 10px;
    position: relative;
  }
}

.middle__location-container {
  gap: 60px;
  display: flex;
  width: 88%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    gap: 30px;
  }
}

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

.middle__label--location {
  font-family: Etna !important;
  text-transform: uppercase;
  font-size: 40px !important;
  @media only screen and (max-width: 1050px) {
    font-size: 38px !important;
  }

  @media only screen and (max-width: 550px) {
    font-size: 36px !important;
  }
}

.middle__address {
  text-transform: capitalize;
}

.middle__contact-container-1 {
  gap: 58px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    gap: 29px;
  }
}

.middle__contact-details--email-phone {
  text-transform: lowercase;
}

.middle__social-group {
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.middle__social-links-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.middle__social-link--instagram {
  margin-left: 46px;
  text-transform: uppercase;
}

.middle__social-link--linkedin {
  margin-left: 48px;
  text-transform: uppercase;
}





/* Footer Layout */
.footer-section {
width: 100%;
background-color: rgba(0, 0, 0, 0);
padding: 60px 0 0 0;
position: relative;
margin-top: -350px;
overflow: hidden;
z-index: 10;
margin-bottom: 0;
}

/* Footer Images */
.hom__image {
opacity: 0.05;
height: 552px;
position: absolute;
bottom: 0;
right: 0;
width: 46%;
object-fit: contain;
z-index: 1;
margin-bottom: -470px;
}

.middle__icon--vector {
position: absolute;
width: 212px;
height: 192px;
right: 10%;
bottom: 120px;
z-index: 5;
opacity: 0.1;
}

.column-about-us__image {
position: absolute;
right: 9%;
bottom: 200px;
width: 112px;
height: auto;
z-index: 4;
opacity: 0.1;
}

/* Footer Content */
.column-about-us {
flex: 1;
display: flex;
flex-direction: column;
position: absolute;
bottom: 17%;
right: 1px;
margin: auto auto auto 114px;
}

.column-about-us__column {
padding-left: 38px;
padding-right: 38px;
z-index: 7;
position: relative;
display: flex;
flex-direction: column;
align-items: flex-end;
}

/* Footer Grid */
.footer-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding: 0 20px;
position: relative;
z-index: 12;
}

/* Footer Divider */
.footer-divider {
height: 1px;
background-color: white;
width: 90%;
margin-bottom: 45px;
margin-top: -20px;
margin-left: auto;
margin-right: auto;
}

/* Footer Typography */
.footer-title {
font-family: Suifak;
font-size: 32px;
color: white;
margin: 0 0 20px 0;
text-align: left;
}

.footer-text {
font-size: 14px;
color: white;
margin: 0 0 20px 0;
line-height: 1.4;
}

/* Footer Navigation */
.footer-nav {
display: flex;
flex-direction: row;
gap: 50px;
justify-content: center;
align-items: center;
}

.footer-nav a {
text-decoration: none;
}

.footer-nav p {
text-transform: uppercase;
color: white;
font-weight: 500;
font-size: 14px;
}

/* Footer Form */
.footer-email {
width: 100%;
max-width: 250px;
position: relative;
}

.footer-email input {
width: 100%;
background-color: transparent;
border: none;
border-bottom: 1px solid white;
padding: 10px 0;
color: white;
outline: none;
font-size: 14px;
}

.footer-send {
position: absolute;
right: 0;
bottom: 10px;
display: flex;
align-items: center;
gap: 5px;
}

.footer-send span {
color: #F9E200;
font-weight: 500;
font-size: 14px;
}

.footer-send img {
height: 8px;
}

/* Social Icons */
.footer-social {
display: flex;
gap: 20px;
margin-top: 15px;
}

.footer-social img {
height: 14px;
}

/* Responsive Styles */
@media only screen and (max-width: 1050px) {
.column-about-us {
  margin-left: 0;
}

.column-about-us__column {
  padding-left: 20px;
  padding-right: 20px;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-nav {
  flex-direction: column;
  gap: 20px;
}
}

.footer__icon--vector {
position: absolute;
width: 212px;
height: 192px;
right: 10%;
bottom: 18%;
z-index: 5;
opacity: 0.05;
margin-top: 670px;
}

/* Message textarea styling */
textarea.form__input--fullname {
resize: none;
overflow-y: auto;
min-height: 86px;
box-sizing: border-box;
border: none;
border-bottom: 1px solid var(--white_a700);
background-color: transparent;
color: var(--gray_800);
outline: none;
font-family: inherit;
padding: 5px 0;
}