﻿@charset "UTF-8";
/* ------------------------------------------------- */
/* Table of Contents                                 */
/* ------------------------------------------------- */
/* 01. SCSS Variables                                */
/* 02. SCSS Mixins                                   */
/* 03. General Styles                                */
/* 04. Progress Bar Styles                           */
/* 05. Footer Styles                                 */
/* 06. Main Content Styles                           */
/* 07. Button Styles                                 */
/* 08. Top Link Styles                               */
/* 09. Navigation Styles                             */
/* 10. Accordion Styles                              */
/* 11. Form Styles                                   */
/* 12. Media Query Styles                            */
/* ------------------------------------------------- */
/* 01. SCSS Variables */
/* End SCSS Variables */
/* 02. SCSS Mixins */
/* End SCSS Mixins */
/* 03. General Styles */
html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 16px !important; 
  overflow-x: hidden;
}

* {
  box-sizing: border-box !important;
}

p {
  margin: 0;
  padding: 0px;
}

input,
select,
textarea {
  /*max-width: 280px;*/
}

input:focus, a:focus, textarea {
  outline: none !important;
}

sup {
  font-size: 42% !important; /* Used for superscript sizing */
  line-height: 0 !important; /* Fix the superscript line-height issue */
  position: relative !important;
  vertical-align: baseline !important;
  top: -1.2em !important;
}

sup.title-text, sup.quote-text {
  font-size: 100% !important; /* Used for superscript sizing */
  top: 0em !important;
}

a {
  color: #436a9f;
  text-decoration: none;
}

a:hover {
  color: #315585;
  text-decoration: none;
}

a:hover sup {
  text-decoration: none;
}

a.inactive-link {
  color: #1b1a20;
  pointer-events: none;
  cursor: default;
}

.anchor {
  display: block;
  height: 80px; /*same height as header*/
  margin-top: -80px; /*same height as header*/
  visibility: hidden;
}

.no-wrap {
  white-space: nowrap;
}

.has-hover {
  display: block;
}

.no-hover {
  display: none;
}

.has-navbar-toggler {
  display: block;
}

.no-navbar-toggler {
  display: none;
}

.highlighted-text-on-dark-bg {
  color: #c7eb75;
}

.i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  font-style: italic;
}

.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe {
  margin: 10px auto 22px;
  width: 320px;
  height: 190px;
  border: #ffffff 10px solid;
  background-color: #257d9d;
}

