@font-face {
  font-family: 'Univers Next Pro';
  src: url('/fonts/UniversNextProExtraBlackExtended.woff2') format('woff2'),
  url('/fonts/UniversNextProExtraBlackExtended.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Univers Next Pro';
  src: url('/fonts/UniversNextProBoldExtended.woff2') format('woff2'),
  url('/fonts/UniversNextProBoldExtended.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-color: #FF4739;
  --white-color: #f9f9f9;
  --black-color: #090909;
  --text-font: 'IBM Plex Sans', sans-serif;
  --header-font: 'Univers Next Pro', sans-serif;
}

/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2 {
  font-family: var(--header-font);
  font-weight: 900;
}

h2 {
  color: var(--primary-color);
}

section {
  margin: 0;
  padding: 0;
}

.banner-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.button-container {
  padding-top: 2rem;
}

.container-1 {
  color: var(--white-color);
}

.content-container-1, .content-container-right, .content-container-left {
  padding: 3rem 4rem 3rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.logo {
  height: 40px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #FF4739;
  text-transform: uppercase;
}

.banner-header {
  margin-bottom: 2rem;
  color: var(--white-color);
}

.button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  border: none;
  text-decoration: none;
  color: var(--black-color);
}

.button:hover {
  background-color: #ef3e31;
}

.container-2 {
  min-height: 45vh;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  margin-bottom: 2rem;
}

.text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container-3 {
  min-height: 40vh;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-4 {
  background-color: var(--black-color);
  min-height: 45vh;
  color: var(--white-color);
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.content-container-with-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-container {
  width: 70vw;
  padding: 3rem 2rem;
}

.image-container {
  width: 30vw;
  height: 45vh;
  /* height: 75vh; */
  /* flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.image-4-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container-5 {
  /* background-image: 
  linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('./img/five.JPG'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container-5 {
  display: flex;
  width: 80vw;
  flex-direction: column;
  align-items: center;
}

.cta-header {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.cta-list {
  color: var(--white-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.check-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.cta-text {
  width: 70vw;
  padding: 1.5rem 0;
  font-style: italic;
  color: var(--white-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
}

.text-emphasis {
  color: var(--primary-color);
}

.text-italic {
  font-style: italic;
}

.text-light-grey {
  color: #c8c8c8;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  .container-1 {
    background: linear-gradient(to right, #090909 40%, rgba(0, 0, 0, 0.7) 100%), url('./img/one.JPG') no-repeat right center;
    background-size: cover;
  }

  .image-1 {
    display: none;
  }

  .container-2 {
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./img/two_copy.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }

  .image-2-container {
    display: none;
  }

  .container-3 {
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./img/three_copy.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .image-3-container {
    display: none;
  }

  .image-4-container {
    display: none;
  }

  .container-5 {
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('./img/five.JPG');
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
    color: var(--primary-color);
  }

  .text {
    font-size: 14px;
    gap: 1.2rem;
  }

  .container-1 {
    background-color: var(--black-color);
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .content-container-1 {
    width: 45vw;
    padding: 0 0 0 8rem;
  }

  .banner-text {
    font-size: 18px;
  }

  .image-1 {
    width: 55vw;
    background: linear-gradient(to right, var(--black-color) 5%, rgba(0, 0, 0, 0.1) 100%), url('./img/one_copy.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
  }

  .container-2 {
    background-color: var(--black-color);
    height: 70vh;
    /* display: flex;
    align-items: center; */
  }

  .content-container-right {
    width: 48vw;
    padding: 0 9rem 0 5rem;
  }

  .image-2-container, .image-3-container {
    width: 52vw;
    height: 70vh;
  }

  /* .image-3-container {
    width: 50vw;
    height: 70vh;
  } */

  .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .container-3 {
    background-color: var(--black-color);
    height: 70vh;
    /* display: flex;
    align-items: center; */
  }

  .content-container-left {
    width: 48vw;
    padding: 0 5rem 0 8rem;
  }

  .image-container {
    display: none;
  }

  .container-4 {
    background-color: var(--black-color);
    height: 75vh;
    display: flex;
    align-items: center;
  }

  .text-container {
    padding: 3rem 9rem 3rem 2rem;
    width: 55vw;
  }

  .image-4-container {
    width: 45vw;
    padding: 4rem;
    height: 75vh;
  }

  .button {
    font-size: 14px;
    padding: 0.8rem 1.5rem;
  }

  .button-container {
    padding-top: 2.5rem;
  }

  .container-5 {
    min-height: 70vh;
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('./img/five_copy.JPG');
    /* display: flex;
    align-items: center; */
  }

  .cta-list {
    font-size: 14px;
  }

  .cta-list li {
    margin-bottom: 0.8rem;
  }

  .cta-text {
    width: 21rem;
    font-size: 12px;
  }

  .cta-header {
    margin-bottom: 1.5rem;
  }
}