@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap");
* {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth !important;
}

/*********** Navbar ***********/
.navbar {
  background-color: #212529;
}

.navbar .nav-item .nav-link {
  color: #fafafa;
}

.event-btn {
  display: inline-block;
  margin: 0 10px 20px;
  background-color: #5d8220;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 15px 40px;
  position: relative;
  overflow: hidden;
}

.event-btn:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #5d8220;
}

.event-btn span {
  position: relative;
  z-index: 1;
}

.event-btn {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.event-btn:before {
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
          transform: translate3d(-50%, -50%, 0) rotate(45deg);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.event-btn:hover {
  color: #fff;
}

.event-btn:hover:before {
  height: 400%;
}

.event-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.event-font {
  font-weight: 700 !important;
  color: #01245e;
  margin-bottom: 1rem;
}

.conference {
  background-color: #f1f4f9;
}

.font-size-xs {
  font-size: 12px !important;
  color: #64748b !important;
}

.date-font {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  display: block !important;
  color: #01245e;
}

/*********** Header ***********/
header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

header .navbar {
  position: absolute;
  width: 100%;
  z-index: 3;
}


.nav-pills {
  color: #fff;
  background-color: #64ab5e;
}

.navbar-nav .nav-item .nav-link {
  color: white !important;
  font-size: 0.9rem !important;
  font-weight: lighter;
}

/*********** Jumbotron ***********/
.jumbotron {
  position: relative;
  padding: 11rem 1rem;
}

.know-more {
  display: inline-block;
  margin: 0 10px 20px;
  background-color: #333;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 15px 40px;
  position: relative;
  overflow: hidden;
}

.know-more:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #5d8220;
}

.know-more span {
  position: relative;
  z-index: 1;
}

.know-more {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.know-more:before {
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
          transform: translate3d(-50%, -50%, 0) rotate(45deg);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.know-more:hover {
  color: #fff;
}

.know-more:hover:before {
  height: 400%;
}

/*********** Thematic Areas ***********/
.thematic-areas {
  position: relative;
  z-index: 2 !important;
}

.thematic-areas .themes-row {
  background-color: transparent;
  margin-top: -5rem !important;
  padding: 2rem !important;
}

.themes-row .card-header {
  background-color: #94c590 !important;
  font-size: 14px;
}

.themes-row .col:hover {
  cursor: pointer;
}

.theme_card {
  height: 20rem;
}

.theme_card figure img {
  width: 250px;
  height: 10rem;
}

/* Zoom In #1 */
.card figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.card figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.card figure {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

/*********** Graduate School ***********/
.graduate_school img {
  max-width: 100%;
  height: auto;
}

.graduate_school {
  background-color: #d4e8d2;
}

.graduate_text {
  font-size: 15px !important;
  text-align: justify;
}

.grad-btn {
  display: inline-block;
  margin: 0 10px 20px;
  background-color: #333;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  text-decoration: none;
  padding: 15px 40px;
  position: relative;
  overflow: hidden;
}

.grad-btn:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #5d8220;
}

.grad-btn span {
  position: relative;
  z-index: 1;
}

.grad-btn {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.grad-btn:before {
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
          transform: translate3d(-50%, -50%, 0) rotate(45deg);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.grad-btn:hover {
  color: #fff;
}

.grad-btn:hover:before {
  height: 400%;
}

/*********** Social Media Icons ***********/
.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 4;
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 0.1rem !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

/*********** Modal ***********/
/*.modal-header-img {*/
/*  background-image: url("./assets/images/Conference Web Advert Sept.jpg");*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  padding: 10rem;*/
/*}*/

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3b5998;
  color: white;
}

.twitter {
  background: #55acee;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

/*********** News & Announcements ***********/
.parallax-container {
  background-image: url("./assets/images/forest.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.table-responsive {
  height: 15rem;
  overflow-y: hidden;
}

.table tbody tr {
  cursor: pointer;
}

.table,
.news_announcement {
  border: 5px solid #537d23;
}

table {
  width: 100%;
  color: black !important;
}

td {
  color: black !important;
}

.announcements .section {
  position: relative;
  z-index: 4;
}

.announcements h2 {
  color: #5d8220 !important;
}

.news_article,
.news_title {
  margin-top: -2rem !important;
}

.news_title {
  color: #c55929 !important;
}

.news_date {
  color: #537d23 !important;
}

/*********** Partners ***********/
.partners h2 {
  line-height: 1.35 !important;
  letter-spacing: -0.01em !important;
}

.owl-theme .item {
  height: 100px;
  width: 184px !important;
  margin-right: 0 !important;
}

/*********** Footer ***********/
.footer {
  background-color: #c25929 !important;
  color: white !important;
  padding: 2rem !important;
}

.footer-item {
  list-style: none !important;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}

.footer-item:hover {
  color: black !important;
  cursor: pointer !important;
}

.footer-item a {
  text-decoration: none;
}

.footer-item a:hover {
  color: black !important;
  cursor: pointer !important;
}

.footer-list {
  -webkit-padding-start: 0% !important;
          padding-inline-start: 0% !important;
}

/*********** Modal ***********/
.modal-header .close {
  padding: 0.5rem 0.5rem !important;
  /* margin: -.5rem -.5rem -.5rem auto; */
  float: right !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
}

.modal-header .close:hover {
  cursor: pointer;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  color: #bb2d3b;
}

/*********** Scroll Top ***********/
#myBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #666;
  /* Set a background color */
  color: #fafafa;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 10px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
}

/*********** Only for desktop screens ***********/
@media screen and (max-width: 768px) {
  .news_announcement {
    width: 100% !important;
  }
}

@media screen and (min-width: 769px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .nav-link {
    color: #fff;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
  .navbar .nav-item:hover .dropdown-menu1 {
    display: none;
  }
  .navbar .dropend:hover .dropdown-menu1 {
    display: block;
  }
  .navbar .nav-item .dropdown-menu,
  .drop {
    font-size: 0.9rem !important;
  }
  .dropdown-menu1 {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    -webkit-transform: translate(110px, 0px);
            transform: translate(110px, 0px);
    left: 15%;
    z-index: 2;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 0.9rem !important;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
  }
  /*********** Navbar ***********/
  .navbar {
    background-color: transparent !important;
  }
  .navbar-collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  /*********** Jumbotron ***********/
  .jumbotron {
    position: relative;
    padding: 18rem 10rem !important;
  }
  /*.modal-header-img {*/
  /*  background-image: url("./assets/images/Conference Web Advert Sept.jpg");*/
  /*  background-position: center;*/
  /*  background-repeat: no-repeat;*/
  /*  background-size: cover;*/
  /*  padding: 25rem;*/
  /*}*/
  /*********** News & Announcements ***********/
  .news_announcement {
    height: 240px !important;
  }
}
/*# sourceMappingURL=home.css.map */