* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 400;
}
body.menu-open {
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
}
.header-video {
  position: relative;
  overflow: hidden;
}
.header-video iframe,
.header-video video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.header-video iframe {
  height: 100%;
  width: 100%;
}
.header-video video {
  width: 100%;
}
.header-video__teaser-video {
  width: 100%;
  height: auto; 
}
.header-video__media {
  width: 100%;
  height: auto;
}
.overlays{
    background-color: transparent;
    background-image:
      linear-gradient(rgba(255,255,255,.52) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.52) 1px, transparent 1px);
    background-size: 32px 32px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index:5;
}
.header-video__play-trigger {
  z-index: 5;
  position: absolute;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 1.5em 3em;
  z-index: 5;
  left: 50%;
  top: 50%;
  margin-top: -50px;
    filter: alpha(opacity=50); /* MSIE/PC */
	-moz-opacity: 0.5; /* Mozilla 1.6 and older */
	opacity: 0.5;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
}
.home-product-icons {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(28px, 5vw, 88px);
  padding: 0 24px 70px;
  pointer-events: none;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}
.home-page.menu-open .home-product-icons {
  position: fixed;
  top: clamp(90px, 12vh, 120px);
  right: 0;
  bottom: auto;
  left: 220px;
  height: clamp(260px, 36vh, 340px);
  z-index: 995;
  align-items: flex-end;
  padding: 0 24px 12px;
  transform: translateX(0);
}
.home-product-icon {
  position: relative;
  top: auto;
  bottom: auto;
  flex: 0 0 auto;
  width: clamp(190px, 18vw, 340px);
  color: white;
  text-align: center;
  text-decoration: none;
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--menu-icon-dx, 0px), calc(var(--banner-icon-shift) + var(--menu-icon-dy, 0px))) !important;
  transition: opacity .3s ease, transform .55s cubic-bezier(.22, .61, .36, 1);
}
.home-product-icon.icon-1,
.home-product-icon.icon-2,
.home-product-icon.icon-3 { left: auto; }
.home-product-icon > a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.home-product-icon__visual {
  display: block;
  width: 100%;
  aspect-ratio: 308 / 177;
  overflow: hidden;
}
.home-product-icon img,
.header-video.is-scrolled .home-product-icon img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: none !important;
  transform-origin: center bottom;
  transition: transform .28s ease, filter .28s ease;
}
.home-product-icon__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78%;
  min-height: clamp(42px, 4vw, 62px);
  margin: -3px auto 0;
  padding: 8px 14px;
  border: 3px solid #fff;
  border-radius: 12px;
  background: rgba(18,59,107,.88);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  font-size: clamp(15px, 1.6vw, 28px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.home-product-icon > a:hover .home-product-icon__visual img,
.home-product-icon > a:focus .home-product-icon__visual img {
  filter: brightness(1.08);
  transform: scale(1.045) !important;
}
.home-product-icon > a:hover .home-product-icon__label,
.home-product-icon > a:focus .home-product-icon__label {
  border-color: #fff;
  background: #669de5;
  box-shadow: 0 12px 28px rgba(0,0,0,.34);
  outline: none;
  transform: translateY(-2px);
}
.home-product-icon > a:focus-visible {
  outline: none;
}
.home-product-icon > a:focus-visible .home-product-icon__label {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.home-product-icons:hover .home-product-icon {
  opacity: .88;
}
.home-product-icons:hover .home-product-icon:hover,
.home-product-icons:hover .home-product-icon:focus-within,
.header-video__play-trigger:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .home-page .header-video__media,
  .home-page .header-video.is-scrolled .header-video__media {
    object-fit: cover;
    object-position: right center;
  }
}
@media (max-width: 767px) {
  .home-page .header-video {
    height: clamp(300px, 56.5vw, 560px);
    min-height: 300px;
  }
  .home-page .header-video__media,
  .home-page .header-video.is-scrolled .header-video__media {
    object-fit: cover;
    object-position: right center;
  }
  .home-product-icons {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(8px, 5vw, 36px);
    padding: 18px 8px 20px;
    transform: translateX(0);
  }
  .home-page.menu-open .home-product-icons {
    position: fixed;
    top: 18px;
    right: 12px;
    bottom: 18px;
    left: 158px;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    transform: translateX(0);
  }
  .home-page.menu-open .home-product-icon {
    width: min(150px, 48vw);
  }
  .home-product-icon {
    width: min(140px, calc((90vw - 16px) / 3));
  }
  .home-product-icon__label {
    width: 92%;
    min-height: 40px;
    margin-top: 0;
    padding: 6px 5px;
    border-width: 2px;
    border-radius: 8px;
    font-size: clamp(12px, 3.4vw, 15px);
  }
}
.header-video__close-trigger {
  z-index: 99;
  position: relative;
  display: block;
  background: #A61212;
  text-align: center;
  color: white;
  text-decoration: none;
  width: min(420px, calc(100% - 30px));
  margin: 12px auto;
  padding: 14px 24px;
  border-radius: 10px;
  -webkit-transition: background .3s;
  -moz-transition: background .3s;
  transition: background .3s;  
  border: none;
}
.header-video__close-trigger:hover {
  background: #363636;
  cursor: pointer;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 2em;
}
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#wrapper.toggled {
    padding-left: 220px;
}
#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(26,26,26,.5);
    border-radius: 0 34px 34px 0;
    box-shadow: 10px 0 28px rgba(0,0,0,.18);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease, background-color .25s ease;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}
