
:root {
  /* fonts */
  --body-large-bold: Inter;
  --font-roboto: Roboto;
  --font-poppins: Poppins;
  --font-open-sans: "Open Sans";
  --font-montserrat: Montserrat;
  --font-dm-sans: "DM Sans";

  /* font sizes */
  --font-size-2xl-5: 21.5px;
  --headline-h3-inter-bold-size: 18px;
  --body-large-bold-size: 16px;
  --font-size-xs: 12px;
  --font-size-xl: 20px;

  /* Colors */
  --color: #fff;
  --color-orange: #f9b107;
  --color-whitesmoke-100: #f9f9fb;
  --color-gainsboro-100: #ddd;
  --color-silver: #c7c7c7;
  --color-gray-100: rgba(255, 255, 255, 0.51);

  /* Gaps */
  --gap-3xs: 10px;
  --gap-smi: 13px;
  --gap-sm: 14px;
  --gap-11xs: 2px;

  /* Border radiuses */
  --br-172xl-4: 191.4px;
  --br-5xs: 8px;
}

.btn-custom{
  display: flex;
  padding: 10px 100px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  color: white;
  background: #F9B107;
}

.contact-about-custom-wrapper{
  margin-top: 160px;
}

.contact-about-custom-heading{
  color: #FFF;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 54.5px; /* 389.286% */
  text-transform: uppercase;
}

.contact-about-custom-heading-2{
  color: #FFF;
  font-family: Poppins;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px; /* 105.769% */
  text-transform: uppercase;
}

.contact-about-custom-paragraph{
  color: #FFF;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.call-icon-card{
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background-color: white;
  border-radius: 50px;
  padding: 5px;
}

.call-text-1{
  color: var(--01, #FFF);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 35.893px; 
}

.contact-form-heading{
  color: #FFF;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 53.5px; 
  text-transform: capitalize;
}

.contact-form-wrapper{
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.35);
  width: 596px; 
  height: 812px;
}

.label-custom{
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30.6px; /* 170% */
  text-transform: uppercase;
}

::-webkit-input-placeholder{
  color: #C7C7C7;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30.6px; /* 170% */
}

::placeholder {
  color: #C7C7C7;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30.6px; /* 170% */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #C7C7C7;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 30.6px; /* 170% */
}

.form-container{
  width: 447px !important;
}

.intro {
  /* background-image: url("./rectangle-24@2x.png"); */
  height: 120vh;
}

@media only screen and (max-width: 600px) {
  .intro {
    /* background-image: url("./rectangle-24@2x.png"); */
    height: 1100px;
  }

  .contact-about-custom-wrapper {
    margin-top: 0px;
  }

  .contact-about-custom-heading-2 {
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 37px;
    text-transform: uppercase;
  }

  .contact-form-wrapper {
    margin-top: 0px;
    background: rgba(0, 0, 0, 0.35);
    width: 100%;
  }

  .contact-form-heading {
    color: #FFF;
    font-family: Poppins;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.5px;
    text-transform: capitalize;
  }

  .form-container{
    width: 100% !important;
  }
  

}