body {
  font-family: "Raleway", sans-serif;
  font-size: 14px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

.btn {
  border-radius: 0;
}

.form-control {
  border-radius: 0;
}

b, strong {
  font-weight: bold;
}


/* MEGA MENU */

.navbar {
  border-radius: 0 !important;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  background-image: url('/assets/images/bgs/red.jpg');
  background-position: center;
  background-repeat: repeat;
}

.navbar-expand-xl .navbar-nav a.main.nav-link {
  padding: .75rem 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  color: #FFF;
}

.navbar-expand-xl .navbar-nav a.main.nav-link:hover {
  color: #FFF !important;
  background-color: #0263AF;
  cursor: pointer !important;
}

.navbar-nav .nav .nav-item a.nav-link:hover {
  color: #000;
}

.navbar-expand-xl .navbar-nav .dropdown-menu .nav-link {
  padding: .25rem 1rem;
  text-transform: capitalize;
  font-size: 1rem;
}

.dropdown-toggle::after {
  display: none;
  border: 0;
}

a.top-level {
  padding: .5rem .75rem;
  font-size: .95rem;
  color: red;
  display: block;
  width: 100%;
  text-align: left;
}

a.top-level:hover {
  color: #0263AF;
  text-decoration: none;
  transition: all .3s ease;
}

a.top-level span {
  margin-left: .5rem;
}

.navbar-brand {
  padding-left: 15px;
  color: #FFF !important;
  font-weight: 800;
  text-transform: uppercase;
}

.navbar-nav .nav .nav-item a.nav-link {
  text-align: left;
  color: #888;
  line-height: 1.3;
  font-size: .85rem;
}

.dropdown.show a.main {
  color: #FFF !important;
  background-color: #0263AF;
}

@media (min-width: 1200px) {
  .navbar .dropdown {
    position: static;
  }

  .navbar .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0;
    transition: all .3s ease;
  }

  .dropdown-menu {
    max-height: calc(100vh - 48px);
    overflow-y: scroll;
  }

  /* .navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
    display: block;
    transition: all .3s ease;
  } */

  .dropdown-menu {
    background-color: #F8F9FA !important;
    border-radius: 0;
    padding: 10px 0 0 0;
    border: 0 !important;
    border-top: 5px solid #0263AF !important;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
  }

  .dropdown:hover a.main.nav-link {
    color: #FFF !important;
    background-color: #0263AF;
  }

  ul.navbar-nav li.nav-item.dropdown.show a.dropdown-arrow .fa {
    transform: rotate(-180deg);
    transition: all .2s ease;
  }
}

@media (max-width: 1199.98px) {
  .navbar {
    padding: 0;
  }

  .navbar-expand-xl .navbar-nav a.main.nav-link {
    padding: .5rem 15px;
    text-align: left;
  }

  .navbar-nav {
    margin-bottom: .5rem;
    border-top: 1px solid #FFF;
  }

  .navbar-collapse {
    max-height: calc(75vh - 50px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: scroll;
  }

  a.top-level {
    padding: .5rem;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
    border: 0 !important;
    border-radius: 0;
    background-color: #F8F9FA;
  }

  a.dropdown-arrow::after {
    font-size: 1rem;
    position: absolute;
    right: 15px;
  }

  .dropdown.show a.dropdown-arrow .fa {
		transform: rotate(-180deg);
		transition: all .1s ease-in-out;
	}

  .dropdown.show a.main {
    color: #FFF !important;
    background-color: #0263AF;
	}

  .dropdown-menu li {
    border: 0 !important;
    padding: 0;
    padding-left: .5rem;
  }

  .dropdown-menu li a {
    text-align: left;
    color: #888 !important;
    line-height: 1.3;
    font-size: .8rem;
  }

  .dropdown-menu li a:hover {
    color: #000 !important;
  }
}

.card-columns {
  column-gap: 10px;
}

.card-columns .card {
  margin-bottom: 10px;
}

.nav.flex-column li:last-of-type {
  margin-bottom: .5rem;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 1;
  }
}

@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .card-columns {
    column-count: 3;
  }
}

@media (min-width: 1200px) {
  .card-columns {
    column-count: 4;
  }
}

.card {
  border-radius: 0;
}

.post-item .post-info-container {
  padding: 15px 15px 0 15px;
}

.post-item .post-content p {
  padding: 15px;
}


/* MOBILE ANIMATION */