#page-content-wrapper {
    width: 100%;
    padding-top: 70px;
}
#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}
.sidebar-nav {
    position: absolute;
    top: 0;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative; 
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 3px;
    background-color: #1c1c1c;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
.sidebar-nav li:first-child a {
    color: #fff;
    background-color: rgba(26,26,26,.5);
    transition: background-color .25s ease;
}
.sidebar-nav li:nth-child(2):before {
    background-color: #98D37F;   
}
.sidebar-nav li:nth-child(3):before {
    background-color: #778DC4;   
}
.sidebar-nav li:nth-child(4):before {
    background-color: #98D37F;   
}
.sidebar-nav li:nth-child(5):before {
    background-color: #778DC4;   
}
.sidebar-nav li:nth-child(6):before {
    background-color: #98D37F;   
}
.sidebar-nav li:nth-child(7):before {
    background-color: #778DC4;   
}
.sidebar-nav li:hover:before,
.sidebar-nav li.open:hover:before,
.sidebar-nav li:focus-within:before {
    width: 100%;
    -webkit-transition: width .2s ease-in;
      -moz-transition:  width .2s ease-in;
       -ms-transition:  width .2s ease-in;
            transition: width .2s ease-in;

}
.sidebar-nav li a {
    display: block;
    color: #ddd;
    text-decoration: none;
    padding: 10px 15px 10px 30px;    
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 20px;
    line-height: 44px;
}
.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: rgba(34,34,34,.5);
    box-shadow: none;
    transition: background-color .25s ease;
}
.sidebar-nav .dropdown-header,
.sidebar-nav .dropdown-header:hover,
.sidebar-nav .dropdown-header:focus {
    color: #fff !important;
}
.hamburger {
  position: fixed;
  top: 20px;  
  z-index: 999;
  display: block;
  width: 38px;
  height: 38px;
  margin-left: 15px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.topbar-logo {
  position: fixed;
  top: 17px;
  right: 18px;
  z-index: 998;
  display: block;
  opacity: 0.5;
  transition: opacity 0.25s ease;
}
#wrapper.toggled .topbar-logo {
  opacity: 0;
  pointer-events: none;
}
.topbar-logo img {
  display: block;
  width: auto;
  height: 52px;
  transition: filter 0.2s ease;
}
.topbar-logo.is-page-bottom img {
  filter: brightness(0.55);
}
.topbar-logo:hover img,
.topbar-logo:focus-visible img {
  filter: contrast(1.35) drop-shadow(0 1px 2px rgba(0,0,0,.35));
}
.topbar-logo.is-page-bottom:hover img,
.topbar-logo.is-page-bottom:focus-visible img {
  filter: brightness(0.55) contrast(1.45) drop-shadow(0 1px 2px rgba(255,255,255,.35));
}

