/* =============================================
   SELF-HOSTED FONTS
   ============================================= */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/css/fonts/oswald-v57-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/css/fonts/oswald-v57-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/css/fonts/open-sans-v44-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/css/fonts/open-sans-v44-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/css/fonts/open-sans-v44-latin-italic.woff2') format('woff2');
}

/* =============================================
   BASE RESETS (from Bootstrap)
   ============================================= */
*, *:before, *:after { box-sizing: border-box; }
html { font-size: 10px; }
img { vertical-align: middle; }
.carousel-inner > .item > img,
.carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; }

/* =============================================
   NAV GRID — Bootstrap-free layout for critical path
   ============================================= */
.nav-container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.nav-row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.nav-clearfix::before,
.nav-clearfix::after { content: " "; display: table; }
.nav-clearfix::after { clear: both; }

/* Top header columns (desktop) */
.nav-top-main   { width: 83.333%; padding: 0 15px; } /* replaces col-md-10 */
.nav-top-social  { width: 16.667%; padding: 0 15px; } /* replaces col-md-2  */

/* Nav bar columns */
.nav-logo-col   { width: 25%;  padding: 0 15px; }  /* col-md-3 */
.nav-menu-col   { width: 75%;  padding: 0 15px; }  /* col-md-9 */
.nav-toggle-col { width: 33.333%; padding: 0 15px; } /* col-xs-4 */
.nav-holder     { background-color: #fff; }

.nav-img-responsive { max-width: 100%; height: auto; display: block; }

/* Desktop: hide mobile toggle */
@media (min-width: 992px) {
  .nav-toggle-col  { display: none; }
  .nav-logo-col    { width: 25%; }
}
/* Tablet & mobile: show toggle, hide desktop menu */
@media (max-width: 991px) {
  .nav-desktop-only { display: none !important; }
  .nav-menu-col     { display: none !important; }
  .nav-logo-col     { width: 66.667%; }
  .nav-toggle-col   { display: block; width: 33.333%; }
}

/* =============================================
   LIST RESETS — prevent FOUC bullets/stacking
   ============================================= */
.floated-list { margin-bottom: 0; list-style: none; padding-left: 0; }
ul.floated-list li { float: left; display: block; }
ul.floated-list li a { display: block; }
.navbar-v11 ul, .navbar-v11 ol,
.offcanvas ul { list-style: none; padding-left: 0; }
.carousel-indicators { list-style: none; padding-left: 0; }

/* =============================================
   TRUST GRID
   ============================================= */
.trust-container, .trust-row,
.trust-col, .trust-icon-col, .trust-text-col { box-sizing: border-box; }

.trust-container { margin: 0 auto; padding: 0 15px; }
@media (min-width: 768px)  { .trust-container { width: 750px; } }
@media (min-width: 992px)  { .trust-container { width: 970px; } }
@media (min-width: 1200px) { .trust-container { width: 1170px; } }

.trust-row { margin: 0 -15px; }
.trust-row::before, .trust-row::after { content: " "; display: table; }
.trust-row::after { clear: both; }

.trust-col { float: left; width: 100%; padding: 0 15px; }
@media (min-width: 768px) { .trust-col { width: 33.333%; } }

.trust-icon-col { float: left; width: 16.667%; padding: 0 15px; }
.trust-text-col { float: left; width: 83.333%; padding: 0 15px; }
@media (min-width: 768px) {
  .trust-icon-col { width: 25%; }
  .trust-text-col { width: 75%; }
}

.trust-img { max-width: 100%; height: auto; display: block; }
.trust-text-col h3 { font-size: 20px; margin: 0 0 5px 0; white-space: nowrap; }

.vr-both { border-left: 1px solid rgba(255,255,255,.3); border-right: 1px solid rgba(255,255,255,.3); }
@media (max-width: 767px) { .vr-both { border-left: 0; border-right: 0; } }

header{
    position: relative;
    z-index: 3;
}
/* Generic Navbar Style */
.toggle {
    float: right;
    margin-top: 38px;
}
.toggle a{
    height: 22px;
    width: 32px;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    position: relative;
    display: inline-block;
}
.toggle a:after{
    position: absolute;
    content: "";
    border-top: 2px solid var(--color-primary);
    left: 0;
    right: 0;
    top: 8px;
}


/* Offcanvas Stylings */

@media (min-width: 992px){
    .offcanvas,
    .offcanvas .coff,
    .header .toggle{
      display: none  !important;
    }
  }

@media (max-width: 991px){
#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: var(--color-secondary);
  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: var(--color-primary);
}

.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 .nav-main-item span {
    display: block;
    font-size: 13px;
    text-transform: capitalize;
}
.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: 8px 0;
  background:#FAFAFA;
}
.navbar-v11 .topheader-holder .logo {
  display: table;
  float: left;
}
.navbar-v11 .topheader-holder .logo img {
  max-width: 250px;
}
.navbar-v11 .topheader-holder .headercontact .contactholder {
  display: inline-block;
  position: relative;
  margin-right: 25px;
}
.navbar-v11 .topheader-holder .headercontact .contactholder p img {
  height: 18px;
}
.navbar-v11 .topheader-holder .headercontact .contactholder p {
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .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: var(--color-secondary); 
}
@media only screen and (max-width: 1199px) {
  .navbar-v11 .topheader-holder .headercontact .contactholder h3 {
    font-size: 20px;
  }
}
.header-social {
  display: table;
  float: right;
}
.header-social a {
  display: inline-block;
  padding-right: 15px;
  font-size: 20px;
  line-height: 28px;
}
/* Reserve space for FA icons — hide text until font loads */
.header-social .fa,
.social-link {
  display: inline-block;
  width: 1em;
  height: 1em;
  overflow: hidden;
  vertical-align: middle;
}
.navbar-v11 .logo {
   padding: 10px 0;
}
.navbar-v11 .logo img{
   max-width: 230px;
}
@media (min-width: 992px) {
  .navbar-v11 .logo {
      padding-top: 14px;
      padding-bottom: 0;
  }
  .navbar-v11 .logo img{
     max-width: 100%;
  }
}
.nav-items-v11 .mynav {
    display: table;
    float: right;
}
.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: var(--color-primary) !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: #F6F6F6;
  -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-top: 2px solid var(--color-primary);
}
.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: var(--color-primary);
  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: #252424;
}
.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-left: 50px;
  position: relative;
}
.nav-items-v11 .mynav > ul > li > a {
  color: var(--color-primary);
  padding: 30px 0;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  border-top: 2px solid transparent;
}
.nav-items-v11 .mynav > ul > li > a:hover {
  border-color:  var(--color-primary);
}
.nav-items-v11 .mynav > ul > li > a .nav-main-item {
  min-height: 52px;
}
.nav-items-v11 .mynav > ul > li > a span {
  font-size: 14px;
  font-weight: 400;
  display: table;
  color: #888;
  text-transform: capitalize;
  width: 100%;
  margin-top: -8px;
}
.nav-items-v11 .mynav > ul > li > a:hover span {
  color: var(--color-secondary);
}
.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 {
  right: 100%;
  left: auto;
  top: 0;
  transform: none;
  background: #F6F6F6;
}
.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: var(--color-primary) !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;
}



