@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Exile&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Prociono&family=WDXL+Lubrifont+TC&display=swap");


:root {
  --color1: #124e78;
  --color2: #f2bb05;
  --color3: #f0f0c9;
}

.logo {
  font-family: "Exile", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  color: var(--color1);
}

nav {
  padding: 10px;
}
nav a {
  color: var(--color1);
  text-decoration: none;
  font-size: 20px;
}

.main {
  background-image: url(./images/student.webp);
  background-size: cover;
  background-position: center;

  position: relative;
  height: 100vh;
}

.main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(18, 78, 120, 0.6),
    rgba(18, 78, 120, 0.6)
  );
}

.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.champ {
  font-size: 80px;
}

.curr img {
  width: 100%; /* Full width of the container */
  height: 200px; /* Fixed height for all images */
  object-fit: cover; /* Ensures image is cropped to fit the box nicely */
  border-radius: 8px; /* Optional: adds rounded corners */
}

.video-container {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.back {
  background-image: url(./images/back.svg);
  background-size: cover;
  background-position: center;
  padding: 50px;
  margin-top: 100px;
  border-radius: 10px;
}

.sub {
  width: 40%;
  padding: 10px;
}

.footer1 {
  margin-top: 100px;
  width: 100%;
  background-color: rgb(238, 237, 236);
  padding: 30px;
}

.footer1 li {
  list-style: none;
}
.footer1 a {
  text-decoration: none;
  color: black;
}
/* For mobile BEGIN */
@media screen and (max-width: 767px) {
  .nav-list a {
    display: none;
  }
  .champ {
    font-size: 40px;
  }

  .menu-icon {
    border: none;
    background: none;
    color: var(--color2);
    font-size: 25px;
    margin-top: -10px;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;

    background-color: var(--color1);
    padding: 30px;
    z-index: 1;
    height: 100vh;
  }
  .menu > a {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--color2);
  }
  .menu-icon.close {
    display: block;
  }
  .menu.active {
    display: flex;
  }

  .sub {
    padding-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}

/*For Tablet Screen*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .nav-list a {
    display: none;
  }

  .menu-icon {
    border: none;
    background: none;
    color: var(--color2);
    font-size: 25px;
    margin-top: -10px;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;

    background-color: var(--color1);
    padding: 30px;
    z-index: 1;
    height: 100vh;
  }
  .menu > a {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--color2);
  }
  .menu-icon.close {
    display: block;
  }
  .menu.active {
    display: flex;
  }
}
