@font-face {
  font-family: 'Roobert';
  src: url('/fonts/roobert/Roobert-Regular.woff2') format('woff2'),
}

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

body {
  font-family: 'Roobert' !important;
}

body.landing-page {
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f4f1ee;
}

.main-content {
  overflow: hidden;
  max-height: 1080px;
  background-color: #000;
  background-image: url('assets/written-in-the-stars.png');
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.flex-container-hero {
  display: flex;
  flex-direction: row;
  max-width: 1440px;
  max-height: 1080px;
}

.column.left {
  width: 50vw;
  max-width: 720px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.column.right {
  width: 50vw;
  max-width: 720px;
  background-image: url('assets/img-monolith-avatar-big-cc.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section {
  height: 80vh;
  display: flex;
  width: 100%;
  max-height: 824px;
}

.hero-content-overlap {
  position: absolute;
}

.hero-title {
  color: rgb(255, 255, 255);
  font-size: min(8vw, 96px);
  line-height: min(8vw, 96px);
  white-space: pre-line;
  font-family: 'Impact';
  text-transform: uppercase;
  margin-left: 2vw;
}

.hero-subtitle {
  letter-spacing: 0px;
  font-size: min(3vw, 31px);
  line-height: min(3vw, 31px);
  margin-left: 2.4vw;
  color: rgb(255, 255, 255);
  margin-top: 1vw;
  max-width: 720px;
}

.cache-font-smoothing {
  letter-spacing: -0.152px !important;
  -webkit-font-smoothing: subpixel-antialiased !important;
  text-rendering: geometricprecision !important;
}

.important-note-section {
  height: 20vh;
  background-color: #9BBCE7;
  max-height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: 'Impact';
}

.flex-container-footer {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  height: 20vh;
  justify-content: space-evenly;
  align-items: center;
}

.important-note {
  font-size: min(5vw, 38px);
  line-height: min(5vw, 38px);
  text-align: center;
}

.important-note-button {
  border-radius: 55px;
  border: 3px solid #000;
  background: var(--pc-white, #FFF);
  box-shadow: 7px 7px 1px 0px rgba(0, 0, 0, 0.85);
  color: #000;
  text-align: center;
  font-family: Impact;
  font-size: min(5vw, 27px);
  line-height: min(5vw, 27px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: min(0.3vw, 0.27px);
  text-transform: uppercase;
  width: fit-content;
  padding: 0.7rem 3rem;
}

a.important-note-button {
  text-decoration: none;
  color: inherit;
}

.important-note-button:hover {
  cursor: pointer;
  background-color: #000;
  color: #fff;
  box-shadow: 7px 7px 1px 0px rgba(121, 121, 121, 0.85);
  transition: all 0.3s ease;
  border: 3px solid #060606;
}

.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    width: 100vh;
    height: 100vh;
  }

  .main-content.mobile-only {
    background-color: #000;
    background-image: none !important;
  }

  .hero-section-mobile {
    height: 80vh;
    display: flex;
    width: 95vw;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 1rem auto;
  }

  .flex-container-mobile {
    width: 100%;
  }

  .row-top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    background-color: #000;
    z-index: 2;
    padding-bottom: 1rem;
  }

  img.logo {
    width: min(40vw, 144px);
    margin: auto;
  }

  .hero-title {
    color: rgb(255, 255, 255);
    font-size: min(11vw, 96px);
    line-height: min(11vw, 96px);
    white-space: pre-line;
    font-family: 'Impact';
    text-transform: uppercase;
    margin-left: 2vw;
  }

  .hero-subtitle {
    letter-spacing: 0px;
    font-size: min(4vw, 31px);
    line-height: min(4.5vw, 31px);
    margin-left: 2.4vw;
    color: rgb(255, 255, 255);
    margin-top: 1vw;
    max-width: 720px;
  }

  .row-bottom {
    background-image: url('assets/img-monolith-avatar-big-cc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
    transform: scale(1.2);
  }

  .important-note-section-mobile {
    height: 20vh;
    background-color: #9BBCE7;
    max-height: 256px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .flex-container-footer-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
  }

  .important-note {
    font-family: 'Impact';
  }

  .important-note-button {
    font-size: min(5vw, 27px);
    line-height: min(5vw, 27px);
    padding: 0.7rem 2.5rem;
    box-shadow: 6px 6px 1px 0px rgba(0, 0, 0, 0.85);
  }

  .important-note-button:hover {
    box-shadow: 6px 6px 1px 0px rgba(121, 121, 121, 0.85);
  }
}

@media (max-width: 480px) {
  .important-note-button {
    font-size: min(5vw, 24px);
    line-height: min(5vw, 24px);
    padding: 0.5rem 2.25rem;
    box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.85);
  }

  .important-note-button:hover {
    box-shadow: 3px 3px 1px 0px rgba(121, 121, 121, 0.85);
  }
}

/* Customers Page */
/* Customers Page */
/* Customers Page */
/* Customers Page */
/* Customers Page */
/* Customers Page */

body.customers-page {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f1ee;
}

main.cp-main-content {
  max-width: 1440px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.customers-page a {
  color: inherit;
}

.section-white-background {
  width: 100%;
  background-color: #fff;
}

div.blue-background {
  background-color: #9BBCE7;
  height: 100px;
  width: 100%;
}

#monolith-eye {
  position: relative;
  margin-top: -80px;
  scale: 0.75;
}

.cp-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-section .row {
  margin: 0 15vw;
  display: flex;
  flex-direction: column;
}

.cp-section .row img {
  width: 100%;
}

.white-background {
  background-color: #fff;
}

.cp-main-content p,
.cp-main-content li {
  line-height: 1.3;
  letter-spacing: -0.152px;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: geometricprecision;
}

.cp-main-content p {
  margin-bottom: 1rem;
}

h1.customers-page {
  color: #000;
  font-size: min(8vw, 98px);
  line-height: min(8vw, 98px);
  font-family: 'Impact';
  text-transform: uppercase;
  margin-top: .75rem;
  margin-bottom: 1rem;
}

@media (max-width: 799px) {
  h1.customers-page {
    font-size: min(8vw, 98px);
    line-height: min(8vw, 98px);
  }
}

h2.customers-page {
  font-size: min(4vw, 36px);
  font-family: 'Impact';
  margin-bottom: 1rem;
}

h3.customers-page {
  font-size: min(3vw, 28px);
  font-family: 'Impact';
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.customers-page ul {
  margin-left: 2.5rem;
}

.flex-col-desktop {
  display: flex;
  flex-direction: row;
}

.flex-col-desktop img {
  margin-top: 3rem;
}

.cards-img {
  margin: 3rem auto;
  height: auto;
  max-height: 275px;
  max-width: 367px;
}

.desktop-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
  margin-bottom: 0;
}

.monolith-customers-img {
  max-width: 832px;
  max-height: 318px;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.monolith-about-us-img {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.last-row {
  margin-bottom: 2rem !important;
}

section.blue-background {
  background-color: #9BBCE7;
}

.mb-1rem {
  margin-bottom: 1rem;
}

section.blue-background h1,
section.green-background h1 {
  margin-bottom: 0;
  margin-top: 3rem;
}

section.green-background {
  background: rgba(2, 244, 141, 0.64);
}

#logo-footer-customer {
  width: 100%;
  max-width: 250px;
  margin: 3rem 0px 2.5rem 0px;
}

section.black-background {
  background-color: #000;
  color: #fff;
}

@media (max-width: 799px) {
  .desktop-hidden {
    display: block;
  }

  .mobile-hidden {
    display: none;
  }

  .flex-col-desktop {
    flex-direction: column;
  }

  h3.customers-page {
    margin-top: 1.5rem;
  }

  .cards-img {
    margin-top: 2rem;
    margin-bottom: 0rem;
    height: auto;
    max-height: 275px;
    max-width: 367px;
  }

  section.blue-background h1,
  section.green-background h1 {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  h1.customers-page {
    font-size: 4rem;
    line-height: 4rem;
  }


  h2.customers-page {
    font-size: min(1.45rem, 24px);
  }

  h3.customers-page {
    font-size: min(1.15rem, 23px);
  }

  .cp-section .row {
    margin: 0 8vw;
  }

  #logo-footer-customer {
    width: 100%;
    max-width: 250px;
    margin: 3rem auto 2.5rem auto;
  }
}

@media (max-width: 480px) {
  h1.customers-page {
    font-size: 3rem;
    line-height: 3rem;
  }

  h3.customers-page {
    margin-top: 1rem;
  }
}

/* Custom list */

ul.custom-list {
  list-style-image: url('assets/dot.svg');
}