body {
  background-color: #000000;
  font-family: 'Saira', san-serif;
  color: #d3d3d3;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Navbar Styling */

.navbar-light .navbar-nav .nav-link {
  color: #b3b3b3;
  transition: all .3s;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
  background-color: rgba(255,255,255, .2);
  transition: all .3s;
  border-radius: 5px;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
  color: #ffffff;
  background-color: rgba(255,255,255,0.15);
  transition: all .3s;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    border-radius: 0;
  }
}

.nav-link {
  padding: 5px;
  margin: 5px 0;
}

@media (min-width: 768px) {
  .nav-link {
    padding: 14px 14px !important;
    margin: 0;
    font-size: 15px;
  }
}

@media (min-width:992px) {
  .nav-link {
    padding: 14px 24px !important;
    font-size: 18px;
  }
}

.navbar {
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
  font-size: 18px;
  box-shadow: 0px 0px 15px 5px rgb(0,0,126);
  background: #000000;
  padding: 5px 10px 0px 10px;
}

@media (min-width: 992px) {
  .navbar {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .navbar {
    box-shadow: 0px 0px 15px 5px #000000;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .navbar {
    background-image: url(../../assets/img/nav-bar-bg.png);
    background-repeat: repeat-x;
  }
}

.navbar-light .navbar-toggler-icon {
  background-image: url(../../assets/img/mobile-nav-icon.svg) !important;
  width: 40px;
  height: 40px;
}

.navbar-toggler {
  padding: 0;
  line-height: 1;
  background-color: transparent;
  border: transparent;
  border-radius: 5px;
  transition: all .3s;
}

.navbar-toggler:hover {
  box-shadow: 0px 0px 12px #fff;
  transition: all .3s;
}

.navbar-brand {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 73vw;
  max-width: 320px;
  margin: 0;
}

@media (max-width: 767px) {
  .navbar-collapse {
    margin-top: 15px;
  }
}

.dropdown-menu {
  margin: 10px 0 0;
  border-radius: 6px;
  background-color: #001058;
}

@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: .5s ease all;
  }
}

.dropdown-item {
  color: var(--white);
  font-size: 18px;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--white);
  text-decoration: none;
  background-color: #0000cc;
}

@media (min-width: 992px) {
  .dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .5s ease all;
  }
}

/* Font Styling */

.h1, h1 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(27,107,255);
  font-size: 26px;
  text-align: center;
}

.h2, h2 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(27,107,255);
  font-size: 22px;
  text-align: center;
}

.h3, h3 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: #767676;
  font-size: 18px;
  text-align: center;
}

.h4, h4 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.4;
  color: #d3d3d3;
  font-size: 18px;
  text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .h4, h4 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.4;
    color: #d3d3d3;
    font-size: 16px;
    text-align: center;
  }
}

/* Misc */

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
  .bbplayer {
    transform: scale(.8);
    margin-left: -20px;
    margin-top: -7px;
  }
}

.thankyou-text {
  font-size: 18px;
}

@media (min-width: 576px) {
  .thankyou-text {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .thankyou-text {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .thankyou-text {
    font-size: 36px;
  }
}

