@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --main-color: #ee3123;
  --invert-color: white;
  --contentWidth: 1200px;
  --grad1: #b6d4de;
  --grad2: #e6dcdc;
  --impacting: #656f77;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  font: inherit;
  font-size: max(1.1vw, 1.2rem);
  min-height: 100vh;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
.quotation figcaption {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.quotation .readmore {
  margin-top: 3rem;
}
div.readmore {
  white-space: nowrap;
}
div.readmore a {
  background-color: var(--invert-color);
  padding: 0.5rem 1.5rem;
  color: var(--main-color);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: bold;
  border: solid 1px #000;
}
div.readmore a:hover{
background-color: #000;
color: #fff;
}
.container {
  width: 100%;
  padding: 0 max(2rem, 50vw - var(--contentWidth) / 2);
}
.sub-container {
  width: 100%;
  padding: 0 max(2rem, 50vw - var(--contentWidth) / 2);
  padding-left:  max(2rem, 45vw - var(--contentWidth) / 2);
}
#topbar {
  position: fixed;
  width: 100vw;
  z-index: 3;
  background-color: var(--invert-color);
  height: 6rem;
}
#topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.3);
  z-index: -1;
}
#topbar #topbarcontainer {
  position: relative;
  width: 100%;
  max-width: var(--contentWidth);
}
#topbar #topbarcontainer #logo {
  position: absolute;
  top: 1rem;
  left: 0;
  height: 4rem;
}

/* nav toggle */
.nav-toggle {
  cursor: pointer;
  height: 2rem;
  right: 2rem;
  position: absolute;
  top: 2rem;
  width: 2rem;
}
.nav-toggle:hover {
  opacity: 0.8;
}
.nav-toggle .nav-toggle-bar,
.nav-toggle .nav-toggle-bar::after,
.nav-toggle .nav-toggle-bar::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #707070;
  content: "";
  height: 0.3rem;
  transition: all 0.5s;
  width: 100%;
}
.nav-toggle .nav-toggle-bar {
  margin-top: 0;
}
.nav-toggle .nav-toggle-bar::after {
  margin-top: 0.8rem;
}
.nav-toggle .nav-toggle-bar::before {
  margin-top: -0.8rem;
}
.nav-toggle.expanded .nav-toggle-bar {
  background: transparent;
}
.nav-toggle.expanded .nav-toggle-bar::after,
.nav-toggle.expanded .nav-toggle-bar::before {
  background: #707070;
  margin-top: 0;
}
.nav-toggle.expanded .nav-toggle-bar::after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-toggle.expanded .nav-toggle-bar::before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* nav */
.nav {
  background: #000;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  height: 100vh;
  right: -25rem;
  padding: 6rem 2rem 2rem 2rem;
  position: fixed;
  top: 0;
  transition: right 0.1s;
  width: 20rem;
  z-index: 2;
}
.nav.expanded {
  right: 0;
}
.nav ul {
  list-style: none;
  margin: 2rem 0 0 0.5rem;
  padding: 0;
}
.nav ul li {
  text-transform: uppercase;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 1.1rem;
  font-weight: bolder;
}
.nav ul li a {
  color: #fff;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  
}
.nav ul li a:hover {
  border-bottom: 1px solid #ffffff;
  transition: border 1s;
}
section.content {
  padding-top: 1.5rem;
}
h2 {
  font-size: 2rem;
}
#showcase {
  padding-top: 6rem;
  display: flex;
  min-height: 100vh;
  background-image: url("images/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  /* justify-content: center;  */
  align-items: center; /* Center align vertically */
}
#showcase .title {
  position: relative;
  /* left: clamp(-21rem, -25rem, -24rem); */
  top: -50px;
}
#showcase .title img {
  width: clamp(15rem, 20vw, 25rem);
}
#showcase .readfull {
  margin-top: 40px;
}
#showcase .readfull a {
  background-color: #fff;
  padding: 0.5rem 1.5rem;
  color: var(--main-color);
  border: solid 1px #000;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: bold;
}

