body,
p,
h1,
h2,
h3,
h4 {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2 {
  text-transform: uppercase;
}

body {
  overflow-x: hidden;
  background-color: var(--color-black);
  color: var(--color-white);
}

body.no-scroll {
  overflow: hidden
}

ul li {
  list-style-type: none
}

* {
  --webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  text-rendering: geometricPrecision
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  background: #0000;
  border: none;
  outline: none;
  cursor: pointer;
}

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

figure {
  margin: 0;
}

@font-face {
  font-display: swap;
  font-family: geografic-b-bold;
  src: url(https://specials.techops.disn.io/ng/global/fonts/GeographBrandWeb-Bold.woff2) format("woff2")
}

@font-face {
  font-display: swap;
  font-family: geografic-b-medium;
  src: url(https://specials.techops.disn.io/ng/global/fonts/GeographBrandWeb-Medium.woff2) format("woff2")
}

@font-face {
  font-display: swap;
  font-family: geografic-b-regular;
  src: url(https://specials.techops.disn.io/ng/global/fonts/GeographBrandWeb-Regular.woff2) format("woff2")
}

@font-face {
  font-display: swap;
  font-family: geografic-ar-bold;
  src: url(https://specials.techops.disn.io/ng/global/fonts/GeographArabic-Bold.woff2) format("woff2")
}

@font-face {
  font-display: swap;
  font-family: geografic-ar-regular;
  src: url(https://specials.techops.disn.io/ng/global/fonts/GeographArabic-Regular.woff2) format("woff2")
}

@font-face {
  font-display: swap;
  font-family: geografic-ar-medium;
  src: url(https://specials.techops.disn.io/ng/global/fonts/GeographArabic-Bold.woff2) format("woff2")
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --brand-yellow: #fc0;
  --brand-gray-40: #999;
  --font-family-geografic-bold: "geografic-bold", sans-serif;
  --font-family-geografic-b-bold: "geografic-b-bold", sans-serif;
  --font-family-geografic-b-medium: "geografic-b-medium", sans-serif;
  --font-family-geografic-b-regular: "geografic-b-regular", sans-serif;
  --font-family-geografic-ar-bold: "geografic-ar-bold", sans-serif;
  --font-family-geografic-ar-medium: "geografic-ar-medium", sans-serif;
  --font-family-geografic-ar-regular: "geografic-e-regular", sans-serif;
  --font-family-geografic: "geografic", sans-serif;
  --font-family-georgia: "georgia", serif;
}

/* LANGUAGE FONT */
body.ng-brand-web {
  --font-regular: var(--font-family-geografic-b-regular);
  --font-medium: var(--font-family-geografic-b-medium);
  --font-bold: var(--font-family-geografic-b-bold);
}

body.ng-ar {
  --font-regular: var(--font-family-geografic-ar-regular);
  --font-medium: var(--font-family-geografic-ar-medium);
  --font-bold: var(--font-family-geografic-ar-bold);
  letter-spacing: 0 !important;
}

body.ng-ar,
body.ng-ar h1,
body.ng-ar h2,
body.ng-ar h3,
body.ng-ar h4,
body.ng-ar h5,
body.ng-ar h6,
body.ng-ar p,
body.ng-ar a,
body.ng-ar span {
  letter-spacing: 0 !important;
}


/* HEADER */
header {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  width: 64px;
}

header button {
  border: solid 2px var(--color-white);
  padding: 8px 12px;
  font-family: var(--font-medium);
  font-size: 14px;
  color: var(--color-white);
  height: 32px;
  line-height: 0;
}

@media (min-width: 768px) {
  header {
    height: 72px;
    padding: 16px 48px;
  }

  header img {
    width: 112px;
  }
}

@media (min-width: 1280px) {
  header {
    max-width: 1280px;
    margin: auto;
    padding: 16px 100px;
  }
}


/* HERO */
.hero {
  width: 100%;
  height: 256px;
  background-image: url('https://specials.techops.disn.io/ng/global/mena/assets/images/hero-bg-mobile.png');
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: black;
  min-height: 360px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero .hero__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  text-align: center;
  font-family: var(--font-bold);
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero p {
  text-align: center;
  font-family: var(--font-medium);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .hero {
    height: 416px;
    background-image: url('https://specials.techops.disn.io/ng/global/mena/assets/images/hero-bg-desktop.png');
    padding: 0 56px;
    background-size: cover;
    background-position: center;
  }

  .hero .hero__container {
    max-width: 1024px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.1px;
  }
}

/* CONTENT & SECTIONS */
.content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 16px
}

.content__section {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.content__section .section__title {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.content__section .section__title .title__bar {
  width: 8px;
  height: 32px;
  background-color: var(--brand-yellow);
  height: auto;
  align-self: stretch; 
}

.content__section .section__title h2 {
  font-family: var(--font-medium);
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .content {
    gap: 40px;
    padding: 40px 32px
  }

  .content__section {
    gap: 32px
  }
}

@media (min-width: 1280px) {
  .content {
    max-width: 1280px;
    margin: auto;
    gap: 80px;
    padding: 80px 100px;
  }
}

/* SOCIALS */
.socials__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.socials__container .social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.socials__container .social img {
  width: 40px;
  height: 40px;
}

.socials__container .social a {
  text-align: center;
  font-family: var(--font-bold);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.1px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: var(--brand-yellow);
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

body.ng-ar .socials__container .social a {
  direction: ltr;
}

@media (min-width: 768px) {
  .socials__container {
    flex-direction: row;
    margin: auto;
  }

  .socials__container .social {
    gap: 16px;
    padding: 24px;
  }
}

@media (min-width: 1280px) {
  .socials__container {
    gap: 32px;
  }
}

/* HOW TO WATCH */
.how-to-watch__content {
  font-family: var(--font-regular);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.1px;
}

.how-to-watch__content ol {
  padding-inline-start: 16px;
}

html[lang="ar"] ol {
  list-style-type: arabic-indic;
}

/* WHERE TO WATCH */
.htg__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
  padding: 0;
  width: 100%
}

.htg-card {
  background: #222;
  color: var(--color-white);
  padding: 16px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}

.htg-card__logo {
  transition: all .5s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 9rem;
  width: 9rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.htg-card__logo img {
  width: 100%;
  height: auto
}

.htg-card__list {
  transition: all .5s ease-in-out;
  box-sizing: border-box;
  font-size: .875rem;
  font-weight: 400;
  position: absolute;
  bottom: -1.5rem;
  width: 100%;
  left: 0;
  right: 0;
  padding: 0 1rem 1.5rem;
  opacity: 0
}

.htg-card__list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-medium);
}

.htg-card__list ul li {
  margin: 0;
  display: flex;
  justify-content: space-between
}

.htg-card__list--message {
  margin: 0 0 .5rem;
  width: 100%;
  text-align: center
}

.htg-card__list--name {
  color: var(--color-white);
  margin: 0 .5rem .5rem 0;
  text-align: left;
  display: flex;
  align-items: flex-end
}

.htg-card__list--dial {
  color: var(--brand-yellow);
  margin: 0 0 .5rem .5rem;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end
}

.htg-card a.ng-btn {
  transition: all .5s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 8px 6px;
}

.htg-card a.ng-btn.btn-ghost {
  background-color: #333
}

.htg-card a.ng-btn.btn-ghost:hover {
  background-color: var(--brand-yellow);
  color: var(--color-black)
}

.htg-card a.ng-btn.btn-ghost:hover img {
  fill: var(--color-white)
}

.htg-card a.ng-btn[href="#"] {
  display: none
}

.htg-card a.ng-btn.btn-text {
  right: 0;
  bottom: 0;
  top: auto;
  padding: .5rem 1rem;
  text-transform: uppercase;
  max-width: calc(100% - 32px)
}

.htg-card:hover {
  transition: all .5s ease
}

.htg-card:hover .htg-card__logo {
  transition: all .5s ease;
  top: .5rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  transform: translate(0)
}

.htg-card:hover .htg-card__list {
  transition: all .5s ease-in-out;
  bottom: -.5rem;
  opacity: 1
}

.htg-card:hover .ng-btn {
  transition: all .5s ease-in-out;
  opacity: 1;
  top: 1.25rem;
  right: 1rem
}

.htg-card:hover .ng-btn.btn-text {
  bottom: 1rem;
  right: 1rem;
  top: auto
}

@media (min-width: 768px) {
  .htg__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 768px;
  }
}

@media (min-width: 1280px) {
  .htg__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 32px;
    width: 100%;
  }

  .htg-card {
    width: 336px;
  }
}

/* ENQUIRIES */
.enquiries__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.enquiry__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enquiry__block h3 {
  font-family: var(--font-medium);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.1px;
}

.enquiry__block .contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}

.enquiry__block .contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enquiry__block .contact__info p {
  font-family: var(--font-medium);
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.1px;
}

.enquiry__block .contact__info a {
  display: flex;
  gap: 8px;
}

.enquiry__block .contact__info a img {
  width: 16px;
}

.enquiry__block .contact__info a span {
  font-family: var(--font-bold);
  font-size: 12px;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .enquiries__content {
    gap: 16px;
  }

  .enquiry__block {
    gap: 0;
  }

  .enquiry__block .contact__list {
    flex-direction: row;
    gap: 32px;
    padding: 24px 0;
  }

  .enquiry__block .contact__info {
    padding: 0 32px;
  }
}

/* FOOTER */
footer {
  width: 304px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 40px;
}

footer img {
  width: 136px;
}

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

footer .infoList {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-inline-start: 0;
}

footer .footer__content a,
footer .footer__content p {
  color: var(--brand-gray-40);
  text-align: center;
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
}

body.ng-ar footer .footer__content p {
  direction: ltr;
}

@media (min-width: 768px) {
  footer {
    width: 100%;
    margin: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 32px 40px;
  }

  footer img {
    width: 168px;
  }

  footer .footer__content {
    gap: 16px;
    align-items: flex-end;
  }

  footer .infoList {
    flex-direction: row;
  }

  footer .footer__content a,
  footer .footer__content p {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.2px;
  }
}

@media (min-width: 1280px) {
  footer {
    max-width: 1280px;
    margin: auto;
  }

  footer .footer__content {
    flex-grow: 1;
    align-items: center;
  }
}