/*
0 - 600px       - Phone
600px - 900px   - Tablet Portrait
900px - 1200px  - Tablet landscape
1200px - 1800px - Our normal styles
1800px +        - Big desktop

$breakpoint argumant choices:
- phone
- tab-port
- tab-land
- big-desktop

Usage:







@include respond(hero-land) {} // 1400px
@include respond(tab-land) {} // 1200px
@include respond(tablet) {} // 998px
@include respond(tab-port) {} // 900px
@include respond(mob-men) {} // 778px
@include respond(phone) {} // 600px
@include respond(small) {} // 450px
@include respond(big-desktop) {} // 1800px +



*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 60%;
  }
}

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #333;
  position: relative;
  overflow-x: hidden;
}

img {
  width: 100%;
}

.center {
  text-align: center;
}

:focus {
  outline: 0;
  box-shadow: 1rem 1rem 3rem rgba(21, 21, 21, 0.6);
}

.bulletinside {
  margin-left: 1em;
}

.carot {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}
@media (max-width: 75em) {
  .carot {
    width: 7px;
    height: 7px;
  }
}
.carot--down {
  transform: rotate(180deg);
}

.display-block {
  display: block;
}

.left-aligned {
  text-align: left;
}

.no-bullet {
  list-style: none;
}

.no-bold {
  font-weight: normal !important;
}

.grid {
  display: grid;
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-3_2-1 {
  grid-template-columns: 2fr 1fr;
}

.col-3_1-2 {
  grid-template-columns: 1fr 2fr;
}

.row-2 {
  grid-template-rows: repeat(2, 1fr);
}

.row-3 {
  grid-template-rows: repeat(3, 1fr);
}

.top-margin-medium {
  margin-top: 3.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
}

a:link {
  text-decoration: none;
}

.text-link {
  position: relative;
  display: inline-block;
}
.text-link:link::before,
.text-link:visited::before {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 2px;
  transition: all 0.2s ease;
}
.text-link--light:link::before,
.text-link--light:visited::before {
  content: "";
  display: block;
  background-color: #fff;
  bottom: -5px;
}
.text-link--dark:link,
.text-link--dark:visited {
  content: "";
  display: inline-block;
  color: #013440;
  font-weight: bolder;
}
.text-link--dark:link::before,
.text-link--dark:visited::before {
  content: "";
  bottom: 0px;
  display: inline-block;
  background-color: #013440;
}
.top-bar .text-link--dark:link::before,
.top-bar .text-link--dark:visited::before {
  content: "";
  bottom: -5px;
  display: inline-block;
  background-color: #333;
}
.text-link:hover::before,
.text-link:active::before {
  content: "";
  display: inline-block;
  width: 100%;
}

.btn {
  border: none;
  background: none;
  cursor: pointer;
}
.btn--pill {
  background-color: #013440;
  color: #fff;
  padding-right: 6.4rem;
  padding-left: 4.4rem;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 200px;
  font-size: 3rem;
  text-decoration: none;
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  display: inline-block;
}
.btn--pill-arrow {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  fill: #fff;
  fill-opacity: 0.5;
  right: 15px;
  transition: translate 0.3s;
}
.btn--pill:hover .btn--pill-arrow {
  transform: translate(3px, -50%);
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s ease;
  background-color: rgba(21, 21, 21, 0.5);
}

/*
.about-slider__wrap {
  position: relative;
  .about-slider {
    column-gap: 1rem;
    &__prev,
    &__next {
      position: absolute;
      color: $color-white;
      font-size: 12rem;
      transform: translateY(-50%);
      top: 50%;
      background: none;
      border: none;
      transition: all 0.2s;
    }

    &__prev {
      left: 1%;
    }
    &__next {
      right: 1%;
    }
    &__arrow-left,
    &__arrow-right {
      width: 70px;
      height: 70px;
      fill: $color-white;
    }
    &__arrow-left path,
    &__arrow-right path {
      transition: fill-opacity 0.2s;
      cursor: pointer;
    }
    &__arrow-left path:hover,
    &__arrow-right path:hover {
      fill-opacity: 0.5;
    }
    .about-slide {
      position: relative;

      &:hover .overlay-dark {
        background-color: rgba($color-blue-green, 0.4);
      }
      &__figure {
      }
      &__img {
        display: block;
      }
      &__caption {
        position: absolute;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        bottom: 3rem;

        h3 {
          color: $color-white;
          font-size: 4.4rem;
          position: relative;
        }
        h4 {
          font-size: 2rem;
          color: $color-white;
          font-family: "Open Sans", sans-serif;
          font-style: italic;
        }
      }
      &__text {
        font-size: 2rem;
        color: $color-white;
        line-height: 3rem;
      }
    }
  }
  .about-slider__nav {
  }
}*/
.about-slider__wrap .about-slider .about-slide {
  position: relative;
}
.about-slider__wrap .about-slider .about-slide:hover .overlay-dark {
  background-color: rgba(1, 52, 64, 0.4);
}
.about-slider__wrap .about-slider .about-slide__img {
  display: block;
  /* display: none; */
  max-height: 600px;
  height: 400px;
}

