/*
================================================================================
PAGE STRUCTURE
================================================================================
*/

/* Variables
-------------------------------------------------------------------------------- */
/*
 * default => Generic Color
 * primary => Brand Color 1 - dark blue
 * accent  => Brand Color 2 - red/orange
 * accent2 => Brand Color 3 - aqua
 */

:root {
  --default-color: #f3f6f9;
  --default-color-darker: #e3e6e9;
  --default-color-darkest: #d3d6d9;

  --primary-color: #00385C;
  --primary-color-darker: #002e4b;
  --primary-color-darkest: #002137;

  --accent-color: #BF4322;
  --accent-color-darker: #a6391c;
  --accent-color-darkest: #923218;

  --accent-color2: #00B294;
  --accent-color2-darker: #00977e;
  --accent-color2-darkest: #007e69;
}

/* Base Styles
-------------------------------------------------------------------------------- */
/* Enable smooth scrolling to anchors */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.container,
.container-fluid {
  position: relative;
}

@media (min-width: 768px) {
  .row {
    display: flex;
    flex-wrap: wrap;
  }
}


/* TopBar
-------------------------------------------------------------------------------- */
.topbar {
  position: relative;
  padding-top: 10px;
  font-size: 80%;
  color: #fff;
  background-color: var(--accent-color);
}

/* mobile */
@media (max-width: 767px) {
  .topbar {
    text-align: center;
  }
}

/* desktops */
@media (min-width: 768px) {
  .topbar .container {
    display: flex;
    align-items: center;
  }
}

/*
------------------
TopBar Left
------------------
*/
.topbar-left {
  position: relative;
  flex: 1;
}

/*
------------------
TopBar Right
------------------
*/
.topbar-right {
  position: relative;
  flex: 1;
}

/* desktops */
@media (min-width: 768px) {
  .topbar-right {
    text-align: right;
  }
}

/*
------------------
TopBar Modules
------------------
*/
.topbar [class^="theme"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}

/* Theme Side By Side */
@media (min-width: 768px) {
  .topbar-right .js-row {
    justify-content: flex-end;
  }
}

.topbar .theme-side-by-side {
  width: auto;
}

/*
------------------
TopBar List
------------------
*/
.topbar .list-inline {
  margin-bottom: 0;
}

.topbar .list-inline li {
  border-right: 1px solid rgba(255, 255, 255, 0.21);
}

.topbar .list-inline li:last-child {
  border: 0;
}

.topbar a:not(.btn) {
  color: inherit;
}

.topbar a:not(.btn):hover {
  color: inherit;
}


/*
------------------
Shopping Cart
------------------
*/
.shopping-cart {
  position: relative;
  display: inline-block;
  padding: 2px;
}

@media (max-width: 767px) {
  .shopping-cart {
    float: right;
  }
}

.fa.fa-shopping-cart {
  font-size: 23px;
}

.item-no {
  position: absolute;
  top: -4px;
  right: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-color-darker);
  border-radius: 50%;
}


/* Header / Navbar
-------------------------------------------------------------------------------- */
.header {
  background-color: var(--primary-color-darkest);
  overflow-x: hidden;
}

.header .row {
  justify-content: end;
}

@media (min-width: 1200px) {
  .header .row {
    align-items: center;
    flex-wrap: nowrap !important;
    /* width: 100%; */
  }
}

@media (min-width: 1500px) {
  .header .container {
    width: 85vw;
  }
}

@media (min-width: 769px) and (max-width: 1499px) {
  .header .container {
    width: 98vw;
  }
}

@media (min-width: 1199px) {
  .header .col-sm-6.left-side {
    width: 45%;
  }

  .header .col-sm-6.right-side {
    width: 55%;
  }
}

.header .header-right {
  display: flex;
  display: -webkit-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: end;
}

.header .header-right .theme-side-by-side {
  width: auto;
  /* max-width: 50%; */
  justify-content: end;
}

.header .right-side {
  padding: 30px 0 15px;
}

.header .right-side a {
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .header .right-side a {
    letter-spacing: 0 !important;
    padding: 10px 8px;
    margin: 0;
  }
}

.navbar {
  z-index: 10;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--primary-color-darkest);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.navbar-default {
  background-color: var(--primary-color-darkest);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

/*
------------------
Fixed Header
------------------
*/
.is-fixed {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
}

@media (min-width: 992px) {

  .navbar>.container,
  .navbar>.container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85vw;
  }
}

.navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  float: none;
}

.navbar-header::before,
.navbar-header::after {
  display: none;
}

/*
------------------
Logo
------------------
*/
.navbar-brand {
  float: left;
  height: auto;
  font-size: 150%;
  font-weight: 600;
  text-transform: uppercase;
  width: 75%;
  padding: 15px 5px;
}

/* @media (max-width: 768px) {
  .navbar-brand {
    display: inline-block !important;
  }
} */

.navbar-brand a {
  display: block;
}

.navbar-brand img {
  max-height: 45px;
  transition: all 600ms;
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 30px;
  }
}

/*
------------------
Condensed
------------------
*/

.is-condensed .navbar-brand img {
  max-height: 40px;
}

/*
------------------
Nav Toggle Button
------------------
*/

/* Override Bootstrap's Breakpoint */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-toggle {
    display: block !important;
  }
}

.navbar-default .navbar-toggle {
  color: #fff;
  white-space: nowrap;
  background-color: #002137;
  border-color: #002137;
  padding: 15px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: var(--primary-color-darker);
  border-color: var(--primary-color-darker);
}

/* Expanded state */
.navbar-toggle[aria-expanded="true"] .fa::before {
  content: "\f00d";
}

/*
------------------
Nav
------------------
*/
.navbar-collapse {
  flex: 1;
  padding: 0;
}

@media (min-width: 1200px) {
  .navbar-collapse.collapse {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* Override Bootstrap's Breakpoint */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse.collapse {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse.collapse.in {
    display: block !important;
    width: 100%;
    clear: both;
  }
}

@media (max-width: 1199px) {
  .collapse.in {
    display: block;
    width: 100%;
  }

  .collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
  }
}

.navbar .js-row {
  justify-content: flex-end;
}

.navbar .theme-side-by-side {
  width: auto;
}

.header-right .module-search-001 [type="text"] {
  width: 100%;
}


/* Banner
--------------------------------------------------------------------------------
<div class="banner">
  <div class="banner-media" />
  <div class="banner-text" />
</div>
*/

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  overflow: hidden;
  color: #fff;
  background-color: var(--primary-color);
}


/*
---------------------------
Banner Media
---------------------------
*/
.banner-media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .banner-media:not(:only-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
  }

  .banner-media div {
    height: 100%;
  }
}

.banner-media .module-image-list-001 img {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: cover;
}

/*
----------------------
Banner Media Overlay
----------------------
Adds a dark overlay to the "banner-media" ONLY if "banner-text" is turned ON.
*/
.banner-media:not(:only-child) .mod-image-list-default::after,
.banner-media:not(:only-child) .media-container::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.4;
}

/*
----------------------
Banner Text
----------------------
*/
.banner-text {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto 0;
  padding: 50px 0;
}

@media (min-width: 992px) {

  /* if "banner-media" exists, then layer the "banner-text" on top. */
  .banner-media+.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .banner-text {
    padding: 40px 15px 60px;
  }
}

.banner-text h1 {
  font-size: 60px;
  font-family: Georgia;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 300;
  padding: 20px 20px 15px 7vw;
  letter-spacing: 0;
  position: relative;
}