#showcase .readfull a:hover{
background-color: #000;
color: #fff;
}
#back-to-top {
  margin: 2rem auto;
  /* display: flex; */
  flex-direction: row;
  text-align: center;
  gap: 1rem;
}
#back-to-top img {
  width: 31px;
  height: auto;
}
#back-to-top div {
  color: var(--main-color);
  align-self: center;
}
#back-to-top a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 0.9em;
}
#theme {
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  padding-bottom: 5em;
  padding-top: 4em;
  font-weight: bold;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("images/theme_bg.jpg");
}

@media only screen and (max-width: 1600px) {
#theme .theme-content{
  padding: 0 15%;
}
}
@media only screen and (max-width: 768px) {
#theme .theme-content{
  padding: 0;
}
#theme{
  background:  var(--main-color);;
}
}
#theme p {
  margin-bottom: 1rem;
}
#theme h2 {
  margin: 2rem 0;
  font-size: 50px;
  line-height: 60px;
  text-align: left;
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
}
#theme h2::before{
  content: '';
  width: 52px;
  height: 61px;
  background: url("images/theme_icon.png");
  position: absolute;
  top: -10px;
  left: -20px;
}
#overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: none;
  height: 100%;
  width: 100vw;
  z-index: 1;
}
#overlay.expanded {
  display: block;
}
.quotation img {
  min-width: 33%;
  flex-grow: 1;
  order: 3;
}
.quotation figure {
  flex-grow: 1;
}
.quotation {
  display: flex;
  align-items: center;
  position: relative;
  /* padding: 50px 0; */
  padding-top: 65px;
  padding-bottom: 65px;
  /* background-image: linear-gradient(to right, var(--grad2), var(--grad1)); */
  flex-direction: row-reverse;
  background: url("images/about_1.png") no-repeat left;
  background-size: cover;
}
#president-message.quotation {
  /* background-image: linear-gradient(to right, var(--grad1), var(--grad2)); */
  flex-direction: row;
  background: url("images/about_2.png") no-repeat right;
  background-size: cover;
}
.quotation figcaption {
  font-size: 50px;
  line-height: 60px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 2rem;
  /* padding-left: 150px; */
}
.quotation blockquote{
font-size: 25px;
line-height: 30px;
font-weight: 400;
}
.quotation figure{
 padding-left: 150px;
}
#president-message.quotation figure{
  padding-left: 0;
  padding-right: 150px;
}
.quotation .overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("images/about_icon1.png") right no-repeat;
  background-size: cover;
  height: 135px;
}

#president-message.quotation .overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("images/about_icon2.png") left no-repeat;
  background-size: cover;
  height: 135px;
}
#at-a-glance {
  /* background-color: #23335b; */
  /* padding-bottom: 3rem; */
  padding-top: 3rem;
}
 #at-a-glance h2 {
  color: var(--main-color);
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
}

#at-a-glance h3 {
  color: #000;
  font-size: 40px;
  line-height: 60px;
  text-transform: unset;
}
#at-a-glance h3 span{
  color: var(--main-color);
}
#at-a-glance .map-image{
  margin-top: 115px
}
.glance-list{
  margin-top: 60px;
}
.glance-list::after{
  content: '';
  clear: both;
  display: block;
}
.glance-list .glance-icon{
  width: 50%;
  float: left;
}

.glance-list .glance-icon::after{
  content: '';
  clear: both;
  display: block;
}
.glance-list .glance-icon .icon{
  width: 25%;
  float: left;
}
.glance-list .glance-icon .content{
  width: 75%;
  padding-left: 20px;
  float: left;
  font-size: 20px;
  line-height: 30px;
}
.glance-list .glance-icon .content b{
  color: var(--main-color);
}
.glance-list .glance-icon img{
  width: 100%;
  height: auto;
  max-width: 85px;
}

