@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat/static/Montserrat-Regular.ttf")
    format("truetype");
}

@font-face {
  font-family: "Ubuntu Sans";
  src: url("./fonts/Ubuntu_Sans/static/UbuntuSans-Regular.ttf")
    format("truetype");
}

@font-face {
  font-family: "Questrial";
  src: url("./fonts/Questrial-Regular.ttf") format("truetype");
}

:root {
  --background-color: black;
  --font-family-1: "Questrial", sans-serif;
  --font-family-2: "Montserrat", sans-serif;
  --font-family-3: "Ubuntu Sans", sans-serif;

  --hero-heading-font: 6rem;
  --hero-line-height: 90px;
  --hero-letter-spacing: -7px;

  --heading-color: rgb(129, 129, 129);
  --heading-font-size: 4.5rem;
  --heading-font-weight: 100;
  --heading-letter-spacing: -3px;
  --heading-line-height: 70px;

  --para-font-color: #7c7c7c;
  --para-font-size: 1.2rem;
  --para-letter-spacing: 0.3px;
  --para-line-height: 20px;

  --joke-para-color: #414040;
  --joke-line-color: #1f1e1e;
}
section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-3);
}

/* ========================= SECTION 1 STYLE ============================= */
.sec-1-body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.sec-1-body-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 80%;
}

.sec-1-heading h1 {
  margin-top: 200px;
  color: #b1b1b1;
  font-family: var(--font-family-3);
  font-size: var(--hero-heading-font);
  line-height: var(--hero-line-height);
  letter-spacing: var(--hero-letter-spacing);
  width: 90%;
}

#hero-heading {
  font-variation-settings: "wght" 600, "opsz" 10;
  transition: font-variation-settings 0.1s linear;
}
.single-letter {
  display: inline-block;
}

.sec-1-row2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.text-content {
  width: 33%;
}

.sec-1-subheading {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sec-1-subheading h2 {
  margin-top: 5px;
  font-family: var(--font-family-3);
  font-size: 1.3rem;
  font-weight: 400;
  color: #8b8b8b;
  line-height: 20px;
}

.sec-1-subheading p {
  color: var(--para-font-color);
  margin-top: 15px;
  letter-spacing: -1px;
  line-height: 17px;
  font-size: 1.1rem;
}

.image-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 100px;
}

.contact-info .image-block img {
  width: 300px;
  mix-blend-mode: difference;
  filter: grayscale(100%);
  opacity: 0.6;
  margin-bottom: 15px;
}

.image-block .para {
  width: 300px;
}

.image-block .para p {
  color: var(--joke-para-color);
  letter-spacing: -1px;
  line-height: 15px;
  font-size: 1rem;
  position: relative;
}

.image-block p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 1px;
  height: 70%;
  background-color: var(--joke-line-color);
}

.image-block p::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -20px;
  width: 60%;
  height: 1px;
  background-color: var(--joke-line-color);
}

.sec-1-btn-link {
  width: 65%;
  display: flex;
  gap: 20px;
  margin-top: 3%;
}

.animated-button {
  font-family: var(--font-family-3);
}

.wp-button {
  background-color: rgb(66, 126, 66) !important;
}

.animated-button {
  font-family: var(--font-family-3);
}


.button-el {
  --duration: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 13rem;
  height: 3.5rem;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 3rem;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: background-color var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              color var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              border-color var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
}

.button-el:hover {
  background-color: #2b2b2b;
  color: #e7e7e7;
}

.button-el > * {
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-el:hover > * {
  transform: translateX(-1rem);
}

.button-label-wrap {
  position: relative;
  display: inline-block;
  perspective: 800px;
  overflow: hidden;
  transform: translateX(6px);
  height: 1.3em;
  line-height: 1.3em;
}

.inside-label {
  display: block;
  transform-origin: 50% 100%;
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.inside-label:nth-child(1) {
  transform: translateY(0) rotateX(0deg);
}

.inside-label:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%) rotateX(-90deg);
}

.button-el:hover .inside-label:nth-child(1) {
  transform: translateY(-100%) rotateX(90deg);
}

