:root {
    --bs-gray: #444648;
    --bs-primary: #5994dd;
    --bs-secondary: #600e40;
    --bs-light: #F8F8F8 ;
    --bs-dark: #0c2c7f;

    --bs-primary-rgb: 30, 98, 137;
    --bs-secondary-rgb: 154, 204, 187;
    --bs-light-rgb: 246, 246, 246;
    --bs-dark-rgb: 68, 70, 72;

    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;

    --bs-body-rgb: 49, 51, 53;
    --bs-font-sans-serif: "Montserrat", sans-serif;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 16px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #313335;
    --bs-body-bg: #fff;
    --bs-border-radius: 40px;
  
    --byf-header-font: 'Open Sans', sans-serif;
  }
  
  /*=====================
  TYPOGRAPHY/DEFAULT
  ======================*/
  
  h1, h2, h3, h4, h5, [class*=display-] {
      font-family: var(--byf-header-font);
      font-weight: 600;
  }
  
  [class^=fs-]:not([class^=fa-]):not([class*=display-]) {
      font-family: var(--bs-font-sans-serif);
  }
  
  #main p, #footer p {
      line-height: var(--bs-body-line-height);
      font-weight: var(--bs-body-font-weight);
      font-size: var(--bs-body-font-size);
  }
  
  .btn {
    border-radius: var(--bs-border-radius);
  }
  
  .bg-light {
      background-color: var(--bs-light) !important;
  }
  
  .bg-primary {
    background: var(--bs-primary) !important;
  }
  
  .bg-secondary {
     background-color: var(--bs-secondary) !important;
  }
  
  .bg-dark {
    background: var(--bs-dark);
  }
  
  .bg-gray {
    background: var(--bs-gray) !important;
  }
  
  a, a:is(:focus, :active) {
      color: var(--bs-primary);
  }

  a:hover {
    color: var(--bs-secondary)
  }
  
  .text-primary {
      color: var(--bs-primary) !important;
  }
  
  .text-secondary {
      color: var(--bs-secondary) !important;
  }
  
  .btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  
  .btn-primary:hover {
      color: #fff;
      background-color: var(--bs-secondary);
      border-color: var(--bs-secondary);
  }
  
  .btn-secondary {
     background: var(--bs-secondary);
     border-color: var(--bs-secondary);
  }
  
  #pageContent a {
      color: var(--bs-primary);
      font-weight: 600;
      text-decoration: underline;
  }
  
  #pageContent li {
    font-weight: var(--bs-body-font-weight);
  }
  
  .btn-lg {
      font-size: 1.1rem;
      padding: .65rem 1.75rem;
  }
  
  .btn-light {
      background-color: var(--bs-light);
      border-color: var(--bs-light);
      color: var(--bs-dark);
  }
  
  .btn-dark{
      background-color: var(--bs-dark);
      border-color: var(--bs-dark);
      color: var(--bs-light);
  }
  
  .visible-xs {
    display: none;
  }
  
  .form-control {
      border: 1px solid #d3d3d3;
      border-radius: 30px;
      color: #404040;
      display: block;
      font-size: 0.875rem;
      padding: .5rem .875rem;
      margin-right: 8px;
  }
  
  /*=====================
  NAVBAR
  ======================*/
  
#header .navbar {
    background-color: var(--bs-dark);
    padding: 0.75rem 0;
}