/* Subtle image enhancement on pointer and keyboard interaction. */
.gallery-main-image,
.gallery-thumbnail img,
.about-section-image {
  transition: filter 0.22s ease;
}
.gallery-main:hover .gallery-main-image,
.gallery-main:focus-within .gallery-main-image,
.gallery-thumbnail:hover img,
.gallery-thumbnail:focus-visible img,
.about-section-image:hover,
.about-section-image:focus-visible {
  filter: contrast(1.14) saturate(1.06);
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
  outline: none;
}
.hamburger.is-closed:before {
  content: '';
  display: none;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
  opacity: 0;
  display: none;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  position: absolute;
  left: 14px;
  height: 4px;
  width: 17px;
  border-radius: 999px;
  box-shadow: none;
  transition: top .22s ease, bottom .22s ease, transform .22s ease, background-color .18s ease;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
  background-color: #1e9bff;
}
.hamburger.is-closed .hamb-top::before,
.hamburger.is-closed .hamb-middle::before,
.hamburger.is-closed .hamb-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1e9bff;
}
.hamburger.is-closed .hamb-top { 
  top: 10px; 
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
  top: 50%;
  margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
  bottom: 10px;  
  -webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
  top: 10px;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-top,
.hamburger.is-closed:hover .hamb-middle,
.hamburger.is-closed:hover .hamb-bottom,
.hamburger.is-open:hover .hamb-top,
.hamburger.is-open:hover .hamb-bottom {
  height: 4px;
  box-shadow: none;
}
.hamburger.is-closed:hover .hamb-bottom {
  bottom: 10px;
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
  display: none;
}
.hamburger.is-open {
  z-index: 1005;
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.85);
  cursor: pointer;
}
.hamburger.is-open::after {
  content: "\00d7";
  position: absolute;
  inset: 0;
  color: #1e9bff;
  font-size: 38px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  text-shadow: none;
}
.hamburger.is-open:before {
  content: '';
  display: block;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate3d(0,0,0);
  -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
  opacity: 1;
  display: block;
  -webkit-transform: translate3d(-100px,0,0);
  -webkit-transition: all .35s ease-in-out;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    background: #fff;
  }
  body::before {
    display: none;
  }
  body.menu-open::before {
    background: rgba(255,255,255,.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  #wrapper {
    --mobile-menu-safe-height: 46px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 0;
  }
  #wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    width: 100%;
    height: var(--mobile-menu-safe-height);
    border-bottom: 1px solid rgba(255,255,255,.16);
    background: #222;
    background-image: linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)), url(../img/pattern.png);
    background-repeat: repeat;
    background-size: auto, 5px 5px;
    box-shadow: 0 8px 18px rgba(0,0,0,.24);
    pointer-events: none;
    transition: opacity .25s ease;
  }
  body.is-page-scrolled #wrapper::before,
  body.menu-open #wrapper::before {
    opacity: 0;
  }
  #wrapper.toggled {
    padding-left: 0;
  }
  #sidebar-wrapper {
    left: 0;
    width: 166px;
    height: calc(133% - 16px);
    margin-top: 8px;
    margin-left: 0;
    border-radius: 0 34px 34px 0;
    box-shadow: 10px 0 28px rgba(0,0,0,.24);
    transform: translateX(-100%);
  }
  #wrapper.toggled #sidebar-wrapper {
    width: 166px;
    transform: translateX(0);
  }
  .sidebar-nav {
    position: relative;
    width: 166px;
  }
  .sidebar-nav li a,
  .sidebar-nav .dropdown-header {
    padding-right: 10px;
    padding-left: 10px;
    white-space: normal;
  }
  #wrapper.toggled .sidebar-nav li a {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 18px;
    line-height: 1.35;
  }
  #wrapper.toggled .sidebar-nav .dropdown-header {
    font-size: 16px;
    line-height: 1.45;
  }
  #wrapper .row {
    max-width: 100%;
  }
  .header-video {
    height: clamp(145px, 35.5vw, 230px) !important;
    margin-top: var(--mobile-menu-safe-height, 46px);
    overflow: hidden;
    will-change: auto;
  }
  .home-page .header-video {
    height: clamp(145px, 35.5vw, 230px) !important;
  }
  .header-video__media,
  .header-video.is-scrolled .header-video__media {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
  }
  .header-video.is-playing {
    width: 100vw;
    height: 56.25vw !important;
    max-height: none !important;
  }
  .header-video.is-playing #header-video__video-element {
    inset: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .hamburger.is-closed .hamb-top,
  .hamburger.is-closed .hamb-middle,
  .hamburger.is-closed .hamb-bottom,
  .hamburger.is-open .hamb-top,
  .hamburger.is-open .hamb-middle,
  .hamburger.is-open .hamb-bottom {
    width: 17px;
    height: 4px;
  }
  .hamburger.is-closed .hamb-middle {
    top: 50%;
    margin-top: -2px;
  }
  .hamburger.is-closed .hamb-top {
    top: 10px;
  }
  .hamburger.is-closed .hamb-bottom {
    bottom: 10px;
  }
  .hamburger.is-closed:hover .hamb-top {
    top: 10px;
  }
  .hamburger.is-closed:hover .hamb-bottom {
    bottom: 10px;
  }
  .hamburger.is-closed:hover .hamb-top,
  .hamburger.is-closed:hover .hamb-middle,
  .hamburger.is-closed:hover .hamb-bottom,
  .hamburger.is-open:hover .hamb-top,
  .hamburger.is-open:hover .hamb-bottom {
    height: 4px;
  }
  .hamburger.is-open {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: none;
  }
  .hamburger.is-open::after {
    font-size: 38px;
    line-height: 38px;
  }
  .hamburger {
    top: 3px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transition: background-color .25s ease, border-radius .25s ease, box-shadow .25s ease;
  }
  body.is-page-scrolled .hamburger.is-closed {
    top: 10px;
    background: rgba(34,34,34,.88);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.22);
  }
  .topbar-logo {
    top: 8px;
    right: 12px;
    opacity: 1;
  }
  .topbar-logo img {
    height: 34px;
  }
  .hamburger.is-closed .hamb-top,
  .hamburger.is-closed .hamb-middle,
  .hamburger.is-closed .hamb-bottom,
  .hamburger.is-closed .hamb-top::before,
  .hamburger.is-closed .hamb-middle::before,
  .hamburger.is-closed .hamb-bottom::before {
    background-color: #fff;
  }
  .hamburger.is-open {
    top: 10px;
    background: rgba(34,34,34,.88);
    border-color: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.22);
  }
  .hamburger.is-open::after {
    color: #fff;
  }
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 2;
    transition: background-color .25s ease, backdrop-filter .25s ease;
}
body.menu-open .overlay {
    z-index: 990;
    background-color: rgba(255,255,255,.38);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
#map-row {
    position: relative;
    width: 100%;
    margin: 10px 0 0;
    padding-bottom: 20px;
}

