@font-face {
  font-family: "Pixelify Sans";
  src: url("../assets/fonts/PixelifySans-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

body {
  background: black;
  margin: 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Pixelify Sans", sans-serif;
  color: #ffffff;
  font-weight: 400;
}
body p {
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px;
  font-weight: 300;
  color: #b8b8b8;
  letter-spacing: 0.01rem;
  line-height: 141%;
}

.button {
  background: white;
  color: black;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600;
  padding: 5px 26px;
  text-decoration: none;
  letter-spacing: 0.01rem;
  text-align: center;
}

.hero {
  height: 90svh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1095px) {
  .hero {
    height: 600px;
  }
}
@media screen and (max-height: 540px) {
  .hero {
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    height: auto;
  }
}
.hero__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 1095px) {
  .hero__inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 576px) {
  .hero__inner {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    max-width: 100vw;
    height: 100%;
  }
}
@media screen and (max-height: 540px) {
  .hero__inner {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    max-width: 100vw;
    padding: 0 90px;
  }
}
.hero__inner__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .hero__inner__content {
    padding: 0 32px;
  }
}
.hero__inner__content__heading {
  color: #FFF;
  font-family: "Pixelify Sans", sans-serif;
  font-size: 62px;
  font-style: normal;
  font-weight: 400;
  line-height: 83.502%;
  min-width: 470px;
  transform: translateX(-4px);
  position: relative;
  z-index: 2;
  transition: font-size 0.2s ease-in-out;
}
@media screen and (max-width: 576px) {
  .hero__inner__content__heading {
    font-size: 62px;
    min-width: unset;
  }
}
@media screen and (max-width: 533px) {
  .hero__inner__content__heading {
    font-size: 60px;
  }
}
@media screen and (max-width: 425px) {
  .hero__inner__content__heading {
    font-size: 45px;
  }
}
@media screen and (max-width: 340px) {
  .hero__inner__content__heading {
    font-size: 40px;
  }
}
.hero__inner__content__heading__subtitle {
  display: block;
  font-family: "Open Sans", sans-serif !important;
  font-weight: unset;
  line-height: unset;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01rem;
  line-height: 1.2rem;
  margin-top: 18px;
  transform: translateX(4px);
  color: #dddddd;
}
.hero__inner__content__body {
  margin-top: 30px;
  max-width: 460px;
}
.hero__inner__content__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
@media screen and (max-width: 440px) {
  .hero__inner__content__controls__button {
    width: 50%;
  }
}
.hero__inner__content__controls__socials {
  display: flex;
  gap: 8px;
  text-decoration: none;
}
.hero__inner__content__controls__socials a > svg {
  transition: transform 0.2s ease-in-out;
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 576px) {
  .hero__inner__content__controls__socials a > svg {
    width: 28px;
    height: 28px;
  }
}
.hero__inner__content__controls__socials a:hover svg {
  transform: scale(0.97);
}
.hero__inner__image {
  min-width: 440px;
  min-height: 440px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1095px) {
  .hero__inner__image {
    position: relative;
    top: unset;
    right: unset;
    transform: scale(1.75);
  }
}
@media screen and (max-width: 576px) {
  .hero__inner__image {
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    transform: unset;
  }
}
.hero__inner__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 1.07%, rgba(0, 0, 0, 0) 99.09%);
  transform: scale(1.05);
}
@media screen and (max-width: 1095px) {
  .hero__inner__image::after {
    background: linear-gradient(0deg, #000 1.07%, rgba(0, 0, 0, 0) 99.09%);
  }
}
.hero__inner__image__asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.introduction {
  padding: 0 32px;
}
@media screen and (max-width: 576px) {
  .introduction {
    margin-top: 196px;
  }
}
.introduction__inner {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.introduction__inner__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4px;
}
.introduction__inner__text__heading {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600;
  max-width: 358px;
  letter-spacing: 0.02rem;
  font-size: 24px;
}
.introduction__inner__text__body {
  font-weight: 300;
  margin-top: 16px;
  max-width: 320px;
}

.carousel {
  margin-top: 90px;
  overflow-x: hidden;
  position: relative;
}
.carousel::before, .carousel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 25vw;
  height: 100%;
  background: linear-gradient(90deg, #000 17.52%, rgba(0, 0, 0, 0) 97.77%);
}
@media screen and (min-width: 1460px) {
  .carousel::before, .carousel::after {
    width: 40vw;
  }
}
.carousel::after {
  left: unset;
  right: 0;
  background: linear-gradient(-90deg, #000 17.52%, rgba(0, 0, 0, 0) 97.77%);
}
.carousel__logo {
  border: 1px solid #212121;
  border-radius: 3px;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move exactly half the width */
  }
}
.carousel .marquee {
  display: flex;
  width: fit-content;
}
.carousel .marquee.animate {
  animation: scroll 60s linear infinite;
  transition: unset;
}
@media screen and (max-width: 576px) {
  .carousel .marquee.animate {
    animation: scroll 40s linear infinite;
  }
}
.carousel .marquee__logos {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(13, 1fr);
  gap: 20px;
  padding: 0 20px;
  min-width: 1400px; /* Ensures consistent width */
}
@media screen and (max-width: 576px) {
  .carousel .marquee__logos {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(7, 1fr);
  }
}

.awards {
  margin-top: 84px;
  padding: 0 32px;
}
.awards__inner {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.awards__inner__heading {
  color: white;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600;
}
.awards__inner__awards {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.awards__inner__awards__award {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  border: 1px solid #212121;
  background: radial-gradient(202.12% 100.01% at 0% 59.64%, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.06) 100%);
  padding: 24px 19px;
  flex: 1;
}
.awards__inner__awards__award--red {
  background: var(--colourblend, radial-gradient(202.12% 100.01% at 0% 59.64%, rgba(0, 0, 0, 0) 0%, rgba(255, 0, 72, 0.06) 100%));
}
.awards__inner__awards__award__logo {
  width: 210px;
}
.awards__inner__awards__award__link {
  margin-top: 20px;
  color: #dddddd;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600;
}
.awards__inner__awards__award__category {
  color: white;
  font-family: "Open Sans", sans-serif !important;
  font-weight: 300;
  font-size: 14px;
  color: #b8b8b8;
  margin-top: 2px;
}

.contact {
  margin-top: 120px;
}
.contact__inner {
  border-radius: 3px;
  background: linear-gradient(81deg, #000 0.75%, #07100F 95.89%);
  padding: 106px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 576px) {
  .contact__inner {
    padding: 60px 32px 160px 32px;
    justify-content: center;
    text-align: center;
    border-radius: unset;
  }
}
.contact__inner__text {
  color: #b8b8b8;
  font-family: "Open Sans", sans-serif !important;
}
.contact__inner__text strong {
  display: block;
  color: #ddd;
}
.contact__inner__email {
  color: #DDD;
  text-align: right;
  font-family: "Open Sans";
  font-size: 43px;
  font-style: normal;
  font-weight: 300;
  line-height: 141%;
  letter-spacing: 0.43px;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 478px) {
  .contact__inner__email {
    font-size: 32px;
  }
}
@media screen and (max-width: 368px) {
  .contact__inner__email {
    font-size: 26px;
  }
}
.contact__inner__email::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #060F0E 0%, #0D5551 26.44%, #060F0E 100%);
  opacity: 0.4;
  transition: opacity 0.1s ease-in-out;
}
.contact__inner__email:hover:after {
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */
