@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,700&display=swap");
body {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
}

.h0 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (min-width: 48rem) {
  .h0 {
    font-size: calc(1.3888888889vw + 5.3333333333rem);
  }
}
@media screen and (min-width: 192rem) {
  .h0 {
    font-size: 8rem;
  }
}

.h1 {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (min-width: 48rem) {
  .h1 {
    font-size: calc(0.8333333333vw + 4.4rem);
  }
}
@media screen and (min-width: 192rem) {
  .h1 {
    font-size: 6rem;
  }
}

.h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 48rem) {
  .h2 {
    font-size: calc(0.8333333333vw + 3.2rem);
  }
}
@media screen and (min-width: 192rem) {
  .h2 {
    font-size: 4.8rem;
  }
}

.h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 48rem) {
  .h3 {
    font-size: calc(0.8333333333vw + 2rem);
  }
}
@media screen and (min-width: 192rem) {
  .h3 {
    font-size: 3.6rem;
  }
}

.h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 48rem) {
  .h4 {
    font-size: calc(0.2777777778vw + 1.8666666667rem);
  }
}
@media screen and (min-width: 192rem) {
  .h4 {
    font-size: 2.4rem;
  }
}

.para {
  font-size: 1.6rem !important;
}

.meta {
  font-size: 1.2rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 64em) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 50em) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 37.5em) {
  html {
    font-size: 43.75%;
  }
}

body {
  box-sizing: border-box;
}

li {
  list-style: none;
}

::-moz-selection {
  background-color: #ff7800;
  color: #fff;
}

::selection {
  background-color: #ff7800;
  color: #fff;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.light {
  font-weight: lighter;
}

.primary {
  color: #ff7800;
}

.tertiary {
  color: #707070;
}

.block {
  display: block;
}

.mt-5 {
  margin-top: 5rem;
}