/* FROM MASTER */

body{ overflow-x: hidden; margin: 0; font-size: 14px; line-height: 1.42857143; }

h1,h2,h3,h4,h5,h6, .h1,.h2,.h3,.h4,.h5,.h6 {font-family: 'Oswald', sans-serif, cursive; font-weight:700}
p,ul,ol {font-family: 'Open Sans', sans-serif;font-size:16px;font-weight: 600;line-height: 26px;color: #323131; margin: 0 0 10px;}
p.lead {font-family: 'Open Sans', sans-serif; font-weight:400; font-size:18px; color:var(--color-primary); font-style:italic}

.lead a {
  font-family: 'Open Sans', sans-serif;
}

h1, .h1 {
  font-size: 85px;
  color: #ffffff;
  text-transform: uppercase;
}
h1  span.over, .h1 span.over {
  font-size: 30px;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
}
h2, .h2-title, .h2 {
  font-size: 55px;
  color: #212121;
  text-transform: uppercase;
}
h2 span.over, .h2 span.over {
  font-size: 35px;
  color: #212121;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 100%;
  display: block;
}

a {font-family: 'Open Sans', sans-serif;color:var(--color-primary); text-decoration: none; font-weight: bold; transition: all 0.7s ease-out;}
a:hover {color:#000}
.over {font-family: 'Open Sans', sans-serif;color:#CCCCCC; text-transform: uppercase;display:block;}
/* Heading margin resets (from Bootstrap) */
h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; line-height: 1.1; }
h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; line-height: 1.1; }
.mb-none { margin-bottom: 0; }
.clear { clear: both; }

.bg-dark {background:#222}
.ptb-xs { padding-top: 10px; padding-bottom: 10px; }
.mtb-sm { margin-top: 20px; margin-bottom: 20px; }
.text-white-50 { color: rgba(255,255,255,.5); }
.bg-primary {background:var(--color-primary)}
.bg-secondary {background:var(--color-secondary)}
.text-black {color:#000}
.text-white {color:#fff}
.text-primary, .text-red {color:var(--color-primary);}
.btn-primary {background:var(--color-primary); border:1px solid var(--color-primary); color:#FFF}
.btn-white {background:#FFF; border:1px solid #FFF; color:var(--color-primary) }
.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;}   




/* ### 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);
}
.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;
}
/* FROM MASTER END*/