/* Add font files  */
/* Regular */
@font-face {
  font-family: "Neue Haas Display";
  src: url("fonts/NeueHaasDisplay-Roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "Neue Haas Display";
  src: url("fonts/NeueHaasDisplay-RomanItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: "Neue Haas Display";
  src: url("fonts/NeueHaasDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Medium Italic */
@font-face {
  font-family: "Neue Haas Display";
  src: url("fonts/NeueHaasDisplay-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Black */
@font-face {
  font-family: "Neue Haas Display";
  src: url("fonts/NeueHaasDisplay-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Black Italic */
@font-face {
  font-family: "Neue Haas Display";
  src: url("fonts/NeueHaasDisplay-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

.text-yellow {
  color: #FFFB00;
}

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Neue Haas Display";

}

img {
  max-width: 100%;
  height: auto;
}

body {
  background-color: #000;
  color: white;
}

/*FONTS*/
p {
  font-weight: 400;
  font-size: 22px;
}

/*HEADER*/

.logo {
  width: 160px;
}

.header {
  background: url(images/header.jpg);
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  min-height: 1200px;
}

.header-content {
  padding: 50px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 130px;
  gap: 1;
}

.header-text>p {
  font-size: 210px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 222px;
}

.header-text>p>span {
  display: block;
}

.contact-info {
  color: white;
}

/*MAIN*/
.main {
  padding: 0 40px;
  display: flex;
  gap: 40px;
  margin-top: -270px;
}

.promo-image {
  flex: 1;
}

.promo-image img {
  width: 100%;
  height: auto;
}

.contact-form {
  margin-top: -200px;
  flex: 1;
  padding: 40px;
  border: 1px solid #292929;
  max-width: 860px;
  background-color: #000;
  border-radius: 2px;
  box-shadow: 0 0 30px #504d08;
}

.contact-form>.title {
  font-size: 56px;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.contact-form>.title>img {
  padding-left: 24px;
}

.custom-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
  height: calc(100% - 80px);
}

.custom-form>.row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 28px;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  font-size: 28px;
  border: 1px solid #313131;
  background-color: #141414;
  color: white;
  width: 100%;
  border-radius: 2px;
  box-sizing: border-box;
}

.form-group textarea {
  flex: 1;
}

.no-flex {
  flex: 0;
}

.full-width-btn {
  padding: 1rem;
  font-size: 28px;
  text-transform: uppercase;
  background-color: #167FF0;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  font-weight: 900;
}

.full-width-btn:hover {
  background-color: #0056b3;
}

.main-text {
  display: flex;
  align-content: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
}

.main-text>.highlight {
  flex: 1;
}

.main-text p {
  flex: 1;
  padding: 0 40px;
  font-size: 28px;
  line-height: 135%;
  ;
}

.main-text>.highlight>span {
  font-size: 96px;
  display: block;
  text-align: right;
}

.footer {
  border-top: 1px solid #292929;
  padding-top: 40px;
  margin: 40px;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

@media (max-width: 1300px) {
  .promo-image {
    display: none;
  }

  .contact-form {
    max-width: 100%;
  }

  .main {
    margin-top: -100px;
  }

  .custom-form {
    height: auto;
  }
}

@media (max-width: 800px) {
  .highlight {
    display: none;
  }

  .main {
    margin-top: 160px;
  }

  .header-text>p {
    font-size: 74px;
    line-height: 80px;
  }

  .header {
    height: auto;
    background-size: cover;
    min-height: auto;
  }

  .header-top {
    margin-bottom: 60px;
  }
  .logo {
    width: 130px;
  }
}