/* Shared shrinking top banner */
.header-video {
  height: 51.0417vw;
  max-height: none;
  min-height: 0;
  --banner-icon-shift: 0px;
  background: #fff;
  will-change: height;
}
.header-video__media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
  transform-origin: center top;
  will-change: transform;
}
.header-video.is-scrolled .header-video__media {
  object-fit: cover;
}
.header-video > .overlays {
  inset: 0;
  height: auto;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18) url(../img/pattern.png) repeat;
  background-size: 6.8px 6.8px;
  opacity: 1;
  pointer-events: none;
}
#map-row .row {
    margin: 0;
}
#map-row .row .col-xs-12 {
    padding: 0;
}
.map-responsive {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
#gmap_canvas {
    display: block;
    width: 100%;
    height: 800px;
    border: 0;
}
.map-drag-hint {
    position: absolute;
    top: 22px;
    left: 50%;
    z-index: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    color: #2b5e9e;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    opacity: .5;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.map-drag-hint .fa {
    font-size: 21px;
}
.map-drag-hint.is-demo-active {
    opacity: 1;
    transition: opacity .3s ease;
}
.map-drag-hint.is-dragging .fa {
    transform: translateY(1px) scale(.92);
}
#map-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100% !important;
    height: auto;
    margin: 0 !important;
    padding: 24px max(32px, calc((100% - 1200px) / 2)) 26px;
    background: rgba(82,147,222,.60);
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    transition: opacity .25s ease, background-color .8s ease;
}
#map-overlay.blue-background-visible {
    background-color: rgba(82,147,222,1);
}
#map-overlay h2,
#map-overlay h4,
#map-overlay address,
#map-overlay i,
#map-overlay a {
    color: #fff;
}
#map-overlay h2 {
    margin: 0 0 16px;
    padding-top: 16px;
    font-size: 38px;
    line-height: 1.15;
    text-align: center;
}
#map-overlay h4 {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 1.25;
}
#map-overlay address {
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}
#map-overlay > .col-sm-6 {
    text-align: center;
}
@media (hover: hover) {
    #map-overlay:hover { opacity: .88; }
}
@media (max-width: 991px) {
    #map-row { padding-bottom: 0; }
    .map-responsive,
    #gmap_canvas { height: 430px; }
    #map-overlay {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin: -80px 0 30px !important;
        padding: 24px 30px 28px;
    }
}
@media (max-width: 767px) {
    #map-overlay,
    #map-overlay.blue-background-visible,
    #map-overlay:hover {
        margin-top: -97px !important;
        padding: 24px 20px 26px;
        background: #5293de !important;
        background-color: #5293de !important;
        opacity: 1 !important;
    }
}
.container-fluid{
padding:0px
}
.map-button{
margin-top:10px;
  filter: alpha(opacity=100); /* MSIE/PC */
	-moz-opacity: 1; /* Mozilla 1.6 and older */
	opacity: 1;
	transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
}
.map-button:hover{
  filter: alpha(opacity=60); /* MSIE/PC */
	-moz-opacity: 0.6; /* Mozilla 1.6 and older */
	opacity: 0.6;
}

/* Shared "Saņemt norādes" button */
.directions-button-wrap {
  clear: both;
  float: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 8px;
  text-align: center;
}
.licezers-directions-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 540px;
  max-width: 100%;
  min-height: 104px;
  margin: 14px auto 4px;
  padding: 18px 34px;
  border: 4px solid #fff;
  border-radius: 32px;
  background: transparent;
  color: #fff !important;
  box-sizing: border-box;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease;
}
.licezers-directions-btn:hover,
.licezers-directions-btn:focus,
.licezers-directions-btn:active {
  background: #2b5e9e;
  border-color: #2b5e9e;
  color: #fff !important;
  text-decoration: none !important;
}
.licezers-directions-btn .directions-icon {
  display: block !important;
  flex: 0 0 60px;
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  margin: 0 28px 0 0 !important;
  object-fit: contain;
}
.licezers-directions-btn span {
  flex: 0 0 auto;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .licezers-directions-btn { width: 100%; }
}
@media (max-width: 767px) {
  .licezers-directions-btn {
    min-height: 78px;
    padding: 12px 18px;
    border-width: 3px;
    border-radius: 8px;
  }
  .licezers-directions-btn .directions-icon {
    flex-basis: 44px;
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    margin-right: 16px !important;
  }
  .licezers-directions-btn span { font-size: 24px; }
}
.contact{
padding-bottom:20px
}

/* Shared modern content typography */
.about-section {
  width: 100% !important;
  max-width: none;
  padding-top: 46px;
  padding-right: 40px !important;
  padding-bottom: 46px;
  padding-left: 40px !important;
  color: #252525;
  font-size: 18px;
  line-height: 1.6;
}
.about-section h2 {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}
.about-section p {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.55;
}

/* Shared product gallery geometry */
.product-gallery {
  width: 100% !important;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}