.button-el:hover .inside-label:nth-child(2) {
  transform: translateY(0) rotateX(0deg);
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  z-index: 1;
  transform: translateX(1rem);
  opacity: 0;
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              opacity var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              background-color var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              color var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-arrow::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: left var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              opacity var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              width var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-el:hover .button-arrow {
  transform: translateX(0);
  opacity: 1;
  color: #000000;
}

.button-el:hover .button-arrow::before {
  left: 0;
  opacity: 1;
  width: 100%;
}

.icon {
  display: inline-flex;
  transition: transform var(--duration) cubic-bezier(0.4, 0, 0.2, 1),
              opacity var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.button-el:hover .icon {
  transform: translateX(-2.5rem);
  opacity: 0;
}

.--pos-l svg,
.--pos-r svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
}

/* ================================ SECTION 2 STYLE ======================= */

.sec-2-body {
  width: 95%;
  height: 95vh;
  display: flex;
  align-items: center;
  border-radius: 50px;
  justify-content: center;
  background: linear-gradient(45deg, #1a1b1d, #343538);
}

.second-body-wrapper {
  width: 98%;
  height: 95%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 50px;
  border: 1px solid #1a1919;
  border-radius: 30px;
  gap: 40px;
}

.sec-2-heading h2 {
  margin-top: 50px;
  color: var(--heading-color);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
  letter-spacing: var(--heading-letter-spacing);
  line-height: var(--heading-line-height);
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  width: 100%;
  font-family: var(--font-family-1);
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 55%;
}

.input-wrapper {
  display: flex;
  gap: 50px;
}

.first-wrapper {
  width: 100%;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.check-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-container {
  position: relative;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkbox-label {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #71717165;
  border-radius: 50px;
  cursor: pointer;
  user-select: none;
  color: #5c5c5c;
  transition: all 0.2s;
  font-size: 1.2rem;
}

.checkbox-label:hover {
  border-color: #f88c18;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label {
  background-color: transparent;
  border-color: #f88c18;
}

input[type="text"],
input[type="email"],
input[type="number"] {
  border: none;
  border-bottom: 1px solid #71717165;
  background: transparent;
  font-size: 1.2rem;
  width: 100%;
  outline: none;
  padding-top: 10px;
  padding-bottom: 3px;
  resize: none;
  color: #5c5c5c;
  font-family: var(--font-family-1);
}

.hear-about-wrapper {
  position: relative;
  width: 100%;
  font-family: var(--font-family-1);
  color: #5c5c5c;
}

.hear-about-us-dropdown .custom-dropdown {
  border: none;
  border-bottom: 1px solid #71717165;
  background: transparent;
  font-size: 1.2rem;
  width: 100%;
  outline: none;
  padding-top: 10px;
  padding-bottom: 3px;
  color: #5c5c5c;
  font-family: var(--font-family-1);
  cursor: pointer;
}

.hear-about-us-dropdown .select-items div:hover {
  border-color: #747373;
  color: #969595;
}

.hear-about-us-dropdown .select-items {
  width: 100%;
  position: absolute;
  background: rgb(29, 29, 29);
  color: #5c5c5c;
  border: 1px solid #71717165;
  border-radius: 20px;
  top: 110%;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  overflow: hidden;
}

.select-items div {
  padding: 10px 30px;
  cursor: pointer;
  color: #71717165;
}

.select-selected:hover,
.select-items div:hover {
  border-color: #747373;
  color: #969595;
}

.select-items div:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.select-arrow-active::after {
  transform: rotate(180deg);
}

.message-area {
  margin-top: 20px;
}

.message-area textarea {
  font-family: var(--font-family-1);
  border: none;
  border-bottom: 1px solid #71717165;
  background: transparent;
  font-size: 1.2rem;
  width: 100%;
  outline: none;
  resize: none;
  color: #5c5c5c;
  padding-top: 8px;
  line-height: 0.8;
  height: 30px;
}

.input-container input[type="email"] {
  width: 150%;
}

.third-wrapper input[type="number"] {
  width: 20%;
}

.form-container form ::placeholder {
  color: #5c5c5c;
  opacity: 1;
  font-size: 1.2rem;
  font-weight: 100;
  font-family: var(--font-family-1);
  letter-spacing: -1px;
}

.attachment-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.attachment-label {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #71717165;
  font-size: 1.2rem;
  color: #5c5c5c;
  cursor: pointer;
  gap: 10px;
}

.attachment-label i {
  font-size: 1rem;
  color: #5c5c5c;
}

.send-button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.contact-form-button {
  background-color: #4e3cc8;
  padding: 16px 32px;
  border-radius: 32px;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 170px;
  outline: none;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-button:hover {
  background-color: #392a9e;
}

.contact-form-button-text {
  transition: transform 200ms ease;
}

.contact-form-button-text.loading:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4, end) 900ms infinite;
  animation: ellipsis steps(4, end) 900ms infinite;
  content: "\2026";
  width: 0px;
}

.contact-form-button i {
  font-size: 1.2rem;
}

.contact-form-button .icon-send {
  margin-right: 10px;
  transition: 400ms ease;
}

.contact-form-button .icon-check {
  margin-right: 10px;
  opacity: 0;
  position: absolute;
  left: 60px;
  transform: translateY(-80px);
  transition: 200ms ease;
}

.notransition {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

@keyframes ellipsis {
  to {
    width: 20px;
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 20px;
  }
}

.material-icons {
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

/* ------------------------------------ RESPONSIVENESS ------------------ */
@media (min-width: 1367px) and (max-width: 1440px) {
  .sec-1-heading h1 {
    margin-top: 15%;
    font-size: 4rem;
    letter-spacing: -3px;
    line-height: 0.8;
  }
  .text-content {
    width: 80%;
  }
  .text-content h2 {
    width: 100%;
  }
  .text-content P {
    width: 60%;
  }

  .contact-sec-2 {
    height: 105vh;
  }

  .sec-2-body {
    height: 100vh !important;
  }

  .sec-2-heading h2 {
    margin-top: 0;
    padding-left: 30px;
    font-size: 3rem;
  }

  .form-container {
    padding-left: 30px;
  }
  .checkbox-label {
    font-size: 0.9rem;
  }

  .form-container {
    position: relative;
  }
  .send-button-container {
    margin-bottom: 50px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
@media screen and (max-width: 1366px) {
  .sec-1-heading h1 {
    margin-top: 10%;
    font-size: 4rem;
    letter-spacing: -3px;
    line-height: 0.8;
  }
  .text-content {
    width: 80%;
  }
  .text-content h2 {
    width: 100%;
  }
  .text-content P {
    width: 60%;
  }

  .contact-sec-2 {
    height: 110vh;
  }

  .sec-2-body {
    height: 105vh !important;
  }

  .sec-2-heading h2 {
    margin-top: 2%;
    padding-left: 30px;
    font-size: 3rem;
  }

  .form-container {
    padding-left: 30px;
  }
  .checkbox-label {
    font-size: 0.9rem;
  }

  .form-container {
    position: relative;
  }
  .send-button-container {
    margin-bottom: 50px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .sec-1-heading h1 {
    margin-top: 15%;
    font-size: 3rem;
    letter-spacing: -3px;
    line-height: 0.8;
  }
  .text-content h2 {
    width: 100%;
  }
  .text-content p {
    width: 80%;
  }

  .contact-info .image-block img {
    width: 250px;
  }

  .contact-info .image-block .para {
    width: 250px;
  }
  .contact-info .image-block .para p {
    font-size: 0.8rem;
    line-height: 0.9;
    letter-spacing: normal;
  }
  .sec-1-body-content {
    padding-left: 30px;
    width: 95%;
  }

  input[type="text"],
  input[type="email"],
  input[type="number"] {
    font-size: 1rem;
  }

  .form-container form ::placeholder {
    font-size: 1rem;
  }
  #labelText {
    font-size: 1rem;
  }
  .hear-about-us-dropdown .custom-dropdown {
    font-size: 1rem;
  }

  .input-container {
    width: 90% !important;
  }
}

@media screen and (max-width: 970px) {
  .input-container {
    width: 90%;
  }

  .send-button-container {
    position: relative;
    left: 0;
    bottom: 30px;
  }

  .contact-form-button {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 160px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
@media (max-width: 786px) {
  .sec-1-heading h1 {
    margin-top: 20%;
    font-size: 3rem;
    letter-spacing: -3px;
    line-height: 0.8;
  }
  .sec-2-heading h2 {
    font-size: 2rem;
    margin-top: 5%;
    line-height: 1;
    letter-spacing: -2px;
  }

  .image-blend-text {
    font-size: 0.57rem;
    line-height: 0.5;
  }

  .image-blend-text {
    font-size: 0.52rem;
    line-height: 0.5;
  }
}
