/* --- ES-Face Light --- */
@font-face {
  font-family: 'ES-Face';
  src: url('fonts/ESFace-Light.otf') format('opentype');
  font-weight: 300; /* 'light' corresponds to a weight of 300 */
  font-style: normal;
}

/* --- ES-Face Regular --- */
@font-face {
  font-family: 'ES-Face';
  src: url('fonts/ESFace-Regular.otf') format('opentype');
  font-weight: 400; /* 'normal' or 'regular' is 400 */
  font-style: normal;
}

/* --- ES-Face Bold --- */
@font-face {
  font-family: 'ES-Face';
  src: url('fonts/ESFace-Bold.otf') format('opentype');
  font-weight: 700; /* 'bold' is 700 */
  font-style: normal;
}

@font-face {
  font-family: 'thefuture';
  src: url('fonts/the-future-mono-regular.woff2') format('woff2');
  font-weight: 400; /* 'normal' or 'regular' is 400 */
  font-style: normal;
}

@font-face {
  font-family: 'gobold';
  src: url('fonts/Gobold-Uplow.otf') format('opentype');
  font-weight: 400; /* 'normal' or 'regular' is 400 */
  font-style: normal;
}

@font-face {
  font-family: 'gobold';
  src: url('fonts/Gobold_Light.ttf') format('truetype');
  font-weight: 300; /* 'normal' or 'regular' is 400 */
  font-style: normal;
}

/* General Body & Font Styles */
body {
    font-family: "gobold", sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: black;
}

.main {
    display: flex;
    flex-direction: column;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header {
    display: flex;
    flex-direction: row;
}

.header img {
    width: 100%;
    height: auto;
}

.footer-container {
    margin-top: 15px;
    margin-bottom: 35px;
    font-weight: 300;
    font-size: 1rem;
    justify-content: center;
}

.image-container-logo {
  width: 30vw;
  height: 100%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the key property */
  object-position: center; /* Optional: centers the image within the container */
}

.image-container-banner img {
    object-fit: contain;
}

.text-container {
    margin: 0 auto;
}

.text-container, .text-col-2, .footer-container {
    display: flex;
    flex-direction: row;
    color: #E7BD51;
}

.col2-sub-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    margin-left: 10px;
    line-height: 2rem;
}

.text-col-2 img {
    width: 120px;
    height: auto;
}

.text {
    margin-bottom: 10px;
    line-height: 1.6rem;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.col-1 {
    margin-right: 30px;
}

.text-1 {
    color: white;
    font-size: 2.8rem;
    line-height: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-2, .text-3 {
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 300;
}

.text-4 {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

@media (max-width: 1200px) {
    .text-1 {
        font-size: 2.3rem;
        line-height: 4rem;
        margin-top: 20px;
    }
}

@media (max-width: 850px) {
    .image-container-logo {
        width: 100%;
    }
    .text-container {
        flex-direction: column;
        align-items: center;
    }

    .col-2 {
        margin-top: 30px;
    }
}