@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
/*General styles*/

html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #333;
}
ul {
  list-style: none;
}
.container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
img {
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 2rem;
}
.col {
  flex: 1 250px;
}
.spacer {
  padding: 5rem 0;
}
/*logo*/
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-icon {
  width: 5rem;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: #333;
}

.logo-text2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #333;
  display: none;
}
/*nav*/
nav {
  padding: 0.5rem;
  box-shadow: 0px 15px 10px -15px #111;
  height: 100px;
  backdrop-filter: blur(6px);
  z-index: 999;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.links {
  display: flex;
  align-items: center;
  height: 100%;
}
.links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  margin-right: 0.75rem;
  font-size: 1rem;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.5px;
}

.menu-btn {
  display: none;
}

.menu-icon {
  padding: 28px 20px;
  height: 50%;
  display: none;
  cursor: pointer;
  position: relative;
}
.nav-icon {
  display: block;
  width: 36px;
  height: 4px;
  background: green;
  position: relative;
  transition: background 0.2s ease-out;
  border-radius: 2px;
}

.nav-icon:before {
  background: green;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: 10px;
  border-radius: 2px;
}

.nav-icon:after {
  background: green;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: -10px;
  border-radius: 2px;
}

.menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

/*Hero*/
.hero {
  height: calc(100vh - 100px);
  background: url("../images/fce_pix1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  width: 100%;
}
.btn {
  background: linear-gradient(45deg, rgb(1, 66, 1), green);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  transition: 0.5s;
}
.hero-content {
  width: 50%;
}
.hero-text {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px #000000;
}
.hero-text span {
  color: orange;
}
/*provost*/
.title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  text-align: center;
  margin-bottom: 5rem;
}

.title::after {
  content: "";
  background: #05951a;
  width: 5%;
  height: 4px;
  display: block;
  margin: auto;
}
.welcome-image {
  width: 40%;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  float: left;
}
.desc {
  color: #333;
  text-align: center;
  font-size: 0.9rem;
}
.desc span {
  color: rgb(2, 70, 2);
  font-weight: 700;
  font-size: 1.1rem;
}
.para {
  line-height: 1.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-align: justify;
}
/**links**/
.links a[aria-current="page"] {
  color: red;
  font-weight: 600;
}

/**dropdown_start**/
.dropdown {
  position: relative;
}
.submenu {
  position: absolute;
  display: grid;
  grid-template-rows: 0fr;
  transition: 250ms grid-template-rows ease;
  overflow: hidden !important;
  width: 300px;
  color: white !important;
}
.sm {
  color: white !important;
  background: #115f1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  height: 40px !important;
  display: block;
  padding: 1rem;
  font-size: 0.85rem !important;
}
.sm:hover {
  background: #cecece;
  color: #333 !important;
}
.sm:last-child {
  border-bottom: none;
}
.dropdown:hover .submenu {
  grid-template-rows: 1fr;
}
.submenu > div {
  overflow: hidden;
}

/**dropdown_end**/
/**sub submenu**/
.drop-dropdown {
  position: relative;
}
.sub-submenu {
  position: absolute;
  display: grid;
  grid-template-columns: 0fr;
  transition: 250ms grid-template-rows ease;
  overflow: hidden !important;
  width: 300px;
  color: white !important;
}

.ssm {
  color: white !important;
  background: #115f1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  height: 40px !important;
  display: block;
  padding: 1rem;
  font-size: 0.85rem !important;
}
.ssm:hover {
  background: #cecece;
  color: #333 !important;
}
.ssm:last-child {
  border-bottom: none;
}
.drop-dropdown:hover .sub-submenu {
  grid-template-rows: 1fr;
}
.sub-submenu > div {
  overflow: hidden;
}

/*vision*/
.vision {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/10.jpg");
  background-size: cover;
  background-repeat: no repeat;
  background-size: cover;
  background-attachment: fixed;
}
.vision-col {
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(223, 245, 223, 1));
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0px 15px 10px -15px #111;
}
.mission {
  font-size: 2rem;
  font-weight: 900;
  color: #115f1d;
  margin-bottom: 1rem;
  text-align: center;
}
.mission-text {
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  color: #333;
}
/*footer*/
footer {
  background: #333;
  color: white;
}
.col-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.col-text .icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.heading {
  color: rgb(141, 248, 48);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.last {
  margin-bottom: 1rem;
}
/**media queries**/

@media (max-width: 1330px) {
  .menu-icon {
    display: block;
    float: right;
    margin: 30px 0;
  }

  .navbar {
    display: block;
  }
  .logo {
    float: left;
  }
  .links {
    clear: both;
    background: green;
    width: 100%;
    display: block;
    position: fixed;
    top: 100px;
    left: -100%;
    height: 100vh;
    transition: all 0.5s ease-in-out;
    z-index: 1000;
  }

  #menu-btn:checked ~ .links {
    left: 0;
  }
  .links a {
    display: block;
    height: 50px;
    width: 100%;
    text-align: center;
    color: white;
    line-height: 50px;
  }

  .dropdown {
    position: static;
  }
  .submenu {
    position: static;
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
    overflow: hidden !important;
    width: 100%;
    color: white !important;
  }
}

@media (max-width: 580px) {
  .logo-text {
    display: none;
  }
  .logo-text2 {
    display: block;
  }

  .hero-content {
    width: 60%;
  }
  .hero-text {
    font-size: 1.9rem;
  }

  .welcome-image {
    width: 60%;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    float: left;
  }
  .desc {
    color: #333;
    text-align: center;
    font-size: 0.7rem;
  }
  .desc span {
    color: rgb(2, 70, 2);
    font-weight: 700;
    font-size: 0.9rem;
  }
}