@keyframes fadeUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleAcross {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scaleXAcross {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInHero {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes dots {
  0%,
  20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%,
  100% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;
  }
}
.loading {
  position: relative;
  z-index: 2;
}
.loading::before {
  content: " .";
  animation: dots 1s steps(5, end) infinite;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #d66500;
  box-shadow: 0 10px 10px rgba(10, 10, 10, 0.15);
}
@media screen and (max-width: 93.75em) {
  .nav {
    padding: 0;
  }
}
@media screen and (max-width: 75em) {
  .nav {
    padding-right: 1rem;
  }
}
.nav--expanded .nav__background {
  transform: scaleX(1);
}
.nav--expanded .nav__hamburger {
  background-color: transparent;
}
.nav--expanded .nav__hamburger::before {
  transform: translateY(0) rotate(45deg);
}
.nav--expanded .nav__hamburger::after {
  transform: translateY(0) rotate(-45deg);
}
.nav--expanded .nav__list {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.nav__logo {
  width: 9.5rem;
  height: 8.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: inline-block;
  margin: 2rem 0 1rem 0;
}
.nav__background {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: #000;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav__hamburger-wrapper {
  display: block;
  border: none;
  background: none;
  position: relative;
  z-index: 4;
  height: 100%;
  z-index: 10;
  padding: 2rem 3rem;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 75em) {
  .nav__hamburger-wrapper {
    display: block;
  }
}
.nav__hamburger {
  display: block;
  width: 6rem;
  height: 4px;
  background-color: #fff;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.nav__hamburger::before,
.nav__hamburger::after {
  content: "";
  display: block;
  height: inherit;
  width: inherit;
  background-color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.nav__hamburger::before {
  transform: translateY(-1.5rem) rotate(0);
}
.nav__hamburger::after {
  transform: translateY(1.5rem) rotate(0);
}
.nav__list {
  list-style: none;
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 75em) {
  .nav__list {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    background-image: linear-gradient(
      to bottom,
      #0a0a0a,
      rgba(10, 10, 10, 0.9)
    );
    flex-direction: column;
    align-items: center;
    padding-top: 8rem;
    visibility: hidden;
    opacity: 0;
    transform: translateX(3rem);
    transition: visibility 0.3s linear, opacity 0.3s linear, transform 0.3s;
  }
}
@media screen and (max-width: 75em) {
  .nav__list-item {
    width: 100%;
  }
}
.nav__list-item--logo {
  display: none;
}
@media screen and (max-width: 75em) {
  .nav__list-item--logo {
    display: block;
  }
}
.nav__list-item--logo .nav__link--logo {
  font-size: 4rem;
}
.nav__link {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 2rem 3rem;
}
.nav__link--cta {
  background-color: #ff7800;
}
.nav__link--active {
  background-color: #b85600;
  font-weight: 700;
}
@media screen and (max-width: 92.5em) {
  .nav__link {
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 75em) {
  .nav__link {
    width: 100%;
  }
}
.nav__link:hover {
  background-color: #c75e00;
}

.footer {
  background-color: #fff;
  color: #a4a4a4;
  padding: 2rem 5vw;
  text-align: center;
  position: relative;
  margin-top: auto;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-image: linear-gradient(
    to right,
    #fff,
    #f2f2f2,
    #ff7800,
    #f2f2f2,
    #fff
  );
}
.footer--with-margin {
  margin-top: auto;
}

.whatsapp__img {
  position: fixed;
  width: 6rem;
  height: 6rem;
  bottom: 4rem;
  right: 4rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 3rem;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: transform 0.3s;
}
.whatsapp__img:hover {
  transform: scale(1.1);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal--visible {
  opacity: 1;
  pointer-events: initial;
}
.modal--visible .modal__background {
  transform: scaleY(1);
}
.modal__background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.modal__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: #ff7800;
  color: #fff;
  z-index: 2;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
}
.modal__close-btn:hover {
  background-color: #d66500;
}
.modal__close-icon {
  display: block;
  font-size: 3rem;
  line-height: 1;
}
.modal__container {
  position: relative;
  z-index: 81;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.modal__wrapper {
  color: #fff;
  align-self: center;
  width: 100%;
  height: 90vh;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 82;
}
.modal__content-wrapper {
  position: relative;
  background-color: #0a0a0a;
  padding: 2rem;
  min-height: 20rem;
  min-width: 25rem;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.modal__image {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  margin-bottom: 1rem;
  width: auto;
}
.modal__arrow {
  padding: 1.5rem;
  background-color: #ff7800;
  color: #fff;
  border: none;
  cursor: pointer;
}
.modal__arrow:hover {
  background-color: #d66500;
}
.modal__arrow-text {
  line-height: 1;
  font-size: 2rem;
}

.link {
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
  color: #ff7800;
}
.link--white {
  color: #fff;
}
.link--white:hover {
  color: #fff !important;
}
.link--white:hover::after {
  transform: scaleX(1);
}
.link::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s;
}
.link:hover {
  color: #d66500;
}
.link:hover::after {
  transform: scaleX(1);
}

.btn {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  padding: 1rem 5rem;
  border: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 1rem;
}
.btn--link {
  text-decoration: none;
}
.btn--primary {
  background-color: #ff7800;
  color: #fff;
  transition: background-color 0.3s;
}
.btn--primary:hover,
.btn--primary:focus {
  background-color: #b35400;
}
.btn--secondary {
  background-color: #d66500;
  color: #fff;
  font-weight: 400;
  transition: background-color 0.3s;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background-color: #8a4100;
}
.btn--ghost {
  color: #ff7800;
  border: solid 3px #ff7800;
  padding: 0.8rem 5rem;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.btn--ghost:hover,
.btn--ghost:focus {
  border-color: #d66500;
  background-color: #d66500;
  color: #fff;
}
.btn--lg {
  font-size: 2.4rem;
}
@media screen and (max-width: 75em) {
  .btn--lg {
    font-size: 2rem;
  }
}

.input--margin {
  margin-bottom: 3rem;
}
.input__label {
  display: block;
  width: 75%;
  font-weight: bold;
  color: #ff7800;
  font-size: 1.8rem;
}
.input__label--dark {
  color: #0a0a0a;
}
.input__control {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background-color: #f2f2f2;
  color: #0a0a0a;
  font-size: inherit;
  font-family: inherit;
  border-radius: 10px;
  outline: none;
  border: none;
  border-bottom: 3px solid #a4a4a4;
  transition: border-bottom-color 0.3s;
}
.input__control--textarea {
  min-height: 20rem;
  resize: none;
}
.input__control--error {
  border-bottom-color: #ff0000;
}
.input__control:focus {
  border-bottom-color: #ff7800;
}

.updates-card {
  display: block;
  position: relative;
  height: 45rem;
  max-height: 45rem;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}
@media screen and (max-width: 56.25em) {
  .updates-card {
    height: 30rem;
  }
}
.updates-card:hover {
  transform: translateY(-8px);
  color: #ff7800;
}
.updates-card:hover .updates__card-content-wrapper {
  transform: translateY(-8px);
}
.updates-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}
.updates-card__wrapper {
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 30%,
    rgba(10, 10, 10, 0.4)
  );
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2rem;
}
.updates-card__content-wrapper {
  transition: transform 0.3s;
}

.events-card {
  display: block;
  position: relative;
  height: 28rem;
  list-style: none;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s;
}
.events-card:hover {
  transform: scale(0.95);
  color: #ff7800;
}
.events-card:hover .events-card__details {
  transform: translateY(-8px);
}
.events-card__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}
.events-card__wrapper {
  padding: 2rem 3rem;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    rgba(10, 10, 10, 0.8),
    rgba(10, 10, 10, 0.8)
  );
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.events-card__details {
  transition: transform 0.3s;
}
.events-card__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #0a0a0a;
}

.modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: -10px 0 30px rgba(10, 10, 10, 0.25);
  border-top: 5px solid #ff7800;
  z-index: 10;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.modal--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: initial;
}
.modal__wrapper {
  width: 100%;
  max-width: 164rem;
  padding: 5rem;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  border: none;
  background-color: #ff7800;
  font-family: inherit;
  font-size: inherit;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.modal__close:hover {
  background-color: #d66500;
}
.modal__icon {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  margin-right: 0.5rem;
}

.hero {
  height: 100%;
  min-height: 72vh;
  background-image: linear-gradient(
      rgba(214, 101, 0, 0.3),
      rgba(214, 101, 0, 0.3)
    ),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 5vw 8rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.hero__wrapper {
  width: 100%;
  max-width: 81.2rem;
  color: #fff;
}
.hero__logo {
  height: 10rem;
}
.hero__heading {
  margin-bottom: 3rem;
}
.hero__heading--jss {
  color: #fff;
  display: grid;
  font-weight: 500;
  grid-template-columns: max-content 1fr;
  align-items: center;
  grid-gap: 3rem;
}
.hero__heading--sub-text {
  font-size: 2rem;
  color: #fff;
}
.hero__heading-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.hero__text {
  font-size: 2.4rem;
}
.hero__text:not(:last-child) {
  margin-bottom: 3rem;
}

.psyche__wrapper {
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.15);
  position: relative;
  height: 13rem;
  margin-top: 12rem;
}
.psyche__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.psyche__text {
  background-color: rgba(10, 10, 10, 0.8);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}
.psyche__text .marquee__text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.about {
  padding: 8rem 5vw;
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.65),
      rgba(10, 10, 10, 0.65)
    ),
    url("../img/about.jpg");
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 45em) {
  .about {
    background-image: linear-gradient(
        rgba(10, 10, 10, 0.65),
        rgba(10, 10, 10, 0.65)
      ),
      url("../img/about.jpg");
  }
}
.about__wrapper {
  width: 100%;
  max-width: 94rem;
  color: #fff;
}
.about__header {
  margin-bottom: 5rem;
}
.about__content-wrapper {
  padding-left: 5rem;
  border-left: 5px solid #ff7800;
}
.about__accred {
  display: block;
  margin-top: 5rem;
  width: 20rem;
}

.staff__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 8rem 5vw;
  grid-gap: 5rem;
  position: relative;
}
@media screen and (max-width: 85em) {
  .staff__grid {
    grid-template-columns: 1fr;
  }
}
.staff__grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30vw;
  background-color: #ff7800;
  z-index: -1;
}
@media screen and (max-width: 85em) {
  .staff__grid::before {
    height: 30vh;
    width: 100%;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.9)
      ),
      url("../img/about.jpg");
    background-size: cover;
    background-position: top;
  }
}
.staff__img-wrapper {
  height: 70rem;
  box-shadow: 0 0 30px rgba(10, 10, 10, 0.2);
}
@media screen and (max-width: 85em) {
  .staff__img-wrapper {
    display: none;
  }
}
.staff__img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.staff__heading {
  margin-bottom: 3rem;
}
.staff__content {
  margin-left: 3rem;
  padding-left: 3rem;
  border-left: 3px solid #ff7800;
}
@media screen and (max-width: 31.25em) {
  .staff__content {
    margin-left: 0x;
  }
}
.staff__content p:not(:last-child) {
  margin-bottom: 3rem;
}
.staff__content-top {
  margin-bottom: 3rem;
}
.staff__content-bottom {
  padding-top: 3rem;
  border-top: 2px solid #ff7800;
}

