/* ======================================
   Self-hosted fonts — only weights we use
   ====================================== */

/* Poppins 400 (body text, links) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

/* Poppins 500 (p.lead) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/poppins-v24-latin-500.woff2') format('woff2');
}

/* Poppins 700 (bold/links) */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* Righteous 400 (headings) */
@font-face {
  font-family: 'Righteous';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/righteous-v18-latin-regular.woff2') format('woff2');
}

/* ======================================
   End self-hosted fonts
   ====================================== */

/* Pulled from _bootstrap.css + master.css — page reset */
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  margin: 0;
}
html{ overflow-x: hidden;}
body{ overflow-x: hidden;}

/* Pulled from _bootstrap.css — element margin resets */
p { margin: 0 0 10px; }
ul, ol { margin-top: 0; margin-bottom: 10px; }

/* Pulled from master.css — base typography */
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {font-family: 'Righteous', cursive; font-weight:700; margin-top: 0; margin-bottom: 10px;}
p,ul,ol {font-family: 'Poppins', sans-serif;font-size:16px;font-weight: normal;line-height: 26px;color: #555;}
p.lead {font-family: 'Poppins', sans-serif; font-weight:500; font-size:18px; color:#FC0000; font-style:italic}

/* Pulled from master.css — heading sizes & colors */
h1, h2.h1 {font-size: 70px; color: #ffffff; text-transform: uppercase;}
h1 span.over, h2.h1 span.over {font-size: 40px; color: #ffffff; font-weight: 100; text-transform: uppercase;}
h2, .h2-size, h1.h2 {font-size: 50px; color: #212121; text-transform: uppercase;}
h2 span.over, h1.h2 span.over {font-size: 25px; color: #212121; font-weight: 100; text-transform: uppercase; line-height: 100%; display: block;}
h3 {font-size: 36px; font-weight: 900;}
h3 span.over, .h3 span.over {font-size: 16px; color: #212121; font-weight: 100; text-transform: uppercase; line-height: 100%; display: block;}

/* Nav contact icon images — prevent layout shift */
.navbar-v11 .contacticon img {width: 40px; height: 40px;}

/* Pulled from master.css — prevent blue link flash */
a {font-family: 'Poppins', sans-serif;color:#fc0000}
a:hover {color:#000}
a{
  outline: none !important;
  transition: all 0.7s ease-out;
  font-weight:bold;
}
a,
a:hover,
a:link,
a:visited,
a:focus{
  text-decoration: none;
}

header{
    position: relative;
    z-index: 3;
}
/* Generic Navbar Style */
.toggle {
    float: right;
    margin-top: 40px;
}
.toggle a{
    height: 22px;
    width: 32px;
    border-top: 2px solid #FC0000;
    border-bottom: 2px solid #FC0000;
    position: relative;
    display: inline-block;
}
.toggle a:after{
    position: absolute;
    content: "";
    border-top: 2px solid #FC0000;
    left: 0;
    right: 0;
    top: 8px;
}

/* Offcanvas Stylings */

@media (min-width: 1024px){
    .offcanvas,
    .offcanvas .coff,
    .header .toggle{
      display: none  !important;
    }
  }

@media (max-width: 1023px){
#mobileNav{
  padding: 80px 0;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  background: #161616;
  width: 300px;
  z-index: 99;
  padding: 0; 
}
.offcanvas ul {
  margin: 0 0 15px;
  display: block; 
  padding: 0;
}
.offcanvas ul li {
  float: none !important;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.offcanvas ul.nav-right > li {
    border-bottom: 0;
    display: table;
    float: left !important;
}
.offcanvas ul.nav-right > li.btn-holder {
    display: block;
    float: left !important;
    width: 100%;
    padding: 20px;
}
.offcanvas ul.nav-right > li.btn-holder .btn-primary {
    text-align: center;
    border: 0;
}
.offcanvas ul.nav-right > li.btn-holder .btn-primary:hover,
.offcanvas ul.nav-right > li.btn-holder .btn-primary:focus {
    background-color: #fff;
    color: #FC0000;
}

.offcanvas ul li a {
  color: #ffffff;
  font-size: 16px;
  display: block;
  padding: 10px 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}
.offcanvas ul li a i {
    line-height: 20px;
    padding-right: 15px;
}
.offcanvas ul li ul {
  display: none;
  padding: 15px 30px 25px;
  margin-bottom: 0;
  list-style: none;
}
.offcanvas ul li ul li:last-child,
.offcanvas ul li ul li {
  border: 0;
  padding: 0;
}
.offcanvas ul li ul li a {
  border-bottom: 0;
  padding: 10px 20px;
}
.offcanvas ul.nav-right > li .social > i {
    font-size: 20px;
}
.offcanvas .coff {
  top: 0;
  left: 0; 
  z-index: 9;
}
.offcanvas .coff a {
  padding: 15px 20px;
  display: block; 
  background-color: rgba(0,0,0,0.5);
}

.offcanvas.show-offcanvas {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); 
}
.body-inactive {
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.54);
  display: none; 
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}  
}

.navbar-v11 {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.navbar-v11 .topheader-holder {
  padding: 20px 0;
  border-top: 4px solid #fc0000;
}
@media only screen and (max-width: 1023px) {
  .navbar-v11 .topheader-holder {
    border: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-v11 .topheader-holder:before,
  .navbar-v11 .topheader-holder:after {
    display: none;
  }
  .navbar-v11 .topheader-holder .logo {
    float: none;
  }
}
.navbar-v11 .topheader-holder .logo {
  display: table;
  float: left;
}
.navbar-v11 .topheader-holder .logo img {
  max-width: 250px;
}
.navbar-v11 .topheader-holder .headercontact {
  display: table;
  float: right;
  padding-top: 20px;
}
.navbar-v11 .topheader-holder .headercontact .contactholder {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  padding-top: 7px;
  margin-left: 25px;
}
@media only screen and (max-width: 1199px) {
  .navbar-v11 .topheader-holder .headercontact .contactholder {
    margin-left: 15px;
  }
  .navbar-v11 .topheader-holder .headercontact .contactholder p {
    font-size: 14px;
  }
}
.navbar-v11 .topheader-holder .headercontact .contactholder .contacticon {
  font-size: 34px;
  height: 50px;
  width: 50px;
  display: table;
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.navbar-v11 .topheader-holder .headercontact .contactholder .h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.navbar-v11 .topheader-holder .headercontact .contactholder .h3:hover > a {
   color: #161616;
}
@media only screen and (max-width: 1199px) {
  .navbar-v11 .topheader-holder .headercontact .contactholder .h3 {
    font-size: 20px;
  }
}

.nav-items-v11 {
  display: flex;
  justify-content: space-between;
}

.nav-items-v11 .mynav {
  width: 100%;
}
.nav-items-v11 .mynav > ul {
  display: table;
  float: left;
}
.nav-items-v11 .mynav ul > li > a {
  font-size: 18px;
}
.nav-items-v11 .mynav ul > li > a:hover {
  color: #fc0000 !important;
}
.nav-items-v11 .mynav ul {
  padding: 0;
}
.nav-items-v11 .mynav ul li ul {
  margin: 0;
  padding: 15px 0 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  transition: all 0.3s ease-out;
  background: #161616;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 280px;
  transform: scaleY(0);
  transform-origin: 0% 0%;
  border-bottom: 4px solid #fc0000;
}
.nav-items-v11 .mynav ul li ul li {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  transition: all 200ms ease;
  position: relative;
}
.nav-items-v11 .mynav ul li ul li:after {
  left: 20px;
  top: 18px;
  background: #FC0000;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  transition: all 200ms ease;
  position: absolute;
  opacity: 0;
}
.nav-items-v11 .mynav ul li ul li a {
  padding: 10px 0;
  margin: 0 30px;
  border-bottom: 1px solid #ccc;
  position: relative;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
}
.nav-items-v11 .mynav ul li ul li a:hover {
  padding-left: 15px;
  opacity: 1 !important;
}
.nav-items-v11 .mynav ul li ul li:hover:after {
  left: 30px;
  opacity: 1;
}
.nav-items-v11 .mynav ul li ul li:hover a {
  padding-left: 15px;
}
.nav-items-v11 .mynav ul li ul li:last-child > a {
  border-bottom: 0;
}
.nav-items-v11 .mynav ul li ul li:hover > ul > li > a {
  padding-left: 0;
}
.nav-items-v11 .mynav > ul > li {
  margin-right: 40px;
  position: relative;
}
.nav-items-v11 .mynav > ul > li > a {
  color: #fff;
  padding: 20px 0;
}
.nav-items-v11 .mynav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.nav-items-v11 .mynav > ul > li > ul > li {
  float: none;
}
.nav-items-v11 .mynav > ul > li > ul > li a {
  padding: 10px 0;
}
.nav-items-v11 .mynav > ul > li > ul > li a:hover {
  opacity: 0.5;
}
.nav-items-v11 .mynav ul > li > ul > li > ul.sub-dropdown {
  left: 100%;
  top: 0;
  transform: none;
  background: #161616;
}
.nav-items-v11 .mynav ul > li > ul > li > ul.sub-dropdown li {
  width: 100%;
  float: none;
}
.nav-items-v11 .mynav ul > li > ul > li > ul.sub-dropdown li:hover a {
  padding-left: 15px;
}
.nav-items-v11 .mynav ul > li > ul > li:hover > ul.sub-dropdown {
  visibility: visible;
  opacity: 1;
}
.nav-items-v11 .mynav .nav-right {
  display: table;
  float: right;
  height: 100%;
}
.nav-items-v11 .mynav .nav-right li {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.nav-items-v11 .mynav .nav-right li .btn-primary {
  padding: 10px 20px;
  color: #ffffff;
  margin-left: 30px;
  min-width: 220px;
  text-align: center;
}
.nav-items-v11 .mynav .nav-right li .btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #fc0000 !important;
}
.nav-items-v11 .mynav .nav-right .social {
  font-size: 16px;
  height: 30px;
  width: 30px;
  text-align: center;
  padding: 0;
  line-height: 30px;
  margin-left: 20px;
}
.nav-items-v11 .mynav .nav-right .social:hover {
  font-size: 18px;
}

.offcanvas-nav-v11 ul li ul {
  padding: 10px 30px;
  background: #313131;
}
.offcanvas-nav-v11 ul li ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.offcanvas-nav-v11 ul li ul li a {
  padding: 10px 0;
}
.offcanvas-nav-v11 ul li ul li ul.sub-dropdown {
  padding-right: 0;
  padding-top: 0;
}

/* ======================================
   Mobile Contacts Dropdown
   ====================================== */
.m-menu-holder {
  display: flex;
  align-items: center;
  gap: 15px;
}
.m-menu-holder .toggle {
  margin-top: 0;
}
.m-menu-holder .toggle a {
  width: 34px;
  height: 26px;
  border-top-width: 3px;
  border-bottom-width: 3px;
}
.m-menu-holder .toggle a:after {
  top: 9px;
  border-top-width: 3px;
}
.m-menu-holder .m-contacts {
  width: 40px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .m-menu-holder .m-contacts {
    margin-right: 0;
    z-index: 999;
  }
}
.mobile-nav {
  font-size: 38px;
}
#phone-icon.mobile-nav {
  color: #fc0000;
}
#close-img.mobile-nav {
  color: #fc0000;
}
.m-contacts-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  color: #161616;
  padding: 30px;
  display: none;
  z-index: 98;
  box-shadow: 2px -7px 21px -9px rgba(0,0,0,0.55);
  -webkit-box-shadow: 2px -7px 21px -9px rgba(0,0,0,0.55);
  -moz-box-shadow: 2px -7px 21px -9px rgba(0,0,0,0.55);
}
.m-contacts-list .mcl-each {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
  min-height: 40px;
  display: table;
}
.m-contacts-list .mcl-each:last-child {
  margin-bottom: 0;
}
.m-contacts-list .mcl-each span {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 26px;
  line-height: 40px;
  color: #161616;
}
.m-contacts-list .mcl-each p,
.m-contacts-list .mcl-each a {
  font-size: 17px;
  color: #161616;
}
.m-contacts-list .mcl-btn-holder {
  padding-left: 0;
}
.m-contacts-list .mcl-btn-holder .btn {
  color: #fff;
  margin: 0;
}


.hero-variant {
  position: relative;
}
/* Pre-slick: show first slide immediately, hide the rest */
.hero-v11-slider:not(.slick-initialized) .hero-v11-slide {
  display: none;
}
.hero-v11-slider:not(.slick-initialized) .hero-v11-slide:first-child {
  display: block;
}

/* Pre-slick: show only first 3 service cards, hide the rest to prevent extra scrollbar */
.sv12-autoplay:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
}
.sv12-autoplay:not(.slick-initialized) .item {
  flex: 0 0 33.333%;
  min-width: 0;
}
.sv12-autoplay:not(.slick-initialized) .item:nth-child(n+4) {
  display: none;
}
.hero-v11 .hero-v11-slide {
  height: 590px;
  position: relative;
  overflow: hidden;
}
.hero-v11 .hero-v11-slide img.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-v11 .hero-v11-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
/* Pulled from dc-utilities.css — hero caption layout */
.mytable, .my-table {display: table; width: 100%; height: 100%;}

.hero-v11 .hero-v11-slide .caption-holder {
  position: relative;
  z-index: 2;
}
.hero-v11 .caption-links-holder .caption-links {
  display: table;
  float: left;
  margin-right: 60px;
}
@media only screen and (max-width: 992px) {
  .hero-v11 .caption-links-holder .caption-links {
    display: block;
    float: none;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.hero-v11 .caption-links-holder .caption-links .caption-links-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  vertical-align: top;
  color: #ffffff;
  transition: all 0.25s ease-out;
}
.hero-v11 .img-icon-hover {
    overflow: hidden;
    position: relative;
}
.hero-v11 .img-icon-hover img:first-child,
.hero-v11 .img-icon-hover img:last-child {
    transition: 0.25s ease-out;
    position: absolute;
    top: 0;
    left: 0;
}
.hero-v11 .img-icon-hover > img{
    max-width: 100%;
}
.hero-v11 .img-icon-hover img:last-child {
    opacity: 0;
    visibility: hidden;
}
.hero-v11 .img-icon-hover:hover > img:first-child {
    opacity: 0;
    visibility: hidden;
}
.hero-v11 .img-icon-hover:hover > img:last-child {
    opacity: 1;
    visibility: visible;
}
.hero-v11 .caption-links-holder .caption-links .caption-links-text {
  display: inline-block;
  font-size: 16px;
}
.hero-v11 .caption-links-holder .caption-links .caption-links-text h3 {
  margin: 0;
  font-size: 28px;
}
@media only screen and (max-width: 992px) {
  .hero-v11 .caption-links-holder .caption-links .caption-links-text h3 {
    font-size: 24px;
  }
}
/* Slick arrows — bottom-right, matching old Bootstrap carousel controls */
.hero-v11 .slick-prev,
.hero-v11 .slick-next {
  position: absolute;
  top: auto;
  bottom: 25px;
  right: 25px;
  left: auto;
  transform: none;
  width: 50px;
  height: 50px;
  background: #FC0000;
  border: 2px solid #FC0000;
  border-radius: 50%;
  font-size: 0;
  opacity: 0.9;
  line-height: 40px;
  text-shadow: none;
  cursor: pointer;
  z-index: 3;
}
.hero-v11 .slick-prev:hover,
.hero-v11 .slick-next:hover {
  background: #ffffff;
  border-color: #ffffff;
}
.hero-v11 .slick-prev::before,
.hero-v11 .slick-next::before {
  font-family: FontAwesome;
  font-size: 30px;
  color: #ffffff;
  opacity: 1;
}
.hero-v11 .slick-prev:hover::before,
.hero-v11 .slick-next:hover::before {
  color: #FC0000;
}
.hero-v11 .slick-prev::before {
  content: "\f104";
}
.hero-v11 .slick-next::before {
  content: "\f105";
}
.hero-v11 .slick-prev {
  right: 90px;
}

.hr-xs {
  background: #FC0000;
  height: 4px;
  width: 100px;
  display: table;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
    .hero-v11 .caption-holder h1 {
        font-size: 55px;
    }
}


/* ============================
   TRUST BAR SECTION
   ============================ */
.trust-bar-section {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    padding: 25px 0;
    max-height: 250px;
}

/* Trust items container */
.trust-items-desktop {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

/* Individual trust item */
.trust-item {
    text-align: center;
    position: relative;
    padding: 20px 30px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trust-item:hover {
    background: #222;
}

/* Icon styling */
.trust-item .trust-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-item .trust-icon i {
    font-size: 24px;
    color: #fff;
}

/* Text styling */
.trust-item p.h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
    position: relative;
    padding-bottom: 10px;
}
.trust-item p.h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #FC0000;
    transition: width 0.3s ease;
}
.trust-item:hover p.h4::after {
    width: 60px;
}
.trust-item p {
    color: #999;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* Mobile carousel styling */
.trust-carousel-mobile {
    display: none;
}
.trust-carousel-mobile .carousel-inner {
    overflow: hidden;
}
.trust-carousel-mobile .item {
    display: none;
    padding: 15px 30px;
    transition: transform 0.6s ease-in-out;
}
.trust-carousel-mobile .item.active,
.trust-carousel-mobile .item.next,
.trust-carousel-mobile .item.prev {
    display: block;
}
.trust-carousel-mobile .item.next,
.trust-carousel-mobile .item.prev {
    position: absolute;
    top: 0;
    width: 100%;
}
.trust-carousel-mobile .item.next {
    transform: translateX(100%);
}
.trust-carousel-mobile .item.prev {
    transform: translateX(-100%);
}
.trust-carousel-mobile .item.next.left,
.trust-carousel-mobile .item.prev.right {
    transform: translateX(0);
}
.trust-carousel-mobile .item.active.left {
    transform: translateX(-100%);
}
.trust-carousel-mobile .item.active.right {
    transform: translateX(100%);
}
.trust-carousel-mobile .trust-item {
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
}
.trust-carousel-mobile {
    cursor: grab;
}
.trust-carousel-mobile:active {
    cursor: grabbing;
}

/* ======================================
   Pulled from master.css — nav-critical
   ====================================== */

.bg-secondary {background:#161616}

.text-primary, .text-red {color:#FC0000;}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

.table-cell,
.table-cell-xs,
.table-cell-sm,
.table-cell-md,
.table-cell-lg,
.table-cell-xl{
  display: table-cell;
}
@media (max-width: 767px){
	.table-cell-md,
	.table-cell-lg,
	.table-cell-xl{
	  display: block;
	  width:100%;
	}
}
@media (max-width: 992px){
	.table-cell-lg,
	.table-cell-xl{
	  display: block;
	  width:100%;
	}
}
@media (max-width: 1200px){
	.table-cell-xl{
	  display: block;
	  width:100%;
	}
}

.va-top{
  vertical-align: top;
}
.va-middle{
  vertical-align: middle;
}
.va-bottom{
  vertical-align: bottom;
}

.btn-primary {background:#FC0000; border:1px solid #FC0000; color:#FFF}
.btn-primary:hover  {background:#161616; border-color:#161616; color:#FFF}

.btn, .btn-lg, .btn-open, .btn-open-bright-purple, .btn-open-primary {
  display:inline-block;
  border-radius: 0;
  padding:1em 3em;
  font-weight:bold;
  text-transform: uppercase;
  margin:2.5em 0;
}
.btn {font-size:.875em;}

/* ======================================
   End pulled from master.css — nav-critical
   ====================================== */

/* ======================================
   Pulled from master.css — banner-critical
   ====================================== */

.over {font-family: 'Poppins', sans-serif;color:#CCCCCC;font-size:1.125em; text-transform: uppercase;display:block;}

.text-white {color:#FFF !important;}

/* ### Banner Section ### */
.banner{
  background-size:cover;
  background-repeat: no-repeat;
  position:relative;
}
.banner-filter {
    height:100%;
    width:100%;
    background-color:rgba(0,0,0,.5);
    padding:70px;
  }
  /* Media query for mobile devices */
  @media (max-width: 768px) {
      .banner-filter {
        padding: 0px;
      }
    }

.banner h1 {
  color:#fff;
  font-size:64px;
  font-weight:800;
  padding:0;
  margin:60px 0 10px 0;
}
.banner p {
  font-size:18px;
  color:rgba(255,255,255,.6);
  font-style:italic;
  margin-bottom: 50px;
}

/* ======================================
   End pulled from master.css — banner-critical
   ====================================== */

/* ======================================
   Pulled from dc-utilities.css — nav/banner-critical
   ====================================== */

/* Text */
.text-center {text-align:center !important;}

/* Visibility & Positioning */
.absolute, .position-absolute {position:absolute;}
.fixed {position: fixed;}

/* Floated List (nav menu) */
.floated-list {margin-bottom: 0; }
ul.floated-list li {float: left;display: block; }
ul.floated-list li a {display: block; }

/* Spacing — margins */
.mt-none{margin-top: 0;}
.mb-none{margin-bottom: 0;}
.mb-sm{margin-bottom:20px;}
.mb-md{margin-bottom: 40px;}

/* Spacing — padding */
.pb-xl{padding-bottom: 120px;}
.ptb-lg{padding-top: 80px;padding-bottom: 80px;}

/* ======================================
   End pulled from dc-utilities.css
   ====================================== */

/* ======================================
   Pulled from _bootstrap.css — nav/banner-critical
   ====================================== */

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/* --- Grid: banner + hero --- */
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-sm-9, .col-sm-12, .col-md-10 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .col-sm-9, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-9 {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .col-md-10 {
    float: left;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
}

/* ======================================
   End pulled from _bootstrap.css
   ====================================== */
