@font-face{
  font-family:Aller-Regular;
  src:url(../fonts/Aller-Regular.eot);
  src:url(../fonts/Aller-Regular.eot?#iefix) format('embedded-opentype'), 
      url(../fonts/Aller-Regular.woff2) format('woff2'), 
      url(../fonts/Aller-Regular.woff) format('woff'), 
      url(../fonts/Aller-Regular.ttf) format('truetype'), 
      url(../fonts/Aller-Regular.svg#../fonts/Aller) format('svg');
      font-weight:400;font-style:normal;
      font-display:swap
}

@font-face {
    font-family:Aller-Bold;
    src:url(../fonts/Aller-Bold.eot);
    src:url(../fonts/Aller-Bold.eot?#iefix) format('embedded-opentype'),
        url(../fonts/Aller-Bold.woff2) format('woff2'),
        url(../fonts/Aller-Bold.woff) format('woff'),
        url(../fonts/Aller-Bold.ttf) format('truetype'),
        url(../fonts/Aller-Bold.svg#../fonts/Aller-Bold) format('svg');
        font-weight:700;
        font-style:normal;
        font-display:swap
}
header .navbar .navbar-brand img, header.side-menu .logo img, header .sidebar-nav-menu .navbar-brand img {
  max-height: 80px;
}
:root {
  --brand-500:   #FA7900;
  --brand-700:   #CC6A00;
  --brand-300:   #FFAB3B;

  --bs-btn-active-color:       #ffffff;
  --bs-btn-active-bg:          var(--brand-700);
  --bs-btn-active-border-color: var(--brand-300);
  --bs-btn-hover-bg: var(--brand-700);
  --bs-btn-hover-border-color: var(--brand-300);
  --bs-btn-bg: var(--brand-500);

  --brand-blue:  #16395D;
  --brand-orange: #FA7900;
  --brand-mid:    #6D4B35;
  
}
body {font-family:Aller-Regular; color: #000;font-size: 15px; line-height: 24px;}
h1,h2,h3,h4,h5,h6 {font-family:Aller-Bold; font-weight: 700; color: #000;}
.bg-blue-secondary {background: var(--brand-blue);}
.text-primary {color: var(--brand-500) !important;}
.btn-primary, .btn-primary:active , .btn-primary:focus{
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-500);
  --bs-btn-border-color: var(--brand-300);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-700);
  --bs-btn-hover-border-color: var(--brand-700);
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-700);
  --bs-btn-active-border-color: var(--brand-700);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--brand-500);
  --bs-btn-disabled-border-color: var(--brand-500);
  background: var(--brand-500);
}
.navbar .navbar-nav .nav-link {font-size: 18px;}
.bg-fast-blue {
  background-color: var(--brand-500);
}
.btn.btn-primary:hover {
    background: transparent;
    color: #232323;
}
.navbar .btn-large {padding: 5px 32px !important;}
.navbar .btn-primary:hover {background:#fff;}

.text-gradient-fast-blue-purple { 
  background: linear-gradient(to right,  var(--brand-blue), var(--brand-mid), var(--brand-orange)); 
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .border-gradient-fast-blue-purple { 
    border-image: linear-gradient(to right top,  var(--brand-blue), var(--brand-mid),  var(--brand-orange)) 1 / 0 0 1 0; 
    border-image-slice: 1; 
  }
}
.bg-gradient-peacock-blue-crome-yellow {
  background-image: linear-gradient(to right top, var(--brand-blue), var(--brand-mid),  var(--brand-orange));
}

/** FOCUS SECTION **/
  .focus-section {
    background: #FA7900;
    color: #fff;
  }
  

.focus-title h6 {
  font-size: 22px; 
  line-height:28px;
  color: #fff;
}
  /* white box styling */
.focus-box {
    background: #fff;
    color: #000;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.focus-icon {
    font-size: 2.5em;
    margin-bottom: 0.3em;
}
.focus-label {
    font-weight: bold;
    margin-bottom: 1em;
}

 /* small gutter between title & box on mobile */
  @media (max-width: 767px) {
    .focus-title {
      margin-bottom: 15px;
    }
    .focus-title h6 {
      font-size: 18px; 
      font-weight: 500; 
      line-height:1
    }
    .connector {display: none;}
  }
  

  /* 2) Middle column flex container */
.focus-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;           /* stretch to match sibling columns */
  position: relative;
}

/* vertical segments */
.connector-vert {
  flex: 1;                /* fill above or below equally */
  position: relative;
  width: 2px;
  background: transparent; /* no background */
}

/* draw top elbow */
.connector-vert:first-child::before {
  content: "";
  position: absolute;
  top: 0; left: 0;             /* reach out to the title column */
  width: 60px; 
  height: 130px;
  transform: translateY(50px);
  border-top-left-radius: 20px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

/* draw bottom elbow */

.connector-vert:last-child::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 100px;
  border-bottom-left-radius: 20px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-100px);
}

/* icon + middle horizontal arm */
.icon-wrap {
  position: relative;
  text-align: center;
}
.icon-wrap::after {
  content: "";
  position: absolute;
  top: 25%; left: 70px;           /* reach back to the middle title */
  transform: translateY(-25%);
  width: 40px; height: 2px;
  background: #fff;
}

.icon-wrap {
  position: relative;
  text-align: center;
}

/* the icon itself */
.focus-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 0.2em;
}
.focus-label {
  display: block;
  font-weight: bold;
  font-size: 1em;
}

/* hide connectors on mobile */
@media (max-width: 767px) {
  .connector-vert,
  .connector-vert:first-child::before,
  .connector-vert:last-child::after,
  .icon-wrap::after {
    display: none;
  }
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
  }
  .video-responsive video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  }
  .coming-soon {
    font-size: 120px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2em;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #FFFFFF;
  }
  .page-banner {
    background-position: center !important;
    position: relative !important;
    background-size: cover !important;
    overflow: hidden;
    background-attachment: fixed !important;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;}