@media only screen and (max-width: 768px) {
.glance-list .glance-icon{
  width: 100%;
  float: none;
  margin-top: 34px;
}
.glance-list{
  margin-top: 0;
}
}
#at-a-glance .map-image img{
  width: 100%;
  height: auto;
}
#at-a-glance .info {
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
}
#postgrad-programmes {
 margin: 65px 0 40px;
}
#postgrad-programmes .program-item{
  font-weight: bold;
}

#postgrad-programmes .program-item span{
   color: var(--main-color);
}
#academic-clusters h3{
font-size: 40px;
line-height: 50px;
color: var(--main-color);
text-transform: unset;
}
#academic-clusters{
  background-color: #EFEFEF;
  padding: 60px 0;
}
#academic-clusters .clusters-item::after{
  content: '';
  display: block;
  clear: both;
}
#academic-clusters .clusters-item .number{
  width: 10%;
  float: left;
  font-size: 50px;
  line-height: 50px;
  color: var(--main-color);
}

#academic-clusters .clusters-item .content{
  width: 90%;
  float: left;
  font-size: 20px;
  line-height: 30px;
}
#academic-clusters .clusters-item .content .small{
  font-size: 18px;
  font-style: italic;
  margin-top: 25px;
}
@media only screen and (max-width: 1024px) {
  #at-a-glance img {
    width: 100%;
  }
  #at-a-glance h3 {
    font-size: 1.2em;
  }
  #campuses {
    top: 9rem;
  }
  #postgrad-programmes {
    position: unset;
    width: 100%;
  }
  .cluster-info {
    flex-direction: column;
  }
  .clusters .aag-unit {
    width: 45%;
  }
  .cluster-info .stats {
    border-left: 0;
    border-top: 1px solid #fff;
    margin-top: 2rem;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .cluster-info .clusters {
    gap: 1rem;
  }
  .cluster-info .stats .aag-unit {
    width: 48%;
  }
  .aag-unit .number.icon img {
    width: 4rem !important;
  }
  .aag-unit .number {
    font-size: 2rem;
    flex-grow: 0;
    min-width: unset;
  }
  .aag-unit .description {
    font-size: 0.7rem;
    flex-grow: 1;
  }
}
#impacting {
  background: #FCE0DE;
  padding: 88px 0 66px;
  
}
#impacting .list-impacting {
  margin-top: 80px;
}
#impacting h2 {
  font-size: 50px;
  line-height: 60px;
  color: var(--main-color);
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
#impacting .impacting-item{
  margin-bottom: 80px;
}
#impacting .impacting-item .item-image img{
  width: 100%;
  height: auto;
}

#impacting .impacting-item .right-content{
  padding-left: 54px;
}
#impacting .impacting-item .impact-name{
  
}
#impacting .impacting-item .impact-name .name{
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  background-color: #000;
  padding: 5px 10px;
  font-weight: bold;
  display: inline-block;
}
#impacting .impacting-item .impact-name .date{
  font-size: 20px;
  line-height: 28px;
  color: #000;
  margin-left: 12px;
}
#impacting .impacting-item .impact-subtitle{
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin: 20px 0 25px;
  margin-left: 12px;
  font-weight: bold;
}
#impacting .impacting-item .right-content .impact-subtitle .sub-item{
  margin-bottom: 10px;
}
#impacting .impacting-item .right-content .impact-subtitle .sub-item .sub-item-left{
width: 70%;
float: left;
}
#impacting .impacting-item .right-content .impact-subtitle .sub-item .sub-item-right{
width: 20%;
text-align: right;
float: right;
color: var(--main-color);
position: relative;
}
#impacting .impacting-item .right-content .impact-subtitle .sub-item .sub-item-right.sub-item-red::after{
  content: '*';
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 5px;
}
#impacting .impacting-item .right-content .impact-content{
display: flex;
}
#impacting .impacting-item .right-content .impact-content .icon{
  width: 36px;
}
#impacting .impacting-item .right-content .impact-content .icon img{
  width: 36px;
  height: auto;
}
#impacting .impacting-item .right-content .impact-content .content{
  padding-left: 10px;
  font-size: 20px;
  line-height: 30px;
  font-style: italic;
}
#impacting .impacting-item .right-content .impact-content-list{

}
#impacting .impacting-item .right-content .impact-content-list .list-item{
  font-size: 20px;
  line-height: 30px;
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
#impacting .impacting-item .right-content .impact-content-list .list-item img{
  width: 36px;
  height: 31px;
}
#impacting .impacting-item .right-content .impact-content-list .list-item p{
 padding-left: 15px;
}
#impacting .impacting-item .right-content .impact-content-list .list-item span {
  color: var(--main-color);
  font-size: 40px;
}