.infrastructure {
  padding: 5rem 0;
  margin: 5rem 5vw;
  border-top: 1px solid #a4a4a4;
  border-bottom: 1px solid #a4a4a4;
}
.infrastructure__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
}
@media screen and (max-width: 88.4375em) {
  .infrastructure__list {
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 40.625em) {
  .infrastructure__list {
    grid-template-columns: 1fr;
  }
}
.infrastructure__link {
  display: block;
  height: 18.6rem;
  padding: 3rem 5rem;
  text-decoration: none;
  color: #ff7800;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: transform 0.3s, filter 0.3s;
  background-size: cover;
  background-position: center;
}
.infrastructure__link:hover {
  transform: translateY(-2rem) scale(1.1);
  filter: brightness(120%);
}
.infrastructure__link--facilities {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.55),
      rgba(10, 10, 10, 0.55)
    ),
    url("../img/bacheolors.png");
}
.infrastructure__link--equipments {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.55),
      rgba(10, 10, 10, 0.55)
    ),
    url("../img/masters.png");
}
.infrastructure__link--research {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.55),
      rgba(10, 10, 10, 0.55)
    ),
    url("../img/research.jpg");
}

.timings {
  position: relative;
  padding: 3rem 0;
  border-bottom: 2px solid #ff7800;
  background-color: #ff7800;
}
.timings::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.7),
      rgba(10, 10, 10, 0.7)
    ),
    url("../img/hands.jpg");
  background-size: cover;
  background-position: center;
  z-index: 2;
}
.timings__content-wrapper {
  position: relative;
  z-index: 3;
  padding: 5rem 5rem 10rem 5vw;
}
@media screen and (max-width: 56.875em) {
  .timings__content-wrapper {
    padding: 5rem 5vw;
  }
}
.timings__heading {
  margin-bottom: 5rem;
}
.timings__heading::after {
  content: "";
  display: block;
  height: 3px;
  width: 30%;
  background-color: #ff7800;
}
.timings__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem;
}
@media screen and (max-width: 77.5em) {
  .timings__cards-wrapper {
    grid-template-columns: 1fr;
  }
}

