html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
}

/* TYPOGRAPHY */

h1 {
  font-size: 57px;
  line-height: 64px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

h2 {
  font-size: 45px;
  line-height: 52px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  background-color: #00aeef;
  color: #FFFFFF;
  padding: 5px 10px;
  width: fit-content;
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h4 {
  font-size: 24px;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h5 {
  font-size: 24px;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h5 {
  font-size: 14px;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0px;
}

p {
  font-size: 18px;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #606060;
}

ul {
  font-size: 18px;
  line-height: 26px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* COLOURS */

/* SEGMENTS */

:root {
  --color1: #C2B8FF;
  --color2: #45396E;
  --color3: #92D6ED;
}

/* BRAND */

.shujaaz-red {
  background-color: #FA0005;
  color: #FFFFFF;
}

.shujaaz-ecru {
  background-color: #FFE5D3;
  color: #000000;
}

.shujaaz-light-grey {
  background-color: #F2F2F2;
  color: #000000;
}

.black {
  background-color: #191111;
  color: #FFFFFF;
  border-top: 0px;
}

.blue {
  border-top: #00aeef solid 2px;
}

.white {
  background-color: #FFFFFF;
  color: #000000;
}

.gold {
  background-color: #00aeef;
  color: #FFFFFF;
}

/* COMPONENTS */

/* NAV */

.top-nav {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  color: #000000;
  z-index: 1500;
  margin: 0;
  padding: 0 30px;
}

/* NAV SECTIONS*/

.static {
  display: flex;
  gap: 20px;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: start;
  padding: 10px 0;
  width: 161.833px;
}

.menu,
.CTA,
.toggle {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}

.toggle {
  display: none;
  cursor: pointer;
}

.nav-menu-item-primary,
.nav-menu-item-CTA,
.toggle {
  padding: 5px 15px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
}

.logo {
  max-height: 30px;
}

.nav-menu-item-primary {
  background-color: #F2F2F2;
  color: #000000;
}

.nav-menu-item-primary:hover {
  background-color: #e4e4e4;
  color: #000000;
}

.nav-menu-item-primary.active {
  background-color: #00aeef;
  color: #FFFFFF;
}

.nav-menu-item-CTA {
  background-color: #00aeef;
  color: #FFFFFF;
  border-radius: 25px;
}

.nav-menu-item-CTA:hover {
  background-color: #0468B1;
  color: #FFFFFF;
}

.toggle:hover {
  background-color: #F2F2F2;
  color: #000000;
}

/* CONTENT CONTAINER */

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* SECTIONS */

.divider {
  height: 50px;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  box-sizing: border-box;
  width: 100%;
}

.section-text-content {
  max-width: 650px;
  padding: 0px 40px 0px 40px;
}

.text-content {
  max-width: 650px;
}

.section-header {
  background-color: #00aeef;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: 0.4px;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 5px 15px;
  width: fit-content;
}

/* HERO CONTAINER */
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  top: -1px;
  padding: 20px;  /* Add padding for space between elements */
  background-color: #00aeef;
  box-sizing: border-box; /* Ensure padding doesn't affect height */
}

/* HERO VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: none;
  mix-blend-mode: screen;
  -webkit-filter: grayscale(100%) contrast(100%);
  filter: grayscale(100%) contrast(100%);
  opacity: 1;
}

/* HERO CENTRE */
.hero-centre {
  z-index: 2;
  align-self: center;
  margin: 0;
}

.hero-iframe {
  width: 100%;
  max-width: calc(60vh * 16 / 9); /* Limit width based on viewport height */
  aspect-ratio: 16 / 9;
  height: auto; /* Let height adjust automatically */
  object-fit: cover;
  border-radius: 10px;
  margin: 20px auto; /* Center the element and add vertical spacing */
  display: block;
  z-index: 1;
}

/* HERO TITLE */
.hero-title {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;  /* Adjust padding for responsiveness */
}

.hero-title h1 {
  margin: 0;
  text-transform: uppercase;
  background-color: #FA0005;
  color: #FFFFFF;
  padding: 5px 15px;
}

.hero-title h2 {
  margin: 0;
  background-color: rgba(255, 255, 255, 0);
  color: #000000;
  font-size: 24px;
  line-height: 30px;
}

/* HERO BOTTOM */
.hero-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  width: 100%;
  z-index: 2;
  margin-bottom: 20px; /* Space at the bottom */
}

.hero-logo {
  margin: 5px;
  max-height: 50px;
}

.hero-bottom .hero-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-button {
  color: #00aeef;
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
  background-color: #c0eeff;
  transition: background-color 0.3s, color 0.3s;
}

.hero-button img {
  padding: 15px;
  background-color: #00aeef;
  color: #ffffff;
  border-radius: 50px;
  width: 25px;
}

.hero-button p {
  margin: 0px;
  padding-right: 15px;
}

@media (max-width: 815px) {

  .hero-logo {
    max-height: 40px;
  }

  .hero-button {
    font-size: 16px;
  }
}


/* INTRO */

.introduction {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logos {
  background-color: #FFFFFF;
  padding: 20px;
  margin: 40px 0px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
  width: fit-content;
}

.logos img {
  width: 30%;
  min-width: 40px;
  height: auto;
}

.download-CTA {
  background-color: #00aeef;
  color: #FFFFFF;
  margin: 40px 0px;
  border-radius: 50px;
  padding: 20px 0px;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.download-CTA:hover {
  background-color: #0468B1;
  transition: background-color 0.3s, color 0.3s;
}

.download-CTA h3 {
  color: #FFFFFF;
  margin: 0px;
}

/* PHOTOWALL */
.photowall-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px;
  width: 100%;
  height: 100%;
  background-color: #00aeef;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 40px;
}

.photowall-content>img {
  width: 100%;
  height: auto;
  grid-column: span 1;
  transition: transform 0.3s ease;
  transform-origin: center center;
  mix-blend-mode: screen;
  -webkit-filter: grayscale(100%) contrast(100%);
  filter: grayscale(100%) contrast(100%);
  opacity: 1;
}

.photowall-small-content {
  background-color: #00aeef;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  /* Adjust minmax values */
  grid-template-rows: repeat(4, 1fr);
  /* Explicitly define four rows */
  width: 100%;
}

.photowall-small-image {
  width: 100%;
  height: 100%;
  /* Ensure images fill the grid cells */
  object-fit: cover;
  /* Maintain aspect ratio */
  opacity: 1;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease, filter 0.5s ease-in-out;
  /* Add filter transition */
  transform-origin: center center;
  mix-blend-mode: screen;
  -webkit-filter: grayscale(100%) contrast(100%);
  filter: grayscale(100%) contrast(100%);
}

.photowall-small-image.fade-in {
  opacity: 1;
}

.photowall-small-image.fade-out {
  opacity: 0;
}

.box {
  background-color: #e6f7fd;
  padding: 0px 40px;
  color: #000000;
}

/* SEGMENTS */

.all-segments {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
}

.segment-container {
  position: relative;
  background-color: #191111;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 25px;
  gap: 100px;
  overflow: hidden;
  margin-bottom: 100px;
  border-radius: 25px;
}

.segment {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-image: linear-gradient(#331f1f, #191111);
  padding: 20px;
  border-radius: 25px;
  max-width: 1500px;
}

.segment-intro {
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(#331f1f, #191111);
  padding: 20px 20px 20px 20px;
  border-radius: 25px;
  max-width: 1500px;
}

.segment-content {
  z-index: 2;
  display: flex;
  width: 100%;
  border-top: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.segment-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.segment-name {
  background-color: var(--color1);
  color: #191111;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Roboto Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 10px;
}

.segment-content p {
  margin: 0px;
}

.segment-content-left {
  display: flex;
  flex-direction: column;
  width: 30%;
  justify-content: start;
  gap: 20px;
}

.segment-content-center {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  width: 40%;
  height: fit-content;
}

.segment-content-right {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 20px;
  justify-content: start;
}

.segment-content-header {
  background-color: var(--color1);
  color: #151119;
  border-radius: 10px 10px 0px 0px;
  border-bottom: 0px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.4px;
  font-family: "Roboto Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding: 4px 10px 2px 10px;
  transition: background-color 0.3s, color 0.3s;
}

.segment-content-text {
  background-color: #FFFFFF;
  color: var(--color2);
  border-radius: 0px 0px 10px 10px;
  padding: 10px 10px 10px 10px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0px;
  column-gap: 10px;
}

.segment-content-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.segment-content-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}


.segment-content-type {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.segment-content-type {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 700;
}

.segment-super {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.segment-quote {
  position: relative;
  text-align: left;
  margin-bottom: auto;
  padding: 10px;
  border-radius: 15px;
  border: 2px var(--color1) solid;
  background-color: var(--color2);
  margin: 0 auto;
  transition: opacity 0.5s ease-in-out;
  height: 120px;
  align-content: center;
  margin-bottom: auto;
  font-size: 14px;
  line-height: 22px;
}

.segment-quote::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--color1);
  transition: opacity 0.5s ease-in-out;
  font-size: 14px;
  line-height: 22px;
}

.segment-quote p {
  margin: 0;
  padding: 0;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  font-size: 14px;
  line-height: 22px;
}

.segment-quote p.active {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
    font-size: 14px;
  line-height: 22px;
  font-size: 14px;
  line-height: 22px;
}

.segment-character-image {
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  margin-top: auto;
}

.segment-character-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  flex: 1 1 auto;
  margin: 20px 10px;
  border-radius: 200px 200px 0px 0px;
}

.segment-character-stats {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 90%;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid var(--color1);
  background-color: #FFFFFF;
  transition: background-color 0.3s, color 0.3s;
}

.segment-pop {
  width: 100%;
}

.segment-pop-bar-chart {
  display: flex;
  flex-direction: row;
  gap: 0px;
  height: 28px;
  width: 100%;
  background-color: var(--color2);
  transition: background-color 0.3s, color 0.3s;
}

.segment-pop-bar-chart-data {
  height: 100%;
  width: 100%;
  border-right: 2px solid var(--color1);
  border-left: 0px;
  transition: background-color 0.3s, color 0.3s;
}

.segment-pop-bar-chart-data.active {
  background-color: var(--color3);
  transition: background-color 0.3s, color 0.3s;
}

.segment-pop-bar-chart-data:not(.active) {
  background-color: var(--color2);
  transition: background-color 0.3s, color 0.3s;
}

.segment-pop-bar-chart-data:nth-child(6) {
  border-right: 0px;
}

.segment-pop-bar-chart-header {
  color: #151119;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.4px;
  font-family: "Roboto Mono", sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 6px 10px 6px 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2px;
}

/* UGC */

.segment-video-container {
  position: relative;
}

.UGC-video {
  width: 100%;
  height: auto;
  border-radius: 0px 0px 10px 10px;
}

.icon {
  width: 24px;
  height:24px;
}

.play-button,
.pause-button {
  position: absolute;
  bottom: 15px;
  left: 10px;
  background-color: var(--color1);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.play-button:hover,
.pause-button:hover {
  background-color: #151119;
}

.play-button {
  display: flex;
}

.pause-button {
  display: none;
}

.hero-controls{
  display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 10px;
}

/* CONTRIBUTORS */

.contributors-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 40px 0px 40px 0px;
  background-image: linear-gradient(#331f1f, #191111);
  color: white;
}

.contributors-container span {
  font-weight: bold;
  font-style: italic;
}

.contributors-column {
  padding: 0px;
  box-sizing: border-box;
  text-align: center;
}

.contributors-column p {
  font-size: 14px;
}

@media (max-width: 1400px) {
  .contributors-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 808px) {
  .segment {
    max-width: 600px;
  }

}

@media (max-width: 620px) {
  .contributors-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contributors-column p {
  margin: 0 0;
}

/* FOOTER */

.footer {
  background-color: #FFFFFF;
  color: #606060;
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 30px 15px 30px;
  align-items: center;
}

.footer p {
  font-size: 14px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .segment-container {
    padding: 0px 30px 0px 30px;
    transition: max-height 0.3s ease-in-out;
  }
}

@media (max-width: 1010px) {
  .top-nav {
    flex-direction: column;
    gap: 0px;
  }

  .menu {
    display: none;
  }

  .CTA {
    display: none;
    padding-bottom: 20px;
  }

  .menu,
  .CTA {
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.3s ease-in-out;
  }

  .toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 10px;
    text-align: center;
  }

  .photowall-content {
    grid-template-columns: repeat(10, 1fr);
  }

}

/* LARGE SMARTPHONE */

@media (max-width: 810px) {

  .hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .divider {
    height: 10px;
  }

  .top-nav {
    padding: 0px 20px 0px 20px;
  }

  .section-text-content {
    padding: 0px 20px 0px 20px;
  }

  .video-content {
    padding: 10px;
  }

  .segment-container {
    padding: 0px 10px 0px 10px;
  }

  .segment-select {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .segment-select button {
    font-size: 12px;
  }

  .segment-select button img {
    display: none;
  }

  .segment-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .segment-content-left,
  .segment-content-center,
  .segment-content-right {
    width: 100%;
  }

  .segment-quote {
    height: 160px;
  }

  .segment-character-stats {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .segment-pop-bar-chart {
    height: 20px;
  }

  .segment-content-left {
    order: 2;
  }

  .segment-content-center {
    order: 1;
  }

  .segment-content-right {
    order: 3;
  }

  .footer {
    flex-direction: column;
    align-items: start;
    padding: 15px 20px 15px 20px;
  }

  .footer p {
    margin: 0px;
  }

}

@media (max-width: 770px) {
  .photowall-content {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 550px) {
  .photowall-content {
    grid-template-columns: repeat(6, 1fr);
  }

  .logos {
    padding: 10px;
    gap: 10px;
  }

}

/* STANDARD SMARTPHONE */

@media (max-width: 375px) {
  .top-nav {
    padding: 0px 10px 0px 10px;
  }

  .footer {
    padding: 10px 10px 10px 10px;
  }

  .section-text-content {
    padding: 0px 10px;
  }

  .logos {
    flex-direction: column;
    gap: 20px;
  }

  .segment-container {
    padding: 0px 0px 0px 0px;
  }

  .play-button,
  .pause-button {
    font-size: 18px;
  }
}

/* SMALL SMARTPHONE */

@media (max-width: 320px) {
  .hero-title h1 {
    margin: 0px;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    padding: 5px 15px;
  }
}

.hidden {
  display: none;
}


/* RESPONSIVE TYPOGRAPHY */

/* LARGE SMARTPHONE (MAX WIDTH: 770px) */
@media (max-width: 770px) {
  h1 {
    font-size: 42px;
    line-height: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 42px;
  }

  h3 {
    font-size: 28px;
    line-height: 34px;
  }

  h4 {
    font-size: 20px;
    line-height: 24px;
  }

  h5 {
    font-size: 16px;
    line-height: 30px;
  }

  p {
    font-size: 16px;
    line-height: 22px;
  }

  ul {
    font-size: 16px;
    line-height: 22px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
  }
}

/* STANDARD SMARTPHONE */

@media (max-width: 375px) {

  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

/* RESPONSIVE TYPOGRAPHY FOR LARGER SCREENS */

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
  h1 {
    font-size: 64px;
    line-height: 72px;
  }

  h2 {
    font-size: 52px;
    line-height: 60px;
  }

  h3 {
    font-size: 36px;
    line-height: 44px;
  }

  h4 {
    font-size: 28px;
    line-height: 32px;
  }

  h5 {
    font-size: 26px;
    line-height: 30px;
  }

  p, ul {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Extra Large Screens (min-width: 1600px) */
@media (min-width: 1600px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }

  h2 {
    font-size: 60px;
    line-height: 68px;
  }

  h3 {
    font-size: 42px;
    line-height: 50px;
  }

  h4 {
    font-size: 32px;
    line-height: 36px;
  }

  h5 {
    font-size: 28px;
    line-height: 32px;
  }

  p, ul {
    font-size: 22px;
    line-height: 30px;
  }
}

/* HD TV (min-width: 1920px) */
@media (min-width: 1920px) {
  h1 {
    font-size: 80px;
    line-height: 88px;
  }

  h2 {
    font-size: 68px;
    line-height: 76px;
  }

  h3 {
    font-size: 48px;
    line-height: 56px;
  }

  h4 {
    font-size: 36px;
    line-height: 40px;
  }

  h5 {
    font-size: 30px;
    line-height: 34px;
  }

  p, ul {
    font-size: 24px;
    line-height: 32px;
  }
}

/* 2560x1600 Resolution */
@media (min-width: 2560px) {
  h1 {
    font-size: 88px;
    line-height: 96px;
  }

  h2 {
    font-size: 76px;
    line-height: 84px;
  }

  h3 {
    font-size: 54px;
    line-height: 62px;
  }

  h4 {
    font-size: 40px;
    line-height: 44px;
  }

  h5 {
    font-size: 32px;
    line-height: 36px;
  }

  p, ul {
    font-size: 26px;
    line-height: 34px;
  }
}

/* 4K Resolution (3840 x 2160) */
@media (min-width: 3840px) {
  h1 {
    font-size: 96px;
    line-height: 104px;
  }

  h2 {
    font-size: 84px;
    line-height: 92px;
  }

  h3 {
    font-size: 60px;
    line-height: 68px;
  }

  h4 {
    font-size: 44px;
    line-height: 48px;
  }

  h5 {
    font-size: 36px;
    line-height: 40px;
  }

  p, ul {
    font-size: 28px;
    line-height: 36px;
  }
}
