/* Reseting browser's styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */
body {
  font-family: 'interstate-condensed', Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

.body-home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
}

/* Header */
.header {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 880px;
}

.logo {
  display: block;
  margin: 40px 0;
}

.logo img {
  width: 100%;
  max-width: 260px;
}

.title {
  font-size: 74px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

/* Content */
.content {
  margin: 0 auto auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 1260px;
}

.content h2 {
  margin: 20px 0;
}

.content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.content p:last-child {
  margin-bottom: 0;
}

.content a {
  color: inherit;
}

.content ul {
  margin-bottom: 20px;
  margin-left: 18px;
}

.content ul:last-child {
  margin-bottom: 0;
}

.content ul ul {
  margin-top: 10px;
}

.content li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.content li:last-child {
  margin-bottom: 0;
}

.page-turner {
  margin: 0 -30px;
}

.page-turner-embed {
  width: 100%;
  max-width: 100%;
  height: 420px;
}

.extra-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.extra-info a {
  font-weight: 700;
  color: #000;
}

/* Footer */
.footer {
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.footer-inner {
  display: grid;
  gap: 10px;
  padding: 0px 30px;
}

.footer-inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}

.footer-inner a {
  color: initial;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.social-links img {
  display: block;
  transition: transform 0.3s ease;
}

.flag-banner {
  margin-top: 10px;
}

.flag-banner img {
  width: 100%;
  display: block;
}

/* Small Screens (Same breakpoint as "tsmall") */
@media (min-width: 520px) {
  .page-turner-embed {
    height: 480px;
  }
}

/* Medium Screens (Same breakpoint as "smedium") */
@media (min-width: 768px) {
  .logo img {
    max-width: 335px;
  }

  .title {
    font-size: 95px;
    line-height: 75px;
  }

  .subtitle {
    font-size: 25px;
    line-height: 28px;
  }

  .content {
    padding-top: 25px;
  }

  .page-turner-embed {
    height: 540px;
  }
}

/* Large Screens (Same breakpoint as "mlarge") */
@media (min-width: 980px) {
  .title {
    font-size: 116px;
    line-height: 90px;
  }

  .subtitle {
    font-size: 30px;
    line-height: 30px;
  }

  .page-turner-embed {
    height: 620px;
  }

  .footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 30px;
  }
}

/* Extra Large Screens (Same breakpoint as "xlarge") */
@media (min-width: 1260px) {
  .page-turner-embed {
    height: 700px;
  }
}

/* Extra Extra Large Screens (Same breakpoint as "xxxlarge") */
@media (min-width: 1600px) {
  .page-turner-embed {
    height: 780px;
  }
}
