.header, .content-block, .callout-overlay {
	position: relative;
	z-index: 0;
}

.header .container, .content-block .container,  .callout-overlay div {
	position: relative;
	z-index: 2;
}

.default-padding {
	padding: 100px 0;
}

.footer.default-padding {
    padding: 50px 0 15px;
}

.fa-ul>li {
    position: relative;
    margin-bottom: 18px;
}

#player_wrapper,#player {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left: 0;
  z-index: -1;
}

#player_wrapper {
  overflow:hidden;
}

video.b-bgvideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(1, 69, 126, 0.99);
}

/* Overlay closing cross */
.overlay .overlay-close {
    position: absolute;
    right: 15px;
    top: 0.25rem;
    overflow: hidden;
    border: none;
    color: #fefefe;
    outline: none;
    z-index: 5001;
    font-size: 2rem;
    padding: 1rem;
    margin-right: 0.9375rem;
    background: transparent;
    border: none;
}

/* Menu style */
.mobilemenu nav {
    position: relative;
    top: 40%;
    height: 55%;
    font-size: 2.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: auto;
    margin-left: auto;
}

.mobilemenu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative;
}

.mobilemenu ul li {
    display: block;
    padding: 0 0 1.5rem;
}

.mobilemenu ul li a {
  font-family: "futura-pt", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 900;
  color: #fefefe;
  display: block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  line-height: 1;
  text-align: center;
}

.mobilemenu ul li a.phone {
    color: #fefefe;
    font-size: 2rem;
}

.mobilemenu ul li a:hover, .mobilemenu ul li a:focus {
    color: #caccce;
}

#mobile_menu {
    height: 100vh;
    background: #4d5c49;
    display: flex;
    align-items: center;
    color: #fefefe;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s ease-in;
}

#mobile_menu.active {
    width: 100%;
    position: fixed;
    transition: all 0.25s ease-in;
}

@media only screen and (max-width: 500px) {
    #mobile_menu.active {
        width: 100%;
        position: fixed;
        transition: all 0.25s ease-in;
    }
}

#mobile_menu.active a i {
    opacity: 0;
    transition: opacity 0.25s ease-in;
}

#mobile_menu .closenav {
    position: absolute;
    top: 2rem;
    right: 1rem;
    opacity: 0;
    display: none;
}

#mobile_menu.active h3, #mobile_menu.active .closenav  {
    opacity: 1;
    display: block;
    transition: opacity 1s ease-in;
}

button.overlay-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 11;
    background: none;
    outline: none;
    border: none;
}

.dropdown-menu {
    padding: 0;
}

.callout-overlay {
    min-height: 300px;
    display: flex;
}

@media (min-width: 576px) {

    .card-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

}

.footer .fa-ul {
    margin-left: 30px;
    padding-left: 0;
}

.footer .fa-ul>li {
    position: relative;
    margin-bottom: 10px;
}

ul.footer-menu {
    display: block;
    list-style-type: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}

#mobile_menu .nav-item:hover {
    background-color: transparent !important;
}

/* Smooth scroll for same-page anchors */
html {
  scroll-behavior: smooth;
}

h2, tr, td, table {
  scroll-margin-top: 90px; /* fallback if JS doesn't run */
}

:root {
  --anchor-offset: 90px; /* adjust to your sticky header height + a bit of padding */
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;   /* match your theme */
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000; /* stay above other elements */
}

#scrollTop.show {
  opacity: 0.9;
  visibility: visible;
}

#scrollTop:hover {
  opacity: 1;
  background: #000;
}