@media (max-width: 87.5em) {
  .about-slider__wrap .about-slider .about-slide__img {
    height: 500px;
  }
} /* 1400px */

@media (max-width: 48.625em) {
  .about-slider__wrap .about-slider .about-slide__img {
    height: 600px;
  }
} /* 778px */

@media (max-width: 37.5em) {
  .about-slider__wrap .about-slider .about-slide__img {
    height: 500px;
  }
} /* 778px */

.about-slider__wrap .about-slider .about-slide__caption {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* bottom: 3rem; */
}
.about-slider__wrap .about-slider .about-slide__caption h3 {
  color: #fff;
  font-size: 4.4rem;
  position: relative;
}
.about-slider__wrap .about-slider .about-slide__caption h4 {
  font-size: 2rem;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  margin-bottom: 1.6rem;
}
.about-slider__wrap .about-slider .about-slide__caption ul {
  list-style: none;
}
.about-slider__wrap .about-slider .about-slide__text {
  font-size: 2rem;
  color: #fff;
  line-height: 3rem;
}

button.glider-prev,
button.glider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.glider-prev svg,
.glider-next svg {
  width: 8rem;
  height: 8rem;
  fill: #fff;
}
@media (max-width: 48.625em) {
  .glider-prev svg,
  .glider-next svg {
    width: 5rem;
    height: 5rem;
  }
}

button.glider-prev {
  left: 50px;
}

button.glider-next {
  right: 50px;
}

.--glider-hack {
  min-width: 0;
}

.glider-contain {
  scrollbar-color: #ada27f #eddeaf;
  scrollbar-width: thin;
}

.glider-slide {
  margin-right: 0.5rem;
}

.awards .award {
  grid-template-columns: 50% 1fr;
  padding: 8rem;
  border-bottom: 1px solid #666;
  gap: 8rem;
}
@media (max-width: 62.375em) {
  .awards .award {
    gap: 6rem;
  }
}
@media (max-width: 48.625em) {
  .awards .award {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6rem;
  }
}
.awards .award h2 {
  font-size: 4rem;
  margin-bottom: 1.6rem;
}
.awards .award__text p {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  text-align: justify;
}
@media (max-width: 37.5em) {
  .awards .award__text p {
    text-align: left;
  }
}
.awards .award__img-wrap {
  overflow: hidden;
}
.awards .award__img {
  transition: all 0.4s;
}
.awards .award__img:hover {
  transform: scale(1.2);
}

.contact__wrapper {
  padding: 9.6rem;
  font-size: 1.8rem;
  gap: 4.8rem;
  min-height: 700px;
}
@media (max-width: 48.625em) {
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 37.5em) {
  .contact__wrapper {
    padding: 6.4rem;
  }
}

.contact__text h3 {
  font-size: 4.4rem;
  margin-bottom: 1.6rem;
}