.error-content {
  padding: 0px;
  padding-top: 24px;
  margin: 0px 12px 0px -12px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.error-text {
  color: #dc3545;
}
.font-white{
    color: #ffffff !important;
}
.boxShadow {
    border-radius: 4px;
    /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
/* End General Styles */
/* 04. Progress Bar Styles */
.progress-container {
  position: fixed;
  width: 100%;
  height: 2px;
  background-color: #a9abad;
  z-index: 1031;
}

.progress-bar {
  width: 0%;
  height: 2px;
  background-color: #ef4137;
}

/* End Progress Bar Styles */
/* 05. Footer Styles */
.content-footer {
  flex-shrink: 0; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
  /*border-top: 12px solid #babac4;*/
  padding: 29px 23px 24px;
  background: #e3e3e6;
  color: #1b1a20;
}

.content-footer .footer-text {
  padding-top: 10px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
}

.content-footer .address-and-social-container {
  /*padding-left: 16px;
  padding-right: 16px;*/
  font-size: 0; /* Removing space caused by carriage return/line feed in html */
  width: unset;
}

.content-footer .footer-logo {
  padding: 16px 8px 0px;
}

.content-footer .logos-container {
  padding: 8px 0px 0px;
}

.content-footer .social-buttons {
  padding: 9px 0px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-footer .social-buttons a {
  margin: 0px 8px 0px 0px;
  height: 34px;
  width: 34px;
  display: block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #ef4137;
}

.content-footer .social-buttons a.facebook {
  background: #ef4137 url(../images/Social-Facebook-Icon-@2x.png) no-repeat top left;
  background: #ef4137 url(../images/Social-Facebook-Icon.svg) no-repeat top left;
  background-size: 34px 68px;
}

.content-footer .social-buttons a.twitter {
  background: #ef4137 url(../images/Social-X-Icon-@2x.png) no-repeat top left;
  background: #ef4137 url(../images/Social-X-Icon.svg) no-repeat top left;
  background-size: 34px 68px;
}

.content-footer .social-buttons a:hover {
  background-color: #e92d22;
  background-position: 0px -34px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.content-footer a {
  color: #c7190f;
  text-decoration: none;
}

.content-footer a:hover {
  color: #930800;
}

.content-footer a.nav-link {
  padding-top: 0px;
}

.copyright-and-links-content {
  padding-top: 27px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  color: rgba(27, 26, 32, 0.7);
  text-align: center;
}

/* End Footer Styles */
/* 06. Main Content Styles */
.banner-home {
    width: 100%;
    height: 320px;
    background: url(../images/Coologics-Home-Background-Marker-Only-@2x.png) left bottom no-repeat, url(../images/Coologics-Home-Background-@2x.jpg) no-repeat;
    background-size: 276px, cover;
}

.banner-home .banner-inside {
    padding: 130px 45px 0px 205px;
    /*padding: 85px 45px 0px 253px;*/
    float: right;
    width: 480px;
    height: 320px;
    background: url(../images/Bg-Home-Slogan-Shad-@2x.png) top right no-repeat;
    background-size: 480px 400px;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: left;
}

.banner-map {
  width: 100%;
  height: 320px;
  background-color: #e5e3df;
}

.banner-services {
    width: 100%;
    height: 320px;
    background: url(../images/Coologics-Services-@2x.jpg) no-repeat;
    background-size: cover;
}

.banner-products {
    width: 100%;
    height: 320px;
    background: url(../images/Coologics-Products-@2x.jpg) no-repeat;
    background-size: cover;
}

.banner-services .banner-inside, .banner-products .banner-inside {
  height: 320px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: left;
}

.map-content {
  width: 100%;
  /*height: 100%;*/
  height: 320px;
  border: none;
  overflow: auto;
}

.home-about-section {
    color: #ffffff;
    /*background: #061623 url(../images/Bg-Home-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;*/
    background: #012848 url(../images/Bg-Home-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;
    background-size: 624px 768px;
    border-top: #9f9fa3 2px solid;
}

.home-quotes-section {
    flex: 1;
    /*background: #fde4e3 url(../images/Home-Quote-Open-@2x.png) top 0px left 40px no-repeat;*/
    background: #d8d8d8 url(../images/Home-Quote-Open-@2x.png) top 0px left 40px no-repeat;
    background-size: 264px 200px;
}

.home-quotes-section .main-content p {
  color: #111014;
}

.home-quotes-section .title-content .title-container h1 {
  padding-top: 30px !important;
  box-sizing: border-box !important;
  /*color: #ef4137;*/
  color: #333333;
  font-size: 28px !important;
}

.services-links-section {
  background-color: #ef4137;
  display: none;
}

.products-links-section {
  background-color: #ef4137;
  display: none;
}

.services-links-section .container.body-content, .products-links-section .container.body-content {
  padding-bottom: 0px;
}

.services-links-section .links-container, .products-links-section .links-container {
  padding: 8px 0px 13px;
}

.services-links-section .links-container .i-styled, .products-links-section .links-container .i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  font-style: italic;
}

.services-links-section .links-container a, .products-links-section .links-container a {
  padding: 3px 8px 0px;
  color: #ffffff;
}

.services-links-section .links-container a:hover, .products-links-section .links-container a:hover {
  color: #ffd9da;
}

.services-overview-section {
    /*background: #111920 url(../images/Bg-Services-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;*/
    background: #012848 url(../images/Bg-Services-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;
    background-size: 464px 544px;
    border-top: #586a7a 20px solid;
}

.products-technology-section {
 /* background-color: #c5d2ed;*/
  background-color: #658eb0;
  color: #ffffff;
}

.products-overview-section {
    /*background: #020a11 url(../images/Bg-Products-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;*/
    background: #012848 url(../images/Bg-Products-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;
    background-size: 336px 400px;
    border-top: #69666b 20px solid;
}

.services-overview-section .main-content p, .products-overview-section .main-content p {
  color: #ffffff;
}

.services-overview-section .title-content .title-container h1 {
  /*color: #ef4137;*/
}

.products-overview-section .title-content .title-container h1 {
  /*color: #ef4137;*/
}

.services-section-1, .services-section-2, .services-section-3 {
  flex: 1;
  background-color: #ebecee;
  /*border-bottom: rgba(158, 158, 158, 0.5) 1px solid;*/
}

.services-section-2 {
  background-color: #f5f5f6;
}

.services-section-3 {
  background-color: #ffffff;
}

.products-section-1, .products-section-2, .products-section-3 {
  flex: 1;
  background-color: #ebecee;
  /*border-bottom: rgba(158, 158, 158, 0.5) 1px solid;*/
}

.products-section-2 {
  background-color: #f5f5f6;
}

.products-section-3 {
  background-color: #ffffff;
}

.services-section-1 .main-content p, .services-section-2 .main-content p, .services-section-3 .main-content p {
  color: #111014;
}

.services-section-1 .title-content .title-container h2, .services-section-2 .title-content .title-container h2, .services-section-3 .title-content .title-container h2 {
  color: #111014;
}

.services-section-1 .main-content ul, .services-section-1 .main-content ol, .services-section-2 .main-content ul, .services-section-2 .main-content ol, .services-section-3 .main-content ul, .services-section-3 .main-content ol {
  color: #111014;
}

.products-section-1 .main-content p, .products-section-2 .main-content p, .products-section-3 .main-content p {
  color: #111014;
}

.products-section-1 .title-content .title-container h2, .products-section-2 .title-content .title-container h2, .products-section-3 .title-content .title-container h2 {
  color: #111014;
}

.products-section-1 .main-content ul, .products-section-1 .main-content ol, .products-section-2 .main-content ul, .products-section-2 .main-content ol, .products-section-3 .main-content ul, .products-section-3 .main-content ol {
  color: #111014;
}

.services-category, .product-category {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.services-category img, .product-category img {
  margin: 0px 8px;
  width: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  /*border: #ef4137 4px solid !important;*/
  border: #ffffff 4px solid;
  box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
}

.services-category .category-text, .product-category .category-text {
  padding: 7px 0px 22px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.content-container {
  background-color: #ffffff;
  color: #1b1a20;
  text-align: center;
}

.content-container form {
  display: flex;
  flex-direction: column;
  height: 100vh; /* Avoid the IE 10-11 min-height bug. */
  min-width: 368px;
}

.spacer-above-content {
  margin-top: 88px;
}

.container-fluid.min-width {
  padding: 0px;
  min-width: 300px;
  border-top: #ffffff 2px solid;
}

.container-fluid.min-width .navbar-brand {
  margin: 0px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.container-fluid.min-width .navbar-brand, .container-fluid.min-width .navbar-toggler {
  padding: 0px 8px;
}

.container-fluid.body-content {
  display: flex;
  /*flex: 1 0 auto;*/ /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
  padding: 0px;
  flex: 1;
}

.container.body-content {
  flex: 1 0 auto; /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
  padding-bottom: 16px;
}

.content-footer .container.body-content {
  padding-bottom: 3px;
}

.title-content.row {
  text-align: center;
 /* margin-top: 26px;*/
}

.title-content.row.px-3 {
  margin-right: -16px;
  margin-left: -16px;
}

.title-content.row.contains-search {
  margin-top: 18px;
}

.title-content .title-container h1 {
  padding-top: 20px;
  box-sizing: border-box;
  padding-bottom: 2px;
  /*color: #ef4137;*/
  color: #bababa;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  /*white-space: nowrap;*/
}

.title-content .title-container h2, .title-content .title-container .divider {
  padding-bottom: 2px;
  color: #ef4137;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
}

.title-content .title-container h2 {
  padding-top: 6px;
}

.title-content .title-container h2 .i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
  font-style: italic;
}

.title-content .secondary-title-content {
  padding-left: 20px;
  margin-top: 7px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.title-content .secondary-title-content a {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.title-content .divider {
  margin: 0px 8px 8px 8px;
  color: #c4c4ce;
}

.title-content .links-container {
  padding-right: 3px;
  margin-bottom: 13px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.title-content .links-container a {
  margin-left: 12px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #1b1a20;
}

.title-content .links-container a:first-child {
  margin-left: 0px;
}

.title-content .links-container a:hover {
  text-decoration: none;
  color: #ef4137;
}

.title-content .links-container a i.fas {
  /* Add padding between nav text and icon */
  padding-left: 1px;
}

.title-content .links-container .link-content {
  display: none;
}

.title-content .links-italic-container {
  padding-right: 3px;
  margin-bottom: 13px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.subtitle-container h2 {
  padding-bottom: 9px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
}

.subtitle-container.below-content {
  padding-top: 28px;
  margin: 0px;
}

.subtitle-container h3 {
  padding-bottom: 2px;
  color: #ef4137;
  text-align: center;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
}

.subtitle-container h3 .i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
  font-style: italic;
}


/* Chrome, Safari, Opera */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Standard syntax */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content-title {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.1em;
}

.content-text {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
}

.content-link-sm {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}

.below-title {
  padding-top: 16px;
}

.below-content {
  padding-top: 22px;
}

.bottom-spacing {
  height: 10px;
}

.bottom-spacing-form {
  height: 28px;
}

.main-content {
  text-align: left;
  margin-top: 12px;
  padding: 0px 0px 24px 0px;
}

.main-content.quote {
  text-align: center;
  padding-bottom: 22px;
}

.main-content p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400 !important;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
}

.main-content.quote p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #565656;
}

.main-content.quote p.person-quoted {
  padding-top: 20px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  font-style: italic;
}

.main-content p .i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  font-style: italic;
}

.main-content.quote p .i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  font-style: italic;
}

.main-content p.content-below-title {
  padding-top: 0px;
  text-align: left;
}

.main-content p.content-below-image {
  padding-top: 23px;
  text-align: left;
}

.main-content p.content-below-image strong {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.main-content .image-aligned-right {
  padding: 4px 0px 36px 0px;
  width: 100%;
  float: unset;
}

.main-content ul, .main-content ol {
  margin-bottom: 0px;
  text-align: left;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
}

.main-content ul li:first-child, .main-content ol li:first-child {
  margin-top: 0px;
}

.main-content ul li, .main-content ol li {
  padding-left: 0px;
  margin-top: 4px;
}

.main-content ul li::marker, .main-content ol li::marker {
  color: #ef4137;
}

.main-content h5 {
  padding-bottom: 9px;
  color: #ef4137;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0px;
}

.section-panel {
  display: none;
}

.phone-link {
  display: none;
}

.zoom {
  display: inline-block;
  position: relative;
}

.zoom:after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 16px;
    right: 16px;
    background: url(../images/Maximize-Icon-@2x.png);
    background-color: #fff;
    border-radius: 50%;
    background-size: 36px 36px;
    pointer-events: none;
}

.zoom img {
  display: block;
}

.zoom img::selection {
  background-color: transparent;
}

.zoom img:hover {
    cursor: url(../images/grab.cur), default;
}

.zoom img:active {
    cursor: url(../images/grabbed.cur), default;
}

/*.slogan-line-1-gs {
  opacity: 0;
}

.section-title-1-gs, .section-title-2-gs, .section-title-3-gs {
  opacity: 0;
}

.section-subtitle-1-gs {
  opacity: 0;
}

.section-accordion-1-gs {
  opacity: 0;
}

.section-text-1-gs, .section-text-2-gs, .section-text-3-gs {
  opacity: 0;
}

.section-image-1-gs, .section-image-2-gs, .section-image-3-gs {
  opacity: 0;
}

.section-title-below-accordion-1-gs, .section-title-below-accordion-2-gs, .section-title-below-accordion-3-gs {
  opacity: 0.15;
}

.section-text-below-accordion-1-gs, .section-text-below-accordion-2-gs, .section-text-below-accordion-3-gs {
  opacity: 0.15;
}

.section-image-below-accordion-1-gs, .section-image-below-accordion-2-gs, .section-image-below-accordion-3-gs {
  opacity: 0.15;
}*/

/* End Main Content Styles */
/* 07. Button Styles */
.btn.btn-primary {
  padding-left: 32px;
  padding-right: 32px;
  background-color: #ef4137;
  border: #ef4137 1px solid;
  border-radius: 4px !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: none;
}

.btn.btn-primary:hover, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  background-color: #ffffff;
  border-color: #ef4137;
  color: #ef4137;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn.btn-primary:disabled {
  background-color: #ef4137;
  border-color: #ef4137;
  color: #ffffff;
}

.btn.btn-primary.aspNetDisabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

/* End Button Styles */
/* 08. Top Link Styles */
.top-link-button {
  display: none;
  border: none !important;
  /*padding-top: 6px;*/
  position: fixed;
  bottom: 18px;
  left: 0px;
  width: 38px;
  height: 38px;
  z-index: 99;
  color: #ffffff;
  background-color: #ef4137;
  border-radius: 4px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.top-link-button i::before, .top-link-button i.bi.bi-arrow-up {
  padding: 0px;
  margin: 11px 0px 0px;
  width: 16px;
  height: 14px;
}

.top-link-button i.bi.bi-arrow-up {
  margin-top: 0px;
}

.top-link-button:hover {
  color: #ffffff;
  background-color: #e92d22;
}

/* End Top Link Styles */
/* 09. Navigation Styles */
.logoImg {
    width: 293px;
    height: 86px;
}
.navbar {
  margin-top: 0; }

.navbar a.nav-link {
  padding: 8px 0px !important; }

.navbar a.nav-link.left {
  position: relative; }

.navbar a.nav-link.left:before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  bottom: 0px;
  left: 8px;
  /*background-color: $nav-link-color;*/
  /*background-color: #9f9fa3;*/
  background-color: #ee3438;
  visibility: hidden;
  transition: all 0.3s ease-in-out; }

.navbar a.nav-link.left:hover:before {
  visibility: hidden;
  width: calc(100% - 16px); }

.navbar .navbar-nav.navbar-center {
  margin-left: auto;
  margin-right: auto; }

.navbar .navbar-nav a.search {
  background: url(../images/Search-Icon-@2x.png) no-repeat top left;
  background-size: 20px 40px;
  height: 20px;
  width: 20px;
  display: block; }

.navbar .navbar-nav a.cart-icon {
  margin-left: 14px;
  background: url(../images/Cart-Icon-@2x.png) no-repeat top left;
  background-size: 20px 40px;
  height: 20px;
  width: 20px;
  display: block; }

.navbar .navbar-nav a:hover, .navbar .navbar-nav a.cart-icon.hover {
  background-position: 0px -20px;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s; }

.navbar .navbar-nav a.cart-icon.not-active {
  pointer-events: none;
  cursor: default; }

.navbar button.navbar-toggler {
  padding: 0px;
  border: none; }

.navbar button.navbar-toggler:focus {
  outline: none; }

.navbar button.navbar-toggler {
  width: 16px;
  height: 14px;
  position: relative;
  margin: 0px 8px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer; }

.navbar button.navbar-toggler span {
  display: block;
  position: absolute;
  height: 1px;
  width: 16px;
  background: #ee3438;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

.navbar button.navbar-toggler:hover span {
  background: #393946; }

.navbar button.navbar-toggler span:nth-child(1) {
  top: 0px; }

.navbar button.navbar-toggler span:nth-child(2) {
  top: 5px; }

.navbar button.navbar-toggler span:nth-child(3) {
  top: 10px; }

.navbar button.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg); }

.navbar button.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -16px; }

.navbar button.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 5px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.navbar.navbar-menu {
  padding: 0px;
  box-shadow: none; }

.navbar.navbar-menu.bg-light {
  background-color: #ffffff !important;
  /*background-color: rgba(255, 255, 255, 0.97) !important;*/ }

.navbar.navbar-menu .navbar-top-only {
  box-shadow: none;
  z-index: 1; }

.navbar.navbar-menu .navbar-top-only.has-shadow {
  box-shadow: 0 0 6px rgba(128, 128, 128, 0.8); }

.navbar.navbar-menu:before, .navbar.navbar-menu .navbar-collapse:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 0px;
  width: auto;
  border-top: none; }

.navbar.navbar-menu .navbar-collapse {
  padding: 0px;
  background-color: #ee3438;
  max-height: calc(100vh - $header-height);
  min-width: 368px;
  overflow-y: auto;
  height: auto !important;
  position: fixed;
  width: 100%;
  top: 88px;
  left: 100%;
  z-index: 0; }

.navbar.navbar-menu .navbar-collapse.collapsing {
  transition: left 550ms ease-out; }

.navbar.navbar-menu .navbar-collapse.open {
  left: 0; }

.navbar.navbar-menu .navbar-collapse.close {
  left: 100%; }

.navbar.navbar-menu .navbar-collapse:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  height: 1px;
  width: calc(100% - 32px);
  border-top: none; }

