@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Unicase";
  font-weight: 700;
}

p {
  font-family: "Jost";
}

/* Base styles for sliding animations */
.scroll-slide-in {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-slide-in.scroll-left-slide {
  transform: translateX(-100%);
}
.scroll-slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

header {
  width: 100vw;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b0b182;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
header.fade-in {
  opacity: 1;
  transform: translateY(0);
}
header .title {
  font-size: 2.7ch;
  margin-left: 50px;
  word-wrap: break-word;
  white-space: normal;
}
header nav {
  margin-right: 50px;
  display: flex;
  align-items: center;
}
header nav .menu-btn {
  display: none;
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin: 0;
  background: #b0b182;
}
header nav ul li {
  margin: 0;
  padding-left: 40px;
  font-family: "Jost";
  font-weight: 700;
  font-size: 1.125rem;
}
header nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding: 5px 0;
  transition: color 0.3s ease;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fbf6e0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}
header nav ul li a:hover::after, header nav ul li a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header nav .nav-links i {
  display: none;
}
header nav .nav-links .menu-btn i {
  font-size: 1.5625rem;
}

#home {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(90deg, #7ca2a1 50%, #c1d5c9 50%);
}
#home .left-right-container {
  display: flex;
  justify-content: space-between;
  height: calc(100vh - 80px);
}
#home .left-right-container .left, #home .left-right-container .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .left-right-container .left {
  padding: 70px 0 0 50px;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#home .left-right-container .left.fade-in {
  opacity: 1;
  transform: translateX(0);
}
#home .left-right-container .left span {
  color: #ffffff;
}
#home .left-right-container .left h1 {
  padding-right: 1.25rem;
  font-size: 3.125rem;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
}
#home .left-right-container .animated-text {
  font-size: 3.125rem;
  font-weight: 700;
  min-width: 280px;
}
#home .left-right-container .animated-text .first {
  position: relative;
}
#home .left-right-container .animated-text .first::before {
  content: "Department of";
  animation: line1 20s infinite;
}
#home .left-right-container .animated-text .first::after {
  content: "";
  position: absolute;
  width: calc(100% + 5px);
  height: 100%;
  background-color: #7ca2a1;
  border-left: #ffffff;
  right: -8px;
  animation: cursor 1s infinite, typing 50s steps(100) infinite;
}
@keyframes cursor {
  to {
    border-left: 2px solid #ffffff;
  }
}
@keyframes line1 {
  0%, 49% {
    content: "Department of";
  }
  50%, 100% {
    content: "Students' Forum for";
  }
}
#home .left-right-container .animated-text .second {
  position: relative;
}
#home .left-right-container .animated-text .second::before {
  content: "Mathematics, DMU";
  animation: words 20s infinite;
}
#home .left-right-container .animated-text .second::after {
  content: "";
  position: absolute;
  width: calc(100% + 5px);
  height: 100%;
  background-color: #7ca2a1;
  border-left: #ffffff;
  right: -8px;
  animation: cursor 1s infinite, typing 50s steps(100) infinite;
}
@keyframes cursor {
  to {
    border-left: 2px solid #ffffff;
  }
}
@keyframes line2 {
  0%, 49% {
    content: "Department of Mathematics, DMU";
  }
  50%, 100% {
    content: "Mathematics, DMU";
  }
}
@keyframes typing {
  10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
    width: 0;
  }
  5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {
    width: calc(100% + 5px);
  }
}
#home .left-right-container .right {
  text-align: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#home .left-right-container .right.fade-in {
  opacity: 1;
  transform: translateX(0);
}
#home .left-right-container .right .logo-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 0;
  padding-bottom: 100%;
}
#home .left-right-container .right .logo-container .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#home .left-right-container .right .logo-container .logo.active {
  display: block;
  opacity: 1;
}
#home .left-right-container .right .logo-container .logo1, #home .left-right-container .right .logo-container .logo3, #home .left-right-container .right .logo-container .logo4, #home .left-right-container .right .logo-container .logo5 {
  width: 70%;
}
#home .left-right-container .right .logo-container .logo2 {
  width: 90%;
}
#home .left-right-container .scroll-text {
  position: absolute;
  font-size: 6.25rem;
  color: #000000;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1000;
  bottom: 50px;
  width: 100%;
}
#home .left-right-container .scroll-text h1 {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
  padding: 0;
  margin: 0;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#university-notifications {
  position: relative;
  width: 100vw;
  padding: 80px 20px;
  background: #b0b182;
  overflow-y: auto;
}
#university-notifications .button-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#university-notifications button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: #fbf6e0;
  border: none;
  font-family: "Jost";
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
#university-notifications button i {
  padding-left: 15px;
  padding-top: 3px;
}
#university-notifications .notification-title {
  margin-left: 50px;
  padding-top: 20px;
}
#university-notifications .notification-title h1 {
  font-size: 3.125rem;
  margin-bottom: 20px;
  color: #fbf6e0;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
}
#university-notifications .notification-title p {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
#university-notifications .notification-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 20px;
  margin: auto 50px;
}
#university-notifications .notification-list .notification {
  flex: 1;
  min-width: 250px;
  max-width: 33%;
  background: #ffffff;
  padding: 20px;
  border: 3px solid #fbf6e0;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