.contact__text p {
  line-height: 1.4;
}
.hide-robot {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.contact__postmsg {
  font-size: 20px;
}
.contact__form form {
  gap: 3.2rem;
}
@media (max-width: 62.375em) {
  .contact__form form {
    grid-template-columns: 1fr;
  }
}
.contact__form form label {
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
}
.contact__form form h3 {
  margin-bottom: 0.8rem;
}
.contact__form form input,
.contact__form form textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  padding: 1.6rem;
}
.contact__form form button {
  justify-self: left;
}

.contact__form-msg {
  grid-column: 1/-1;
}

.content {
  padding: 6.4rem;
  width: 90%;
  margin: 0 auto;
  gap: 8rem;
}
@media (max-width: 62.375em) {
  .content {
    grid-template-columns: 1fr;
  }
}
.content h4 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.content--thin {
  width: 60%;
}
@media (max-width: 56.25em) {
  .content--thin {
    width: 70%;
  }
}
@media (max-width: 37.5em) {
  .content--thin {
    width: 90%;
  }
}
.content__video {
  width: 100%;
  aspect-ratio: 16/9;
}
.content__text h3 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.content__text h3:nth-of-type(2n) {
  margin-top: 8rem;
}
.content__text p {
  font-size: 2.4rem;
  color: var(--body);
  line-height: 4rem;
  margin-bottom: 4rem;
  text-align: justify;
}
@media (max-width: 37.5em) {
  .content__text p {
    text-align: left;
  }
}
.content__list {
  font-size: 2.4rem;
  color: var(--body);
  margin-bottom: 4rem;
  text-align: justify;
  margin-left: 2rem;
}
@media (max-width: 37.5em) {
  .content__list {
    text-align: left;
  }
}
.content__list li {
  line-height: 4rem;
}
.content__logos {
  text-align: center;
}
.content__logo {
  max-width: 200px;
}
@media (max-width: 62.375em) {
  .content__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 37.5em) {
  .content__images {
    grid-template-columns: 1fr;
  }
}
.content__caption {
  margin-top: 1.2rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bolder;
}

@media (max-width: 62.375em) {
  .charities-page .content__images h4 {
    display: none;
  }
}