@media (min-width: 1200px) {
  #mobile-toggler {
    display: none;
  }
}

.hamburger-box {
  width: 35px;
}

.hamburger {
  position: relative;
  top: 2px;
  right: 0px;
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  border-radius: 0;
  background-color: #FFF;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFF;
  box-shadow: none;
}

button.hamburger,
button.hamburger:focus {
  -webkit-appearance: none;
  outline: none;
}


/* MAIN HERO SLIDER */

.bg-blue-banner {
  background-image: url('/assets/images/home/BANNER-BG.jpg');
}

.bg-cover {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}

#hero {
  position: relative;
}

#hero .carousel-item {
  overflow: hidden;
}

.bg-hero {
  height: calc(95vh - 50px);
  max-height: 1000px;
}

.hero-text {
  color: #FFF;
  position: absolute;
  top: 43%;
  transform: translateY(-43%);
  left: 0;
  right: 0;
}

.hero-text .logo {
  width: 450px;
  margin-bottom: 1.5rem;
}

.hero-text .sub-logo {
  width: 225px;
}

.hero-text h1 {
  font-weight: 900;
  font-size: 5rem;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 1rem;
  line-height: 1;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
  text-shadow: 0px 15px 30px rgba(0,0,0,.5);
}

.hero-text p {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #FFF;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
  text-shadow: 0px 10px 20px rgba(0,0,0,.5);
}

.hero-text a {
  text-shadow: none;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media (max-width: 1199.98px) {
  .bg-hero {
    height: calc(100vh - 50px);
    max-height: 800px;
  }

  .hero-text .logo {
    width: 350px;
    margin-bottom: 1.75rem;
  }

  .hero-text .sub-logo {
    width: 175px;
  }

  .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.25rem;
  }

  .hero-text p {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .bg-hero {
    height: calc(95vh - 50px);
  }

  .hero-text .logo {
    width: 300px;
    margin-bottom: 1.5rem;
  }

  .hero-text .sub-logo {
    width: 150px;
  }

  .hero-text h1 {
    font-size: 3.25rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .bg-hero {
    height: calc(90vh - 50px);
  }

  .hero-text .logo {
    width: 250px;
    margin-bottom: 1.25rem;
  }

  .hero-text .sub-logo {
    width: 125px;
  }

  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: .75rem;
  }

  .hero-text p {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .bg-hero {
    height: calc(85vh - 50px);
    max-height: 700px;
  }

  .hero-text .logo {
    width: 200px;
    margin-bottom: 1.25rem;
  }

  .hero-text .sub-logo {
    width: 100px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: .75rem;
  }

  .hero-text p {
    font-size: 1.15rem;
  }
}

.reign-logo {
	width: 140px;
  margin-left: 2rem;
}

@media (max-width: 1199.98px) {
	.reign-logo {
		width: 120px;
    margin-left: 1rem;
	}
}

@media (max-width: 991.98px) {
  .reign-logo {
		width: 100px;
	}
}

@media (max-width: 767.98px) {
	.reign-logo {
		width: 80px;
	}
}

@media (max-width: 575.98px) {
	.reign-logo {
		width: 60px;
	}
}


/* HERO CONTROLS */

ol.carousel-indicators {
  bottom: 3.5rem;
  margin-bottom: 0;
}

.carousel-indicators li {
  height: 7px;
  width: 40px;
  margin-left: 7px;
  margin-right: 7px;
}

.carousel-control-prev, .carousel-control-next {
	width: 4%;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  opacity: 1;
}

@media (max-width: 767.98px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    display: none;
  }
}


/* SUBPAGE BANNER */

.sub-logo {
  width: 300px;
}

@media (max-width: 1199.98px) {
  .sub-logo {
    width: 275px;
  }
}

@media (max-width: 991.98px) {
  .sub-logo {
    width: 250px;
  }
}

@media (max-width: 767.98px) {
  .sub-logo {
    width: 225px;
  }
}

@media (max-width: 575.98px) {
  .sub-logo {
    width: 200px;
  }
}

.footer-top {
  padding: 0;
}

.nav-pills .nav-link {
  border-radius: 0;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #0263AF;
  border-radius: 0;
}

.modal-content {
  border-radius: 0;
}

.modal-header {
  border-radius: 0;
  border: 0;
}

a:hover {
  text-decoration: none;
}

.hide {
  display: none;
}