#university-notifications .notification-list .notification p {
  margin-bottom: 10px;
  font-size: 1.125rem;
}
#university-notifications .notification-list .notification a {
  color: #04385d;
  font-family: "Jost";
  font-size: 1.25rem;
}

#faculty {
  position: relative;
  width: 100vw;
  text-align: left;
  background: #7ca2a1;
  padding: 80px 20px;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translateY(0);
}
#faculty .gallery-title {
  margin-left: 50px;
  padding-top: 20px;
}
#faculty .gallery-title h1 {
  font-size: 3.125rem;
  color: #fbf6e0;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
  margin-bottom: 20px;
}
#faculty .gallery-title p {
  font-size: 1.125rem;
}
#faculty .gallery-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
#faculty .gallery-container .image-card {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  flex: 1;
  min-width: 250px;
  max-width: calc(25% - 20px);
  height: 0;
  padding-bottom: 25%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
#faculty .gallery-container .image-card:hover {
  transform: translateY(-5px);
}
#faculty .gallery-container .image-card img {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
#faculty .gallery-container .image-card button {
  font-family: "Jost";
  color: #ffffff;
  position: absolute;
  padding: 10px 20px;
  font-size: 1.125rem;
  font-weight: 500;
  bottom: 10px;
  background: #b0b182;
  border: none;
  border-radius: 10px;
  width: calc(100% - 25px);
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

#events {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background: #b0b182;
}
#events .left-right-container {
  display: flex;
  justify-content: space-between;
  height: 100vh;
}
#events .left-right-container .left, #events .left-right-container .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#events .left-right-container .left {
  padding: 70px 100px 0 50px;
  flex-direction: column;
  align-items: flex-start;
}
#events .left-right-container .left h1 {
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
  color: #fbf6e0;
}
#events .left-right-container .left button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: #fbf6e0;
  border: none;
  font-family: "Jost";
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
#events .left-right-container .left button i {
  padding-left: 15px;
  padding-top: 3px;
}
#events .left-right-container .left h1 {
  padding-right: 1.25rem;
  font-size: 3.125rem;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
  margin-bottom: 20px;
}
#events .left-right-container .timeline-container {
  height: 55%;
  overflow-y: auto;
}
#events .left-right-container .timeline-container .timeline {
  position: relative;
  overflow-y: auto;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
#events .left-right-container .timeline-container .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #fbf6e0;
}
#events .left-right-container .timeline-container .timeline .timeline-item {
  position: relative;
  margin: 20px 0;
  padding-left: 60px;
  width: 85%;
}
#events .left-right-container .timeline-container .timeline .timeline-item .timeline-content {
  position: relative;
  background-color: #fbf6e0;
  padding: 10px 20px;
  border: 2px solid #c1d5c9;
  left: 10%;
  border-radius: 20px;
}
#events .left-right-container .timeline-container .timeline .timeline-item .timeline-content h2 {
  padding-bottom: 10px;
}
#events .left-right-container .timeline-container .timeline .timeline-item:nth-child(odd) .timeline-content {
  left: -10%;
}