.footer {
  background-color: #151515;
  color: #fff;
  font-size: 1.6rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 200px;
  grid-template-rows: 1fr;
  width: 80%;
  margin: 0 auto;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 87.5em) {
  .footer__main {
    width: 90%;
  }
}
@media (max-width: 62.375em) {
  .footer__main {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 37.5em) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 28.125em) {
  .footer__main {
    grid-template-columns: 1fr;
  }
}
.footer__col:last-child {
  align-self: center;
}
.footer__heading {
  font-size: 3rem;
  margin-bottom: 1.6rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__link:link,
.footer__link:visited {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__logo-img {
  max-width: 200px;
  transform: rotate(10deg);
}
.footer__foot {
  background-color: #151515;
  grid-column: 1/-1;
  display: flex;
  padding: 1.6rem;
  justify-content: space-between;
  border-top: 1px solid #666;
}
@media (max-width: 37.5em) {
  .footer__foot {
    flex-direction: column;
  }
}
.footer__foot-link:link,
.footer__foot-link:visited {
  color: #fff;
}
@media (max-width: 37.5em) {
  .footer__foot-copy {
    margin-bottom: 1rem;
  }
}

@media (max-width: 48.625em) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 37.5em) {
  .gallery {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

.gallery h3 {
  color: #fff;
  font-size: 4.4rem;
}
@media (max-width: 62.375em) {
  .gallery h3 {
    font-size: 3.6rem;
  }
}
@media (max-width: 37.5em) {
  .gallery h3 {
    font-size: 4.4rem;
  }
}

.gallery h4 {
  font-size: 2rem;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}
@media (max-width: 62.375em) {
  .gallery h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 37.5em) {
  .gallery h4 {
    font-size: 2rem;
  }
}

.gallery__item {
  position: relative;
}
.gallery__item:hover .overlay-dark {
  background-color: rgba(1, 52, 64, 0.4);
}
.gallery__item-img {
  display: block;
}
.gallery__item-caption {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3rem;
}

.header {
  height: 100vh;
  padding: 4rem;
}
@media (max-width: 75em) {
  .header {
    position: relative;
    grid-template-columns: 100px auto 100px;
    grid-template-rows: repeat(1, 1fr);
    align-items: center;
    height: auto;
  }
}
@media (max-height: 37.5em) {
  .header {
    position: relative;
    grid-template-columns: 100px auto 100px;
    grid-template-rows: repeat(1, 1fr);
    align-items: center;
    height: auto;
  }
}
@media (max-width: 56.25em) {
  .header {
    grid-template-columns: 100px auto;
  }
}
.header.header-full {
  height: 100vh;
  padding: 4rem;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: 1fr;
  justify-content: start;
}
.header__logo-link {
  display: block;
}
.header__logo.header-full {
  align-self: stretch;
}
.header__logo-img {
  max-width: 150px;
  transform: rotate(10deg);
}
.header__logo-img.header-full {
  max-width: 150px;
}
@media (max-width: 75em) {
  .header__logo {
    max-width: 100px;
  }
}
@media (max-height: 37.5em) {
  .header__logo {
    max-width: 100px;
  }
}
@media (max-height: 37.5em) {
  .header__nav {
    justify-self: center;
  }
}
@media (max-width: 75em) {
  .header__nav {
    justify-self: center;
  }
}
@media (max-width: 48.625em) {
  .header__nav {
    display: none;
  }
}
.header__nav.header-full {
  justify-self: start;
}
.header__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.header__menu.header-full {
  flex-direction: column;
}
@media (max-width: 75em) {
  .header__menu {
    flex-direction: row;
  }
}
@media (max-height: 37.5em) {
  .header__menu {
    flex-direction: row;
  }
}
.header__item-link:link,
.header__item-link:visited {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  padding: 0.6rem 1.2rem 0;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  /* https://jsfiddle.net/75Umu/3/ */
  /*background: linear-gradient(to right, #151515 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: right bottom;*/
  transition: all 0.3s ease;
}
.header__item-link:link.header-full,
.header__item-link:visited.header-full {
  font-size: 4rem;
}
@media (max-width: 75em) {
  .header__item-link:link,
  .header__item-link:visited {
    font-size: 2.4rem;
  }
}
@media (max-height: 37.5em) {
  .header__item-link:link,
  .header__item-link:visited {
    font-size: 2.4rem;
  }
}
.header__item-link:hover,
.header__item-link:active {
  /*background-position: left bottom;*/
  opacity: 0.5;
}
.header__label-link {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  padding: 0.6rem 1.2rem 0;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.header__label-link.header-full {
  font-size: 4rem;
}
@media (max-width: 75em) {
  .header__label-link {
    font-size: 2.4rem;
  }
}
@media (max-height: 37.5em) {
  .header__label-link {
    font-size: 2.4rem;
  }
}
.header__social {
  align-self: self-end;
  list-style: none;
  display: flex;
  gap: 1.2rem;
}
.header__social.header-full {
  display: flex;
  align-self: self-end;
  justify-self: start;
}
@media (max-width: 75em) {
  .header__social {
    justify-self: start;
    align-self: center;
  }
}
@media (max-height: 37.5em) {
  .header__social {
    justify-self: start;
    align-self: center;
  }
}
@media (max-width: 56.25em) {
  .header__social {
    display: none;
  }
}
.header__social-link {
  display: block;
  transition: all 0.3s;
}
.header__social-link:hover {
  opacity: 0.5;
}
.header__social-img {
  fill: #fff;
  width: 3rem;
  height: 3rem;
  transition: all 0.3s;
}
@media (max-width: 75em) {
  .header__social {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (max-height: 37.5em) {
  .header__social {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.header__submenu {
  display: none;
  list-style: none;
}
@media (max-width: 75em) {
  .header__submenu {
    position: absolute;
    background-color: #ada27f;
    padding: 1rem 1rem 1rem 0;
    margin-top: 1rem;
    z-index: 999;
  }
}
@media (max-height: 37.5em) {
  .header__submenu {
    position: absolute;
    background-color: #ada27f;
    padding: 1rem 1rem 1rem 0;
    margin-top: 1rem;
    z-index: 999;
  }
}
@media (max-width: 75em) {
  .header__submenu li {
    margin-bottom: 1rem;
  }
}
@media (max-height: 37.5em) {
  .header__submenu li {
    margin-bottom: 1rem;
  }
}
.header__submenu .header__item-link:link,
.header__submenu .header__item-link:visited {
  font-size: 2rem;
  margin-left: 1rem;
  padding-bottom: 0.4rem;
}
.header__mob-men {
  color: #fff;
  display: none;
  height: 3rem;
  width: 3rem;
  position: relative;
  z-index: 9999999999;
  cursor: pointer;
}
.header__mob-men.header-full {
  position: absolute;
  top: 3rem;
  right: 3rem;
}
@media (max-width: 48.625em) {
  .header__mob-men {
    justify-self: end;
    display: block;
  }
}
.header__bars {
  width: 3rem;
  height: 0.25rem;
  background-color: #fff;
  display: block;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__bars::before {
  content: "";
  width: 3rem;
  height: 0.25rem;
  background-color: #fff;
  display: block;
  position: absolute;
  top: -10px;
  transition: all 0.21s;
}
.header__bars::after {
  content: "";
  width: 3rem;
  height: 0.25rem;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 10px;
  transition: all 0.1s;
}
.header__active {
  background-color: transparent;
}
.header__active::before {
  transform-origin: top right;
  transform: rotate(-45deg);
}
.header__active::after {
  transform-origin: bottom right;
  transform: rotate(45deg);
}

.home .hero {
  position: relative;
  min-height: 600px;
  background-image: url("../img/Dr-Haroon-Khan-Hero-new-new.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 37.5em) {
  .home .hero {
    background-position-x: -100px;
  }
}
@media (max-width: 28.125em) {
  .home .hero {
    background-position-x: -150px;
  }
}
.home .hero__img {
  display: block;
}
.home .hero__wrap {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 56.25em) {
  .home .hero__wrap {
    top: auto;
    bottom: 2.4rem;
    transform: translateY(0);
    gap: 0;
    right: 0;
  }
}
.home .hero__play-btn {
  height: 15rem;
  width: 15rem;
}
@media (max-width: 56.25em) {
  .home .hero__play-btn {
    display: none;
  }
}
.home .hero__play-btn:hover .hero__play-svg {
  transform: scale(0.9);
}
.home .hero__play-btn:hover .hero__play-play {
  fill-opacity: 0.5;
  stroke-width: 0;
}
.home .hero__play-svg {
  transition: all 0.3s;
}
.home .hero__play-orb {
  fill: none;
  stroke-width: 3px;
  stroke: #fff;
  height: 15rem;
  width: 15rem;
}
.home .hero__play-play {
  fill: #fff;
}
.home .hero__text {
  color: #fff;
  font-size: 4.4rem;
  text-align: center;
  letter-spacing: 4px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px #151515;
}
@media (max-width: 87.5em) {
  .home .hero__text {
    font-size: 3.6rem;
  }
}
@media (max-width: 56.25em) {
  .home .hero__text {
    font-size: 3rem;
    background-color: rgba(173, 162, 127, 0.7);
    padding: 1.6rem;
  }
}
@media (max-width: 37.5em) {
  .home .hero__text {
    font-size: 2rem;
  }
}
@media (max-width: 28.125em) {
  .home .hero__text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 778px) {
  .mobilemenu {
    position: absolute;
    top: 0;
    left: 100%;
    transition: all 0.4s ease-in-out;
    height: 100vh;
    background-color: #013440;
    padding: 10rem 4rem 4rem 4rem;
    grid-template-columns: 1fr;
    width: 300px;
    z-index: 99;
    border-left: 2px solid #fff;
    scrollbar-width: thin;
    overflow-y: scroll;
  }
  .mobilemenu__logo {
    max-width: 100px;
    margin-bottom: 2rem;
  }
  .mobilemenu__logo-link {
    display: block;
  }
  .mobilemenu__logo-img {
    max-width: 100px;
    transform: rotate(10deg);
  }
  .mobilemenu__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .mobilemenu__item-link:link,
  .mobilemenu__item-link:visited {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    padding: 0.6rem 1.2rem 0;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
    /* https://jsfiddle.net/75Umu/3/ */
    /*background: linear-gradient(to right, #151515 50%, transparent 50%);
    background-size: 201% 100%;
    background-position: right bottom;*/
    transition: all 0.3s ease;
  }
  .mobilemenu__item-link:hover,
  .mobilemenu__item-link:active {
    /*background-position: left bottom;*/
    opacity: 0.5;
  }
  .mobilemenu__label-link {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    padding: 0.6rem 1.2rem 0;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
  }
  .mobilemenu__submenu {
    display: none;
    list-style: none;
  }
  .mobilemenu__submenu .mobilemenu__item-link:link,
  .mobilemenu__submenu .mobilemenu__item-link:visited {
    font-size: 1.8rem;
    margin-left: 1rem;
    padding-bottom: 0.4rem;
  }
  .mobilemenu__social {
    align-self: self-end;
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .mobilemenu__social-link {
    display: block;
    transition: all 0.3s;
  }
  .mobilemenu__social-link:hover {
    opacity: 0.5;
  }
  .mobilemenu__social-img {
    fill: #fff;
    width: 2.4rem;
    height: 2.4rem;
    transition: all 0.3s;
  }
  .wrapper--overlay {
    position: fixed;
    /* Sit on top of the page content */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: block;
    z-index: 99;
    overflow: hidden;
  }
  .html-no-scroll {
    margin: 0;
    height: 100%;
    overflow: hidden;
  }
}

.mobilemenu--visibility {
  display: none;
}

.slide-right {
  transform: translateX(-100%);
}

.page-hero {
  min-height: 600px;
  padding: 9.6rem 6.4rem;
  background-position: center center;
  position: relative;
}
.page-hero__caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-hero__caption h1 {
  color: #d9b23d;
  font-size: 7.4rem;
  margin-bottom: 0rem;
}
@media (max-width: 62.375em) {
  .page-hero__caption h1 {
    font-size: 6.2rem;
  }
}
@media (max-width: 37.5em) {
  .page-hero__caption h1 {
    font-size: 5.2rem;
  }
}
.page-hero__caption h2 {
  font-size: 4.4rem;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  /* width: 60%; */
  line-height: 1.2;
  letter-spacing: 1px;
}
.charities-page .page-hero__caption h2 {
  width: 60%;
}

@media (max-width: 62.375em) {
  .page-hero__caption h2 {
    font-size: 3.6rem;
  }
}
@media (max-width: 48.625em) {
  .page-hero__caption h2 {
    width: 80%;
  }
  .personal-pages .page-hero__caption h2 {
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  .page-hero__caption h2 {
    font-size: 3rem;
    width: 90%;
  }
}

.charities-page .page-hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.9)
    ),
    url("../img/IMRA-Birmingham-event-with-delegates.jpg");
}

.bmhc-page .page-hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.9)
    ),
    url("../img/BMHC-bg.jpg");
}

.papers-page .page-hero {
  background-color: #141414;
  max-height: 350px;
  min-height: 350px;
  text-align: center;
}
.papers-page .page-hero__caption {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.presentations-page .page-hero {
  background-color: #141414;
  max-height: 350px;
  min-height: 350px;
  text-align: center;
}
.presentations-page .page-hero__caption {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.media-page .page-hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("../img/in-the-media-hero.webp");
  background-size: cover;
  background-position: top left;
}

.qualifications-page .page-hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("../img/RCSG.webp");
  background-size: cover;
}

.academic-meetings-page .page-hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("../img/Academic-Meetings-hero.webp");
  background-size: cover;
  background-position: top left;
}

.awards-page .page-hero {
  background-color: #141414;
  max-height: 350px;
  min-height: 350px;
  text-align: center;
}
.awards-page .page-hero__caption {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.personal {
  background-color: #d9b23d;
}
@media (max-width: 48.625em) {
  .personal {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background-color: #fff;
    padding: 1rem;
  }
}
@media (max-width: 37.5em) {
  .personal {
    grid-template-columns: 1fr;
  }
}
.personal__item {
  position: relative;
  height: 300px;
}
.personal__item:nth-child(even) {
  background-color: #bf8f36;
}
@media (max-width: 48.625em) {
  .personal__item {
    background-color: #bf8f36;
  }
}
.personal__item-link:hover .overlay-dark {
  background-color: rgba(1, 52, 64, 0.4);
}
.personal__item-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.personal__item-title {
  font-size: 4.4rem;
  color: #fff;
}
@media (max-width: 75em) {
  .personal__item-title {
    font-size: 3.6rem;
  }
}

.privacy {
  column-count: 2;
  column-gap: 4.8rem;
  padding: 4.8rem;
}
@media (max-width: 37.5em) {
  .privacy {
    column-count: 1;
  }
}
.privacy h2 {
  margin-bottom: 1.2rem;
  font-size: 3.6rem;
}
.privacy h3 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  margin-top: 3.2rem;
}
.privacy p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.privacy ul {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.blockquote {
  background-color: #151515;
  padding: 6.4rem 12.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (max-width: 62.375em) {
  .blockquote {
    padding: 4.8rem 9.6rem;
  }
}
@media (max-width: 48.625em) {
  .blockquote {
    padding: 3.2rem 8rem;
  }
}
@media (max-width: 37.5em) {
  .blockquote {
    padding: 3.2rem 6.4rem;
  }
}
@media (max-width: 28.125em) {
  .blockquote {
    padding: 3.2rem 3.2rem;
  }
}
.blockquote__quote {
  color: #fff;
  font-size: 5.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  line-height: 6.2rem;
  letter-spacing: 1px;
  opacity: 0.5;
}
@media (max-width: 87.5em) {
  .blockquote__quote {
    font-size: 4.4rem;
    line-height: 5.2rem;
  }
}
@media (max-width: 62.375em) {
  .blockquote__quote {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
}
.blockquote__quote--top {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
@media (max-width: 62.375em) {
  .blockquote__quote--top {
    padding: 4.8rem 3rem;
  }
}
@media (max-width: 48.625em) {
  .blockquote__quote--top {
    padding: 3.2rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .blockquote__quote--top {
    padding: 2.4rem 2.4rem;
  }
}
.blockquote__cite {
  color: #151515;
  font-size: 2.4rem;
  font-weight: 500;
  background-color: #d9b23d;
  padding: 1.2rem 3.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  display: inline-block;
}
@media (max-width: 87.5em) {
  .blockquote__cite {
    font-size: 2rem;
  }
}
@media (max-width: 62.375em) {
  .blockquote__cite {
    font-size: 1.8rem;
  }
}
.blockquote__cite--top {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 3.6rem;
}
@media (max-width: 87.5em) {
  .blockquote__cite--top {
    font-size: 2rem;
  }
}
@media (max-width: 62.375em) {
  .blockquote__cite--top {
    font-size: 1.8rem;
  }
}
@media (max-width: 48.625em) {
  .blockquote__cite--top {
    position: relative;
    left: auto;
    top: auto;
  }
}

.wrapper {
  max-width: 1920px;
}
.wrapper--device {
  grid-template-columns: 275px auto;
}
@media (max-width: 75em) {
  .wrapper {
    display: block;
  }
}
@media (max-height: 600px) {
  .wrapper {
    display: block;
  }
}

.leftwrap {
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #013440;
}
@media (max-width: 75em) {
  .leftwrap {
    position: relative;
    height: auto;
  }
}
@media (max-height: 600px) {
  .leftwrap {
    position: relative;
    height: auto;
  }
}

.top-bar {
  background-color: #d9b23d;
  font-size: 1.6rem;
  padding: 0.8rem 3rem 1.2rem;
  font-weight: 700;
  text-align: center;
}
.top-bar__link:link,
.top-bar__link:visited {
  color: #333;
}