.gallery-main {
  display: grid !important;
  grid-template-columns: 36px minmax(0, 650px) 36px !important;
  justify-content: center;
  align-items: center;
  gap: 12px !important;
}
.gallery-main-image {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  justify-self: center;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
.gallery-arrow {
  align-self: center;
  width: 36px !important;
  height: 54px !important;
  margin: 0 !important;
}
.gallery-arrow--previous {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
.gallery-arrow--next {
  grid-column: 3 !important;
  grid-row: 1 !important;
}
.gallery-thumbnails {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6px) / 4) !important;
  gap: 2px !important;
  width: min(650px, calc(100% - 96px));
  margin: 4px auto 0 !important;
}
.gallery-thumbnail {
  position: relative;
  width: 100%;
  height: 122px;
  border-width: 2px !important;
  box-sizing: border-box;
}
.gallery-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.gallery-thumbnail.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(43,94,158,.70);
  pointer-events: none;
}
.gallery-thumbnail.is-active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='26' cy='26' r='18'/%3E%3Cpath d='M39 39 55 55M20 26h12M26 20v12'/%3E%3C/g%3E%3C/svg%3E");
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.45));
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.gallery-main-image {
  cursor: zoom-in;
}
body.gallery-lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8,20,38,.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 20px;
}
.gallery-lightbox__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__image {
  display: block;
  width: min(650px, calc(100vw - 300px));
  height: auto;
  max-width: 650px;
  max-height: calc(100vh - 160px);
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.gallery-lightbox.has-caption .gallery-lightbox__image {
  max-height: calc(100vh - 300px);
}
.gallery-lightbox__caption {
  width: min(650px,calc(100vw - 300px));
  padding: 20px 22px 22px;
  background: rgba(18,59,107,.94);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.gallery-lightbox__caption h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 27px;
  line-height: 1.18;
}
.gallery-lightbox__caption p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
}
.gallery-lightbox__close,
.gallery-lightbox__arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-shadow: 0 3px 0 rgba(0,0,0,.95), 0 0 5px rgba(0,0,0,.8);
  box-shadow: none;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.95));
  transition: color .2s ease, transform .2s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus,
.gallery-lightbox__arrow:hover,
.gallery-lightbox__arrow:focus {
  background: transparent;
  color: #669de5;
  outline: none;
  transform: scale(1.06);
}
.gallery-lightbox__close {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 64px;
  height: 64px;
  padding: 0 0 7px;
  font-family: Arial,sans-serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
}
.gallery-lightbox__arrow {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  font-size: 34px;
  transform: none;
}
.gallery-lightbox__arrow:hover,
.gallery-lightbox__arrow:focus {
  transform: scale(1.06);
}
.gallery-lightbox__arrow--previous,
.gallery-lightbox__arrow--next {
  right: auto;
  left: auto;
}
@media (min-width: 992px) {
  .gallery-product-section > .row > .col-md-6:first-child {
    width: 44%;
  }
  .gallery-product-section > .row > .col-md-6:last-child {
    width: 56%;
  }
}
@media (max-width: 767px) {
  .product-document-links {
    margin-bottom: 18px;
  }
  .product-gallery {
    max-width: none;
    width: 100% !important;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .gallery-main {
    display: none !important;
    width: 100%;
    margin: 0 0 10px !important;
    overflow: visible;
    border-radius: 0;
  }
  .gallery-arrow {
    display: none !important;
  }
  .gallery-main::after {
    content: none !important;
  }
  .gallery-main-image,
  .gallery-thumbnail img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto;
    object-fit: contain !important;
    border-radius: 4px;
  }
  .gallery-thumbnails {
    display: grid !important;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible;
  }
  .gallery-thumbnail {
    height: auto !important;
    padding: 0;
    border: 0 !important;
    background: transparent;
    cursor: default;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .gallery-thumbnail.is-active::before,
  .gallery-thumbnail.is-active::after {
    content: none;
  }
  .gallery-thumbnail:first-child {
    display: block !important;
  }
  .gallery-lightbox__stage {
    gap: 0;
    padding: 76px 16px;
  }
  .gallery-lightbox__image {
    width: auto;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 152px);
  }
  .gallery-lightbox.has-caption .gallery-lightbox__image {
    max-height: calc(100vh - 330px);
  }
  .gallery-lightbox__caption {
    width: calc(100vw - 32px);
    max-height: 190px;
    padding: 14px 16px 16px;
    overflow-y: auto;
  }
  .gallery-lightbox__caption h2 { font-size: 21px; }
  .gallery-lightbox__caption p { font-size: 15px; }
  .gallery-lightbox__close {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    font-size: 44px;
  }
  .gallery-lightbox__arrow {
    position: fixed;
    top: auto;
    bottom: 12px;
    width: 56px;
    height: 56px;
    font-size: 26px;
    transform: none;
  }
  .gallery-lightbox__arrow:hover,
  .gallery-lightbox__arrow:focus { transform: scale(1.06); }
  .gallery-lightbox__arrow--previous { left: calc(50% - 68px); }
  .gallery-lightbox__arrow--next { right: calc(50% - 68px); }
}