#impacting .impacting-item .right-content .impact-icon-list{
  margin-top: 20px;
}
#impacting .impacting-item .right-content .impact-icon-list .list-item{
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  width: 100%;
  display: flex;
  margin-bottom: 33px;
}
#impacting .impacting-item .right-content .impact-icon-list .list-item img{
  width: 65px;
  height: auto;
}
#impacting .impacting-item .right-content .impact-icon-list .list-item p{
 padding-left: 45px;
 padding-top: 15px;
}
#impacting .impacting-item .right-content .impact-icon-list .list-item span {
  color: var(--main-color);
  font-size: 40px;
}
.reveal{
  padding-top: 90px !important;
}
.reveal h2{
   color: var(--main-color);
   font-size: 40px;
   text-align: center;
   line-height: 60px;
   margin: 0;
}
#financial-statements {
  display: flex;
  justify-content: center;
}
#financial-statements .report-container {
  color: var(--invert-color);
  font-weight: normal;
  font-size: 1.2rem;
 width: 100%;
  padding: 50px 0 10px;
}
.report-container .report {
  margin: 0 auto;
   justify-content: space-between;
  align-items: center;
  display: flex;
  width: 100%;
  max-width: 621px;
  margin-bottom: 20px;
}
#financial-statements .report-name {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
}
#financial-statements {
  background-color: var(--main-color);
}
#financial-statements div {
  text-align: center;
}
#financial-statements div.readmore a {
  background-color: var(--invert-color);
  color:  var(--main-color);
  border: solid 1px #000;
}
#financial-statements div.readmore a:hover {
  background-color: #000;
  color:  #fff;
  border: solid 1px #000;
}
.report-divider {
  background-color: #fff;
  width: 2px;
  height: 100%;
}
.report .readmore a{
display: inline-block;
width: 167px;
}
#footer {
  background-color: #3c3c3c;
  color: var(--invert-color);
  display: flex;
}
#footer #copyright,
#footer #socials {
  flex-grow: 1;
}
#footer #copyright {
  padding: 1.5em 0;
  font-size: 0.8rem;
  line-height: 1.3rem;
}
#footer #socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#footer #socials img {
  width: 1em;
  margin-left: 0.5em;
}
.reveal {
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: 1s all ease;
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.population-container {
  display: flex;
  width: 100%;
  gap: 1rem; /* Adjust the gap between columns as needed */
}

.population-container .column {
  border-radius: 25px; /* Makes the ends pill-shaped */
  padding: 1rem;
  background-color: #eee; /* Light gray background for illustration */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  font-size: 1rem;
}

.population-container .column.first {
  flex: 1; /* Fills up the available space */
  background-color: #b6d4de; /* Light blue background for illustration */
}

.population-container .column.second {
  width: 200px; /* Fixed width */
  background-color: #e6dcdc; /* Light pink background for illustration */
}

/* Optional: Add some additional styling */
.population-container .column {
  height: 3rem; /* Adjust height for visual appearance */
}

@media only screen and (max-width: 992px) {
  /* #showcase {
    min-height: 60vh;
  } */
  #showcase .title {
    position: relative;
    /* left: clamp(-15rem, -18rem, -22rem); */
  }
  /* .quotation figcaption {
    font-size: 1.5rem;
  } */
  .quotation,
  .quotation:nth-child(2) {
    flex-direction: column !important;
    padding: 3rem 3rem 1rem 3rem !important;
  }
  .quotation img {
    width: 80%;
  }
  .subject,
  .subject:nth-child(odd) {
    flex-direction: column;
  }
  .subject .text,
  .subject:nth-child(odd) .text {
    padding: 0;
  }
  .subject .text,
  .subject img {
    width: 100%;
  }
  .subject img {
    margin-top: 2em;
  }
  #financial-statements .report-container {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }
  #financial-statements .report {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  #financial-statements .report div {
    justify-content: space-between;
  }
  #financial-statements .report div.report-name {
    text-align: left;
  }
  #financial-statements .report div {
    width: 50%;
  }
  #financial-statements .report-container {
    padding: 2rem 0;
  }
  #financial-statements .report .readmore {
    text-align: right;
    padding-right: 1.7rem;
  }
  .report-divider {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .content {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media only screen and (max-width: 640px) {
  #back-to-top {
    flex-direction: column;
    gap: 1rem;
  }
  #back-to-top a {
    align-self: center;
  }
  #footer {
    flex-direction: column;
  }
  #footer #copyright {
    text-align: center;
  }
  #footer #socials {
    display: flex;
    justify-content: space-evenly;
    gap: 1.5em;
  }
  #footer #socials img {
    width: 2.5em;
  }
  #showcase {
    padding-top: 0;
    min-height: -webkit-fill-available;
    /* background-image: url("images/hero_mobile.png"); */
    min-height: 100vh;
    justify-content: unset;
    /* align-items: unset; */
  }
  #showcase .title {
    position: relative;
    left: unset;
    /* top: clamp(7rem, 20vh, 10rem); */
  }
  
  #theme {
    padding: 10rem 3.5rem;
    background-size: cover;
    /* background-image: url("images/covertheme_mobile.png"); */
  }
  .column.second {
    width: 60px !important;
    flex-grow: 0;
  }
  .content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Container for layout */
