@import url("https://fonts.bunny.net/css?family=Source+Sans+Pro:300,400,400i,700&display=swap");
@import url("https://fonts.bunny.net/css?family=Barlow+Semi+Condensed:300;600&display=swap");

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  position: relative;
  min-height: 100vh;
}

main > .container,
main > .container-fluid {
  padding: 100px 15px 20px;
}

.navbar {
  background-color: #10214b;
  transition: background-color 0.3s;
  height: 70px;
  font-size: 16px;
  position: fixed;
}
.navbar.scrolled {
  background-color: #10214b;
}

.navbar ul {
  font-weight: bold;
}

.video-fullscreen {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.8);
}

.home-main {
  font-family: "Barlow Semi Condensed", sans-serif;
  z-index: 1;
}

p {
  margin-bottom: 0;
}
h1,
h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: bold;
}

.container-alert {
  position: absolute;
  left: 0;
  right: 0;
}

.footer {
  background-color: #f5f5f5;
  font-size: 0.9em;
}
.footer-links {
  display: flex;
  justify-content: center;
  margin: 0 0 5px 0;
  gap: 10px;
}

.footer > .container,
.footer > .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.footer {
  background-color: #152c60;
  font-size: 0.9em;
  text-align: center;
}

.footer a {
  color: white;
  margin-right: 7.5px;
  margin-left: 7.5px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 3px;
  transition: color 0.3s;
}
.footer a:hover {
  color: #ffc000;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
  content: "";
  left: 3px;
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 5px transparent;
  margin: 4px 4px 2px 4px;
  background: transparent;
}

a.asc:after {
  border-bottom: solid 7px #212529;
  border-top-width: 0;
}

a.desc:after {
  border-top: solid 7px #212529;
  border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
  white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
  min-width: 50px;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

.btn-main {
  border-radius: 50px;
  padding: 10px 60px;
  background-color: #ffb11f;
  border: none;
  transition: all 0.4s ease;
  color: white;
  font-size: 16px;
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active,
.btn-main:active:focus,
btn-main:active:hover {
  background-color: #358dc4;
  color: white;
}
.wow {
  visibility: hidden;
}

@media (max-width: 575.5px) {
  .container {
    max-width: 90vw;
  }
}

/* ----- organizedby ----- */
.organizedby {
  color: #0b1127;
}
.organize {
  padding-top: 15px;
  padding-bottom: 15px;
}
.organize p {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.organize .line-1 {
  height: 120px;
  margin-right: 30px;
}
.organize .line-2 {
  height: 70px;
  margin-right: 30px;
}
@media (max-width: 991.5px) {
  .organize .line-1 {
    height: 80px;
  }
  .organize .line-2 {
    height: 50px;
  }
}
@media (max-width: 767.5px) {
  .organize .line-1 {
    height: 60px;
  }
  .organize .line-2 {
    height: 45px;
  }
}
@media (max-width: 575.5px) {
  .organize .line-1,
  .organize .line-2 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
  }
}


/** ------------- mobile-navbar ------------- **/
nav.navbar-mobile {
  display: none;
}

@media (max-width: 767.5px) {
  nav.navbar {
    display: none;
  }
  footer.footer {
    padding-bottom: 77px !important;
  }
  nav.navbar-mobile {
    display: block;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    background: #10214b;
  }
  .navbar-mobile ul {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
    height: 100%;
  }
  .navbar-mobile li {
    width: 25%;
    text-align: center;
    height: 100%;
  }
  .navbar-mobile li a {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    gap: 5px;
    color: #ddd;
    background-color: #10214b;
    transition: background-color 0.3s;
  }
  .navbar-mobile li a:hover {
    background-color: #0d1a3a;
  }
  .navbar-mobile i {
    font-size: 20px;
  }
}