/* Dolomīta šķembu pielietojums */
.aggregate-uses {
  padding: 64px 40px 70px;
  background: linear-gradient(145deg,#123b6b 0%,#1f518b 52%,#2b5e9e 100%);
  color: #fff;
}
.aggregate-uses__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.aggregate-uses h2,
.aggregate-uses h3,
.aggregate-uses h4,
.aggregate-uses p {
  color: #fff;
}
.aggregate-uses h2 {
  margin: 0 0 22px;
  font-size: 42px;
  line-height: 1.15;
  text-align: center;
}
.aggregate-uses__lead {
  max-width: 1000px;
  margin: 0 auto 42px;
  font-size: 21px;
  line-height: 1.65;
  text-align: center;
}
.aggregate-uses h3 {
  margin: 44px 0 22px;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
}
.aggregate-use-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}
.aggregate-use-card {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.aggregate-use-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 12px;
}
.aggregate-use-card__icon img {
  display: block;
  width: 46px;
  height: 46px;
  filter: brightness(0) invert(1);
}
.licezers-document-btn.is-attention {
  border-color: #2b5e9e;
  background: #2b5e9e;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}
.product-document-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 780px;
  margin: 42px auto 0;
}
.product-document-links .licezers-document-btn {
  flex: none;
  justify-content: center;
  min-height: 76px;
  padding: 16px 20px;
  border-color: #669de5;
  border-radius: 14px;
  background: #669de5;
}
.product-document-links .licezers-document-btn .fa {
  width: auto;
  margin-right: 14px;
  font-size: 30px;
}
.product-document-links .licezers-document-btn span {
  font-size: 20px;
  text-align: center;
}
.aggregate-use-card h4 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}
.aggregate-use-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}
.aggregate-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.aggregate-benefit-grid--four {
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.aggregate-benefit {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  align-items: center;
  column-gap: 12px;
  min-height: 82px;
  padding: 18px 32px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.aggregate-benefit .fa {
  display: block;
  width: 28px;
  color: #fff;
  font-size: 21px;
  text-align: center;
}
.aggregate-benefit span {
  max-width: 100%;
}
.aggregate-benefit span::before {
  content: none;
}
@media (hover:hover) {
  .aggregate-use-grid:hover .aggregate-use-card,
  .aggregate-benefit-grid:hover .aggregate-benefit {
    opacity: .88;
  }
  .aggregate-use-grid .aggregate-use-card:hover,
  .aggregate-benefit-grid .aggregate-benefit:hover {
    z-index: 2;
    opacity: 1;
    background: rgba(102,157,229,.92);
    transform: scale(1.04);
    box-shadow: 0 20px 42px rgba(0,0,0,.28);
  }
}
.aggregate-use-card:focus-visible,
.aggregate-benefit:focus-visible {
  z-index: 2;
  outline: 3px solid #fff;
  outline-offset: 4px;
  background: rgba(102,157,229,.92);
  transform: scale(1.03);
}
@media (max-width: 991px) {
  .aggregate-use-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .aggregate-benefit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .aggregate-uses { padding: 44px 20px 50px; }
  .aggregate-uses h2 { font-size: 34px; }
  .aggregate-uses__lead {
    margin-bottom: 32px;
    font-size: 18px;
    text-align: left;
  }
  .aggregate-uses h3 { font-size: 26px; }
  .aggregate-use-grid,
  .aggregate-benefit-grid { grid-template-columns: 1fr; }
  .aggregate-use-card { min-height: 0; }
}
.about-image-column {
  overflow: hidden;
}
.about-section-image,
img[src="assets/img/about.png"] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: 0;
  border-radius: 14px;
  filter: contrast(1.08) saturate(1.04);
  transform: scale(1);
  transition: transform .45s ease, filter .45s ease;
}
.about-image-column:hover .about-section-image,
.about-image-column:focus-within .about-section-image {
  filter: contrast(1.25) saturate(1.1);
  transform: scale(1.035);
}
@media (max-width: 991px) {
  .about-section h2 { margin-top: 28px; }
}
@media (max-width: 767px) {
  .about-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about-section h2 { font-size: 32px; }
  .about-section p { font-size: 18px; }
}

/* Homepage map and footer details */
.home-skembas-banner {
  position: relative;
  left: 50%;
  display: block;
  width: 100vw;
  max-width: none;
  height: clamp(260px, 38vw, 620px);
  margin-left: -50vw;
  overflow: hidden;
  background: #123b6b;
  --secondary-banner-parallax: 0px;
}
.home-skembas-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--secondary-banner-parallax)) scale(1.08);
  transition: transform .9s cubic-bezier(.22, .61, .36, 1), opacity .45s ease;
  will-change: transform;
}
.home-skembas-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18) url(../img/pattern.png) repeat;
  background-size: 6.8px 6.8px;
  opacity: .5;
  pointer-events: none;
}
.home-skembas-banner:hover img,
.home-skembas-banner:focus img {
  opacity: .9;
  transform: translateY(var(--secondary-banner-parallax)) scale(1.09);
}
.home-skembas-banner:focus {
  outline: 4px solid #669de5;
  outline-offset: -4px;
}
.header-video--aspect {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
}
.road-page .header-video--aspect {
  height: auto;
  aspect-ratio: auto;
}
.road-page .header-video--aspect .header-video__media,
.road-page .header-video--aspect.is-scrolled .header-video__media {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
@media (max-width: 767px) {
  .road-page .header-video--aspect {
    height: clamp(145px, 35.5vw, 230px) !important;
    overflow: hidden;
  }
  .road-page .header-video--aspect .header-video__media,
  .road-page .header-video--aspect.is-scrolled .header-video__media {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
  }
}
@media (max-width: 767px) {
  .home-skembas-banner {
    left: 50%;
    width: 100vw;
    min-width: 100vw;
    max-width: none;
    height: clamp(145px, 35.5vw, 230px);
    margin-right: 0;
    margin-left: -50vw;
  }
  .home-skembas-banner img {
    width: 100vw;
    min-width: 100vw;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform: none;
  }
}
.home-map-row .map-responsive,
.home-map-row #gmap_canvas {
  height: 800px;
}
.home-map-row #map-overlay {
  padding-top: 18px;
  padding-bottom: 22px;
}
.home-map-row #map-overlay h2 {
  padding-top: 4px;
  margin-bottom: 8px;
}
.home-map-row #map-overlay address {
  margin-bottom: 2px;
}
.home-map-row .licezers-directions-btn {
  min-height: 88px;
  margin-top: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
#mainFooter {
  position: relative;
  overflow: hidden;
  background: #222;
}
#mainFooter::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255,255,255,.08) url(../img/pattern.png) repeat;
  background-size: 12px 12px;
  opacity: .7;
  pointer-events: none;
}
#mainFooter > * {
  position: relative;
  z-index: 1;
}
.home-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: 0;
  align-items: start;
  max-width: 760px;
  padding-top: 66px;
  padding-bottom: 56px;
}
.home-footer-grid::before,
.home-footer-grid::after {
  display: none;
  content: none;
}
.home-contact-column {
  grid-column: 1;
  grid-row: 1;
}
.home-contact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}
.home-contact-info {
  flex: 1 1 auto;
}
.home-contact-info address,
.home-contact-info address p {
  margin: 0;
  color: #777;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}
.home-contact-info a {
  color: inherit;
  text-decoration: none;
}
.home-contact-info a:hover,
.home-contact-info a:focus {
  color: #669de5;
  text-decoration: underline;
}
.home-contact-info .fa {
  width: 28px;
  color: #669de5;
  text-align: center;
}
.home-requisites {
  grid-column: 2;
  grid-row: 1;
}
.home-footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
}
.home-requisites address {
  margin-bottom: 24px;
  color: #ddd;
  font-size: 20px;
  font-style: normal;
  line-height: 1.8;
}
.home-footer-logo {
  display: block;
  flex: 0 0 150px;
  width: 150px;
  max-height: 110px;
  margin-top: 24px;
  object-fit: contain;
}
.footer-contact-form {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.footer-contact-form .form-control {
  width: 100%;
  height: 52px;
  margin-bottom: 14px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  color: #252525;
  font-size: 18px;
  box-shadow: none;
}
.footer-contact-form textarea.form-control {
  height: 120px;
  min-height: 120px;
  resize: vertical;
}
.footer-contact-form .form-control:focus {
  border-color: #669de5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102,157,229,.25);
}
.footer-contact-form .contact-submit {
  width: 100%;
  min-height: 65px !important;
  border: 0;
  border-radius: 14px;
  background: #669de5;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background-color .25s ease, transform .25s ease;
}
.footer-contact-form .contact-submit:hover,
.footer-contact-form .contact-submit:focus {
  background: #2b5e9e;
  outline: none;
  transform: translateY(-1px);
}
.contact-form-status {
  display: none;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(102,157,229,.18);
  color: #fff;
  font-size: 16px;
}
.contact-form-status.is-visible { display: block; }
.contact-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
@media (max-width: 991px) {
  .home-map-row .map-responsive,
  .home-map-row #gmap_canvas { height: 620px; }
}
@media (max-width: 767px) {
  .home-map-row .map-responsive,
  .home-map-row #gmap_canvas { height: 520px; }
  .home-footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding: 34px 22px;
  }
  .home-contact-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .footer-contact-form,
  .footer-contact-form .form-control,
  .footer-contact-form .contact-submit {
    max-width: 100%;
  }
  .home-contact-column {
    grid-column: 1;
    grid-row: 1;
  }
  .home-footer-logo { margin: 0 auto; }
}
.contact .col-md-2{
padding:0px;
}
.contact address{
text-align:center
}
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin: 28px 0 42px;
}
.contact-card {
  min-height: 210px;
  padding: 26px 22px;
  border: 1px solid rgba(43,94,158,.22);
  border-radius: 18px;
  background: #2b5e9e;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.contact-card > .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
}
.contact-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}
.contact-card p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}
.contact-card p .fa {
  width: 20px;
  margin-right: 5px;
  color: #fff;
  text-align: center;
}
.contact-card a {
  color: #fff;
  text-decoration: none;
}
.contact-card a:hover,
.contact-card a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-page-form-wrap {
  position: relative;
  overflow: hidden;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin: 0 0 0 -50vw;
  padding: 66px 15px 72px;
  background: #222;
}
.contact-page #map-row {
  margin-top: 0;
  padding-top: 0;
}
.contact-page #map-overlay {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
}
.contact-page #map-overlay > .col-sm-6,
.contact-page #map-overlay > .directions-button-wrap {
  float: none;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.contact-page .footer-requisites {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}
