﻿
::-webkit-input-placeholder { color: inherit; }
::-moz-placeholder { color: inherit; }
:-ms-input-placeholder { color: inherit; }
:-moz-placeholder { color: inherit; }

input:focus:-moz-placeholder { opacity: 0; }
input:focus:-ms-input-placeholder { opacity: 0; }
input:focus::-moz-placeholder { opacity: 0; }
input:focus::-webkit-input-placeholder { opacity: 0; }

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {  -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield!important; -webkit-appearance: unset!important; }

.no-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

.lazy-scroll{ overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }

.forcewrap {
    -ms-word-break: break-all;
    word-break: break-all;

 /* Non standard for webkit */
     word-break: break-word;

    -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}

video { width: 100% !important; height: auto !important; }

input[type=text],
input[type=email],
input[type=number],
input[type=password],
textarea,
select { width: 100%; font-family: inherit; font-size: inherit; color: inherit; padding: 0 15px; height: 50px; line-height: 50px; border: none; }

textarea { -webkit-appearance: none; padding: 0 20px; resize: none; height: auto; line-height: unset; padding-top: 15px; padding-bottom: 15px; display: block; }
 
input[type=text],select{ -webkit-appearance: none; }

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus{ box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05); }

select::-ms-expand {  display: none; }
input[type=email]::-ms-clear,
input[type=text]::-ms-clear { display: none; }

form *:user-invalid{ /*border: 1px solid rgba(210,15,20,0.5)!important; box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05); background-color: #FAF6F6!important; color: #D20F14; */ }