.nav.navbar-nav {
   border-right: 1px solid #efefef4d;
   margin-right: 5px;
}
  
  .logo a {
      text-decoration: none;
      color: var(--bs-dark);
      width: 100%;
      display: block;
  }
  
  .logo img {
     width: 175px;
  }
  
  #auxMenu .icon {
      color: var(--bs-secondary);
      margin-right: 0.5rem;
  }
  
  #auxMenu .nav-link:hover, #auxMenu .nav-link:focus {
      color: var(--bs-primary);
      opacity: 1;
  }
  
  .dropdown-item.active, .dropdown-item:active {
      color: #fff;
      text-decoration: none;
      background-color: var(--bs-secondary);
  }
  
  /*=====================
  HERO SECTION
  ======================*/
  
  .overlay.bg-primary::before {
     display: none;
  }
  
  #splashImage .boxes .record {
      border-right: none;
  }
  
  #splashImage .boxes .record:hover {
      transform: none;
      z-index: 1;
  }
  
  #splashImage .boxes .record:hover .overlay {
      background: var(--bs-secondary) !important;
      transition: all 0.35s ease-in-out;
  }
  
  #splashImage .boxes .record:hover :is(h2, p) {
     color: #fdfdfd;
  }
  
  #splashImage .boxes .btn:before {
      content: "";
      background-color: var(--bs-primary);
      border-radius: var(--bs-border-radius);
      top: 0;
      z-index: -1;
      left: 0;
      right: 0;
      transform-origin: 50% 50%;
      transition: transform 0.4s ease-in-out, background-color 0.5s ease;
  }
  
  #splashImage .carousel-item {
     min-height: 465px;
  }
  
  .carousel-control-prev, .carousel-control-next {
      width: 5%;
  }
  
  #splashImage .boxes .record:hover .btn, #splashImage .boxes .record:focus .btn {
      background-color: transparent;
      border-color: transparent;
      color: #FFF;
  }
  
  #splashImage .boxes .record:hover .btn:before, #splashImage .boxes .record:focus .btn:before {
      transform: scale(1);
  }
  
  .boxes .record :is(h2, p) {
      color: #fff;
      text-decoration: none;
  }
  
  .boxes .record a {
      text-decoration: none;
  }
  
  .boxes {
     margin-top: -100px;
  }
  
  #splashImage .teaserText {
      text-align: left;
      margin-top: 3rem;
  }
  
  /*=============
  CTA
  =============*/
  
  #cta .container {
      padding-top: 3rem;
      padding-bottom: 2rem;
      position: relative;
  }

  /*=============
  INDEX
  =============*/

#homepageContent h1 {
   margin-bottom: 1.5rem;
}

#homepageContent h2 {
   margin-bottom: 2rem;
}

#homepageContent p {
   font-size: 18px;
   line-height: 1.75;
}

#homepageContent h2>span {
    border-bottom: 4px solid #0636b2;
    border-radius: 4px;
}

  
  /*=============
  SERVICES
  =============*/
  
  .card.transformer .icon {
      background: var(--bs-secondary);
      border-radius: 50px;
      width: 85px;
      height: 85px;
      padding: 17px 16px 17px 19px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .transformer h4>a {
      text-decoration: none;
  }
  
  /*==============
  INNER PAGES
  =============*/
  
  #pageContent {
      color: var(--bs-gray);
      flex-basis: 75%;
  }
  
  #sidePanel::before {
      background-color: #f6f6f6;
  }
  
  /*==============
  TESTIMONIALS
  =============*/
  
  
  /*==============
  FOOTER
  =============*/
  
  #footer .nav-link {
      color: #ffffff;
  }
  
  #footer {
      background-color: var(--bs-primary);
  }
  
  .nav-link {
      color: var(--bs-primary);
  }

.link-primary {
    color: var(--bs-secondary);
}

 @media (max-width: 1024px) {

#splashImage .carousel-item {
    min-height: 310px;
}

.teaserText h1 {
    font-size: 36px;
}

.logo img {
    width: 125px;
}
}

  
  @media (max-width: 799px) {

#splashImage img {
    max-width: none;
    width: auto !important;
}

}

  @media (max-width: 767px) {

#splashImage .carousel-item {
    min-height: 375px;
}

.boxes {
    margin-top: -140px;
}


}
  
  
  @media (max-width: 580px) {
  
  .navContainer img {
      display: none;
  }

#auxMenu .nav-link {
    padding: 0.25rem 0;
    color: #262626;
}

#pageContent p>img {
    float: none !important;
    display: block;
    margin: 0.5rem auto !important;
    max-width: 100%;
    width: 275px;
}

#homepageContent h1 {
    font-size: 1.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

#homepageContent h2 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

#auxMenu .nav-item {
    font-size: calc(.75rem + 0.32vw);
    margin: 0.25rem 0;
}

#header .logo {
    padding-left: 0;
    text-align: center;
}

.logo img {
    width: 125px;
}

#auxMenu {
    margin-top: -6px;
    justify-content: center;
}

#splashImage .carousel-item {
    min-height: 375px;
}

#splashImage img {
    max-width: none;
    width: 240%!important;
}

#splashImage .image {
   max-height: 375px;
}
  
  #header .navContainer {
      position: relative;
  }
  
  .visible-xs {
     display: block;
     width: 65px;
  }
  
  }