.individual-container {
  display: flex;
  flex-direction: row; /* Align children horizontally */
  align-items: center; /* Center items vertically */
  gap: 1rem;
  margin-bottom: 2rem; /* Space between the graphic and the info container */
}

/* Graphic styling */
.graphic {
  flex: 0 0 35%; /* Fixed width of 35% of the container */
  object-fit: cover; /* Ensure the image covers the area */
  height: auto; /* Maintain aspect ratio */
  width: 35%;
  border-radius: 0.5rem;
}

/* Info container styling */
.impacting-info {
  flex: 1; /* Take up the remaining space */
  display: flex;
  flex-direction: column; /* Stack columns vertically */
  gap: 0.5rem;
  align-self: center;
}
.impacting-info .note {
  font-size: 0.7em;
  color: var(--impacting);
  font-style: italic;
}
.impacting-info strong {
  font-weight: bold;
  color: #000;
}

/* Row of columns inside impacting-info */
.column-row {
  display: flex;
  justify-content: space-between; /* Space between columns in a row */
  align-items: center;
  gap: 1rem;
}

/* Column styling */
.column {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #fff;
  background-color: var(--main-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  white-space: nowrap;
  font-size: clamp(8px, 1.5vw, 20px);
}
/* Fixed width for second column */
.column.second {
  width: 150px; /* Adjust as needed for fixed width */
  background-color: var(--impacting);
  justify-content: center;
}

/* Styling for the first column */
.column.first {
  flex: 1; /* Take up remaining space */
}

/* Responsive adjustments */
@media only screen and (max-width: 960px) {
  .individual-container {
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: stretch; /* Stretch items to full width */
  }

  .graphic {
    width: 100%; /* Full width on mobile */
    height: auto; /* Maintain aspect ratio */
  }
  .impacting-info {
    flex-direction: column; /* Stack columns vertically */
    margin-bottom: 2em;
  }
}
ul#worklearn-info {
  list-style: none; /* Remove default bullets */
  padding-left: 1.8rem;
}