.card:not(:last-child) {
  margin-bottom: 5rem;
}
.card__days {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  grid-gap: 3rem;
}
.card__days::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ff7800;
}
.card__content {
  border-left: 20px solid #ff7800;
  padding: 3rem 4rem;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(10, 10, 10, 0.15);
}
.card__faculty-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f2f2f2;
}
.card__faculty-title {
  margin-bottom: 2rem;
}
.card__faculty {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.card__faculty:not(:last-child) {
  margin-bottom: 1rem;
}
.card__img {
  height: 4rem;
  width: 4rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 50%;
  margin-right: 2rem;
}

.team {
  padding: 8rem 5vw;
}
.team__header {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  grid-gap: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 25em) {
  .team__header {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.team__header::before,
.team__header::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ff7800;
}
@media screen and (max-width: 25em) {
  .team__header::before,
  .team__header::after {
    display: none;
  }
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 10rem;
  position: relative;
}
@media screen and (max-width: 87.5em) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 46.875em) {
  .team__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.team__grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60%;
  width: 80%;
  max-width: 100rem;
  transform: translate(-50%, -50%);
  background-color: #fcfcfc;
  z-index: -1;
}
.team__img {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 87.5em) {
  .team__img {
    max-width: 40rem;
  }
}
.team__contact-wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f2f2f2;
}
.team__links-wrapper {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team__links-wrapper .link:first-child {
  margin-right: 3rem;
}

.journalz {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.85),
      rgba(10, 10, 10, 0.85)
    ),
    url("../img/journal.jpg");
  background-size: cover;
  background-position: center 70%;
  padding: 8rem 5vw;
}
.journalz__wrapper {
  color: #fff;
}
.journalz__wrapper .link {
  margin-top: 3rem;
}
.journalz__heading {
  margin-bottom: 2rem;
}