.contact-page #footerLogo.footer-requisites-logo {
  flex: 0 0 auto;
  width: 125px;
  height: auto;
  margin-top: 14px;
}
.contact-page .footer-requisites-details {
  text-align: left;
}
.contact-page .footer-requisites h3 {
  font-size: 38px;
}
.contact-page .footer-requisites address {
  font-size: 22px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .contact-page .footer-requisites {
    align-items: center;
    gap: 24px;
  }
  .contact-page #footerLogo.footer-requisites-logo {
    width: 100px;
  }
}
.contact-page #map-overlay > .col-sm-6:first-child {
  grid-column: 1;
  grid-row: 1;
  max-width: 620px;
}
.contact-page #map-overlay > .directions-button-wrap {
  grid-column: 1;
  grid-row: 2;
  max-width: 620px;
}
@media (max-width: 767px) {
  .contact-page #map-overlay {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .contact-page #map-overlay > .col-sm-6:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .contact-page #map-overlay > .directions-button-wrap {
    grid-column: 1;
    grid-row: 2;
  }
}
.contact-page-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255,255,255,.08) url(../img/pattern.png) repeat;
  background-size: 12px 12px;
  opacity: .7;
  pointer-events: none;
}
.contact-page-form-wrap > * {
  position: relative;
  z-index: 1;
}
.contact-page-form-wrap h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  text-align: center;
}
.contact-page-form {
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  padding: 28px;
}