#downloads {
  width: 100vw;
  padding: 60px 20px;
  text-align: left;
  background: #7ca2a1;
}
#downloads .hidden {
  display: none;
}
#downloads .downloads-title {
  margin: 0 50px;
}
#downloads .downloads-title h1 {
  font-size: 3.125rem;
  margin-bottom: 20px;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
  color: #fbf6e0;
}
#downloads .downloads-title p {
  margin-bottom: 40px;
}
#downloads .downloads-container {
  margin: 0 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
#downloads .downloads-container .downloads, #downloads .downloads-container .sample-questions {
  flex: 1;
  min-width: 300px;
  max-width: 48%;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: left;
  background: #c1d5c9;
}
#downloads .downloads-container .downloads h2, #downloads .downloads-container .sample-questions h2 {
  padding-bottom: 20px;
}
#downloads .downloads-container .downloads .tabs, #downloads .downloads-container .sample-questions .tabs {
  display: flex;
  margin-bottom: 10px;
}
#downloads .downloads-container .downloads .tabs .tab-button, #downloads .downloads-container .sample-questions .tabs .tab-button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-right: 5px;
  font-size: 1.125rem;
  font-family: "Jost";
}
#downloads .downloads-container .downloads .tabs .tab-button.active, #downloads .downloads-container .sample-questions .tabs .tab-button.active {
  background-color: #b0b182;
}
#downloads .downloads-container .downloads .tabs .tab-button:hover, #downloads .downloads-container .sample-questions .tabs .tab-button:hover {
  background: rgba(176, 177, 130, 0.5);
}
#downloads .downloads-container .downloads .tab-content, #downloads .downloads-container .sample-questions .tab-content {
  display: none;
}
#downloads .downloads-container .downloads .tab-content.active, #downloads .downloads-container .sample-questions .tab-content.active {
  display: block;
}
#downloads .downloads-container .downloads .accordion, #downloads .downloads-container .sample-questions .accordion {
  width: 100%;
  max-width: 600px;
  height: 320px;
  margin: 0 auto;
  overflow-y: auto;
}
#downloads .downloads-container .downloads .accordion .accordion-item, #downloads .downloads-container .sample-questions .accordion .accordion-item {
  margin-bottom: 10px;
  margin-right: 10px;
  font-family: "Jost";
  background: rgba(124, 162, 161, 0.5);
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-tab, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-tab {
  cursor: pointer;
  padding: 15px;
  font-size: 1.125rem;
  transition: #fbf6e0 0.3s ease;
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-tab:hover, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-tab:hover {
  background: #b0b182;
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-content, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content {
  display: none;
  padding: 15px;
  border-top: 1px solid #7ca2a1;
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-content ul, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content ul {
  list-style: none;
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-content ul a, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content ul a {
  color: #ffffff;
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-content ul a:hover, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content ul a:hover {
  color: #e0e0e0;
}
#downloads .downloads-container .downloads .accordion .accordion-item .accordion-content.active, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content.active {
  display: block;
}

#about-contact {
  width: 100vw;
  background: #b0b182;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 50px 20px;
  gap: 40px;
}
#about-contact h1 {
  font-size: 3.125rem;
  color: #fbf6e0;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
}
#about-contact .about-us {
  margin-left: 50px;
}
#about-contact .contact-us {
  margin-right: 50px;
}
#about-contact .about-us, #about-contact .contact-us {
  flex: 1;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#about-contact .about-us h1, #about-contact .contact-us h1 {
  margin-bottom: 20px;
}
#about-contact .about-us p, #about-contact .contact-us p {
  margin-bottom: 15px;
}
#about-contact .about-us p a, #about-contact .contact-us p a {
  color: #000000;
}
#about-contact .about-us form, #about-contact .contact-us form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  /* Existing button styling */
}
#about-contact .about-us form .form-group, #about-contact .contact-us form .form-group {
  display: flex;
  flex-direction: column;
}
#about-contact .about-us form .form-group label, #about-contact .contact-us form .form-group label {
  font-family: "Jost";
  font-size: 0.875rem;
  margin-bottom: 5px;
}
#about-contact .about-us form .form-group input, #about-contact .about-us form .form-group textarea, #about-contact .contact-us form .form-group input, #about-contact .contact-us form .form-group textarea {
  padding: 10px;
  font-size: 0.875rem;
  border: 1px solid #fbf6e0;
  border-radius: 5px;
  box-sizing: border-box;
}
#about-contact .about-us form .form-group #message, #about-contact .contact-us form .form-group #message {
  resize: none;
}
#about-contact .about-us form button[type=submit], #about-contact .contact-us form button[type=submit] {
  font-family: "Jost";
  background: #fbf6e0;
  font-weight: 500;
  padding: 10px 20px;
  font-size: 0.875rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease;
}
#about-contact .about-us form button[type=submit].loading, #about-contact .contact-us form button[type=submit].loading {
  padding: 10px;
  cursor: not-allowed;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about-contact .about-us form button[type=submit].loading .loader, #about-contact .contact-us form button[type=submit].loading .loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer {
  width: 100vw;
  background: #7ca2a1;
  font-family: "Jost";
  color: #fbf6e0;
  padding: 15px 0;
  text-align: center;
  font-size: 1rem;
}
#footer p {
  margin: 0;
}

