/* ----------Local-Font-Baskerville-Old-Face---------- */
@font-face {
  font-family: 'Baskerville Old Face';
  src: url('../assets/font/baskerville-old-face/BASKVILL.TTF')
    format('truetype');
  font-weight: 400;
}

/* ----------Local-Font-Aileron---------- */
@font-face {
  font-family: 'Aileron';
  src: url('../assets/font/aileron/Aileron-Thin.otf');
  font-weight: 200;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/font/aileron/Aileron-Light.otf');
  font-weight: 300;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/font/aileron/Aileron-Regular.otf');
  font-weight: 400;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/font/aileron/Aileron-SemiBold.otf');
  font-weight: 600;
}

@font-face {
  font-family: 'Aileron';
  src: url('../assets/font/aileron/Aileron-Bold.otf');
  font-weight: 700;
}

/* CSS Reset */

:root {
  --clr-brown: rgba(28, 25, 25, 0.35);
  --clr-white: #ffffff;
  --clr-grey: #b9becc;
  --clr-black-light: #2a2d35;
  --clr-black: #000000;
  --aileron-ff: 'Aileron';
  --baskerville-ff: 'Baskerville Old Face';
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--aileron-ff);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--clr-white);
  color: var(--clr-black);
  overflow-x: hidden;
  overflow-y: auto;
}

ul,
ol {
  list-style: none;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

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

.container {
  max-width: 1660px;
  width: calc(100% - 32px);
  margin: 0 auto;
}

/* Header */
.header {
  background-image: url('../assets/images/home-hero.png');
  height: 100dvh;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.header-nav {
  background-color: var(--clr-brown);
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: background-color 250ms ease;
}

.header-nav.scrolled {
  background-color: var(--clr-black);
  /* Change this to your desired color */
}

.header-nav-content {
  max-width: 1660px;
  width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-logo {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo > span {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 300;
}

.header-navbar {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header-navlink {
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 18px;
}

.header-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-white);
  width: 132px;
  height: 44px;
  border-radius: 24px;
  text-transform: uppercase;
  color: var(--clr-black);
  line-height: 18px;
  font-size: 16px;
  transition: background-color 250ms ease, color 250ms ease;
}

.header-cta:hover {
  background-color: var(--clr-black-light);
  color: var(--clr-white);
}

.header-hero {
  width: 720px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100dvh;
  gap: 20px;
  padding-top: 140px;
  padding-bottom: 28px;
}

.header-hero-title {
  font-size: 75px;
  line-height: 66px;
  text-align: right;
  color: var(--clr-white);
  text-transform: uppercase;
}

.header-hero-subtitle {
  font-size: 55px;
  font-weight: 300;
  line-height: 66px;
  text-align: right;
  color: var(--clr-white);
}

.header-hero-text {
  font-size: 35px;
  line-height: 42px;
  color: var(--clr-grey);
  text-align: right;
  text-shadow: 0px 3px 6px #00000069;
}

.header-hero-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  height: 140px;
  margin-left: auto;
  background-color: var(--clr-black-light);
  color: var(--clr-white);
  border-radius: 70px;
  text-transform: uppercase;
  box-shadow: 0px 3px 6px #00000069;
  line-height: 54px;
  font-size: 45px;
  transition: background-color 250ms ease, color 250ms ease;
}

.header-hero-btn:hover {
  color: var(--clr-black);
  background-color: var(--clr-white);
}

.header-hero-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-hero-images > img {
  height: 94px;
}

.header-hamburger-btn {
  padding: 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
}

.header-hamburger-btn > img {
  width: 32px;
}

/* Sidebar and overlay */
body.sidebar-open {
  overflow: hidden;
}

.sidebar,
.sidebar-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100dvh;
  background-color: var(--clr-white);
  color: var(--clr-white);
  transition: right 0.3s ease;
  z-index: 100;
}

.sidebar-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99; /* Make sure it's below the sidebar */
}

.sidebar-open .sidebar-overlay {
  opacity: 1;
  pointer-events: all;
}

.sidebar-open .sidebar {
  right: 0;
}

/* Sidebar links and close button */
.sidebar-close-btn {
  position: absolute;
  top: 20px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.sidebar-close-btn > img {
  width: 32px;
}

.sidebar-navbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 24px;
  gap: 8px;
}