.facilities__header {
  height: 100%;
  min-height: 35vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5rem 5vw 3rem;
  margin-bottom: 5rem;
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.8),
      rgba(10, 10, 10, 0.8)
    ),
    url("../img/facilities.jpg");
  background-size: cover;
  background-position: center;
  color: #ff7800;
}
@media screen and (max-width: 33.75em) {
  .facilities__header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.facilities__header-wrapper {
  width: 100%;
  max-width: 145rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.facilities__back-btn {
  color: #fff;
  transition: color 0.3s;
}
.facilities__back-btn:hover {
  color: #ff7800;
}
.facilities__service {
  width: 100%;
  max-width: 145rem;
  margin: 4rem auto 8rem;
}
@media screen and (max-width: 100.625em) {
  .facilities__service {
    padding: 0 5vw;
  }
}
.facilities__service-header {
  padding-bottom: 1rem;
  border-bottom: 10px solid #ff7800;
  margin-bottom: 3rem;
}
.facilities__service-number {
  color: #ff7800;
  font-size: 8rem;
  opacity: 0.2;
  line-height: 1;
  margin-right: 1rem;
}
.facilities__list {
  list-style: none;
}
.facilities__list--opd {
  max-width: 130rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
}
@media screen and (max-width: 46.875em) {
  .facilities__list--opd {
    grid-template-columns: 1fr;
  }
}
.facilities__list--ipd {
  max-width: 140rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
}
@media screen and (max-width: 46.875em) {
  .facilities__list--ipd {
    grid-template-columns: 1fr;
  }
}
.facilities__list--clinic {
  max-width: 70rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
}
@media screen and (max-width: 46.875em) {
  .facilities__list--clinic {
    grid-template-columns: 1fr;
  }
}
.facilities__list--extension {
  max-width: 130rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
}
@media screen and (max-width: 46.875em) {
  .facilities__list--extension {
    grid-template-columns: 1fr;
  }
}
.facilities__list--others {
  max-width: 140rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 46.875em) {
  .facilities__list--others {
    grid-template-columns: 1fr;
  }
}
.equipments__header {
  height: 100%;
  min-height: 35vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5rem 5vw 3rem;
  margin-bottom: 5rem;
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.8),
      rgba(10, 10, 10, 0.8)
    ),
    url("../img/equipments.jpg");
  background-size: cover;
  background-position: center;
  color: #ff7800;
}
.equipments__header-wrapper {
  width: 100%;
  max-width: 145rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 33.75em) {
  .equipments__header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.equipments__back-btn {
  color: #fff;
  transition: color 0.3s;
}
.equipments__back-btn:hover {
  color: #ff7800;
}
.list {
  list-style: none;
  counter-reset: custom-counter;
  width: 100%;
  max-width: 145rem;
  margin: 4rem auto 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
}
@media screen and (max-width: 45.625em) {
  .list {
    grid-template-columns: 1fr;
  }
}
.list--padded {
  padding: 6rem 0;
}
@media screen and (max-width: 100.625em) {
  .list--padded {
    padding: 6rem 5vw;
  }
}
.list__item {
  counter-increment: custom-counter;
  font-size: 2rem;
  position: relative;
  display: flex;
  padding: 1rem 0 1rem 8rem;
  border-top: 2px solid #ff7800;
}
@media screen and (max-width: 45.625em) {
  .list__item {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 33.125em) {
  .list__item {
    flex-direction: column-reverse;
    border-bottom: 2px solid #a4a4a4;
    padding: 7rem 0 3rem;
  }
}
.list__item::before {
  content: counter(custom-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.5rem;
  width: 5.5rem;
  background-color: #ff7800;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.list__item--full {
  grid-column: 1/3;
}
.list__item--rich {
  counter-increment: custom-counter;
  font-size: 2rem;
  display: flex;
}
@media screen and (max-width: 33.125em) {
  .list__item--rich {
    flex-direction: column-reverse;
    border-bottom: 2px solid #a4a4a4;
  }
}
.list__img {
  width: 16rem;
  max-width: 16rem;
  height: 200px;
  max-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 33.125em) {
  .list__img {
    margin: 3rem 0;
    padding-bottom: 1rem;
  }
}
.list__text {
  display: flex;
  flex: 1;
  width: 100%;
  border-top: 3px solid #0a0a0a;
  position: relative;
  padding: 1rem 0 1rem 8rem;
}
.list__text::before {
  content: counter(custom-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.5rem;
  width: 5.5rem;
  background-color: #0a0a0a;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 26.25em) {
  .list__text {
    flex-direction: column;
    padding: 8rem 0 0;
  }
}

.sublist {
  margin: 3rem 0 0;
}
.sublist__item:not(:last-child) {
  margin-bottom: 2rem;
}

.research__header {
  height: 100%;
  min-height: 35vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5rem 5vw 3rem;
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.8),
      rgba(10, 10, 10, 0.8)
    ),
    url("../img/research.jpg");
  background-size: cover;
  background-position: center;
}
.research__header-wrapper {
  width: 100%;
  max-width: 145rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 75em) {
  .research__header-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.research__intro {
  max-width: 90rem;
  color: #fff;
}
.research__back-btn {
  color: #fff;
  transition: color 0.3s;
}
.research__back-btn:hover {
  color: #ff7800;
}
@media screen and (max-width: 75em) {
  .research__back-btn {
    margin-top: 3rem;
  }
}
.research__heading {
  color: #ff7800;
}
.research__grid {
  margin: 0 auto;
  width: 100%;
  max-width: 145rem;
  padding: 5rem 0;
}
@media screen and (max-width: 60em) {
  .research__grid {
    grid-template-columns: 1fr;
  }
}
.research__content {
  padding: 8rem 5rem;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(10, 10, 10, 0.15);
  margin-bottom: 5rem;
}
@media screen and (max-width: 60em) {
  .research__content {
    padding: 0 5vw 8rem;
  }
}
.research__item:not(:last-child) {
  margin-bottom: 3rem;
}

.updates {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.updates__header {
  min-height: 40vh;
  height: 100%;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.updates__header--base {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.8),
      rgba(10, 10, 10, 0.8)
    ),
    url("../img/updates.jpg");
  background-size: cover;
  background-position: center;
}
.updates__header--focused {
  position: relative;
}
.updates__header--focused .updates__heading-wrapper {
  max-width: 110rem;
}
@media screen and (max-width: 103.125em) {
  .updates__header--focused .updates__heading-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 69.375em) {
  .updates__header--focused .updates__heading-wrapper {
    padding: 0 5vw;
  }
}
.updates__heading-wrapper {
  color: #fff;
  width: 100%;
  max-width: 164rem;
}
@media screen and (max-width: 103.125em) {
  .updates__heading-wrapper {
    padding: 0 5vw;
  }
}
.updates__grid {
  max-width: 164rem;
  margin: 8rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5rem;
}
@media screen and (max-width: 103.125em) {
  .updates__grid {
    padding: 0 5vw;
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 83.75em) {
  .updates__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 40.625em) {
  .updates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 26.25em) {
  .updates__grid {
    grid-template-columns: 1fr;
  }
}
.updates__featured-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}
.updates__featured-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, #0a0a0a, rgba(10, 10, 10, 0.8));
  z-index: 1;
}
.updates__featured-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.updates__blog {
  width: 100%;
  max-width: 110rem;
  margin: 6rem auto;
}
.updates__blog img {
  max-width: 100%;
}
@media screen and (max-width: 69.6875em) {
  .updates__blog {
    padding: 0 5vw;
  }
}
.updates__author {
  margin-top: 3rem;
  padding: 3rem 0;
  border-top: 1px solid #ff7800;
}

.events {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.events__header {
  min-height: 40vh;
  height: 100%;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.events__header--base {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.8),
      rgba(10, 10, 10, 0.8)
    ),
    url("../img/events.jpg");
  background-size: cover;
  background-position: center;
}
.events__header--gallery {
  position: relative;
}
.events__heading-wrapper {
  width: 100%;
  max-width: 164rem;
  color: #fff;
}
@media screen and (max-width: 103.125em) {
  .events__heading-wrapper {
    padding: 0 5vw;
  }
}
.events__featured-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}
.events__featured-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 1;
}
.events__featured-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.events__grid {
  max-width: 164rem;
  margin: 8rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
}
.events__grid--others {
  width: 100%;
  margin: 4rem auto;
}
@media screen and (max-width: 103.125em) {
  .events__grid {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 80em) {
  .events__grid {
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 53.125em) {
  .events__grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 4rem auto;
  }
}
@media screen and (max-width: 34.375em) {
  .events__grid {
    grid-template-columns: 1fr;
  }
}
.events__grid--others {
  padding: 0;
}
@media screen and (max-width: 103.125em) {
  .events__grid--others {
    padding: 0;
  }
}
.events__gallery-wrapper {
  width: 100%;
  max-width: 164rem;
  margin: 6rem auto 0;
}
@media screen and (max-width: 103.125em) {
  .events__gallery-wrapper {
    padding: 0 5vw;
  }
}
.events__gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 3rem;
}
@media screen and (max-width: 68.75em) {
  .events__gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 50.625em) {
  .events__gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 38.125em) {
  .events__gallery-grid {
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 24.375em) {
  .events__gallery-grid {
    grid-template-columns: 1fr;
  }
}
.events__gallery-img-wrapper {
  cursor: pointer;
  height: 20rem;
  transition: transform 0.3s;
}
.events__gallery-img-wrapper:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 24.375em) {
  .events__gallery-img-wrapper {
    width: 100%;
  }
}
.events__thumbnail {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.events__others {
  max-width: 164rem;
  margin: 8rem auto 0;
  padding: 4rem 0;
  border-top: 10px solid #ff7800;
}

.contact {
  padding: 0 5vw;
}
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10rem;
  padding: 8rem 0;
}
@media screen and (max-width: 70em) {
  .contact__grid {
    grid-gap: 5rem;
  }
}
@media screen and (max-width: 51.25em) {
  .contact__grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.contact__grid::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 90%;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(10, 10, 10, 0.15);
  z-index: -1;
}
@media screen and (max-width: 51.25em) {
  .contact__grid::before {
    display: none;
  }
}
.contact__header {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.75)
    ),
    url("../img/bacheolors.png");
  background-size: cover;
  background-position: center;
  padding: 5rem;
}
.contact__form {
  padding: 5rem 10rem 5rem 0;
}
@media screen and (max-width: 51.25em) {
  .contact__form {
    padding: 5rem;
  }
}
.contact__info {
  margin: 8rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 8rem;
  grid-row-gap: 2rem;
}
@media screen and (max-width: 56.25em) {
  .contact__info {
    grid-template-columns: 1fr;
    grid-row-gap: 5rem;
  }
}
@media screen and (max-width: 51.25em) {
  .contact__info {
    padding: 5rem 5rem 0;
    border-top: 2px solid #a4a4a4;
  }
}
.contact__info-title {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (max-width: 56.25em) {
  .contact__info-title {
    grid-column: 1/2;
  }
}
.contact__info-left {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 56.25em) {
  .contact__info-left {
    grid-column: 1/2;
  }
}
.contact__info-right {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 56.25em) {
  .contact__info-right {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.contact__info-wrapper {
  margin-bottom: 2rem;
} /*# sourceMappingURL=main.css.map */