@media (min-width: 993px) and (max-width: 1250px) {
  .banner-text h1 {
    font-size: 40px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .banner-text h1 {
    font-size: 50px;
    width: 100%;
    left: 0;
    padding: 15px;
  }
}

.banner-text h2 {
  font-family: 'Bell Gothic Std', sans-serif;
  font-weight: 800;
  font-style: unset;
  background: rgba(0, 178, 148, .7);
  padding: 15px 20px 10px 15vw;
  letter-spacing: 0;
  width: 70vw;
  position: relative;
  left: calc((100vw - 85%) / -2);
  font-size: 1.5em;
}

@media (min-width: 993px) and (max-width: 1250px) {
  .banner-text h2 {
    font-size: 30px;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .banner-text h2 {
    font-size: 26px;
    left: 0;
    padding: 15px;
  }
}

.banner-text p {
  padding: 20px 20px 15px 15vw;
  letter-spacing: 0;
  width: 70vw;
  position: relative;
  left: calc((100vw - 85%) / -2);
}

@media (max-width: 992px) {
  .banner-text p {
    width: 100%;
    left: 0;
    padding: 5px 15px;
    font-size: 18px;
  }
}

.banner-text .angle-down {
  text-align: center;
  position: absolute;
  bottom: -100px;
  left: 50%;
}

@media (min-width: 992px) and (max-width: 1300px) {
  .banner-text .angle-down {
    bottom: -30px;
    left: 48%;
  }
}

@media (max-width: 991px) {
  .banner-text .angle-down {
    bottom: -56px;
    left: 48%;
  }
}

@media (min-width: 1251px) {
  h1.homepage-text {
    font-size: 4.5em;
  }
}


.banner-text-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  overflow: hidden;
  color: #fff;
  background-color: var(--primary-color);
  width: 100%;
  max-width: 100%;
  margin: auto 0;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .banner-text-inner {
    display: block;
  }
}

.banner-text-inner .banner-text {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto 0;
  padding: 50px 0;
}

.banner-text-inner h1:only-child {
  text-align: left;
  width: 100%;
  font-size: 38px;
  font-family: Georgia;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 300;
  padding: 20px 20px 15px 0;
  letter-spacing: 0;
  position: relative;
}


/*
------------------
FlexSlider
------------------
*/
.flexslider {
  margin: 0;
  background: none;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
}

.flexslider .slides {
  position: relative;
}

.flexslider .slides>li {
  position: relative;
  margin: 0;
}

.flexslider .slides>li.flex-active-slide {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .flexslider .slides>li.flex-active-slide {
    justify-content: center;
  }
}

li.imagelist-item {
  position: relative;
}

.flexslider .slides img {
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}

.flex-direction-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.flex-direction-nav a {
  width: 32px;
  height: 32px;
  background-image: url(/templates/custom/environmentaleducation/images/bg_direction_nav.png);
  background-repeat: no-repeat;
}

.flex-direction-nav .flex-next {
  background-position: 100% 0 !important;
}

.flex-control-nav {
  bottom: 20px;
}

/* dots */
.flex-control-paging li a {
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
}

.flex-control-paging li a.flex-active {
  background-color: rgba(255, 255, 255, 0.5);
}

.slide-media {
  position: relative;
}

@media (max-width: 767px) {
  .slide-media:not(:only-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*
Slide-Media Overlay
----------------------
Adds a dark overlay to the "slide-media" ONLY if "slide-text" exists.
*/
/* .slide-media:not(:only-child)::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.4;
} */

.slide-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 85%;
  max-width: 1170px;
  margin: auto;
  padding: 60px 15px;
}

@media (min-width: 768px) {
  .slide-text {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* if ".slide-media" exists, then overlay the "slide-text"  */
  .slide-media+.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


/* All Sections                            (Shared styles to reduce repeatition)
-------------------------------------------------------------------------------- */
section {
  padding-top: 40px;
}

/* desktops */
@media (min-width: 768px) {
  section {
    padding-top: 80px;
  }
}

/* Modules */
section [class^="theme"] {
  margin-bottom: 40px;
}

/* desktops */
@media (min-width: 768px) {
  section [class^="theme"] {
    margin-bottom: 80px;
  }
}


/* Aside Top
-------------------------------------------------------------------------------- */
.aside-top {
  position: relative;
}

@media (min-width: 769px) {
  .aside-top .container {
    width: 85vw;
  }
}


.aside-top h3 {
  font-size: 22px;
}


/* Main
-------------------------------------------------------------------------------- */
.main {
  position: relative;
  background-color: var(--default-color);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.main-body {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .main-body {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.main-body h2 {
  font-family: 'Bell Gothic Std', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 175%;
  letter-spacing: 0;
}


/* Aside Left
-------------------------------------------------------------------------------- */
.aside-left {
  padding-top: 80px;
  padding-bottom: 80px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .aside-left {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.aside-left [class^="theme"] {
  margin-bottom: 40px;
}


/* Aside Right
-------------------------------------------------------------------------------- */
.aside-right {
  padding-top: 80px;
  padding-bottom: 80px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .aside-right {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.aside-right [class^="theme"] {
  margin-bottom: 40px;
}


/* Section 1
-------------------------------------------------------------------------------- */
.section01 {
  position: relative;
  background: url(/templates/custom/environmentaleducation/images/bg-building.jpg);
  background-size: cover;
  background-position: top center;
}

@media (max-width: 991px) {
  .section01 {
    padding: 40px 0;
  }
}

@media (min-width: 1200px) {
  .section01 .container {
    width: 85vw;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .section01 .container {
    width: 95vw;
  }
}

.section01 .module-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .section01 .module-content {
    display: block;
  }
}

.section01 a {
  color: #fff;
}

.section01 a:hover {
  color: #fff;
  text-decoration: none;
}

.blue-box {
  background: rgba(0, 56, 92, .9);
  padding: 50px 80px 100px 50px;
  color: #fff;
  width: 50%;
}

@media (max-width: 991px) {
  .blue-box {
    padding: 40px 30px;
    width: 100%;
  }
}

.aqua-box {
  background: rgb(0, 178, 148, .9);
  padding: 50px 90px;
  color: #fff;
  margin-top: 200px;
  margin-left: -150px;
  width: 70%;
  text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .aqua-box {
    padding: 40px 30px;
    width: 100%;
    width: 60%;
  }
}

@media (max-width: 991px) {
  .aqua-box {
    padding: 40px 30px;
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }
}

.aqua-box ul.list-unstyled li {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .aqua-box ul.list-unstyled li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}


/* Section 2
-------------------------------------------------------------------------------- */
.section02 {
  position: relative;
  background-color: #fff;
}

@media (max-width: 991px) {
  .section02 {
    padding: 40px 30px;
  }
}

@media (min-width: 769px) {
  .section02 .container {
    width: 85vw;
  }
}

.section02 h3 {
  padding: 10px 0;
}

@media (min-width: 1201px) {
  .section02 ul.grid.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .section02 ul.grid.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}


/* Section 3
-------------------------------------------------------------------------------- */
.section03 {
  position: relative;
}


/* Section 4
-------------------------------------------------------------------------------- */
.section04 {
  position: relative;
  color: #fff;
  background-color: var(--accent-color);
}


/* Section 5
-------------------------------------------------------------------------------- */
.section05 {
  position: relative;
  background: #ececec;
}


/* Section 6
-------------------------------------------------------------------------------- */
.section06 {
  position: relative;
  color: #fff;
  background-color: var(--accent-color);
}


/* Aside Bottom
-------------------------------------------------------------------------------- */
.aside-bottom {
  position: relative;
  background: url(/templates/custom/environmentaleducation/images/bg-asbestos-removal.jpg);
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

@media (max-width: 991px) {
  .aside-bottom {
    padding: 40px 30px;
  }
}

.aside-bottom:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #00385c;
  opacity: 0.3;
}

.aside-bottom h2 {
  color: #fff;
  margin-bottom: 40px;
}

.aside-bottom .g-recaptcha>div {
  margin: auto;
}

.aside-bottom [type="text"] {
  width: 100% !important;
}


/* Strong Footer
-------------------------------------------------------------------------------- */
.strong-footer {
  position: relative;
  padding-top: 60px;
  font-size: 90%;
  color: #fff;
  background-color: var(--primary-color);
}

/* mobile */
@media (max-width: 1199px) {
  .strong-footer {
    padding-top: 0;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .strong-footer .container {
    width: 85vw;
  }
}

@media (min-width: 768px) {
  .strong-footer [class^="theme"] {
    margin-bottom: 40px;
  }
}

.strong-footer-flex {
  display: flex;
  flex-direction: row;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .strong-footer-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1199px) {
  .strong-footer-flex {
    display: block;
  }
}

.strong-footer-flex>* {
  margin: auto;
}

@media (max-width: 1199px) {
  .strong-footer-flex>* {
    margin: 30px 15px;
  }
}

.strong-footer .footer-logo {
  max-width: 285px;
  max-height: 100px;
}

@media (max-width: 1199px) {
  .strong-footer .footer-logo {
    margin: 30px auto;
  }
}

.strong-footer-flex .address {
  padding: 0 10px;
}

.strong-footer h3 {
  font-size: 110%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
}

.strong-footer p {
  font-weight: 700;
}

.strong-footer a {
  color: inherit;
}

.strong-footer a:hover {
  color: #fafafa;
}

.strong-footer .social {
  font-size: 23px;
}


/* Footer
-------------------------------------------------------------------------------- */
.footer {
  padding: 20px 0;
  font-size: 80%;
  color: #fff;
  text-align: center;
  background-color: var(--primary-color);
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #fafafa;
}


/* Flexbox
-------------------------------------------------------------------------------- */

/* all screens */
.d-flex {
  display: flex;
}

/* xs */
@media (max-width: 768px) {
  .d-xs-flex {
    display: flex;
  }
}

/* sm */
@media (min-width: 768px) {
  .d-sm-flex {
    display: flex;
  }
}

/* md */
@media (min-width: 992px) {
  .d-md-flex {
    display: flex;
  }
}

/* lg */
@media (min-width: 1200px) {
  .d-lg-flex {
    display: flex;
  }
}

.flex-direction-column {
  flex-direction: column;
}


/* Wrap
------------------------------------ */
/* <div class="d-flex flex-wrap"> */

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}


/* Align Items
------------------------------------ */
.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}


/* Align Self
------------------------------------ */
.align-self-start {
  align-self: flex-start;
}

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: flex-end;
}


/* Justify Content
------------------------------------ */
.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.justify-content-end {
  justify-content: flex-end;
}


/* Grow / Shrink
------------------------------------ */
.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}


/* Grid
-------------------------------------------------------------------------------- */
/*
Basic       <div class="grid">
Specific    <div class="grid grid-cols-3">
Custom      <div class="grid grid-cols-3 product-grid">
*/

.grid {
  display: grid;
  margin-bottom: 30px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.no-gap {
  gap: 0;
}

.grid>* {
  position: relative;
}

/* 2 columns
------------------------------------ */
@media (min-width: 576px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns
------------------------------------ */
@media (min-width: 576px) and (max-width: 767px) {
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 4 columns
------------------------------------ */
@media (min-width: 576px) and (max-width: 767px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 5 columns
------------------------------------ */
@media (max-width: 576px) {
  .grid-cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .grid-cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .grid-cols-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* Event Module - section03
-------------------------------------------------------------------------------- */
ul.event-module-list {
  list-style: none;
  padding-left: 0;
}

ul.event-module-list li {
  margin: 25px 0 27px;
}

ul.event-module-list a {
  font-size: 1.15em;
  font-weight: 700;
  color: #00385c;
}

ul.event-module-list span {
  font-size: 16px !important;
  padding: 4px 0;
}



/* Event List
-------------------------------------------------------------------------------- */
.calendar-list-item .item-title {
  font-weight: 800 !important;
  font-size: 1.15em !important;
}

.event-date {
  font-size: 16px !important;
  font-weight: 800 !important;
}


/* FAQ
-------------------------------------------------------------------------------- */
ul.faq-list-items {
  padding-left: 0;
}

.faq-category-wrapper {
  margin-top: 30px;
  margin-bottom: 5px;
}

div#faq-submit {
  display: none;
}


/* Login Box in Header
-------------------------------------------------------------------------------- */
.module-login-box-001 {
  margin-left: 15px;
}

.module-login-box-001 .modal-header {
  min-height: 65px;
}

.module-login-box-001 .login-wrap table {
  width: 100%;
}

.module-login-box-001 .logged-in {
  margin: 0 0 0 15px;
}

@media (max-width: 991px) {
  .module-login-box-001 .logged-in {
    margin: 10px 0 30px;
  }
}

@media (max-width: 991px) {
  .module-login-box-001 .list-inline {
    color: #fff;
  }
}


/* Calendar Filters - /calendar/list/current_page,1/per_page,10
-------------------------------------------------------------------------------- */
.calendar-list-head {
  background: transparent !important;
}

.calendar-list-head td.view-details {
  color: #333 !important;
}

.calendar-list-head td.next-link a,
.calendar-list-head td.prev-link a {
  color: #333;
}

div.cal-filter-block-content {
  box-shadow: none !important;
  margin-bottom: 30px;
}

form#calendar_filter_form>div div {
  font-weight: 600;
}

@media (min-width: 1200px) {
  form#calendar_filter_form>div div {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 992px) {
  form#calendar_filter_form select {
    margin: 0 14px;
  }

  select#pf_cal_filter_view_calendar_event_type_id {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  form#calendar_filter_form select {
    margin: 5px 0;
  }
}

@media (min-width: 992px) {
  form#calendar_filter_form select#pf_cal_filter_calendar_event_type_id {
    width: 48%;
  }
}

@media (max-width: 991px) {
  form#calendar_filter_form select#pf_cal_filter_calendar_event_type_id {
    width: 100%;
  }
}

form#calendar_filter_form br {
  display: none;
}