.sidebar-navlink,
.sidebar-cta {
  color: var(--clr-black);
  text-decoration: none;
  padding: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.sidebar-navlink.current {
  color: #aaaaaa;
}

/* Header Media Queries */
@media (max-width: 1660px) {
  .header {
    height: 100dvh;
  }

  .header-hero {
    width: 540px;
    gap: 20px;
    padding-top: 120px;
    padding-bottom: 24px;
  }

  .header-hero-title {
    font-size: 55px;
    line-height: 60px;
  }

  .header-hero-subtitle {
    font-size: 35px;
    line-height: 60px;
  }

  .header-hero-text {
    font-size: 25px;
    line-height: 32px;
  }

  .header-hero-btn {
    width: 360px;
    height: 100px;
    border-radius: 50px;
    line-height: 40px;
    font-size: 30px;
  }

  .header-hero-images > img {
    height: 74px;
  }
}

@media (max-width: 1160px) {
  .header-hero-images {
    justify-content: flex-end;
    gap: 16px;
  }

  .header-navbar {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .header-nav {
    height: 60px;
  }

  .header-navbar {
    display: none;
  }

  .header-hamburger-btn {
    display: block;
  }

  .header {
    background-image: url('../assets/images/home-hero-mobile.png');
    background-position: top;
    position: relative;
  }

  .header-hero {
    padding-top: 80px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    height: auto;
    gap: 20px;
  }

  .header-hero-title {
    font-size: 44px;
    line-height: 40px;
    text-align: center;
  }

  .header-hero-subtitle {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }

  .header-hero-text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .header-hero-btn {
    width: 220px;
    margin: 0 auto;
    margin-top: 10px;
    height: 60px;
    border-radius: 30px;
    line-height: 24px;
    font-size: 18px;
  }

  .header-hero-title > span {
    display: none;
  }

  .header-hero-images {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 16px;
  }

  .header-logo {
    font-size: 14px;
    line-height: 20px;
    gap: 6px;
  }

  .header-hero-images > img {
    height: 60px;
  }
}

/* Portfolio-Section */
.portfolio {
  padding: 60px 0;
}

.portfolio-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  margin-bottom: 20px;
}

.portfolio-cards {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.portfolio-card {
  flex: 1 1 430px;
  height: 272px;
  border: 1px solid #707070;
  position: relative;
  padding: 12px;
  transition: background-color 250ms ease;
}

.portfolio-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  transition: background-color 250ms ease;
  color: var(--clr-white);
}

.portfolio-text {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
  letter-spacing: 1.2px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

.portfolio-card:nth-child(1) {
  background-image: url('../assets/images/Weedelife.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(1):hover .portfolio-content {
  background-color: #006838d1;
  visibility: visible;
}

.portfolio-card:nth-child(2) {
  background-image: url('../assets/images/spg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(2):hover .portfolio-content {
  background-color: #007dc4cc;
  visibility: visible;
}

.portfolio-card:nth-child(3) {
  background-image: url('../assets/images/EVC.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(3):hover .portfolio-content {
  background-color: #90cf7fd6;
  visibility: visible;
}

.portfolio-card:nth-child(4) {
  background-image: url('../assets/images/Movie-Magic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(4):hover .portfolio-content {
  background-color: rgba(232, 14, 14, 0.65);
  visibility: visible;
}

.portfolio-card:nth-child(5) {
  background-image: url('../assets/images/SRP.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(5):hover .portfolio-content {
  background-color: rgba(0, 97, 171, 0.85);
  visibility: visible;
}

.portfolio-card:nth-child(6) {
  background-image: url('../assets/images/TLE.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(6):hover .portfolio-content {
  background-color: rgba(237, 36, 143, 0.85);
  visibility: visible;
}

.portfolio-card:nth-child(7) {
  background-image: url('../assets/images/WPBF-25.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(7):hover .portfolio-content {
  background-color: rgba(0, 2, 64, 0.85);
  visibility: visible;
}

.portfolio-card:nth-child(8) {
  background-image: url('../assets/images/WPLG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(8):hover .portfolio-content {
  background-color: rgba(64, 118, 163, 0.85);
  visibility: visible;
}

.portfolio-card:nth-child(9) {
  background-image: url('../assets/images/SteadyImage.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card:nth-child(9):hover .portfolio-content {
  background-color: rgba(255, 255, 255, 0.85);
  visibility: visible;
  color: var(--clr-black);
}

.portfolio-content {
  visibility: hidden;
}

/* Portfolio Media Queries */
@media (max-width: 1360px) {
  .portfolio-card {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .portfolio {
    padding: 40px 0;
  }

  .portfolio-title {
    font-size: 24px;
    line-height: 30px;
  }

  .portfolio-text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  .portfolio-card {
    height: 248px;
    flex: none;
    width: 100%;
  }
}

/* About */
.about {
  background-color: rgba(121, 128, 136, 0.75);
  color: var(--clr-white);
  padding: 60px 0;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.about-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 1.5px;
  text-shadow: 0px 3px 6px #0000004d;
  margin-bottom: 20px;
}

.about-heading {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.25px;
  text-shadow: 0px 3px 6px #00000029;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.25px;
  text-shadow: 0px 3px 6px #00000029;
  margin-bottom: 8px;
}

.about-desc:last-child {
  margin-bottom: 0;
}

.about-right {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-resume-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 72px;
  margin: 0 auto;
  margin-top: 50px;
  background-color: var(--clr-black-light);
  color: var(--clr-white);
  border-radius: 36px;
  text-transform: uppercase;
  box-shadow: 0px 3px 6px #00000069;
  line-height: 30px;
  font-size: 25px;
  transition: background-color 250ms ease, color 250ms ease;
}

.about-resume-btn:hover {
  color: var(--clr-black);
  background-color: var(--clr-white);
}

/* About Media Queries */
@media (max-width: 1360px) {
  .about-desc {
    font-size: 22px;
    line-height: 28px;
  }

  .about-heading {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 1160px) {
  .about-content {
    flex-direction: column;
    gap: 44px;
  }

  .about-right {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .about-left {
    gap: 24px;
  }

  .about-right > img {
    width: 50%;
  }

  .about-resume-btn {
    margin-top: 44px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }

  .about-desc {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
  }

  .about-title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .about-heading {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .about-right {
    flex-direction: column;
  }

  .about-right > img {
    width: 100%;
  }

  .about-resume-btn {
    width: 300px;
    height: 44px;
    margin-top: 44px;
    border-radius: 20px;
    line-height: 24px;
    font-size: 18px;
  }
}

/* Contact */
.contact {
  padding: 60px 0;
}

.contact-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 44px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.contact-group-fields {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
}

.contact-group-fields .contact-group-field {
  flex: 1 1 33%;
}

.contact-group-field > input,
.contact-group-field > textarea {
  display: block;
  width: 100%;
  background: #f1efef;
  box-shadow: inset 0px 3px 6px #00000029;
  border: 1px solid #707070;
  color: var(--clr-black);
  font-size: 35px;
  line-height: 42px;
  font-weight: 600;
  padding: 20px 16px;
}

.contact-group-field > input::placeholder,
.contact-group-field > textarea::placeholder {
  color: #7d7d7d;
}

.contact-group-field > textarea {
  height: 220px;
  resize: vertical;
}

.contact-group-field > input:focus,
.contact-group-field > textarea:focus,
.contact-group-field > input:focus-visible,
.contact-group-field > textarea:focus-visible {
  outline: none;
  border-color: var(--clr-black);
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 72px;
  margin: 0 auto;
  margin-top: 50px;
  background-color: var(--clr-black-light);
  color: var(--clr-white);
  border-radius: 36px;
  text-transform: uppercase;
  box-shadow: 0px 3px 6px #00000069;
  border: 2px solid transparent;
  line-height: 30px;
  cursor: pointer;
  font-size: 25px;
  transition: background-color 250ms ease, color 250ms ease;
}

.contact-btn:hover {
  color: var(--clr-black);
  background-color: var(--clr-white);
  border-color: var(--clr-black);
}

.contact-info {
  width: 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-link {
  font-size: 30px;
  line-height: 44px;
  font-weight: 600;
}

.contact-info-link > img {
  margin-top: 20px;
  width: 100px;
}

/* Contact Media Queries */
@media (max-width: 1360px) {
  .contact-group-fields {
    flex-direction: column;
    gap: 24px;
  }

  .contact-group-fields .contact-group-field {
    flex: auto;
    width: 100%;
  }

  .contact-info-link {
    font-size: 25px;
    line-height: 34px;
  }

  .contact-form {
    gap: 24px;
  }

  .contact-btn {
    margin-top: 32px;
  }

  .contact-group-field > input,
  .contact-group-field > textarea {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    padding: 16px;
  }
}

@media (max-width: 1160px) {
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }

  .contact-form {
    display: none;
  }

  .contact-title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }

  .contact-info {
    width: 100%;
    gap: 24px;
  }

  .contact-info-link {
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .contact-info-link > img {
    margin-top: 0;
    width: 40px;
  }
}

/* Footer */
.footer {
  background: #798088;
  color: var(--clr-white);
  padding: 40px 0;
}

.footer-line {
  width: 600px;
  border-top: 3px solid var(--clr-white);
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  margin-top: 60px;
}

.footer-logo {
  width: 600px;
}

.footer-logo-text {
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-text > span {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 300;
}

.footer-logo-certification {
  display: flex;
  column-gap: 44px;
  margin-top: 28px;
}

.footer-logo-certification > img {
  height: 94px;
}

.footer-menu {
  width: 730px;
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
}

.footer-menu-box {
  flex: 1 1 33.333%;
}

.footer-menu-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 3.4px;
}

.footer-menu-item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 20px;
}

.footer-menu-item-text {
  font-size: 10px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 1.55px;
}

/* Footer Media Queries */
@media (max-width: 1420px) {
  .footer-logo {
    width: 460px;
  }

  .footer-logo-text {
    font-size: 32px;
    line-height: 44px;
    gap: 12px;
  }

  .footer-logo-certification {
    column-gap: 16px;
  }
}

@media (max-width: 1280px) {
  .footer {
    padding-top: 65px;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }

  .footer-logo-text {
    text-align: center;
    justify-content: center;
  }

  .footer-logo-certification {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-menu {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 48px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-logo-certification > img {
    height: 60px;
  }

  .footer-logo-text {
    font-size: 20px;
    line-height: 28px;
  }

  .footer-line {
    width: 85%;
  }
}

/* Steady-Page */
.header-steady {
  position: relative;
  height: 100dvh;
}

.header-steady .container img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 85dvh;
  object-fit: contain;
}

.header-inner-steady {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 80px;
  padding-bottom: 12px;
}

.header-inner-title-black {
  color: #000000;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.steady-intro {
  padding: 60px 0;
}

.steady-intro-content {
  max-width: 1053px;
  width: 100%;
  margin: 0 auto;
}

.steady-intro-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.steady-intro-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.steady-intro-img {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 140px;
}

.steady-video {
  padding: 100px 0;
  background-color: #1c3dc0;
}

.steady-video-content {
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .header-steady .container img {
    height: 90dvh;
  }

  .header-inner-title-black {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .steady-intro-title {
    font-size: 25px;
    line-height: 32px;
  }

  .steady-intro-text {
    font-size: 16px;
    line-height: 24px;
  }

  .steady-video {
    padding: 60px 0;
  }
}

/* WLG-Page */
.header-wlg {
  background-image: url('../assets/images/wlg-bg.png');
  height: 100dvh;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner-wlg {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
  padding-bottom: 12px;
}

.header-wlg-title {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.wlg-intro {
  padding: 60px 0;
}

.wlg-intro-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.wlg-intro-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.wlg-intro-content {
  max-width: 1053px;
  width: 100%;
  margin: 0 auto;
}

.wlg-bleed {
  padding: 60px 0;
  background-color: #1c3dc0;
  color: #ffffff;
  margin-top: 60px;
}

.wlg-bleed-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 100px;
}

.wlg-bleed-content:first-child {
  margin-top: 0;
}

.wlg-bleed-left {
  width: 44%;
}

.wlg-bleed-right {
  width: 50%;
}

.wlg-bleed-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  letter-spacing: 2.02px;
}

.wlg-bleed-text {
  font-size: 30px;
  line-height: 36px;
  margin-top: 24px;
  letter-spacing: 1.35px;
}

@media (max-width: 1200px) {
  .wlg-bleed-left {
    width: 48%;
  }

  .wlg-bleed-right {
    width: 48%;
  }
}

@media (max-width: 1023px) {
  .wlg-bleed-content {
    flex-direction: column;
  }

  .wlg-bleed-left {
    width: 100%;
  }

  .wlg-bleed-right {
    width: 100%;
  }

  .wlg-order {
    order: 2;
  }
}

@media (max-width: 767px) {
  .header-wlg-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .wlg-intro-title {
    font-size: 25px;
    line-height: 25px;
  }

  .wlg-intro-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 24px;
  }

  .wlg-bleed-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 1.13px;
    text-align: center;
  }

  .wlg-bleed-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
    letter-spacing: 0.68px;
    text-align: center;
  }
}

/* WPBF-Page */
.header-wpbf {
  background-image: url('../assets/images/TRUCK.png');
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner-wpbf {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
}

.header-inner-wpbf > img {
  width: 70%;
  margin: 0 auto;
}

.header-inner-wpbf-title {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.wpbf-intro {
  padding: 60px 0;
}

.wpbf-intro-content {
  max-width: 1053px;
  width: 100%;
  margin: 0 auto;
}

.wpbf-intro-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.wpbf-intro-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.wpbf-video {
  padding: 60px 0;
  background-color: #002044;
  color: #ffffff;
}

.wpbf-video-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.wpbf-video-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.wpbf-video-content {
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
  margin-top: 60px;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.wpbf-bleed {
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .header-inner-wpbf-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .wpbf-intro-title,
  .wpbf-video-title {
    font-size: 25px;
    line-height: 25px;
  }

  .wpbf-intro-text,
  .wpbf-video-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 24px;
  }
}

/* TLE-Page */
.header-tle {
  background-image: url('../assets/images/TLE-girl-characters.png');
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner-tle {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
}

.header-inner-tle > img {
  width: 80%;
  margin: 0 auto;
}

.header-inner-tle-title {
  color: #023c56;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.tle-bleed {
  background-color: #ed228c;
  padding: 60px 0;
  color: #ffffff;
  margin-top: 60px;
}

.tle-side {
  padding: 60px 0;
}

.tle-side-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.tle-side-image {
  width: 28%;
}

.tle-side-info {
  width: 40%;
}

.tle-side-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.tle-side-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 1240px) {
  .tle-side-content {
    flex-direction: column;
  }

  .tle-side-image {
    width: 60%;
  }

  .tle-side-info {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .header-inner-tle-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .tle-side-title {
    font-size: 25px;
    line-height: 25px;
  }

  .tle-side-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 24px;
  }

  .tle-side-image {
    width: 80%;
  }

  .tle-side-info {
    width: 100%;
  }
}

/* WeedeLife-Page */
.header-weedelife {
  background-image: url('../assets/images/weedelife-bg.png');
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner-weedelife {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
}

.header-inner-weedelife > img {
  width: 500px;
  margin: 0 auto;
}

.header-inner-weedelife-title {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.life-intro {
  padding: 60px 0;
}

.life-intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

.life-intro-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.life-intro-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 4px;
}

.life-banner {
  margin-top: 60px;
}

.life-banner-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.life-banner-left {
  width: 50%;
  background-color: #006838;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  line-height: 60px;
  padding: 16px;
}

.life-banner-left > span {
  width: 90%;
}

.life-banner-right {
  width: 50%;
}

.life-mark {
  background-color: #00683821;
  margin-top: 60px;
  padding: 60px 0;
}

.life-mark-content {
  padding: 16px;
  background-color: #ffffff;
}

.life-mark-title {
  font-size: 25px;
  line-height: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #707070;
}

.life-mark-flex {
  display: flex;
}

.life-mark-left {
  width: 50%;
  border-right: 2px solid #707070;
}

.life-mark-left > img {
  width: 94%;
  margin: 16px auto;
}

.life-mark-right {
  width: 50%;
}

.life-mark-box {
  width: 94%;
}

.life-mark-text {
  font-size: 25px;
  line-height: 32px;
  padding-top: 8px;
}

.life-mark-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 94%;
  margin-left: auto;
  padding: 16px 0;
}

.life-mark-top-left {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.life-mark-top-box {
  width: 60%;
}

.life-mark-top-left img {
  width: 40%;
}

.life-mark-top-right img {
  width: 40%;
}

.life-mark-top-right {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.life-mark-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  padding-left: 6%;
  border-top: 2px solid #707070;
}

.life-mark-bottom-box {
  width: 55%;
}

.life-mark-bottom-right {
  width: 45%;
}

.life-misuse {
  padding: 60px 0;
}

.life-misuse-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.life-misuse-left {
  width: 50%;
  display: flex;
  gap: 16px;
}

.life-misuse-green {
  background-color: #006838;
  padding: 16px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.life-misuse-green-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.life-misuse-green-text {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding-top: 8px;
}

.life-misuse-shade-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.life-misuse-shade-text {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding-top: 8px;
}

.life-misuse-shade {
  background-color: #00683821;
  padding: 16px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.life-misuse-right {
  width: 50%;
  padding: 16px 24px;
  border: 1px solid #707070;
}

.life-misuse-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.life-misuse-text {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding-top: 8px;
}

.life-misuse-right img {
  width: 80%;
  margin: 0 auto;
  margin-top: 24px;
}

.life-colors {
  background-color: #deebe5;
  padding: 60px 0;
}

.life-colors-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.life-colors-left {
  width: 50%;
  background-color: #ffffff;
  padding: 16px;
}

.life-colors-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.life-colors-left-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}

.life-colors-info {
  width: 50%;
}

.life-colors-info-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.life-colors-info-text {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding-top: 8px;
}

.life-colors-info-text:last-child {
  padding-top: 16px;
}

.life-colors-data {
  width: 50%;
}

.life-colors-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.life-colors-data-item:last-child {
  margin-top: 24px;
}

.life-colors-data-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
}

.life-color-card-name {
  font-size: 16px;
  line-height: 20px;
  margin-top: 8px;
}

.life-color-card-text {
  font-size: 16px;
  line-height: 20px;
}

.life-colors-card-bottom {
  margin-top: 24px;
}

.life-colors-card {
  width: 86px;
}

.life-color-card-square {
  width: 86px;
  height: 86px;
}

.life-colors-right {
  width: 50%;
  background-color: #ffffff;
  padding: 16px;
}

.life-colors-right-content {
  display: flex;
  justify-content: space-between;
  height: 94%;
}

.life-colors-data-top {
  width: 49%;
  padding-right: 8px;
  border-right: 1px solid #707070;
}

.life-colors-data-bottom {
  width: 49%;
  padding-left: 8px;
}

.life-colors-box-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  margin-top: 16px;
  border-bottom: 1px solid #707070;
}

.life-colors-box-text {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding-top: 8px;
}

.life-colors-data-top img {
  margin-top: 44px;
}

.life-colors-typeBold {
  font-size: 35px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 44px;
  word-break: break-all;
}

.life-colors-typeRegular {
  font-size: 35px;
  line-height: 50px;
  font-weight: 300;
  margin-top: 24px;
  word-break: break-all;
}

.stationary {
  padding: 60px 0;
}

.stationary-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.stationary-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.stationary-text {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  width: 20%;
}

.stationary-text > span {
  display: block;
  margin-top: 16px;
}

.stationary-img {
  width: 80%;
}

.apps {
  background-color: #deebe5;
  padding: 60px 0;
}

.apps-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.apps-desktop {
  width: 33%;
  padding: 16px;
  background-color: #ffffff;
}

.apps-desktop-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.apps-desktop-text {
  font-size: 20px;
  line-height: 24px;
  margin-top: 24px;
}

.apps-desktop-bottom {
  margin-top: 100px;
}

.apps-desktop-bottom img {
  width: 90%;
  margin: 30px auto;
}

.apps-mobile {
  width: 33%;
  padding: 16px;
  background-color: #ffffff;
}

.apps-mobile img {
  width: 50%;
  margin: 60px auto;
}

.apps-mobile-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.apps-mobile-text {
  font-size: 20px;
  line-height: 24px;
}

.apps-web {
  width: 33%;
  padding: 16px;
  background-color: #ffffff;
}

.apps-web img {
  width: 100%;
  margin: 60px auto;
}

.apps-web-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #000000;
  padding-bottom: 8px;
  border-bottom: 1px solid #707070;
}

.apps-web-text {
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 1280px) {
  .life-mark-flex {
    flex-direction: column;
    margin-top: 16px;
  }

  .life-mark-left {
    display: flex;
    gap: 24px;
    width: 100%;
    border-right: 0;
  }

  .life-mark-left img {
    width: 40%;
    order: 2;
  }

  .life-mark-right {
    width: 100%;
  }

  .life-mark-top {
    width: 100%;
  }

  .life-mark-bottom {
    width: 100%;
    padding-left: 0;
    border-top: 0;
  }
}

@media (max-width: 1023px) {
  .life-banner {
    margin-top: 0;
  }

  .life-banner-content {
    flex-direction: column;
  }

  .life-banner-left {
    width: 100%;
    height: 300px;
  }

  .life-banner-right {
    width: 100%;
  }

  .life-mark-left {
    flex-direction: column;
    margin-bottom: 44px;
  }

  .life-mark-left img {
    width: 100%;
    margin: 0 auto;
  }

  .life-mark-box {
    width: 60%;
    order: 2;
  }

  .life-mark-top {
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }

  .life-mark-top-left {
    flex-direction: column;
  }

  .life-mark-top-right {
    flex-direction: column;
    justify-content: flex-start;
  }

  .life-mark-top-right img {
    height: 164px;
    width: auto;
  }

  .life-mark-top-box {
    width: 100%;
    order: 2;
  }

  .life-mark-bottom {
    padding: 0;
    margin-top: 44px;
    gap: 24px;
    flex-direction: column;
  }

  .life-mark-bottom-box {
    width: 60%;
    order: 2;
    margin-right: auto;
  }

  .life-mark-bottom-right {
    width: 100%;
  }

  .life-misuse-content {
    flex-direction: column;
  }

  .life-misuse-left {
    width: 100%;
  }

  .life-misuse-right {
    width: 100%;
  }

  .life-colors-content {
    flex-direction: column;
  }

  .life-colors-left {
    width: 100%;
  }

  .life-colors-right {
    width: 100%;
  }

  .stationary-content {
    flex-direction: column;
    gap: 24px;
  }

  .stationary-text {
    width: 60%;
  }

  .stationary-img {
    width: 100%;
  }

  .apps-content {
    flex-direction: column;
  }

  .apps-desktop,
  .apps-mobile,
  .apps-web {
    width: 100%;
  }

  .life-mark-top-left img {
    width: 184px;
    height: 184px;
  }
}

@media (max-width: 767px) {
  .header-inner-weedelife > img {
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
  }

  .header-inner-weedelife-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .life-intro-title {
    font-size: 25px;
    line-height: 30px;
  }

  .life-intro-text {
    font-size: 16px;
    line-height: 20px;
  }

  .life-banner-left {
    font-size: 30px;
    line-height: 40px;
  }

  .life-mark-title,
  .life-misuse-green-title,
  .life-misuse-shade-title,
  .life-misuse-title,
  .life-colors-title,
  .life-colors-info-title,
  .life-colors-data-title,
  .life-colors-box-title,
  .stationary-title,
  .apps-desktop-title,
  .apps-mobile-title {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 6px;
  }

  .life-mark-text,
  .life-misuse-green-text,
  .life-misuse-shade-text,
  .life-misuse-text,
  .life-colors-info-text,
  .life-colors-box-text,
  .apps-desktop-text,
  .apps-mobile-text {
    font-size: 12px;
    line-height: 18px;
    padding-top: 4px;
  }

  .stationary-text {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
  }

  .life-misuse-left {
    flex-direction: column;
  }

  .life-misuse-green {
    width: 100%;
    gap: 24px;
  }

  .life-misuse-shade {
    width: 100%;
    gap: 24px;
  }

  .life-misuse-right {
    padding: 0;
    border: 0;
    margin-top: 24px;
  }

  .life-colors-left-content {
    flex-direction: column;
  }

  .life-colors-info {
    width: 100%;
  }

  .life-colors-data {
    width: 100%;
  }

  .life-colors-right-content {
    height: auto;
    flex-direction: column;
    gap: 60px;
  }

  .life-colors-data-top {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }

  .life-colors-data-bottom {
    width: 100%;
    padding-left: 0;
  }

  .stationary {
    padding: 16px 0;
  }
}

/* SRP-Page */
.header-srp {
  background-image: url('../assets/images/srp-bg.png');
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner-srp {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
}

.header-inner-srp > img {
  width: 50%;
  margin: 0 auto;
}

.header-inner-srp-title {
  color: #00689b;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.page-bleed-srp {
  padding: 60px 0;
  background-color: #00689b80;
  color: #ffffff;
}

@media (max-width: 767px) {
  .header-inner-srp > img {
    width: 100%;
    margin: 0 auto;
  }

  .header-inner-srp-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }
}

/* MM-Page */
.header-mm {
  background: url('../assets/images/movie-magic-bg.png');
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-mm-inner {
  max-width: 1660px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 20px;
  gap: 80px;
}

.header-mm-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.header-mm-title {
  width: 470px;
  font-size: 65px;
  line-height: 60px;
  letter-spacing: 2.25px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0px 3px 6px #000000bf;
}

.header-mm-title > span {
  display: block;
  font-size: 50px;
  line-height: 55px;
  text-transform: none;
  font-weight: 700;
  margin-top: 32px;
  letter-spacing: 2.25px;
}

.header-mm-title-right {
  width: 460px;
  font-size: 50px;
  line-height: 55px;
  text-shadow: 0px 3px 6px #000000bf;
  color: #ffffff;
  letter-spacing: 2.25px;
  font-weight: 700;
}

.header-mm-content > img {
  width: 360px;
  margin: 0 auto;
}

.header-inner-mm-title {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.page-bleed-mm {
  padding: 60px 0;
  background-color: rgba(121, 128, 136, 0.75);
  color: #ffffff;
}

.mm-findings {
  max-width: 1023px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.mm-findings > img {
  width: 24%;
}

@media (max-width: 1280px) {
  .header-mm-content {
    flex-direction: column;
  }

  .header-mm-title-right {
    display: none;
  }

  .header-mm-title {
    font-size: 45px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1.25px;
  }

  .header-mm-title > span {
    font-size: 40px;
    line-height: 50px;
    margin-top: 24px;
    letter-spacing: 1.25px;
  }
}

@media (max-width: 767px) {
  .header-inner-mm-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .header-mm-title {
    max-width: 200px;
    margin: 0 auto;
    font-size: 25px;
    text-align: center;
    line-height: 32px;
    letter-spacing: 1.25px;
  }

  .header-mm-content {
    gap: 80px;
  }

  .header-mm-title > span {
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
  }
}

/* EVC-Page */
.header-evc {
  background-image: url('../assets/images/evc-bg.png');
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner-evc {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
}

.header-inner-evc > img {
  width: 60%;
  margin: 0 auto;
}

.header-inner-evc-title {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.page-intro {
  padding: 60px 0;
}

.page-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.page-intro-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-intro-left {
  width: 50%;
}

.page-intro-image {
  width: 40%;
}

.page-intro-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
}

.page-intro-text {
  font-size: 30px;
  line-height: 36px;
  margin-top: 32px;
}

.page-bleed {
  padding: 60px 0;
  background-color: rgba(106, 191, 85, 0.75);
  color: #ffffff;
}

.page-bleed-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.page-bleed-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 60px 0;
}

.page-bleed-center .page-bleed-image {
  width: 30%;
}

.page-bleed-center .page-bleed-info {
  width: 34%;
}

.page-bleed-image {
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.page-bleed-info {
  width: 48%;
}

.page-bleed-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
}

.page-bleed-text {
  font-size: 30px;
  line-height: 36px;
  margin-top: 32px;
}

.page-bleed-text > span {
  display: block;
  margin-top: 16px;
}

.page-bleed-image-content {
  width: 65%;
}

.page-bleed-fig {
  width: 35%;
}

.page-bleed-pic {
  margin-top: 32px;
}

.page-study {
  padding: 60px 0;
}

.page-study-param {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.page-study-param-image {
  width: 20%;
}

.page-study-param-info {
  width: 58%;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
}

.page-study-title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 2.25px;
  text-align: center;
}

.page-study-title > span {
  font-weight: 400;
}

.page-study-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 100%;
  margin-top: 24px;
}

.page-study-stats-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-study-stats-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 1.57px;
  text-align: center;
}

.page-study-stats-text {
  font-size: 35px;
  line-height: 42px;
  letter-spacing: 1.57px;
  text-align: center;
  font-weight: 400;
}

.page-study-find {
  padding-top: 60px;
}

.page-study-find-title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 2.25px;
  text-align: center;
}

.page-study-find-title > span {
  font-weight: 400;
}

.page-study-find-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.page-study-find-card {
  width: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.page-study-find-card-no {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #9aa0a6;
  box-shadow: 0px 3px 6px #00000029;
  color: #ffffff;
  font-size: 30px;
  line-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-study-find-card-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.35px;
}

.page-study-find-card-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 1.35px;
}

.page-study-find > img {
  width: 60%;
  margin: 0 auto;
  margin-top: 32px;
}

.page-bleed-title-center {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.page-bleed-text-center {
  font-size: 30px;
  line-height: 36px;
  margin-top: 32px;
  text-align: center;
}

.page-bleed-text-center > span {
  display: block;
  margin-top: 16px;
}

.bleed-mt {
  margin-top: 60px;
}

@media (max-width: 1280px) {
  .page-bleed-content-bottom {
    flex-direction: column;
    gap: 0;
  }

  .page-bleed-image-bottom {
    width: 100%;
    align-items: center;
  }

  .page-bleed-info-bottom {
    width: 100%;
  }

  .page-bleed-center {
    justify-content: space-between;
  }

  .page-intro-left {
    width: 60%;
  }

  .page-intro-image {
    width: 40%;
  }

  .page-study-find-cards {
    justify-content: space-between;
  }

  .page-study-find-card {
    width: 30%;
  }

  .page-study-find > img {
    width: 60%;
  }

  .page-bleed-center .page-bleed-image {
    width: 40%;
  }

  .page-bleed-center .page-bleed-info {
    width: 48%;
  }

  .page-study-param {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
  }

  .page-study-param-info {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .page-intro-content {
    flex-direction: column;
  }

  .page-intro-left {
    width: 100%;
  }

  .page-bleed-content,
  .page-bleed-image-bottom {
    flex-direction: column;
    gap: 32px;
  }

  .page-bleed-image-content {
    width: 100%;
  }

  .page-bleed-image {
    width: 100%;
    order: 2;
  }

  .page-bleed-fig {
    width: 40%;
  }

  .page-bleed-info {
    width: 100%;
    order: 2;
  }

  .page-bleed-center {
    flex-direction: column;
    gap: 32px;
  }

  .page-bleed-center .page-bleed-image {
    width: 100%;
  }

  .page-bleed-center .page-bleed-info {
    width: 100%;
    order: 2;
  }

  .page-study-find-cards {
    flex-wrap: wrap;
  }

  .page-study-find-card {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .header-inner-evc > img {
    width: 100%;
    margin: 0 auto;
  }

  .header-inner-evc-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .page-intro-title {
    font-size: 25px;
    line-height: 32px;
  }

  .page-intro-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 8px;
  }

  .page-intro-image {
    width: 80%;
  }

  .page-bleed-title,
  .page-bleed-title-center {
    font-size: 25px;
    line-height: 32px;
  }

  .page-bleed-text,
  .page-bleed-text-center {
    font-size: 16px;
    line-height: 20px;
    margin-top: 24px;
  }

  .page-study-param-image {
    width: 50%;
  }

  .page-study-title,
  .page-study-find-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 1.13px;
  }

  .page-study-stats {
    flex-direction: column;
    gap: 24px;
  }

  .page-study-stats-title,
  .page-study-find-card-title {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.68px;
  }

  .page-study-stats-text,
  .page-study-find-card-text {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.68px;
  }

  .page-study-find-card {
    width: 100%;
  }

  .page-study-find > img {
    width: 80%;
  }

  .bleed-mt {
    gap: 60px;
  }

  .bleed-mt .page-bleed-image {
    order: 2;
  }

  .bleed-mt .page-bleed-info {
    order: 1;
  }
}

/* SPG-Page */
.header-spg {
  background-image: url('../assets/images/spg-bg.png');
  height: 100dvh;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}

.header-inner {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 0 auto;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  gap: 80px;
}

.header-inner-title {
  color: #023c56;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1.75px;
  text-shadow: 1px 1px 3px #00000073;
  text-transform: uppercase;
}

.spg-intro {
  padding: 60px 0;
}

.spg-intro-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: 900;
  text-align: center;
}

.spg-intro-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.spg-intro-img {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 140px;
}

.spg-side-content {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.spg-side-right {
  width: 50%;
  background-image: url('../assets/images/spg-vertical.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: 923px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spg-side-right > img {
  width: 80%;
  margin: 0 auto;
}

.spg-side-left {
  width: 50%;
  background-color: #2e3238;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spg-side-text {
  padding: 24px;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  color: #ffffff;
}

.spg-bleed {
  padding: 60px 0;
  background-color: #2e3238;
  color: #ffffff;
}

.spg-bleed-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.spg-bleed-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.spg-bleed-right {
  width: 50%;
}

.spg-bleed-title {
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-weight: 900;
}

.spg-bleed-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.spg-bleed-transparent {
  padding: 60px 0;
  color: #000000;
}

.spg-bleed-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.spg-bleed-white {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.spg-bleed-images {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.spg-white-title {
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-weight: 900;
}

.spg-white-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.spg-full-bleed {
  padding: 60px 0;
  background-color: #2e3238;
  color: #ffffff;
}

.spg-full-bleed-title {
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-weight: 900;
}

.spg-full-bleed-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.spg-full-bleed-images {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
}

.spg-group-images {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.spg-group-images > img:nth-child(1) {
  width: 30%;
}

.spg-group-images > img:nth-child(2) {
  width: 30%;
}

.spg-group-images > img:nth-child(3) {
  width: 30%;
}

.spg-full-bleed-images > img:nth-child(1) {
  width: 30%;
}

.spg-full-bleed-images > img:nth-child(2) {
  width: 70%;
}

.spg-group {
  padding: 60px 0;
}

.spg-group-title {
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-weight: 900;
}

.spg-group-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

.spg-email {
  padding: 60px 0;
  background-color: #2e3238;
  color: #ffffff;
}

.spg-email-content {
  display: flex;
  justify-content: space-between;
  gap: 44px;
}

.spg-email-image {
  width: 33%;
}

.spg-email-right {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spg-email-title {
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-weight: 900;
}

.spg-email-text {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 1023px) {
  .header-inner img {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }

  .spg-side-content {
    margin-top: 80px;
    flex-direction: column;
  }

  .spg-side-left {
    width: 100%;
    padding: 100px 16px;
  }

  .spg-side-right {
    width: 100%;
  }

  .spg-bleed-content {
    flex-direction: column;
    gap: 16px;
  }

  .spg-bleed-left {
    width: 100%;
  }

  .spg-bleed-right {
    width: 100%;
  }

  .spg-bleed-white {
    width: 100%;
  }

  .spg-bleed-images {
    width: 100%;
    order: 2;
  }

  .spg-full-bleed-images {
    margin-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }

  .spg-group-images {
    margin-top: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
  }

  .spg-group-images > img:nth-child(1) {
    width: 50%;
  }

  .spg-group-images > img:nth-child(2) {
    width: 50%;
  }

  .spg-group-images > img:nth-child(3) {
    width: 50%;
  }

  .spg-full-bleed-images > img:nth-child(1) {
    width: 50%;
  }

  .spg-full-bleed-images > img:nth-child(2) {
    width: 90%;
  }

  .spg-email-content {
    flex-direction: column;
    align-items: center;
  }

  .spg-email-image {
    width: 100%;
    order: 2;
  }

  .spg-email-image img:nth-child(1) {
    width: 100%;
  }

  .spg-email-image-middle img:nth-child(2) {
    width: 100%;
  }

  .spg-email-image-middle {
    order: 3;
  }

  .spg-email-right {
    width: 100%;
    order: 1;
  }

  .spg-intro-img {
    margin-top: 80px;
  }
}

@media (max-width: 767px) {
  .spg-email-title,
  .spg-group-title,
  .spg-full-bleed-title,
  .spg-white-title,
  .spg-bleed-title,
  .spg-intro-title {
    font-size: 25px;
    line-height: 32px;
  }

  .spg-email-text,
  .spg-group-text,
  .spg-full-bleed-text,
  .spg-white-text,
  .spg-bleed-text,
  .spg-intro-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: 24px;
  }

  .header-inner-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0.88px;
  }

  .spg-side-text {
    font-size: 16px;
    line-height: 20px;
  }

  .spg-side-right > img {
    max-width: 500px;
    width: 94%;
    margin: 0 auto;
  }
}