ul#worklearn-info li {
  padding-left: 2.4rem; /* Space for the SVG */
  position: relative;
  font-size: 1rem;
}
ul#worklearn-info li strong {
  font-size: 1.4rem;
  color: var(--main-color);
}

ul#worklearn-info li::before {
  content: url("images/bullet.svg");
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem; /* Adjust the width as needed */
  height: 2rem; /* Adjust the height as needed */
}
#horizon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#horizon-container .icon-text {
  display: flex;
  align-items: center;
}

#horizon-container .icon {
  width: 10rem;
  height: 10rem;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) {
  #horizon-container .text {
    font-size: 1.5rem;
    margin: 0 1em 0 0;
    font-weight: normal;
    color: #000;
  }

  #horizon-container .highlight {
    font-weight: bold;
  }
  .report-container .readmore {
    /* margin-top: 3rem; */
  }
}

#horizon-container .stats {
  display: flex;
  gap: 0.2rem; /* Space between the stat items */
  flex-direction: column;
  width: 100%;
  padding: 0 2.5rem;
}

@media only screen and (max-width: 992px) {
  #horizon-container .text,
  #horizon-container .hightlight {
    font-size: 1.2rem !important;
  }
  #horizon-container .highlight {
    font-weight: bold;
  }
}
#horizon-container .stat {
  display: flex;
  padding: 0.2rem 0;
  align-items: center;
  border-bottom: 1px solid var(--main-color);
}

#horizon-container .program {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  flex-grow: 1;
}

#horizon-container .number {
  font-size: 1rem;
  color: #e63946;
  font-weight: bold;
  flex-grow: 0;
  width: 3rem;
  min-width: 3rem;
  padding-left: 0.5rem;
}

#horizon-container .stat:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
hr {
  margin: 2rem auto;
}
#impacting .readmore {
  text-align: center;
}

.impacting-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
}

/* Default layout: .graphic on top, .divider and .content in a row */
.impacting-container > .item {
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.impacting-container > .item.content {
  align-self: center;
}

.graphic {
  flex: 1;
}
.graphic img {
  max-width: 100%; /* Ensure the image does not exceed the container width */
  height: auto; /* Maintain aspect ratio */
  /* border-radius: 0.5rem; */
}

.divider {
  flex: 0 1 auto;
}
.divider {
  position: relative;
  width: 3px; /* Thickness of the line */
  height: auto; /* Height of the line */
  background-color: var(--main-color); /* Color of the line */
  margin: 50px auto;
  padding: 0 !important;
  vertical-align: middle;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 9px; /* Diameter of the dot */
  height: 9px; /* Diameter of the dot */
  background-color: var(--main-color); /* Color of the dot */
  border-radius: 50%; /* Make it a circle */
}

.divider::before {
  top: -3px; /* Position the top dot above the line */
}

.divider::after {
  bottom: -3px; /* Position the bottom dot below the line */
}
.content {
  flex: 1; /* Take equal width */
}
.item.content {
  text-align: left;
}
.item.content .readmore {
  margin-top: 2rem;
}

/* Reverse layout for the second container */
.reverse {
  flex-direction: row-reverse;
}
.reverse .item.content {
  text-align: right;
}

.btn-report{
  margin-top: 40px;
}
.btn-report a{
  display: inline-block;
  padding: 7px 65px 7px 40px;
  background: url('images/btn-path.svg') center no-repeat;
  background-size: 100%;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.btn-report a:hover{

}
#showcase .title p{
  color: #EE3124;
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
}
.row{
  /* margin: 0 -14px; */
}
.row::after{
  clear: both;
  content: '';
  display: block;
}
.col-6{
  width: 50%;
  float: left;
}
.col-4{
   width: 33%;
  float: left;
}
.col-8{
  width: 66.66%;
  float: left;
}

.mobile{
  display: none;
}
/* Responsive styling */
@media (max-width: 992px) {
  .desktop{
  display: none;
}
.mobile{
  display: block;
}
div.readmore a {
  font-size: 18px;
  line-height: 24px;
}
#theme{
  background: url('images/theme_bg_mb.png') no-repeat center;
  background-size: 100% 100%;
  text-align: center;
  padding: 5rem 3.5rem;
}
#theme h2{
  text-align: center;
  font-size: 27px;
  line-height: 38px;
}
#theme h2::before{
  left: unset;
  margin-left: -15px;
  width: 35px;
  height: 40px;
}
#theme p{
  font-size: 18px;
  line-height: 22px;
}
#showcase{
  background: url('images/banner_mb.png') no-repeat top;
  background-size: cover;
  margin-top: 96px;
          align-items: unset;
}
#showcase .title{
  top: 20px;
}
#showcase .readfull{
  font-size: 18px;
}

