:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  margin: 0;
  font-family: sans-serif;
  background: #c7e5ff;
}

/* ==========================================================================
 Basic HTML Elements
 ========================================================================== */
header,
main,
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  margin-bottom: 78px;
}

footer {
  margin-bottom: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-optical-sizing: auto;
  text-align: center;
  margin-top: 0;
}

.brand-yellow {
  background-color: #ffcc00;
}

.brand-blue {
  background-color: #67d1ff;
}

a {
  text-decoration: underline;
  color: inherit;
}

a.button {
  padding: 18px 28px;
  text-decoration: none;
  text-wrap: nowrap;
  font-weight: bold;
  color: #000000;
  border-radius: 20px;
}

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

.small {
  font-size: 15px;
}

/* ==========================================================================
 Sections
 ========================================================================== */
header nav {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 32px 23px 22px;
  max-width: 100%;
}
header nav .nav-group {
  flex: 1;
  display: flex;
  gap: 2rem;
  text-align: center;
}
header nav .nav-group.justify-right {
  justify-content: flex-end;
}
header nav .nav-group a {
  text-wrap: nowrap;
}
header nav .nav-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
header nav .nav-logo img {
  width: 480px;
}

.hero-carousel {
  width: 100%;
  position: relative;
}
.hero-carousel .swiper-button {
  width: 24px;
  height: 24px;
}
.hero-carousel .swiper-button-next {
  right: -40px;
}
.hero-carousel .swiper-button-prev {
  left: -40px;
}

.sub-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  gap: 2rem;
}
@media (min-width: 1000px) {
  .sub-nav {
    padding: 30px 60px;
  }
}
.sub-nav .order-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-nav .order-links .label {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
}

.next-show {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 12px 20px;
  background-color: #002583;
  color: white;
  margin-bottom: 30px;
}
.next-show p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  align-self: center;
}
.next-show .button-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 68px;
  gap: 40px;
}
@media (min-width: 1000px) {
  .content-grid {
    padding: 0 60px;
  }
}
.content-grid .catalogue-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-grid h3 {
  margin-bottom: 14px;
}
.content-grid .catalogue-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.content-grid .catalogue {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-grid .catalogue-link {
  font-weight: 500;
  font-size: 21px;
}
.content-grid .linesheet-col {
  text-align: center;
}
.content-grid .linesheet-col .header-group p {
  margin-top: -18px;
  margin-bottom: 40px;
}
.content-grid .linesheet-col .vertical-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 21px;
}

.about {
  max-width: 800px;
  margin: 0 auto;
  font-size: 21px;
}
.about h2 {
  font-size: 32px;
}

footer {
  text-align: center;
}

.chat-widget {
  position: fixed;
  bottom: 40px;
  right: 55px;
}
.chat-widget img {
  width: 60px;
  height: 60px;
}

/* ==========================================================================
 Mobile Styles
 ========================================================================== */
@media (max-width: 768px) {
  header nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 1rem 0;
    padding: 32px 0 22px;
  }
  header nav .nav-logo {
    order: -1;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }
  header nav .nav-group {
    flex: 0 0 50%;
    display: flex;
    justify-content: space-evenly !important;
  }
  .hero-carousel {
    margin-left: -20px;
    width: 100vw;
  }
  .sub-nav,
  .order-links,
  .next-show,
  .button-group {
    flex-direction: column;
  }
  .next-show p {
    align-self: start;
  }
  .next-show strong {
    display: block;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-grid .catalogue-row {
    flex-direction: column;
  }
}