form .field{ margin-bottom: 15px; }
form .field > label{ display: block; margin-bottom: 7px; font-weight: 500; }
form .field label > em{ color: #D20F14!important; }

.select { position: relative; }
.select select { position: relative; z-index: 2; width: 100%; }
.select:after { content: ""; display: block; position: absolute; top: 50%; right: 15px; line-height: 0; z-index: 1; background: url(chevron-down.svg); width: 18px; height: 18px; background-size: cover; margin-top: -9px; pointer-events: none; }

form .disabled{ position: relative; z-index: 1; display: block; }
form .disabled:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
form .disabled *{ opacity: 0.5; }

form .placeholder{ position: relative; z-index: 1; margin-bottom: 20px; }
form .placeholder > label{ position: absolute; top: 16px; left: 15px; color: var(--darkGray); font-size: 14px; line-height: 1; margin-bottom: 0!important; transition: all .2s ease; pointer-events: none; }

form .placeholder { position: relative; }
form .placeholder label.active,
form .placeholder label.sticky,
form .placeholder > input:focus + label,
form .placeholder > textarea:focus + label{ top: -7px; font-size: 12px; z-index: 3; pointer-events: none; }

form .placeholder label.sticky{ transition: unset; }
/*
form .placeholder label.active::after,
form .placeholder label.sticky::after{ content: ""; display: block; position: absolute; height: 100%; top: 0; z-index: -1; width: calc(100% + 10px); margin-left: -5px; background-color: #fff; }
*/

form .placeholder .alert + label{ z-index: 2; }

form .placeholder > label > em{ color: red; }
form .placeholder{ margin: 40px 0; }
form div.label{ margin-bottom: .25rem; text-transform: uppercase; color: #222; font-size: 14px; font-weight: 500; }

form button.submit{ line-height: 50px; }
form div.footer button.submit{ line-height: 42px; }

div.spinners-wrapper{ position: relative; z-index: 1; display: inline-block; width: 150px; vertical-align: top; }
div.spinners-wrapper {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.tooltip {
  --tooltipColor: rgba(229, 229, 229);
	position: absolute;
	background: var(--tooltipColor);
	border: 4px solid var(--tooltipColor);
  border-radius: 3px;
  padding: 5px 7px;
  visibility: hidden;
  white-space: nowrap;
  z-index: 999;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.333333;  
  transform: translateX(calc(-50% + 13px));
  bottom: calc(100% + 6px);
}
.tooltip:after, .tooltip:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tooltip:after {
	border-top-color: var(--tooltipColor);
	border-width: 5px;
	margin-left: -5px;
}
.tooltip:before {
	border-top-color: var(--tooltipColor);
	border-width: 11px;
	margin-left: -11px;
}

.ease{ transition: all 0.3s ease; }
.multiply{ mix-blend-mode: multiply; }

body.fixed{ overflow: hidden; }

.left{ float: left; }
.right{ float: right; }
.clear{ clear: both ;}
.alignright{ text-align: right; }
.alignleft{ text-align: left; }
.cursor{ cursor: pointer; }
.center{ text-align: center; }
.abscenter{ position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); }
.relative{ position:relative; } 
.ucase{ text-transform: uppercase; }
.capitalize{ text-transform: capitalize; }

div.text ul li{ padding-left: 28px; }
div.text ul li + li{ margin-top: 10px; }
div.text ul li:before { content:""; display: block; width: 16px; height: 11px; position: absolute; top: 6px; left: 0; background: url(Bullet.svg) no-repeat; background-size: contain; }

ol{ margin-left: 17px; }
ol li{ margin-bottom: 17px; }

ul.accordion li div.toggler { padding: 14px 44px 14px 0; cursor: pointer; font-weight: 700; }
ul.accordion li div.toggler::after { content: ""; display: block; width: 13px; height: 8px; background: url(svg/chevron-black.svg) center center no-repeat; position: absolute; top: 24px; right: 16px; transition: .2s; }
ul.accordion li.open div.toggler::after { transform: rotate(-180deg); }

ul.accordion li div.wrapper { text-wrap: pretty; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 250ms; }
ul.accordion li.open div.wrapper { grid-template-rows: 1fr; }
ul.accordion li div.wrapper > div { overflow: hidden; }
ul.accordion li.open div.wrapper > div{ overflow: visible; }

ul.accordion > li:first-child{ border-top: 1px solid rgba(0, 38, 58, 0.2); }
ul.accordion > li{ border-bottom: 1px solid rgba(0, 38, 58, 0.2); }

ul.accordion li.open div.wrapper > div { padding-bottom: 16px; }

table{ border-collapse: collapse; }
table td, table th{ padding: 0; }

.radio-list .radio{ margin-bottom: 15px; }
.radio-list .radio:last-child{ margin: 0; }

.radio label{ cursor: pointer; padding-left: 30px; position: relative; line-height: 22px; display: inline-block; }
.radio input{ opacity: 0; position: absolute; z-index: -1; }
.radio input + label:before{ content: ""; display: block; height: 22px; width: 22px; background-color: #fff; cursor: pointer; position: absolute; top: -1px; left: 0; border-radius: 50%; border: 1px solid var(--secondary); }
.radio input:checked + label:after{ content: ""; display: block; width: 14px; height: 14px; background-color: var(--primary); border-radius: 50%; position: absolute; top: 3px; left: 4px; }

.checkbox label:before,
.radio label:before { display: inline-block; }

.checkbox label{ cursor: pointer; padding-left: 30px; position: relative; line-height: 22px; display: inline-block; }
.checkbox input{ opacity: 0; position: absolute; z-index: -1; height: 2em !important; }
.checkbox input + label:before{ content: ""; display: block; height: 22px; width: 22px; background-color: #fff; cursor: pointer; position: absolute; top: -1px; left: 0; border: 1px solid var(--secondary); border-radius: 2px; }
.checkbox input:checked  + label:before{ background-color: var(--secondary); }
.checkbox input:checked  + label:after{
	content: "";
    display: block;
    width: 6px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 8px;
    top: 2px;
}

.checkbox-list .checkbox{ margin-bottom: 15px; }
.checkbox-list .checkbox:last-child{ margin: 0; }

.checkbox label a{ border-bottom: 1px solid #aaa; }

.context-menu,
.dd{ display: block; position: relative; color: inherit; z-index: 3; text-align: left!important; }

.context-menu.clicked,
.dd.clicked{ z-index: 4; }

.context-menu > label,
.dd > label{ cursor: pointer; background-color: #fff; line-height: 39px; display: inline-block; color: inherit; padding: 0 16px; padding-right: 60px; border: 1px solid #1C1B1B; position: relative; }

.context-menu.clicked > label,
.dd.clicked > ul,
.dd.clicked > label{ box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05); }

.dd > label + input[type=hidden]{ display: none; }
.dd > label em{ display: none!important; }

.context-menu > label::after,
.dd > label::after{ content: ""; display: block; position: absolute; top: 50%; right: 16px; margin-top: -12px; width: 24px; height: 24px; background: url(chevron-down.svg); background-size: cover; transition: all .2s ease; }

.context-menu.clicked > label::after,
.dd.clicked > label::after{ transform: rotate(-180deg); }

.dd > label.alert{ color: #9F4343; }

.context-menu > label::after,
.dd > label.alert::after{ background: url(chevron-down.svg); }

.context-menu > ul,
.dd > ul{ position: absolute; z-index: -1; width: 100%; top: 100%; background-color: #fff; display: none; border-top: 1px solid #8C1E2E; border-bottom: 1px solid #8C1E2E;; max-height: 440px; overflow: auto; }

.dd > ul li{ padding: 8px 15px; background: #fff; color: initial; }

.dd > ul li:first-child.True{ display: none; }
.dd > ul li:hover{ background: #BE9155; color: #fff; cursor: pointer; }
.dd > ul li.True{ background: #8C1E2E; color: #fff; }

header .context-menu > ul{ width: 343px; padding: 0 32px; background-color: var(--color2); }
header .context-menu > ul li{ padding: 0; color: initial; opacity: .6; border: 2px solid transparent; }
header .context-menu > ul li::before{ content: ""; display: inline-block; vertical-align: top; width: 24px; height: 24px; background: url(ArrowRight-white.svg) no-repeat; background-size: contain; margin-right: 7px; }

header .context-menu > ul li{ margin: 32px 0; }
header .context-menu > ul li small{ color: #fff; display: block; margin-top: 5px; }

header .context-menu > ul li:hover{ opacity: 1; }
header .context-menu > ul li:hover::before{ opacity: 1; }

header .context-menu > ul li.selected { opacity: 1; border: 2px solid #fff; padding: 16px; }

header .context-menu > ul li.selected::before,
header .context-menu > ul li.selected small{ display: none; }


a.x,
span.x{ width: 16px; height: 16px; position: absolute; right: 0; display: block; background: url(white-x.svg) no-repeat; top: -25px; cursor: pointer; }

.fs-video .container span.x{ top: -25px; right: 15px; z-index: 2; }


.video-frame { overflow: hidden; padding-top: 56.25%; position: relative; }
.video-frame iframe,
.video-frame video { border: 0; position: absolute; inset: 0; width: 100%!important; height: 100%!important; object-fit: cover; }

div.image img + div.video-frame{ position: absolute; z-index: 1; inset: 0; }

dialog{ top: 50%; transform: translateY(-50%); max-width: 100%; margin: 0  auto; border: none; background: none; padding: 0; overflow: visible; }
dialog::backdrop { background: rgb(0 0 0 / 0.5); }
dialog[open] .content{ max-height: calc(100dvh - 100px); overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; max-width: calc(100vw - var(--bs-gutter-x)); background-color: var(--gray); margin: 0 auto; }

dialog .content{ width: 600px; padding: 30px 35px; }
dialog .content.large{ width: 770px; padding: 40px 30px; }
dialog .content h2 + p{ margin-top: 1rem; }
dialog .content .field{ position: relative; }

dialog .content div.header {
  background-color: #00263A;
  padding: 24px 35px;
  color: #fff;
  margin: -30px -35px 30px -35px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

button.play{
  border: none; 
  padding: 0;
  background: none; 
  width: 117px; 
  height: 116px; 
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
  cursor: pointer; 
  display: block;
  background: url(svg/Play.svg) no-repeat; background-size: contain;
}
/*
button.play:hover{ opacity: .75; }
button.play::after{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 8px solid var(--primary);
  border-radius: 50%;
  transition: all .2s ease;
}
button.play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 27px;
  border-color: transparent transparent transparent var(--primary);
  margin: 0 auto;
  position: absolute;
  left: calc(50% - 10px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
  */

article.cta-large div.text{ position: absolute; width: 306px; max-width: 100%; top: 0; left: 22px; margin: 64px; z-index: 3; color: #fff; }
article.cta-large div.text div.h3 + p{ margin-top: 16px; }
article.cta-large div.text p + p{ margin-top: 16px; }
article.cta-large div.image div.blend1{ position: absolute; inset: 0; z-index: 2; background-color: #000; mix-blend-mode: color; }
article.cta-large div.image div.blend2{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--secondary); mix-blend-mode: overlay; }
article.cta-large div.image div.blend3{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--secondary); mix-blend-mode: darken; opacity: .8; }

section.customers div.h5{ margin-bottom: 32px; }
section.customers div.customer-logo img{ /*max-width: 190px;  */ max-height: min(max(100px, 8vw), 200px);; width: auto; height: auto; }

section.contacts div.container > div.text{ padding-bottom: 40px; }

section.slider div.contact{ width: 210px; height: 100%; background-color: #fff; border-radius: 3px; overflow: hidden; }
section.slider div.contact div.image{ width: 100%; height: 178px; }
section.slider div.contact div.image img{ position: absolute; width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
section.slider div.contact{ display: block; position: relative;}
section.slider div.contact div.text{ padding: 16px; }
section.slider div.contact div.text div.small{  }
section.slider div.contact div.text div.small > label{ display: block; margin-bottom: 8px; font-size: 14px; line-height: 18px; font-weight: 700; }

div.contact div.text a{ text-decoration: underline; }

section.slider div.contact div.text p:empty { min-height: 16px; }

article.seo div.text h2{ font-size: 24px; line-height: 1.166666; }
article.seo div.text p + h2{ margin-top: 8px; }

dialog#modal div.content.info > svg + strong{ display: inline-block; margin-left: 8px; }
dialog#modal div.content.info > svg + strong + small { margin-top: 8px; }
dialog#modal div.content.info > svg path:first-child { fill: #B8080D; }
dialog#modal div.content.info > svg path:last-child { fill: #fff; }

div.megamenu-wrapper div.product-nav ul { /*margin-top: 40px; padding-bottom: 40px; */ border: unset; }
div.megamenu-wrapper div.product-nav ul li a{ color: initial; }

div.megamenu-wrapper div.menu-header{ display: flex; height: 102px; align-items: center; }
div.megamenu-wrapper div.menu-header > small{ display: none; color: rgba(255, 148, 151, 1); }

div.megamenu-wrapper > div.container{ padding-top: 40px; padding-bottom: 40px; }

div.cta { height: 292px; position: relative; overflow: hidden; }
div.cta div.image { position: absolute; inset: 0; }
div.cta div.image div.blend1{ position: absolute; inset: 0; z-index: 2; background-color: #000; mix-blend-mode: color; }
div.cta div.image div.blend2{ display: block; position: absolute; inset: 0; z-index: 1; background-color: var(--primary); mix-blend-mode: multiply; }
div.cta div.image div.blend3{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--primary); mix-blend-mode: hard-light; }
div.cta div.image img{ position: relative; z-index: 1; width: 100%!important; }

nav div.cta div.text{ position: absolute; z-index: 3; padding: 48px; width: 100%; }

section.products div.cta{ height: 100%; }
section.products div.cta div.text{ padding: 24px; padding-top: 64px; position: relative; z-index: 3; font-size: 14px; }

section.products div#cta1 div.image .object-fit-cover{ opacity: .3; }
section.products div#cta1 div.image div.blend1{ background-color: #000; mix-blend-mode: color; }
section.products div#cta1 div.image div.blend2{ background-color: var(--gray ); opacity: .7; }
section.products div#cta1 div.image div.blend3{ background-color: var(--mediumGray); mix-blend-mode: multiply; opacity: .3; }

section.products div#cta2{ color: #fff; }
section.products div#cta2 div.image div.blend2{ background: rgba(246, 246, 246, 1); mix-blend-mode: overlay; opacity: 0.7; }
section.products div#cta2 div.image div.blend3{ background-color: var(--primary); mix-blend-mode: multiply; }

section.cases .slick-track { gap: 56px; }


section.slider a.case { width: 322px; }
section.slider a.case div.text{ padding: 15px 0; }
section.slider a.case label{ color: var(--primary); font-weight: 700; }
section.slider a.case div.image{ width: 100%; height: 252px; background-color: rgba(0, 38, 58, 0.1); }


section.tabs{ background-color: var(--gray); }

section.tabs > div.container > div.text{ margin-bottom: 48px; }

section.tabs ul.tabs { margin-bottom: 64px; }

section.tabs div.shadow{  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1); --bs-gutter-x: 0; min-height: 370px; }

ul.tabs{
  --tabsBorderColor: rgba(0, 38, 58, 0.5);
  --tabsSelectedBorderColor: rgba(0, 38, 58, 1);  
  display: flex;
  align-items: center;
  height: 42px;
  position: relative; 
  border-bottom: 1px solid var(--tabsBorderColor);
}
ul.tabs li{ text-align: center; opacity: 0.5;  font-weight: 700; padding: 0 25px;  }
ul.tabs li.active-marker{ opacity: 1; }
ul.tabs li.nav-marker {
  position: absolute;
  display: block;
  bottom: 0;
  z-index: 0;
  -webkit-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
  border-bottom: 3px solid var(--tabsSelectedBorderColor);
  padding: 0;
  opacity: 1;
}




section.tabs div.wrapper { padding: 64px 48px; font-size: 14px; line-height: 1.42857; }
section.tabs ul.tabs li{  font-weight: 700; }
section.tabs ul.tabs li:not(.nav-marker){ cursor: pointer; padding-bottom: 5px !important; }
section.tabs ul.tabs-content li:not(.show){ display: none; }
section.tabs ul.tabs-content li div.h4 + p{ margin-top: 24px; }
section.tabs div.images{ padding: 23px 21px 23px 0; }
section.tabs div.images > div:not(.show){ display: none; }
section.tabs div.images img{ width: 100%; }

section.tabs div.images div.image,
section.tabs div.images div.video-frame{ padding-top: 71%;} 

div.applications ul.tabs{
  --tabsBorderColor: #fff;
  --tabsSelectedBorderColor: #fff;   
  font-size: 14px; line-height: 1.2857; 
  padding-top: 5px;
}

nav div.megamenu-wrapper div.lazy-scroll{ height: 356px; margin-top: 24px; }
nav div.megamenu-wrapper div.applications div.lazy-scroll { height: 314px; padding-bottom: 70px; }

div.applications .card{ display: flex; margin-bottom: 16px; background-color: rgb(0,0,0,0.1); }
div.applications .card div.image { width: 90px; height: 106px; }
div.applications .card div.text { padding: 12px 16px; }
div.applications .card div.text div.h5{ margin-bottom: 4px; }

div.megamenu-wrapper div.lazy-scroll { scrollbar-width: thin; margin-top: 24px; }
div.megamenu-wrapper div.lazy-scroll::-webkit-scrollbar{ width: 2px; }

div.megamenu-wrapper div.lazy-scroll {
  --scrollbar-foreground: #F6F6F6;
  --scrollbar-background: rgba(246, 246, 246, 0.1);
  scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
  padding-right: 16px; 
}

div.applications div.lazy-scroll::-webkit-scrollbar-thumb { background: var(--scrollbar-foreground); }
div.applications div.lazy-scroll::-webkit-scrollbar-track { background: var(--scrollbar-background); }

section.faq{ background-color: var(--gray); }
section.faq div.text div.h5 + p{ margin-top: 8px; }

section.media{ padding: 0; }
section.media div.wrapper { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }

section.media div.text { max-width: 61ch; padding: 75px 64px; }

section.media picture,
section.media div.video-frame{ padding-top: 41.1%; display: block; }

section.media picture img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

section.media.blend-blue div.text,
section.media.blend-red div.text{ color: #fff; }

section.media.blend-gray div.blend1{ position: absolute; inset: 0; z-index: 2; background-color: #000; mix-blend-mode: color; }
section.media.blend-gray div.blend2{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--gray); mix-blend-mode: overlay; opacity: .7; }
section.media.blend-gray div.blend3{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--mediumGray); mix-blend-mode: darken; opacity: .3; }

section.media.blend-blue div.blend1{ position: absolute; inset: 0; z-index: 2; background-color: #000; mix-blend-mode: color; }
section.media.blend-blue div.blend2{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--secondary); mix-blend-mode: overlay; }
section.media.blend-blue div.blend3{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--secondary); mix-blend-mode: darken; opacity: .8; }

section.media.blend-red div.blend1{ position: absolute; inset: 0; z-index: 2; background-color: #000; mix-blend-mode: color; }
section.media.blend-red div.blend2{ display: block; position: absolute; inset: 0; z-index: 1; background-color: var(--primary); mix-blend-mode: multiply; }
section.media.blend-red div.blend3{ display: block; position: absolute; inset: 0; z-index: 2; background-color: var(--primary); mix-blend-mode: hard-light; }

section.teasers div.intro.text{ max-width: 610px; margin-bottom: 48px; }

section.teasers div.card{ background-color: var(--gray); padding: 24px 32px; height: 100%; }
section.teasers.steel-blue div.card{ background-color: var(--darkBlue); }
section.teasers.grey-light div.card{ background-color: #fff; }
section.teasers.red-light div.card{ background-color: rgba(0, 0, 0, 0.1); }

section.teasers.red-light div.text ul li:before { background: url(Bullet-white.svg) no-repeat; background-size: contain; }

section.teasers div.row{ --bs-gutter-x: 16px; --bs-gutter-y: 32px; }

section.teasers div.text ul{ font-size: 14px; line-height: 20px; }
section.teasers div.text ul li + li { margin-top: 8px; }
section.teasers div.text ul li:before { top: 5px; }

a.picture.hover { position: relative; display: inline-block; text-decoration: underline; z-index: 2; }
a.picture.hover:hover{ z-index: 3; }
a.picture.hover{ position: relative; display: inline-block; text-decoration: underline; z-index: 2; }
a.picture.hover > img{ position: absolute; top: 100%; left: 0; width: auto!important; height: auto!important; max-width: unset!important; max-width: 570px; }

nav ul.focus-areas{ display: flex; flex-wrap: wrap; gap: 12px; }
nav ul.focus-areas a.card{ display: block; background-color: var(--secondary); color: #fff; padding: 0 10px 16px 10px; text-align: center; width: 152px; min-height: 136px; height: 100%; }
nav ul.focus-areas a.card div.image{ display: flex; height: 80px; align-items: center; justify-content: center; }
nav ul.focus-areas a.card div.image img{  width: 60px; height: 60px; }
nav ul.focus-areas a.card strong{ display: block; height: 55px; max-width: 18ch; margin: auto; }

aside.ipcheck-wrapper{ position: fixed; z-index: 999; background-color: #fff; font-size: 10px; top: 50vh; }
aside.ipcheck-wrapper > h3{ background-color: #ff9900; font-size: 10px; margin: 0; color: #fff; padding: 5px 10px; }
aside.ipcheck-wrapper > div{ padding: 5px 10px; }
aside.ipcheck-wrapper > div + div{ border-top: 1px solid #eee; }

footer{ font-size: 15px; line-height: 1.444444; padding: 90px 0; position: relative; background: url(svg/footer-arrow.svg) center center no-repeat; background-size: cover; }
footer a.logo{ margin-top: 20px; }
footer h2{ font-weight: 700; margin: 0 0 68px 0; font-size: 30px; }

footer div.container{ position: relative; z-index: 2; }
footer div.credits{ position: relative; padding: 29px 0; margin-top: 40px; }
footer div.credits::after{ content:""; display: block; position: absolute; inset: 0; background-color: var(--secondary); opacity: 0.25; mix-blend-mode: multiply; z-index: 2; }

footer div.h3{  font-weight: 900; font-size: 22px; margin-bottom: 26px; }

footer div.links { line-height: 30px; --bs-gutter-y: 32px }

footer div.gdpr{ display: flex; gap: 45px; }

.modal { width: 600px; max-width: calc(100vw - 30px); background-color: #F6F6F6; position: relative; z-index: 1; max-height: calc(100vh - 50px); overflow: auto; }
.modal span.close-modal{ cursor: pointer; color: #fff; position: absolute; top: 25px; right: 35px; z-index: 1; }
.modal h3{ background-color: #00263A; padding: 24px 35px; color: #fff; margin: 0; font-weight: 600; line-height: 1.2; }
.modal .content{ padding: 30px 35px; }
.modal .footer{ text-align: right; }
.modal .footer span.cancel{ display: inline-block; background: #fff; line-height: 42px; padding: 0 25px; }

.modal .footer div.flex { gap: 20px; justify-content: end; }

.modal input{ height: 42px; }
.modal input:focus,
.modal textarea:focus{
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.modal form .field{ margin-bottom: 25px; }
.modal form .field > label { font-weight: 500; }

form#quoteform{ font-size: 14px; color: initial !important; }

form#quoteform div.bold{ font-weight: 700; margin-bottom: 15px; text-transform: uppercase; }
form#quoteform div.bold::after{ content: ""; display: block; border-bottom: 1px solid #aaa; margin-top: 10px; }

form#quoteform .checkbox label a { color: #D20F14; }

span.cancel{ cursor: pointer; font-weight: 500; position: relative; z-index: 1; }

span.button::before,
span.cancel::before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	background-color: hsl(201, 100%, 11%);
}

button.submit em{ font-style: normal; position: relative; z-index: 1; }
button.submit::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: hsl(201, 100%, 11%);
}

@media (hover: hover) and (pointer:fine) {

  span.cancel:hover{ color: #fff; }

  button.submit:hover::before,
  span.cancel:hover::before,
  span.button:hover::before{ -webkit-transform: scaleX(1); transform: scaleX(1); }  

  article div.text a:not(.button):hover:before{ content: ""; display: block; height: 100%; transition: all .2s ease; background-color: hsl(201, 100%, 11%); }

  article .red-light div.text a:not(.button):hover:before{ background-color: hsl(201, 100%, 11%); }
  
  article div.text a:not(.button):hover{ color: #fff; transition: all .3s ease; }
  article div.text a:not(.button):hover:before{ background-color: hsl(358, 87%, 44%);}

  .cases .list-case:hover{ box-shadow: 0 0 19px 10px rgba(77,77,77,0.1); top: -10px; }
  .cases .list-case:hover .image a.hover{ opacity: 1; }
  .cases .list-case:hover .image a.hover span{ top: 50%; opacity: 1; }  

  footer div.links a:hover{ color: var(--primary); }

}

@media (max-width: 1199px){


}

@media (max-width: 991px){

  section.faq div.col-lg-6 + div.col-lg-6{ margin-top: 24px; }

  div.product-info > div.flex{  display: block; }
  div.product-info > div.flex ul.specs.col{ margin-bottom: 16px; }


}

@media (max-width: 767px){

  section.media picture, section.media div.video-frame { padding-top: 56.25%; }
  section.media div.text { padding: 24px 0; }
  button.play { width: 70px; height: 70px; }

}

@media (max-width: 575px){
  
  table.responsive{ display: block; }
  table.responsive thead{ display: none; }
  table.responsive tbody{ display: block; border-top: 1px solid #999; }
  table.responsive tbody tr{ display: flex; flex-wrap: wrap; border-bottom: 1px solid #999; padding: 5px 0; }
  table.responsive tbody tr td:nth-child(1){ font-weight: bold; }
  table.responsive tbody tr td{ width: 100%; border: none; padding: 0; height: unset!important; padding: 5px 0; }
  table.responsive tbody tr td::before{ content: attr(data-label); display: block; font-weight: normal; opacity: .7; }

  section.cases .slick-track { gap: 24px; }
  section.slider a.case { width: 65vw; }

  section.tabs div.shadow { margin: 0 -22px; }    
  section.tabs div.images { padding: 22px; padding-bottom: 0; }

  ul.tabs li { padding: 0 12px; }

  article.cta-large div.image.video-frame { margin: 0 -22px; padding-top: 125%; }
  article.cta-large div.text { width: 100%; max-width: 100%; left: 0; margin: 0; padding: 48px 22px!important; }

  section.tabs > div.container > div.text { margin-bottom: 24px; }
  section.tabs div.wrapper { padding: 16px 22px 24px 22px; }
  section.tabs ul.tabs { margin-bottom: 24px; }


  section.media div.wrapper { position: relative; }
  

  section.teasers div.row { --bs-gutter-y: 16px; }

  section.contacts div.container > div.text{ margin-bottom: 24px; }

  section.tabs div.shadow { box-shadow: unset; }

  ul.accordion li div.toggler::after { top: 21px; }

  footer { background-size: 200% auto; background-position: 50% 260px !important; }

  footer{ padding-top: 50px; }
  footer h2 { font-size: 18px; margin: 0 0 50px 0; }

  footer a.logo { margin: 0 auto; display: block; text-align: center; margin-bottom: 50px; }


  footer div.links{ --bs-gutter-y: 0px; }

  footer div.links > div:nth-child(2) div.accordion{ border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: 50px; }

  footer div.accordion{ border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  footer div.accordion div.toggler { font-size: 16px; padding-right: 44px; cursor: pointer; line-height: 52px; font-weight: 700; margin-bottom: 0!important; position: relative; }
  footer div.accordion div.toggler::after { content: ""; display: block; width: 13px; height: 8px; background: url(svg/chevron-white.svg) center center no-repeat; position: absolute; top: 24px; right: 16px; transition: .2s; }
  footer div.accordion.open div.toggler::after { transform: rotate(-180deg); }
  
  footer div.accordion div.wrapper { text-wrap: pretty; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 250ms; }
  footer div.accordion.open div.wrapper { grid-template-rows: 1fr; padding-bottom: 20px;  }
  footer div.accordion div.wrapper > ul { overflow: hidden; }

  footer div.gdpr{ justify-content: center; }

  .modal h3,
  .modal .content  { padding: 20px; }




}