.navbar.navbar-menu a.nav-link {
  padding: 8px 8px 7px !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #ffffff;
  color: rgba(255, 255, 255, 0.94);
  vertical-align: top;
  white-space: nowrap; }

.navbar.navbar-menu a.nav-link:hover {
  color: #ffffff; }

.navbar.navbar-menu a.nav-link:active, .navbar.navbar-menu a.nav-link:visited, .navbar.navbar-menu a.nav-link:focus {
  color: #ffffff; }

.navbar.navbar-menu a.nav-link.dropdown-toggle {
  color: #ffffff;
  color: rgba(255, 255, 255, 0.94); }

.navbar.navbar-menu a.nav-link.dropdown-toggle:hover {
  color: #ffffff; }

.navbar.navbar-menu a.nav-link.dropdown-toggle::after {
  color: #efa9ac; }

.navbar.navbar-menu a.dropdown-item .i-styled {
  font-family: "minion-pro", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  font-style: italic; }

.navbar.navbar-menu a.dropdown-item.dropdown-toggle::after {
  color: #9f9fa3; }

.navbar.navbar-menu a.nav-link i.fa, .navbar.navbar-menu a.nav-link i.fas {
  /* Add padding to space between nav text and icon */
  padding-left: 5px; }

.navbar.navbar-menu .dropdown-menu {
  padding: 0px;
  margin: 0px;
  background-color: #f5f5f6;
  background-clip: unset;
  border: none;
  border-bottom: none;
  border-radius: unset;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  text-align: center; }

.navbar.navbar-menu .dropdown-menu .dropdown-menu {
  background-color: #ffffff;
  border-top: #babac4 1px solid;
  border-bottom: #babac4 1px solid; }

.navbar.navbar-menu .dropdown-menu li a, .navbar.navbar-menu .dropdown-menu li a:link {
  padding: 3px 0px;
  margin: 0px;
  color: #1b1a20; }

.navbar.navbar-menu .dropdown-menu li a:hover {
  color: #ee3438;
  background-color: transparent; }

.navbar.navbar-menu .dropdown-menu li:first-child a {
  padding-top: 5px; }

.navbar.navbar-menu .dropdown-menu li:last-child a {
  padding-bottom: 5px; }

.navbar.navbar-menu .dropdown-menu li .dropdown-menu.submenu {
  margin-bottom: 2px; }

.navbar.navbar-menu .dropdown-menu li:last-child .dropdown-menu.submenu {
  margin-bottom: 0px; }

.navbar.navbar-menu .dropdown-menu .dropdown-menu li a {
  padding-top: 3px;
  padding-bottom: 3px; }

.navbar.navbar-menu .dropdown-menu li.dropdown:last-child {
  padding-bottom: 2px; }

.navbar.navbar-menu .dropdown-menu li.dropdown:last-child a {
  padding-bottom: 3px; }

.navbar.navbar-menu .dropdown-menu .dropdown-menu li:first-child a {
  padding-top: 5px; }

.navbar.navbar-menu .dropdown-menu .dropdown-menu li:last-child a {
  padding-bottom: 5px; }

.navbar.navbar-menu .dropdown-menu .dropdown-divider {
  margin: 2px 0px;
  border-top: 1px solid #a2a2ac; }

/* End Navigation Styles */
/* 10. Accordion Styles */
.accordion {
  padding-top: 6px;
}

.accordion .card {
  border: none;
  border-radius: 0px;
}

.accordion .collapsing {
  transition: height 0.35s ease-out;
}

.accordion .collapse.last-section.show {
  border-bottom: #ef4137 1px solid;
}

.accordion .card-body {
  padding: 21px 25px 23px;
}

.accordion .card-header {
  padding: 0;
  border: none;
}

.accordion .card-header a {
  display: block;
  padding: 11px 13px 11px 15px;
  color: #ffffff;
  background-color: #ef4137;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
}

.products-section-1 .accordion .card-header a {
    background: #ef4137 url(../images/Accordion-Section-1-Top-Right-Cutout-@2x.png) no-repeat top right;
    background-size: 16px 16px;
    border-top: 2px solid #ebecee;
}

.products-section-2 .accordion .card-header a {
    background: #ef4137 url(../images/Accordion-Section-2-Top-Right-Cutout-@2x.png) no-repeat top right;
    background-size: 16px 16px;
    border-top: 2px solid #f5f5f6;
}

.products-section-3 .accordion .card-header a {
    background: #ef4137 url(../images/Accordion-Section-3-Top-Right-Cutout-@2x.png) no-repeat top right;
    background-size: 16px 16px;
    border-top: 2px solid #ffffff;
}

.accordion .card-header a:hover {
  background-color: #f03126;
}

.accordion .card-header a .fa-chevron-circle-down {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.accordion .card-header a[aria-expanded=true] {
  pointer-events: none;
}

.accordion .card-header a[aria-expanded=true] .fa-chevron-circle-down {
  transform: rotate(180deg);
}

.accordion p .i-styled {
    font-family: "minion-pro", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    font-style: italic;
}

.accordion .below-content {
  padding-top: 18px;
}

.accordion .image-256, .accordion .image-360, .accordion .image-768 {
  padding: 4px 0px 20px 0px;
  margin: 0 auto;
  width: 100%;
  max-width: 256px;
  float: unset;
  text-align: center;
}

.accordion .image-360 {
  max-width: 360px;
}

.accordion .image-768 {
  padding: 27px 0px 2px 0px;
  max-width: 758px;
}

.accordion figcaption {
  padding-top: 4px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: left;
}

/* End Accordion Styles */
/* 11. Form Styles */
.demo-form-section {
    flex: 1;
    background: #043652 url(../images/Bg-Request-Demo-Coologics-Icon-@2x.png) top 0px right 0px no-repeat;
    background-size: 624px 768px;
}

.demo-form-section a {
  color: #99cbf0;
  text-decoration: none;
}

.demo-form-section a:hover {
  color: #ffffff;
  text-decoration: none;
}

.demo-form-section .error-text {
  color: #f3b2b3;
}

.demo-form-section .rc-container .rcRefreshImage {
  padding-bottom: 16px;
}

.demo-form-section .rcInvalid.rc-container span {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12.8px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #f3b2b3;
}

.demo-form-section .subtitle-container h2 {
  color: #aed35a;
}

.demo-form-section .main-content p {
  color: #ffffff;
}

.demo-form-section .title-content .title-container h1 {
  color: #f3b2b3;
}

.demo-form-section .form-container .invalid-feedback {
  color: #f3b2b3;
}

.request-demo-container {
  padding-top: 2px;
}

.request-demo-container.row.px-3 {
  margin-right: -16px;
  margin-left: -16px;
}

.support-info {
  margin-top: 6px;
  /*padding: 0px 5px;*/
  padding: 0px;
  width: 100%;
  border-radius: 8px;
}

.support-info h2 {
  margin-top: 0px;
  padding: 0px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #aed35a;
  text-align: left;
}

.support-content {
  padding: 13px 0px 0px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: left;
}

.request-demo-form {
  width: 100%;
  text-align: left;
}

.request-demo-form .checkout-panel {
  display: none;
}

.request-demo-section {
  padding: 24px 0px 28px 0px;
}

.request-demo-section p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #ffffff;
}

.request-demo-section p.above-button {
  padding-bottom: 24px;
  margin: 0px 0px 0px -12px;
  width: calc(100% + 24px);
}

.request-demo-section em {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.request-demo-section strong {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.request-demo-section .form-submit-button {
  margin-top: 8px;
}

.request-demo-section .form-submit-button .col-md-12.mb-0 {
  /*padding: 0px 5px;*/
  padding: 0px;
}

.form-container label {
  margin-bottom: 8px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #ffffff;
}

.form-container .form-check-container label {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #ffffff;
}

.form-container label .instructions {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.form-container input, .form-container select, .form-container textarea {
  padding: 8px 10px 10px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  border-radius: 0px;
  /*border: $input-border-color 1px solid;*/
  border: none;
  background-color: #e3e3ed;
}

.form-container .form-check-container label {
  padding-left: 10px;
}

.form-container textarea {
  padding-top: 8px;
}

.form-container input:focus, .form-container select:focus, .form-container textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(186, 186, 196, 0.25);
  /*border: $input-border-color 1px solid;*/
  border: none;
  background-color: #ffffff;
}

input[type=checkbox] {
  position: relative;
  cursor: pointer;
}

input[type=file],
input[type=file]::-webkit-file-upload-button { /* chromes and blink button */
  cursor: pointer;
}

input[type=checkbox]:focus {
  box-shadow: none;
}

input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  border: #babac4 1px solid;
  border-radius: 0px;
  background-color: #ffffff;
}

input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid #ef4137;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 6px;
  outline: none;
}

.form-container .form-check {
  padding-bottom: 8px;
}

.form-container .form-check-container .form-check:last-child {
  padding-bottom: 0px;
}

.form-container .form-check-container .i-style-first-letter label::first-letter {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  font-style: italic;
}

.form-container .form-check-container .include-reg-symbol label::after {
  content: "®";
  font-size: 58% !important; /* Used for superscript sizing */
  top: -0.5em !important;
  vertical-align: super;
}

.form-container .form-check-label {
  padding-left: 8px;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
}

.form-container .col-md-6.mb-3, .form-container .col-md-12.mb-3 {
  /*padding: 0px 5px;*/
  padding: 0px;
}

.form-container .col-md-12.mb-3 {
  margin: 0px 0px 12px !important;
}

.form-container .rad-captcha-container {
  margin-bottom: 4px !important;
}

.form-container .btn.btn-primary {
  margin: 8px 8px 24px;
}

/* Do not group these rules */
.form-container .form-row .form-control::-webkit-input-placeholder {
  color: rgba(27, 26, 32, 0.4);
}

/* FF 4-18 */
.form-container .form-row .form-control:-moz-placeholder {
  color: rgba(27, 26, 32, 0.4);
}

/* FF 19+  */
.form-container .form-row .form-control::-moz-placeholder {
  color: rgba(27, 26, 32, 0.4);
}

/* IE 10+ */
.form-container .form-row .form-control:-ms-input-placeholder {
  color: rgba(27, 26, 32, 0.4);
}

.form-container .parsley-feedback-text.text-danger {
  display: none;
}

/* End Form Styles */
/* 12. Media Query Styles */
/* Responsive: Mobile phones and smaller (col-sm) */
@media (max-width: 575px) {
  .container {
    max-width: calc(100% - 8px);
  }
}
/* Responsive: Smaller mobile phones and up (col-sm) */
/* Responsive: Larger mobile phones and up (col-sm) */
@media (min-width: 576px) {
  .embed-container iframe {
    margin: 2px auto 30px;
    width: 432px;
    height: 252px;
  }
  .container-fluid.min-width {
    min-width: 296px;
  }
  .content-footer .footer-text {
    /* (no longer left aligned since right aligned NFSA logos have been removed) */
    /*text-align: left;*/
  }
  .content-footer .footer-logo {
    padding: 10px 0px 0px 16px;
  }
  .content-footer .logos-container {
    padding: 2px 0px 0px 8px;
  }
  .content-footer .social-buttons {
    /* (no longer left aligned since right aligned NFSA logos have been removed) */
    /*align-items: initial;
    justify-content: normal;*/
  }
  .container-fluid.min-width .navbar-brand, .container-fluid.min-width .navbar-toggler {
    padding: 0px 15px;
  }
  .container-fluid.min-width .navbar-toggler {
    padding: 0px;
    margin: 0px 15px;
  }
  .main-content {
    padding-bottom: 32px;
  }
  .main-content.quote {
    padding-bottom: 30px;
  }
  .main-content p.content-below-image {
    padding-top: 31px;
  }
  .navbar.navbar-content-left-side.bg-light {
    padding-bottom: 46px;
  }
  .accordion .image-256, .accordion .image-360 {
    padding: 4px 0px 20px 32px;
    width: 66%;
    max-width: 288px;
    float: right;
  }
  .accordion .image-360 {
    max-width: 392px;
  }
    
}
@media (max-width: 431px){
    .banner-services .banner-inside, .banner-products .banner-inside, .banner-home .banner-inside {
        height: 220px !important;
    }
    .banner-home, .banner-map, .banner-services, .banner-products{
        height: 220px !important;
    }
    .banner-products, .banner-map, .banner-services {
        background-position-x: center;
    }
    .main-content .image-aligned-right{
        display: none !important;
    }
    .map-content {
        height: 220px;
    }
    .logoImg {
        width: 235px;
        /*height: 86px;*/
    }
    
}
/* Responsive: Used to toggle breaks on smaller screens */
@media (min-width: 608px) {
  .splash-footer .below-title br {
    display: block;
  }
}
/* Responsive: Portrait tablets and up (col-md) */
@media (min-width: 768px) {
  .navbar-expand-md {
    /*-ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;*/
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    position: fixed;
    top: 1px;
  }
  .has-navbar-toggler {
    display: none;
  }
  .no-navbar-toggler {
    display: block;
  }
  .embed-container iframe {
    margin: 2px auto 30px;
    width: 576px;
    height: 333px;
    border: #ffffff 10px solid;
  }
  .services-links-section {
    display: block;
  }
  .services-overview-section, .products-overview-section {
    border-top: none;
  }
  .products-links-section {
    display: block;
  }
  .form-container .col-md-6.mb-3.form-col-spacer-right {
    padding-right: 12px;
  }
  .form-container .col-md-6.mb-3.form-col-spacer-left {
    padding-left: 12px;
  }
  .navbar a.nav-link.left:hover:before {
    visibility: visible;
  }
  .navbar.navbar-menu:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    height: 1px;
    width: calc(100% - 32px);
  }
  .navbar.navbar-menu .navbar-top-only {
    z-index: 0;
  }
  .navbar.navbar-menu .navbar-collapse {
    padding: 0px 8px;
    background-color: transparent;
    max-height: unset;
    overflow-y: unset;
    z-index: 1;
  }
  .navbar.navbar-menu .navbar-collapse, .navbar.navbar-menu .navbar-collapse.open, .navbar.navbar-menu .navbar-collapse.close {
    left: unset;
  }
  .navbar.navbar-menu a.nav-link {
    margin-top: 0px;
    padding: 49px 8px 19px !important;
    color: #ef4137;
  }
  .navbar.navbar-menu a.nav-link:hover {
    color: #393946 !important;
    background-color: none;
  }
  .navbar.navbar-menu a.nav-link:active, .navbar.navbar-menu a.nav-link:visited, .navbar.navbar-menu a.nav-link:focus {
    color: #ef4137;
  }
  .navbar.navbar-menu a.nav-link.dropdown-toggle {
    color: #ef4137;
  }
  .navbar.navbar-menu a.nav-link.dropdown-toggle::after {
    color: #9f9fa3;
  }
  .navbar.navbar-menu a.dropdown-item.dropdown-toggle::after {
    color: #9f9fa3;
  }
  .navbar.navbar-menu .dropdown-menu {
    margin-left: -13px;
    min-width: 144px;
    text-align: left;
    border-bottom: #babac4 8px solid;
    border-bottom: rgba(186, 186, 196, 0.7) 8px solid;
    background-color: #f5f5f6;
    background-color: rgba(245, 245, 246, 0.95);
    max-height: calc(100vh - 88px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .navbar.navbar-menu .dropdown-menu.add-hover-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% + 24px);
    left: 0;
    top: 0;
    z-index: -1;
    /*border: red 1px solid;*/ /* for demo purposes */
  }
  .navbar.navbar-menu .dropdown-menu .dropdown-menu {
    margin-left: 0px;
    position: static;
    float: none;
  }
  .navbar.navbar-menu .dropdown-menu li a, .navbar.navbar-menu .dropdown-menu li a:link {
    padding: 3px 21px;
  }
  .navbar.navbar-menu .dropdown-menu li a:focus {
    background-color: transparent;
  }
  .navbar.navbar-menu .dropdown-menu li:first-child a {
    padding-top: 14px;
  }
  .navbar.navbar-menu .dropdown-menu li:last-child a {
    padding-bottom: 14px;
  }
  .navbar.navbar-menu .dropdown-menu li.dropdown:last-child {
    padding-bottom: 11px;
  }
  .navbar.navbar-menu .dropdown-menu li.dropdown:last-child a {
    padding-bottom: 3px;
  }
  .navbar.navbar-menu .dropdown-menu .dropdown-menu li a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .navbar.navbar-menu .dropdown-menu .dropdown-menu li:first-child a {
    padding-top: 8px;
  }
  .navbar.navbar-menu .dropdown-menu .dropdown-menu li:last-child a {
    padding-bottom: 8px;
  }
  .navbar.navbar-menu .dropdown-menu .dropdown-divider {
    margin: 0.5rem 0;
  }
}
/* Responsive: Laptops and up (col-lg) */
@media (min-width: 992px) {
  .anchor {
    height: 113px; /*same height as header*/
    margin-top: -113px; /*same height as header*/
  }
  .embed-container iframe {
    margin: 2px auto 30px;
    width: 720px;
    height: 414px;
    border: #ffffff 10px solid;
  }
  .error-content {
    padding: 10px 0px 19px;
  }
  .spacer-above-content {
    margin-top: 88px;
  }
  .container.body-content {
    padding-bottom: 22px;
  }
 /* .title-content.row {
    margin-top: 26px;
  }*/
  .title-content.row.contains-search {
    margin-top: 34px;
  }
  .main-content .image-aligned-right {
    padding: 4px 0px 64px 32px;
    width: 50%;
    float: right;
  }
  .bottom-spacing-form {
    height: 48px;
  }
  .request-demo-container {
    padding-top: 7px;
  }
  .support-info {
    /*margin-top: 6px;*/
    padding: 0px;
    width: 240px;
  }
  .support-info h2 {
    margin-top: -2px;
    padding: 0px 0px 0px 8px;
  }
  .support-content {
    padding: 13px 0px 0px 8px;
  }
  .request-demo-form {
    /*width: calc(100% - 240px);*/
  }
  .request-demo-section {
    padding: 3px 24px 36px 0px;
  }
  .request-demo-section p.above-button {
    padding-top: 7px;
  }
  .form-container .btn.btn-primary {
    margin: 8px 8px 38px;
  }
  .form-container .col-md-6.mb-3.form-col-spacer-right {
    padding-right: 16px;
  }
  .form-container .col-md-6.mb-3.form-col-spacer-left {
    padding-left: 16px;
  }
}
/* Responsive: Desktops and up (col-xl) */
@media (min-width: 1200px) {
  .embed-container iframe {
    margin: 2px auto 30px;
    width: 988px;
    height: 565px;
    border: #ffffff 10px solid;
  }
  .container.body-content {
    padding-bottom: 28px;
  }
  .title-content.row {
    /*margin-top: 26px;*/
  }
  .title-content.row.contains-search {
    margin-top: 34px;
  }
  .services-category img, .product-category img {
    width: 112px;
  }
}
/* Responsive: Input mechanism can hover over elements and Portrait tablets and up (col-md) */
/* No Hover Test: To test as a touch-based device, change hover: hover to hover: none */
@media (hover: hover) and (min-width: 768px) {
  .navbar.navbar-menu .dropdown.has-hover:hover > .dropdown-menu {
    /* Allows hover to show dropdown menu */
    display: block;
  }
  .navbar.navbar-menu .dropdown.has-hover > .dropdown-toggle:active {
    /* Allows hover to show dropdown menu - without this, clicking will make it sticky */
    pointer-events: auto;
  }
}
/* Input mechanism can't hover over elements, so show the .no-hover elements */
/* No Hover Test: To test as a touch-based device, change hover: none to hover: hover */
@media (hover: none) {
  .has-hover {
    display: none;
  }
  .no-hover {
    display: block;
  }
}
/* Responsive: Used for print only */
@media print {
  .no-print {
    display: none;
  }
}
/* End Media Query Styles */