.quotation figcaption{
  font-size: 27px;
  line-height: 32px;
  text-align: center;
  text-transform: unset;
}
.quotation blockquote{
  font-size: 18px;
  line-height: 25px;
}
.quotation .readmore{
  margin-top: 50px;
}
.quotation img{
  max-width: 250px;
  margin-top: 50px;
}
.quotation{
  background-position: center;
}
#president-message.quotation{
  background-position: center;
}
.quotation .overlay
 {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    background: url(images/about_icon1.png) center no-repeat;
    background-size: cover;
    height: 100px;
}
#president-message.quotation .overlay
 {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    background: url(images/about_icon2.png) center no-repeat;
    background-size: cover;
    height: 100px;
}
.col-6, .col-4, .col-8{
  width: 100%;
  float: none;
}
.quotation figure{
 padding: 0;
}
#president-message.quotation figure{
  padding: 0;
}
#impacting .impacting-item .right-content{
  padding: 0;
}
#at-a-glance h2{
  font-size: 27px;
  line-height: 32px;
}
#at-a-glance h3{
  font-size: 21px;
  line-height: 28px;
  text-align: center;
}
#at-a-glance .map-image{
  margin: 20px 0 35px;
}
#postgrad-programmes .program-item{
  margin-bottom: 25px;
}
#academic-clusters .clusters-item {
  margin-top: 20px;
}
#impacting h2{
  font-size: 27px;
  line-height: 30px;
}
#impacting .impacting-item .impact-name .name{
  font-size: 21px;
  line-height: 28px;
  /* display: block; */
}
#impacting .impacting-item .impact-name .date{
  font-size: 15px;
  line-height: 20px;
  display: block;
  margin-left: 0;
}
#impacting .impacting-item .item-image{
  margin-top: 10px;
}
#impacting{
  padding: 50px 0 !important;
}
#impacting .list-impacting{
  margin-top: 25px;
}
.reveal h2{
  font-size: 27px;
  line-height: 30px;
}
#industry{
  padding-top: 50px !important;
  padding-bottom: 50px;
}
.reveal{
  padding-top: 25px !important;
  padding-bottom: 25px;
}
.nav{
  right: -100%;
  width: 100%;
}

#showcase .title p{
    font-size: 40px !important;
    line-height:45px !important;
  }
  .btn-report{
    margin-top: 10px;
  }
  .btn-report a{
    font-size: 18px !important;
  }
  #showcase .readfull{
    margin-top: 25px;
  }
  #showcase .title img {
    width: 80%;
  }
  #academic-clusters h3{
    font-size: 21px;
    line-height: 28px;
  }
  #academic-clusters .clusters-item .number{
    font-size: 40px;
  }
  #academic-clusters .clusters-item .content{
    font-size: 18px;
    line-height: 24px;
  }
  #academic-clusters .clusters-item .content .small{
    font-size: 13px;
  }
  .glance-list .glance-icon{
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .impacting-container {
    flex-direction: column;
  }
  .reverse .item.content {
    text-align: left;
  }
  .item {
    flex: 1 1 auto; /* Adjust flex basis to content */
    width: 100%; /* Full width on small screens */
  }
  .item.divider {
    display: none;
  }
}