@media only screen and (max-width: 491px) {
  body {
    overflow-x: hidden;
  }
  header {
    height: 50px;
  }
  header .title {
    display: block;
    margin-left: 0;
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
  }
  header nav {
    display: none;
  }
  #home {
    background: linear-gradient(0deg, #7ca2a1 50%, #c1d5c9 50%);
    height: 100dvh;
  }
  #home .left-right-container {
    display: grid;
    justify-items: center;
    align-content: center;
  }
  #home .left-right-container .left {
    margin-bottom: 140px;
    grid-row: 2;
    padding: 0 0 0 20px;
    width: auto;
  }
  #home .left-right-container .left h1 {
    font-size: 1.7rem;
  }
  #home .left-right-container .right {
    width: 100%;
    position: relative;
    top: -20px;
  }
  #home .left-right-container .right img .logo1, #home .left-right-container .right .logo2, #home .left-right-container .right .logo3, #home .left-right-container .right .logo4, #home .left-right-container .right .logo5 {
    width: 100%;
  }
  #home .left-right-container .scroll-text {
    width: 100%;
  }
  #university-notifications {
    height: 100vh;
    padding: 40px 20px;
  }
  #university-notifications .notification-title {
    margin: 0;
  }
  #university-notifications .notification-title h1 {
    font-size: 2rem;
  }
  #university-notifications .notification-title p {
    font-size: 0.9rem;
  }
  #university-notifications .notification-list {
    margin: 0;
  }
  #university-notifications .notification-list .notification {
    min-width: 100%;
    padding: 10px;
  }
  #university-notifications .notification-list .notification p {
    font-size: 0.9rem;
    margin: 10px 0;
  }
  #university-notifications .notification-list .notification a {
    font-size: 0.9rem;
  }
  #faculty .gallery-title {
    margin: 0;
    padding: 0;
  }
  #faculty .gallery-title h1 {
    font-size: 2rem;
  }
  #faculty .gallery-title p {
    font-size: 0.9rem;
  }
  #faculty .gallery-container .image-card {
    height: 250px;
    min-width: 40%;
    max-width: 50%;
  }
  #faculty .gallery-container .image-card button {
    font-size: 0.8125rem;
    padding: 10px 5px;
  }
  #events {
    height: 100%;
  }
  #events .left-right-container {
    flex-direction: column;
    height: calc(100vh - 100px);
  }
  #events .left-right-container .left {
    width: 100%;
    padding: 0 20px;
    margin: 40px 0;
  }
  #events .left-right-container .left h1 {
    font-size: 2rem;
  }
  #events .left-right-container .left p {
    font-size: 0.9rem;
  }
  #events .left-right-container .left button {
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 15px;
  }
  #events .left-right-container .right {
    height: 90%;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  #events .left-right-container .timeline-container {
    font-size: 0.9rem;
  }
  #downloads .downloads-title {
    margin: 0;
  }
  #downloads .downloads-title h1 {
    font-size: 2rem;
  }
  #downloads .downloads-title p {
    font-size: 0.9rem;
  }
  #downloads .downloads-container {
    margin: 0;
  }
  #downloads .downloads-container .downloads, #downloads .downloads-container .sample-questions {
    min-width: 100%;
  }
  #downloads .downloads-container .downloads .tabs .tab-button, #downloads .downloads-container .sample-questions .tabs .tab-button {
    font-size: 0.9rem;
  }
  #downloads .downloads-container .downloads .accordion .accordion-item .accordion-tab, #downloads .downloads-container .downloads .accordion .accordion-item .accordion-content, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-tab, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content {
    font-size: 0.9rem;
  }
  #about-contact {
    flex-direction: column;
  }
  #about-contact .about-us {
    margin: 0;
  }
  #about-contact .about-us h1 {
    font-size: 2rem;
  }
  #about-contact .about-us p {
    font-size: 0.9rem;
  }
  #about-contact .contact-us {
    margin: 0;
  }
  #about-contact .contact-us h1 {
    font-size: 2rem;
  }
  #about-contact .contact-us form .form-group label {
    font-size: 0.9rem;
  }
  #about-contact .contact-us form .form-group input {
    font-size: 0.9rem;
  }
  #about-contact .contact-us form .form-group textarea {
    font-size: 0.9rem;
  }
  #about-contact .contact-us form button[type=submit] {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  #footer {
    padding: 10px 0;
  }
  #footer p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 491px) and (max-width: 791px) {
  header {
    justify-content: center;
    height: 60px;
  }
  header .title {
    display: none;
  }
  header nav {
    margin: 0;
  }
  header nav ul {
    width: 100vw;
  }
  header nav ul li {
    padding: 0 5px;
    font-size: 1.1rem;
  }
  #home {
    background: linear-gradient(0deg, #7ca2a1 50%, #c1d5c9 50%);
    height: 100dvh;
  }
  #home .left-right-container {
    display: grid;
    justify-items: center;
    align-content: center;
    justify-content: center;
  }
  #home .left-right-container .left {
    margin-bottom: 250px;
    grid-row: 2;
    padding: 0;
    width: auto;
  }
  #home .left-right-container .left h1 {
    font-size: 3rem;
  }
  #home .left-right-container .right {
    width: 100%;
    position: relative;
    top: 0;
  }
  #home .left-right-container .right img .logo1, #home .left-right-container .right .logo2, #home .left-right-container .right .logo3, #home .left-right-container .right .logo4, #home .left-right-container .right .logo5 {
    width: 100%;
  }
  #home .left-right-container .scroll-text {
    width: 100%;
  }
  #university-notifications {
    height: 100vh;
    padding: 40px 20px;
  }
  #university-notifications .notification-title {
    margin: 0;
  }
  #university-notifications .notification-title h1 {
    font-size: 3rem;
  }
  #university-notifications .notification-title p {
    font-size: 1.5rem;
  }
  #university-notifications .notification-list {
    margin: 0;
  }
  #university-notifications .notification-list .notification {
    min-width: 100%;
    padding: 10px;
  }
  #university-notifications .notification-list .notification p {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  #university-notifications .notification-list .notification a {
    font-size: 1.5rem;
  }
  #faculty .gallery-title {
    margin: 0;
    padding: 0;
  }
  #faculty .gallery-title h1 {
    font-size: 3rem;
  }
  #faculty .gallery-title p {
    font-size: 1.5rem;
  }
  #faculty .gallery-container .image-card {
    height: 250px;
    min-width: 40%;
    max-width: 50%;
  }
  #faculty .gallery-container .image-card img {
    width: 56%;
  }
  #faculty .gallery-container .image-card button {
    font-size: 1.5rem;
    padding: 10px 5px;
  }
  #events {
    height: 100%;
  }
  #events .left-right-container {
    flex-direction: column;
    height: calc(100vh - 100px);
  }
  #events .left-right-container .left {
    width: 100%;
    padding: 0 20px;
    margin: 40px 0;
  }
  #events .left-right-container .left h1 {
    font-size: 3rem;
  }
  #events .left-right-container .left p {
    font-size: 1.5rem;
  }
  #events .left-right-container .left button {
    font-size: 1.5rem;
    margin-top: 20px;
    padding: 15px;
  }
  #events .left-right-container .right {
    height: 90%;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  #events .left-right-container .timeline-container {
    font-size: 1.5rem;
  }
  #events .left-right-container .timeline-container .timeline .timeline-item .timeline-content {
    left: 16%;
  }
  #events .left-right-container .timeline-container .timeline .timeline-item:nth-child(odd) .timeline-content {
    left: -6%;
  }
  #downloads .downloads-title {
    margin: 0;
  }
  #downloads .downloads-title h1 {
    font-size: 3rem;
  }
  #downloads .downloads-title p {
    font-size: 1.5rem;
  }
  #downloads .downloads-container {
    margin: 0;
  }
  #downloads .downloads-container .downloads, #downloads .downloads-container .sample-questions {
    min-width: 100%;
  }
  #downloads .downloads-container .downloads .tabs .tab-button, #downloads .downloads-container .sample-questions .tabs .tab-button {
    font-size: 1.5rem;
  }
  #downloads .downloads-container .downloads .accordion, #downloads .downloads-container .sample-questions .accordion {
    max-width: 100%;
  }
  #downloads .downloads-container .downloads .accordion .accordion-item .accordion-tab, #downloads .downloads-container .downloads .accordion .accordion-item .accordion-content, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-tab, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content {
    font-size: 1.5rem;
  }
  #about-contact {
    flex-direction: column;
  }
  #about-contact .about-us {
    margin: 0;
  }
  #about-contact .about-us h1 {
    font-size: 3rem;
  }
  #about-contact .about-us p {
    font-size: 1.5rem;
  }
  #about-contact .contact-us {
    margin: 0;
  }
  #about-contact .contact-us h1 {
    font-size: 3rem;
  }
  #about-contact .contact-us form .form-group label {
    font-size: 1.5rem;
  }
  #about-contact .contact-us form .form-group input {
    font-size: 1.5rem;
    border-radius: 13px;
    padding: 15px;
  }
  #about-contact .contact-us form .form-group textarea {
    font-size: 1.5rem;
    border-radius: 13px;
    padding: 15px;
  }
  #about-contact .contact-us form button[type=submit] {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
  #footer {
    padding: 10px 0;
  }
  #footer p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 792px) and (max-width: 1040px) {
  header {
    justify-content: center;
    height: 80px;
  }
  header .title {
    display: none;
  }
  header nav {
    margin: 0;
  }
  header nav ul {
    width: 100vw;
  }
  header nav ul li {
    padding: 0 5px;
    font-size: 1.7rem;
  }
  #home {
    background: linear-gradient(0deg, #7ca2a1 50%, #c1d5c9 50%);
    height: 100dvh;
  }
  #home .left-right-container {
    display: grid;
    justify-items: center;
    align-content: center;
    justify-content: center;
  }
  #home .left-right-container .left {
    margin-bottom: 250px;
    grid-row: 2;
    padding: 0;
    width: auto;
  }
  #home .left-right-container .left h1 {
    font-size: 3rem;
  }
  #home .left-right-container .right {
    width: 100%;
    position: relative;
    top: 0;
  }
  #home .left-right-container .right img .logo1, #home .left-right-container .right .logo2, #home .left-right-container .right .logo3, #home .left-right-container .right .logo4, #home .left-right-container .right .logo5 {
    width: 100%;
  }
  #home .left-right-container .scroll-text {
    width: 100%;
  }
  #university-notifications {
    height: 100vh;
    padding: 40px 20px;
  }
  #university-notifications .notification-title {
    margin: 0;
  }
  #university-notifications .notification-title h1 {
    font-size: 5rem;
  }
  #university-notifications .notification-title p {
    font-size: 2rem;
  }
  #university-notifications .notification-list {
    margin: 0;
  }
  #university-notifications .notification-list .notification {
    min-width: 100%;
    padding: 10px;
  }
  #university-notifications .notification-list .notification p {
    font-size: 2rem;
    margin: 10px 0;
  }
  #university-notifications .notification-list .notification a {
    font-size: 2rem;
  }
  #faculty .gallery-title {
    margin: 0;
    padding: 0;
  }
  #faculty .gallery-title h1 {
    font-size: 5rem;
  }
  #faculty .gallery-title p {
    font-size: 2rem;
  }
  #faculty .gallery-container .image-card {
    height: 250px;
    min-width: 40%;
    max-width: 50%;
  }
  #faculty .gallery-container .image-card img {
    width: 56%;
  }
  #faculty .gallery-container .image-card button {
    font-size: 2rem;
    padding: 10px 5px;
  }
  #events {
    height: 100%;
  }
  #events .left-right-container {
    flex-direction: column;
    height: calc(100vh - 100px);
  }
  #events .left-right-container .left {
    width: 100%;
    padding: 0 20px;
    margin: 40px 0;
  }
  #events .left-right-container .left h1 {
    font-size: 5rem;
  }
  #events .left-right-container .left p {
    font-size: 2rem;
  }
  #events .left-right-container .left button {
    font-size: 1.7rem;
    margin-top: 20px;
    padding: 15px;
  }
  #events .left-right-container .right {
    height: 90%;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
  }
  #events .left-right-container .timeline-container {
    font-size: 1.7rem;
  }
  #events .left-right-container .timeline-container .timeline .timeline-item .timeline-content {
    left: 16%;
  }
  #events .left-right-container .timeline-container .timeline .timeline-item:nth-child(odd) .timeline-content {
    left: -6%;
  }
  #downloads .downloads-title {
    margin: 0;
  }
  #downloads .downloads-title h1 {
    font-size: 5rem;
  }
  #downloads .downloads-title p {
    font-size: 2rem;
  }
  #downloads .downloads-container {
    margin: 0;
  }
  #downloads .downloads-container .downloads, #downloads .downloads-container .sample-questions {
    min-width: 100%;
  }
  #downloads .downloads-container .downloads h2, #downloads .downloads-container .sample-questions h2 {
    font-size: 2rem;
  }
  #downloads .downloads-container .downloads .tabs .tab-button, #downloads .downloads-container .sample-questions .tabs .tab-button {
    font-size: 1.7rem;
  }
  #downloads .downloads-container .downloads .accordion, #downloads .downloads-container .sample-questions .accordion {
    max-width: 100%;
  }
  #downloads .downloads-container .downloads .accordion .accordion-item .accordion-tab, #downloads .downloads-container .downloads .accordion .accordion-item .accordion-content, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-tab, #downloads .downloads-container .sample-questions .accordion .accordion-item .accordion-content {
    font-size: 1.7rem;
  }
  #about-contact {
    flex-direction: column;
  }
  #about-contact .about-us {
    margin: 0;
  }
  #about-contact .about-us h1 {
    font-size: 5rem;
  }
  #about-contact .about-us p {
    font-size: 2rem;
  }
  #about-contact .contact-us {
    margin: 0;
  }
  #about-contact .contact-us h1 {
    font-size: 2rem;
  }
  #about-contact .contact-us form .form-group label {
    font-size: 1.7rem;
  }
  #about-contact .contact-us form .form-group input {
    font-size: 1.7rem;
    border-radius: 15px;
    padding: 20px;
  }
  #about-contact .contact-us form .form-group textarea {
    font-size: 1.7rem;
    border-radius: 15px;
    padding: 20px;
  }
  #about-contact .contact-us form button[type=submit] {
    font-size: 1.7rem;
    padding: 10px 15px;
  }
  #footer {
    padding: 10px 0;
  }
  #footer p {
    font-size: 1.7rem;
  }
}/*# sourceMappingURL=styles.css.map */