/* Keep contact forms consistently wide on product and service pages. */
#mainFooter .footer-contact-column {
  flex-basis: 720px !important;
  width: 720px !important;
  max-width: 100%;
}
@media (hover:hover) {
  .contact-card-grid:hover .contact-card {
    opacity: .9;
  }
  .contact-card-grid .contact-card:hover {
    opacity: 1;
    background: #669de5;
  }
}
@media (max-width: 991px) {
  .contact-card-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 767px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .contact-card {
    min-height: 0;
  }
  .contact-page-form {
    padding: 20px;
  }
}
#custom_carousel .item {
    color:#000;
    background-color:#eee;
    padding:20px 0;
}
#custom_carousel .row {
margin:5px 0px 5px 0px
}
#custom_carousel .controls{
    overflow-x: auto;
    overflow-y: hidden;
    padding:0;
    margin:0;
    white-space: nowrap;
    text-align: center;
    position: relative;
    background:#ddd
}
#custom_carousel .controls li {
    display: table-cell;
    width: 1%;
    max-width:90px
}
#custom_carousel .controls li.active {
    background-color:#eee;
    border-top:3px solid orange;
}
#custom_carousel .controls a small {
    overflow:hidden;
    display:block;
    font-size:10px;
    margin-top:5px;
    font-weight:bold
}
footer {
	color:#777;
	background:#222;
	border-top:2px solid #444;
	padding:0px;
}

footer h1,footer h2,footer h3,footer h4{
	color:#ddd;
	font-weight:300;
}

.icon-scroll,
.icon-scroll:before ,
.icon-scrolls,
.icon-scrolls:before 
{
  position: absolute;
  left: 50%;
  z-index:1;
}
 
.icon-scroll {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 90%;
  margin-top: -85px;
  box-shadow: inset 0 0 0 1px #FFF;
  border-radius: 25px;
}
.header-video--no-video .icon-scroll {
  top: calc(65% - 40px);
  margin-top: -35px;
  z-index: 4;
}
 .icon-scrolls {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 50%;
  margin-top: -85px;
  box-shadow: inset 0 0 0 1px #FFF;
  border-radius: 25px;
}
.icon-scroll:before,
.icon-scrolls:before  {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFF;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}
 
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
    transform: translateY(46px);
  }
}
 
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
    transform: translateY(46px);
  }
}
/* Let's get this party started */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(119, 141, 196, 0.87);
    border: 2px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #98D37F; 
    border: 2px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
}
#footerRights {background-color:#333;color:#999;border-top:1px solid #1b1b1b; text-align: center; font-size:10px;}
#footerLogo {margin-top: 44px;}
.footerWidget {margin-bottom: 22px}
.knk{
  filter: alpha(opacity=60); /* MSIE/PC */
  -moz-opacity: 0.6; /* Mozilla 1.6 and older */
  opacity: 0.6;
}
.knk img{
  			transform: scale(0.6, 0.6);
	-ms-transform: scale(0.6, 0.6);
	-webkit-transform: scale(0.6, 0.6);
}
#footerRights a{
color:#FFF;
text-decoration:none;
 margin-left:15px;
}
#footerRights .container{
padding:0px
}
.knk:hover{
  filter: alpha(opacity=100); /* MSIE/PC */
  -moz-opacity: 1; /* Mozilla 1.6 and older */
  opacity: 1
  }

  .owl-carousel .animated{-webkit-animation-duration:1000ms;animation-duration:1000ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out}.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0px,0px,0px)}.owl-carousel .owl-controls .owl-nav .owl-prev,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-dot{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel .owl-refresh .owl-item{display:none}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}.owl-carousel .owl-item img{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:scale 100ms ease;-moz-transition:scale 100ms ease;-ms-transition:scale 100ms ease;-o-transition:scale 100ms ease;transition:scale 100ms ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3,1.3);-moz-transition:scale(1.3,1.3);-ms-transition:scale(1.3,1.3);-o-transition:scale(1.3,1.3);transition:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;background-size:contain;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}.owl-carousel .owl-video-frame{position:relative;z-index:1}
  .owl-theme .owl-controls{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#869791;color:#fff;text-decoration:none}.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#669DE5}
