/* Font styles */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

body {
  margin: 0;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  body {
    overflow-x: hidden !important;
  }
}

/* *********** Global styles - BEGIN *********** */
a {
  text-decoration: none;
}

.disable-scroll {
  overflow: hidden;
}

.container {
  margin-left: 10vw;
  margin-right: 10vw;
}

/* *********** Global styles - END *********** */

/* *********** Home page styles - BEGIN *********** */

/* Header styles - BEGIN */

header {
  /* width: 100vw; */
  margin-top: 5vh;
}

header h1 {
  margin: 0;
}

.header-title {
  text-align: center;
  font-size: 4.5vw;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  /* color: #313131; */
}

.header-title a {
  text-decoration: none;
  color: #313131;
}

.navbar {
  display: flex;
  justify-content: center;
  margin-top: 4vh;
}

.navbar__link {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar__link:not(:last-child) {
  margin-right: 3vw;
}

.navbar__link a {
  color: #00000096;
}

/* Mobile NavMenu styles - BEGIN */

@media screen and (max-width: 450px) {
  .header-title {
    font-size: 50px;
  }
}
/* Mobile Hamberger icon onClick transition - BEGIN */
.mobile-menu .mobile-nav-section__icon > div:first-child {
  transform: translateY(8px) rotate(40deg);
}

.mobile-menu .mobile-nav-section__icon > div:nth-child(2) {
  opacity: 0;
}

.mobile-menu .mobile-nav-section__icon > div:last-child {
  transform: translateY(-8px) rotate(-45deg);
}
/* Mobile Hamberger icon onClick transition - END */

/* Mobile menu transition - BEGIN */
.menu-hidden {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}
/* Mobile menu transition - END */

@media screen and (min-width: 900px) {
  .mobile-nav-section__menu {
    display: none;
  }

  .mobile-nav-section__icon {
    display: none;
  }
}

.mobile-nav-section {
  display: flex;
  justify-content: end;
  /* margin: 0 3rem; */
  position: relative;
}

.mobile-nav-section__icon {
  cursor: pointer;
}

.mobile-nav-section__icon div {
  height: 0.21rem;
  border-radius: 3px;
  background-color: #323232;
  transition: all 250ms ease-in-out;
  width: 25px;
}

.mobile-nav-section__icon div:not(:last-child) {
  margin-bottom: 5px;
}

.mobile-nav-section__menu {
  z-index: 1;
  background-color: #ffffff;
  position: absolute;
  width: 80%;
  top: 3.4rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 12px 1px rgba(118, 118, 118, 0.461);
  text-align: center;
  padding: 2rem 0;
}

.mobile-nav-section__menu .mobile-nav-section__menu__link {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.mobile-nav-section__menu .mobile-nav-section__menu__link:not(:last-child) {
  margin-bottom: 1.5rem;
}

.mobile-nav-section__menu .mobile-nav-section__menu__link a {
  color: #323232;
}

@media screen and (max-width: 450px) {
  .mobile-nav-section__menu {
    width: 90%;
    top: 3.4rem;
    padding: 3rem 1rem;
  }
}

/* Mobile NavMenu styles - END */

/* Tablet styles */
@media screen and (max-width: 900px) {
  header {
    display: flex;
    flex-direction: column;
  }

  header .header-title {
    order: 2;
    font-size: 6vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  header .mobile-nav-section__icon {
    order: 1;
  }

  .navbar {
    display: none;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  header .header-title {
    font-size: 10vw;
  }
}

/* Header styles - END */

/* Hero section styles - BEGIN */

.hero {
  display: flex;
  flex-direction: column;
  padding: 10vh 10vw 0 10vw;
  background-image: url(../images/signature.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0vw 30vh;
}

.hero__heading-section {
  margin-top: 8vh;
  margin-bottom: auto;
  order: 2;
}

.hero__heading-section .heading-section__para {
  font-family: "Lato", sans-serif;
  font-size: 1.7vw;
  font-weight: 300;
  margin: 0 0 5vh 0;
  line-height: 5vh;
  letter-spacing: 0em;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.hero__heading-section .heading-section__para span b {
  font-weight: 600;
}

.hero__img-section {
  display: flex;
  justify-content: center;
}

.hero__img-section img {
  width: 38vw;
  border: 0.8vw solid #272727;
  box-shadow: 10px 10px 14px -7px rgba(0, 0, 0, 0.28);
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 4vh 0 0 0;
    background-position: 0vw 35vh;
  }

  .hero__img-section img {
    order: 2;
    width: 55vw;
    border: 1vw solid #272727;
    box-shadow: 10px 10px 14px -7px rgba(0, 0, 0, 0.28);
  }

  .hero__img-section {
    order: 2;
  }

  .hero__heading-section {
    order: 1;
    margin-top: 0vh;
  }

  .hero .hero__heading-section .heading-section__para {
    font-size: 3vw;
    text-align: center;
    line-height: 4vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .hero {
    padding: 0;
    background-position: 50% 70%;
  }

  .hero .hero__heading-section .heading-section__para {
    font-size: 4.5vw;
    margin: 3vh 0 2vh 0;
  }

  .hero .hero__heading-section .heading-section__para span:not(:last-child) {
    margin-bottom: -0.5rem;
  }

  .hero .hero__img-section img {
    border: 2vw solid #272727;
    width: 70vw;
  }
}

/* Hero section styles - END */

/* Intro section styles - BEGIN */
.intro-section {
  margin-top: 6vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-section .intro-section__line {
  height: 2.5px;
  width: 3rem;
  background: #008080;
  margin: 0 auto 4rem auto;
  rotate: 90deg;
}

.intro-section p {
  font-family: Cormorant Garamond;
  font-size: 1.8vw;
  line-height: 1.5;
  text-align: center;
  max-width: 80%;
  margin: auto;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .intro-section p {
    font-size: 3vw;
    line-height: 3vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .intro-section {
    margin-top: 3rem;
  }

  .intro-section .intro-section__line {
    margin-bottom: 3rem;
  }

  .intro-section p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}

/* Intro section styles - END */

/* Para section - BEGIN */
.para-section {
  margin-top: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.8;
}

.para-section p {
  text-align: justify;
}

.para-section .para-section__one {
  max-width: 47%;
}

.phonetric_entry{
  margin-top: 10vh;
  font-family: 'Calibri';
  font-size: 1.1vw;
  line-height: 1.8;
  color:#272727;
}

.para-section .para-section__two {
  max-width: 47%;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .para-section {
    display: flex;
    flex-direction: column;
    font-size: 2.5vw;
    line-height: 3vh;
  }
  .para-section .para-section__one {
    max-width: 100%;
  }

  .para-section .para-section__two {
    max-width: 100%;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .para-section {
    font-size: 1rem;
    line-height: 1.7rem;
  }
  .phonetric_entry{
    font-size: 0.9rem;
    line-height: 1.7rem;
  }
  .para-section .para-section__two {
    margin-top: 0vh;
  }
}

/* Para section - END */

/* Quote section - BEGIN */
.quote-section {
  font-family: Cormorant Garamond;
  margin-top: 15vh;
  text-align: center;
  padding: 0 10vw;
}

.quote-section p {
  font-size: 1.6vw;
  line-height: 5vh;
}

.quote-section span {
  font-size: 1.1vw;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .quote-section {
    display: none;
  }
}
/* Quote section - END */

/* Awards section styles - BEGIN */

.awards-section {
  margin-top: 30vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 0.8vw solid #e2e0df;
  height: 53vh;
  padding: 0 5vw 0 5vw;
}

.awards-section .awards-section__img {
  border: 0.7vw solid #6b6b6b;
}

.awards-section .awards-section__img img {
  width: 24vw;
}

.awards-section .awards-section__quote {
  display: none;
}

.awards-section .awards-section__details {
  color: #292929;
  font-size: 1.3vw;
  font-family: Cormorant Garamond;
  text-align: center;
  margin: auto;
  /* margin-left: 2vw;
  margin-top: auto;
  margin-bottom: auto; */
}

.awards-section .awards-section__details .details__award:not(:last-child) {
  margin-bottom: 3rem;
}

.awards-section .awards-section__details .details__award p span {
  font-weight: 700;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .awards-section {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1.5vw solid #e2e0df;
  }

  .awards-section .awards-section__img {
    margin-top: -5rem;
    border: 1.5vw solid #6b6b6b;
  }

  .awards-section .awards-section__img img {
    width: 50vw;
  }

  .awards-section .awards-section__quote {
    margin-top: 3rem;
    display: block;
    font-family: Cormorant Garamond;
    font-size: 3vw;
    line-height: 3vh;
    text-align: center;
  }

  .awards-section .awards-section__details {
    font-size: 2.5vw;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .awards-section .awards-section__details .details__award:not(:last-child) {
    margin-bottom: 2vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .awards-section {
    margin: 10rem 0 0 0;
    padding: 0;
    height: auto;
    border: 2vw solid #e2e0df;
  }

  .awards-section .awards-section__img {
    margin-top: -4rem;
    border: 2vw solid #6b6b6b;
  }

  .awards-section .awards-section__img img {
    width: 18rem;
  }

  .awards-section .awards-section__quote {
    margin: 3rem 2rem 0 2rem;
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: center;
  }

  .awards-section .awards-section__details {
    font-size: 1rem;
    margin: 3rem 2rem 3rem 2rem;
  }
}

/* Awards section styles - END */

/* Footer section styles - BEGIN */

footer {
  font-family: "Book Antiqua", serif;
  margin-top: 25vh;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer-top .footer-top__seperator {
  margin: auto;
  height: 0.3vh;
  width: 6vw;
  background: #008080;
}

.footer-top .footer-top__text {
  color: #3e3e3e;
  margin-top: 6vh;
  font-family: "Book Antiqua", serif;
  font-size: 1.2vw;
}

.footer-top .footer-top__social-icons {
  margin-top: 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-top .footer-top__social-icons a {
  display: block;
}

.footer-top .footer-top__social-icons a:not(:last-child) {
  margin-right: 2vw;
}

.footer-bottom {
  margin: 10vh 0 4vh 0;
  color: #525252;
  font-family: "Book Antiqua", serif;
  font-size: 1vw;
  display: flex;
  justify-content: space-between;
}

.footer-bottom .footer-bottom__company a {
  color: #525252;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  footer {
    margin-top: 15vh;
  }

  .footer-top .footer-top__text {
    font-size: 2vw;
    margin-top: 3vh;
  }

  .footer-bottom {
    margin: 5vh 0 3vh 0;
    font-size: 1.6vw;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  footer {
    margin-top: 8rem;
  }

  .footer-top .footer-top__text {
    margin-top: 2rem;
    font-size: 1rem;
  }

  .footer-bottom {
    text-align: center;
    margin: 3rem 0 2rem 0;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
  }

  .footer-bottom .footer-bottom__copyright {
    margin-bottom: 1rem;
  }
}

/* Footer section styles - END */

/* *********** Home page styles - END *********** */

/* *********** Biography page styles - BEGIN *********** */

/* Biography hero section - BEGINS */
.biography-hero {
  padding: 15vh 14vw 0 14vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.biography-hero .biography-hero__image-one img {
  width: 38vw;
  border: 0.8vw solid #272727;
  box-shadow: 10px 10px 14px -7px rgba(0, 0, 0, 0.28);
}

.biography-hero .biography-hero__image-two img {
  width: 25vw;
  border: 0.8vw solid #272727;
  box-shadow: 10px 10px 14px -7px rgba(0, 0, 0, 0.28);
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .biography-hero {
    padding: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
  }

  .biography-hero .biography-hero__image-one {
    order: 2;
  }

  .biography-hero .biography-hero__image-one img {
    width: 50vw;
    border: 1vw solid #272727;
  }

  .biography-hero .biography-hero__image-two {
    order: 1;
    margin-bottom: 5vh;
  }

  .biography-hero .biography-hero__image-two img {
    width: 35vw;
    border: 1vw solid #272727;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .biography-hero {
    padding: 2rem 0 0 0;
  }

  .biography-hero .biography-hero__image-one img {
    width: 18rem;
    border: 2vw solid #272727;
  }

  .biography-hero .biography-hero__image-two {
    margin-bottom: 2rem;
  }

  .biography-hero .biography-hero__image-two img {
    width: 15rem;
    border: 2vw solid #272727;
  }
}

/* Biography hero section - ENDS */

/* Biography para section - BEGIN */

.biography-para-section {
  margin-top: 25vh;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.8;
  text-align: justify;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .biography-para-section {
    margin-top: 10vh;
    font-size: 2.5vw;
    line-height: 3vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .biography-para-section {
    font-size: 1rem;
    line-height: 2rem;
  }
}

/* Biography para section - END */

/* *********** Biography page styles - END *********** */

/* *********** Discography page styles - BEGIN *********** */

.discography-section {
  margin-top: 10vh;
}

.discography-section__product {
  margin-top: 15vh;
  display: flex;
  flex-direction: row;
}

.discography-section__product .discography-section__product__img img {
  width: 21vw;
}
.discography-section__product .discography-section__product__img2 img {
  width: 21vw;
}

.discography-section__product__btns {
  margin-top: 6vh;
  display: flex;
  justify-content: center;
}

.discography-section__product__btns-2 {
  margin-top: 3rem;
  display: flex;
}

.discography-section__product__btns-2 button {
  margin-right: 2rem;
}

.discography-section__product .btn-space-between {
  justify-content: space-between;
}

.discography-section__product .btn-mobile {
  display: none;
}

.discography-section__product__btn {
  color: #ffffff;
  background: #1d1d1d;
  border: none;
  border-radius: 3rem;
  padding: 2.5vh 2.5vw;
  font-family: "Montserrat", sans-serif;
  font-size: 1vw;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
}

.discography-section__product__description {
  
  padding-left: 5vw;
  
}

.discography-section__product__description h1 {
  color: #323232;
  font-size: 1.5vw;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Book Antiqua", serif;
}

.discography-section__product__description p {
  color: #292929;
  font-size: 1.3vw;
  line-height: 1.6;
  text-align: justify;
  font-family: Cormorant Garamond;
}

.discography-section .discography-section__works {
  margin-top: 6vh;
}

.discography-section .discography-section__works h2 {
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 2vw;
}
.discography-section .discography-section__works h3 {
  font-family: "Book Antiqua", serif;
  font-weight: 600;
  font-size: 1.3vw;
}

.discography-section .discography-section__works ul {
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.discography-section__product__description .audio-section {
  display: flex;
  align-items: center;
}

.discography-section__product__description audio {
  margin-left: 3rem;
  border-radius: 3rem;
}

.discography-section__product__description audio::-webkit-media-controls-panel {
  background: #d9d9d9;
}

.discography-section__product__description
  audio::-webkit-media-controls-play-button {
  height: 50px;
}

.discography-section__product__description
  audio::-webkit-media-controls-current-time-display {
  font-size: 1.2rem;
  font-family: Cormorant Garamond;
}

.discography-section__product__description
  audio::-webkit-media-controls-time-remaining-display {
  font-size: 1.2rem;
  font-family: Cormorant Garamond;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .discography-section {
    margin-top: 2rem;
  }

  .discography-section__product {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .discography-section__product .discography-section__product__img img {
    width: 50vw;
  }

  .discography-section__product__btns {
    margin-top: 4vh;
  }

  .discography-section__product__btn {
    font-size: 1.5vw;
    padding: 2vh 4vw;
  }

  .discography-section__product__description {
    padding: 5vh 0 0 0;
  }

  .discography-section__product__description h1 {
    font-size: 3vw;
  }

  .discography-section__product__description p {
    font-size: 2.2vw;
    line-height: 3vh;
  }

  .discography-section__product__btns-2 {
    display: none;
  }

  .discography-section .discography-section__works h2 {
    font-size: 3vw;
  }

  .discography-section .discography-section__works ul {
    font-size: 2.2vw;
    line-height: 3vh;
    margin-bottom: 3rem;
  }

  .discography-section__product .btn-mobile {
    display: flex;
    justify-content: space-between;
  }

  .discography-section__product .btn-mobile-container {
    width: 90%;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .discography-section__product .discography-section__product__img img {
    width: 18rem;
  }

  .discography-section__product__btn {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
  }

  .discography-section__product__description h1 {
    font-size: 1.2rem;
  }

  .discography-section__product__description p {
    font-size: 1rem;
    /* text-align: start; */
  }

  .discography-section .discography-section__works ul {
    padding-left: 1rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
  }

  .discography-section .discography-section__works h2 {
    font-family: Cormorant Garamond;
    font-weight: 600;
    font-size: 1.2rem;
  }
  .discography-section .discography-section__works h3 {
    font-family: "Book Antiqua", serif;
    font-weight: 600;
    font-size: 3.7vw;
  }

  .discography-section__product .btn-mobile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .discography-section__product .btn-mobile-container button {
    margin-bottom: 1rem;
  }

  .discography-section__product__description .audio-section {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .discography-section__product__description audio {
    margin: 1rem 0 0 0;
  }
}

/* *********** Discography page styles - END *********** */

/* *********** Performances page styles - BEGIN *********** */

.performance-section {
  margin-top: 10vh;
}

.performance-section h1 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.5vw;
}

.performance-section ul {
  color: #292929;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.8;
}

.performance-section ul li:not(:last-child) {
  margin-bottom: 1vh;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .performance-section {
    margin-top: 5vh;
  }

  .performance-section h1 {
    font-size: 3vw;
  }

  .performance-section ul {
    font-size: 2.5vw;
    line-height: 3.2vh;
  }

  .performance-section ul li:not(:last-child) {
    margin-bottom: 1.3vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .performance-section {
    margin-top: 2rem;
  }

  .performance-section h1 {
    font-size: 1.2rem;
  }

  .performance-section ul {
    font-size: 1rem;
    line-height: 2rem;
    padding-left: 1rem;
  }

  .performance-section ul li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}

/* *********** Performances page styles - END *********** */

/* *********** Scholarship & Outreach page styles - BEGIN *********** */

/* Experience section - BEGIN */
.experience-section {
  color: #323232;
  margin-top: 10vh;
}

.experience-section a {
  color: #323232;
  text-decoration: underline;
}

.experience-section p {
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.5;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .experience-section {
    margin-top: 3vh;
  }

  .experience-section p {
    font-size: 2.5vw;
    line-height: 3vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .experience-section {
    margin-top: 3rem;
  }

  .experience-section p {
    font-size: 1rem;
    line-height: 2rem;
  }
}
/* Experience section - END */

/* Teaching & Examining section - BEING */
.teaching-section {
  margin-top: 5rem;
}

.teaching-section h1 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.8vw;
}

.teaching-section h2 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.5vw;
}

.teaching-section ul {
  color: #292929;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.6;
}

.teaching-section ul li:not(:last-child) {
  margin-bottom: 1.5vh;
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .teaching-section h1 {
    font-size: 1.5rem !important;
  }

  .teaching-section h2 {
    font-size: 1.2rem !important;
  }

  .teaching-section ul {
    font-size: 1rem !important;
    line-height: 2rem !important;
    padding-left: 1rem;
  }

  .teaching-section ul li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
/* Teaching & Examining section - END */

/* Outreach section - BEGIN */
.outreach-section {
  margin-top: 5rem;
}

.outreach-section a {
  color: #292929;
  text-decoration: underline;
}

.outreach-section ul {
  color: #292929;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.5;
}

.outreach-section ol {
  color: #292929;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.5;
}

.outreach-section h1 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.8vw;
}

.outreach-section h2 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.5vw;
}
.outreach-section h3 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.2vw;
}

.outreach-section p {
  color: #292929;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.5;
}

.media-focus-heading {
  margin-top: 3rem;
}

.outreach-section .media-focus-btns {
  display: flex;
  flex-direction: row;
}

.outreach-btn {
  color: #ffffff;
  background: #1d1d1d;
  border: none;
  border-radius: 3rem;
  padding: 2.3vh 2.5vw;
  font-family: "Montserrat", sans-serif;
  font-size: 1vw;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
}

.outreach-section .outreach-btn {
  margin-right: 1.5vw;
}

.outreach-section__news {
  margin: 4rem 0;
}

.outreach-section__news p {
  line-height: 2rem;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .teaching-section h1 {
    font-size: 3vw;
  }

  .teaching-section h2 {
    font-size: 2.6vw;
  }

  .teaching-section ul {
    font-size: 2.5vw;
    line-height: 3vh;
  }

  .outreach-section h1 {
    font-size: 3vw;
  }

  .outreach-section h2 {
    font-size: 2.5vw;
  }

  .outreach-section p {
    font-size: 2.5vw;
    line-height: 3vh;
  }

  .outreach-section a {
    display: block;
  }

  .outreach-section .outreach-btn {
    font-size: 1.7vw;
    padding: 2vh 2.5vw;
  }

  .outreach-section .media-focus-btns {
    display: flex;
    flex-direction: column;
  }

  .outreach-section .media-focus-btns .outreach-btn {
    margin-bottom: 1.5rem;
  }

  .outreach-section ul {
    font-size: 2.4vw;
    line-height: 3.5vh;
  }

  .outreach-section ol {
    font-size: 2.4vw;
    line-height: 3.5vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .outreach-section h1 {
    font-size: 1.4rem;
  }

  .outreach-section ul {
    font-size: 1rem;
    line-height: 2rem;
    padding-left: 1rem;
  }

  .outreach-section ol {
    font-size: 1rem;
    line-height: 2rem;
    padding-left: 1rem;
  }

  .outreach-section h2 {
    font-size: 1.2rem;
  }
  .outreach-section h3 {
    font-size: 0.8rem;
  }

  .outreach-section p {
    font-size: 1rem;
    line-height: 2rem;
  }
  .media-focus-heading {
    margin-top: 1.5rem;
  }
  .outreach-section__news {
    margin: 1rem 0 4rem;
  }  

  .outreach-section .outreach-btn {
    padding: 1rem 1rem;
    font-size: 0.7rem;
  }
}

/* Outreach section - END */

/* *********** Scholarship & Outreach page styles - END *********** */

/* *********** Reviews page styles - BEGIN *********** */
.reviews {
  margin-top: 5rem;
}

.reviews h1 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 600;
  font-size: 1.5vw;
  margin-top: 10vh;
  text-transform: uppercase;
  font-style: italic;
}

.reviews h2 {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 400;
  font-size: 1.6vw;
  margin-top: 6vh;
  font-style: italic;
}

.other-reviews h1 {
  font-style: normal;
  text-transform: none;
}

.reviews h1 span {
  font-family: "Book Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}

.span_two {
  color: #323232;
  font-family: Cormorant Garamond;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4vw;
}

.reviews ul {
  color: #292929;
  font-family: Cormorant Garamond;
  font-size: 1.3vw;
  line-height: 1.8;
}

.reviews ul li:not(:last-child) {
  margin-bottom: 4vh;
}

.reviews li span {
  font-weight: 700;
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .reviews {
    margin-top: 3vh;
  }
  
  .reviews h1 {
    font-weight: 600;
    font-size: 2.5vw;
    margin-top: 3vh;
  }
  
  .reviews h2 {
    font-size: 2.5vw;
    margin-top: 6vh;
  }

  .reviews ul {
    font-size: 2.4vw;
    line-height: 3.5vh;
  }
  
  .reviews ul li:not(:last-child) {
    margin-bottom: 4vh;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .reviews {
    margin-top: 3rem;
  }

  .reviews h1 {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
  .span_two {
    color: #323232;
    font-size: 1.4rem;
  }
  .reviews h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  .reviews ul {
    font-size: 1rem;
    line-height: 2rem;
    padding-left: 1rem;
  }
}

/* *********** Reviews page styles - END *********** */

/* *********** Contact page styles - BEGIN *********** */
.contact-section {
  margin-top: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.contact-section .contact-section__details {
  color: #323232;
  font-family: Cormorant Garamond;
  font-size: 1.6vw;
  font-weight: 400;
  margin-right: 10vw;
}

.contact-section .contact-section__details a {
  color: #323232;
}

.contact-section .contact-section__img img {
  width: 30vw;
  border: 0.8vw solid #272727;
  box-shadow: 10px 10px 14px -7px rgba(0, 0, 0, 0.28);
}

/* Tablet styles */
@media screen and (max-width: 900px) {
  .contact-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .contact-section .contact-section__details {
    font-size: 2.5vw;
    order: 2;
    margin-top: 5rem;
    margin-right: 0;
  }

  .contact-section .contact-section__img img {
    width: 40vw;
    border: 1vw solid #272727;
  }
}

/* Mobile styles */
@media screen and (max-width: 450px) {
  .contact-section .contact-section__img img {
    border: 2vw solid #272727;
    width: 280px;
  }

  .contact-section .contact-section__details {
    font-size: 1.2rem;
    margin-top: 3rem;
  }
}

/* *********** Contact page styles - END *********** */
