:root {
  --font-source4: "Source Serif 4", serif;
  --font-source3: "Source Sans 3", sans-serif;
}

body {
  font-family: var(--font-source3);
  height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* -------------------------------------------- */
/* ---------------- SIDEBAR ------------------- */
/* -------------------------------------------- */

.side_bar {
  height: 73vh;
  overflow-y: auto;
  overflow-x: hidden;
  /* width */
}
.side_bar::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.side_bar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
  border-radius: 10px;
}

/* Handle */
.side_bar::-webkit-scrollbar-thumb {
  background: #0a0a0a;
  border-radius: 10px;
}

/* Handle on hover */
.side_bar::-webkit-scrollbar-thumb:hover {
  background: #0a0a0a;
}

/* -------------------------------------------- */
/* -------------- GENERAL CLASS --------------- */
/* -------------------------------------------- */

.cust-bg-dark {
  background-color: #0a0a0a;
}
.cust-bg-yellow {
  background-color: #f8db01;
}

.cust-text-mute {
  color: #8599a6;
}

.cust-section-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--font-source4);
}

.cust-page-title {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--font-source4);
}

.btn-link {
  color: inherit;
  outline: none;
  text-decoration: none;
}

.btn-link:hover {
  color: #f8db01;
}

.cust-card-click:hover {
  cursor: pointer;
}

.card-img-top {
  transition: 1s ease;
}

.cust-card-click:hover .card-title {
  text-decoration: underline;
}

.cust-card-click:hover .card-img-top {
  transform: scale(1.1);
}

.cust-font-weight-bold {
  font-weight: bold;
}

@media (max-width: 769px) {
  .cust-page-title {
    font-size: 2rem;
  }
}

/* -------------------------------------------- */
/* ----------------- NAVBAR ------------------- */
/* -------------------------------------------- */
.navbar-nav .nav-item {
  margin: 0 2px;
}
.navbar-nav .nav-link {
  border-radius: 10px;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover {
  background-color: #f8db01;
  color: #363000;
}

/* -------------------------------------------- */
/* ----------------- CAROUSEL ----------------- */
/* -------------------------------------------- */

.cust-carousel-bg {
  background-color: #f8db01;
  width: 100%;
  height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  color: #080808;
}

.cust-carousel-caption {
  position: absolute;
  right: 15%;
  top: 10%;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #080808;
  text-align: center;
}

.cust-carousel-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--font-source4);
}

.cust-carousel-subtitle {
  font-size: 1.25rem;
  font-family: var(--font-source3);
}

@media (max-width: 769px) {
  .cust-carousel-title {
    font-size: 1.5rem;
  }

  .cust-carousel-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 426px) {
  .cust-carousel-title {
    font-size: 1.25rem;
  }

  .cust-carousel-subtitle {
    font-size: 0.75rem;
  }
}

/* -------------------------------------------- */
/* --------------- HERO SECTION --------------- */
/* -------------------------------------------- */
.cust-hero {
  height: 80vh;
  background-image: url(../img/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cust-hero-title {
  font-family: var(--font-source4);
  font-size: 4.5rem;
  font-weight: bold;
}

.cust-hero-subtitle {
  text-align: center;
  width: 60vw;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

@media (max-width: 769px) {
  .cust-hero-title {
    font-size: 3.5rem;
  }

  .cust-hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 426px) {
  .cust-hero-title {
    font-size: 2.5rem;
  }

  .cust-hero-subtitle {
    width: 90vw;
    font-size: 1.1rem;
  }
}

/* -------------------------------------------- */
/* --------------- CAREER SECTION ------------- */
/* -------------------------------------------- */
.cust-career-tips {
  height: auto;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.cust-job-hiring {
  height: auto;
  background-image: url(../img/hiring-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.cust-carousel {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.cust-carousel img {
  width: 100%;
  height: 100%;
  position: absolute;
}

.cust-article-img {
  background-color: #999;
  /* height: 200px; */
  display: inline-block;
  overflow: hidden;
}

/* -------------------------------------------- */
/* --------------- FOOTER SECTION ------------- */
/* -------------------------------------------- */
footer {
  background-color: #0a0a0a;
  color: white;
}

.footer-title {
  font-weight: bold;
}

footer .btn-link,
.footer-text {
  font-size: 12px !important;
}

/* -------------------------------------------- */
/* ---------------- EVENTS PAGE --------------- */
/* -------------------------------------------- */
.cust-event-bdg {
  height: 80vh;
  background-image: url(../img/library.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  filter: blur(5px);
  filter: brightness(50%);
}

.cust-event-container {
  position: absolute;
  top: 30%;
  display: flex;
  justify-content: center;
}

@media (max-width: 769px) {
  .cust-event-container {
    padding-top: 5rem;
    position: static;
    top: 0;
  }
}
