body section h1 {
  font-size: 2.6em;
  line-height: 120%;
  letter-spacing: 0;
  color: #ffffff;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
}

body section h2 {
  font-size: 1.8em;
  line-height: 150%;
  letter-spacing: 0;
  color: #E88C00;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
}

body section h3 {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: #231815;
  margin-top: 12px;
  margin-bottom: 12px;
}

body section h4 {
  font-size: 1em;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: #231815;
}

body section p {
  color: #231815;
  line-height: 190%;
  font-size: 1em;
  margin-bottom: 0.8em;
}

body section ul li {
  font-size: 1em;
  color: #231815;
}

body section h1,
body section h2,
body section h3,
body section h4,
body section h5,
body section p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

body section .small-p {
  font-size: 0.9em;
}

@media only screen and (min-width: 1920px) {
  body section .small-p {
    font-size: 0.8em;
  }
}

/* -----------------Pad----------------------------*/
@media only screen and (min-width: 768px) {
  body section h1 {
    font-size: 3.5em;
    line-height: 140%;
  }
  body section h2 {
    font-size: 2em;
  }
  body section h3 {
    font-size: 1.5em;
    line-height: 130%;
  }
  body section h4 {
    font-size: 1.2em;
  }
}

/*---------------Desktops--------------------------------*/
@media only screen and (min-width: 992px) {
  body section h1 {
    letter-spacing: 1px;
    line-height: 130%;
    font-size: 3.4em;
  }
  body section h2 {
    font-size: 2.5em;
    letter-spacing: 1px;
  }
}

/*---------------Desktops--------------------------------*/
@media only screen and (min-width: 1200px) {
  body section h1 {
    font-size: 3.8em;
  }
}

/* Background color : START*/
.bg-white {
  background-color: #ffffff;
}

.bg-grey {
  background-color: #EBEBEB;
}

.bg-light-blue {
  background-color: #D3EDFA;
}

.bg-light-grey {
  background-color: #F5F4F4;
}

.bg-main-color {
  background-color: #E88C00 !important;
}

.bg-green {
  background-color: #0C863C !important;
}

.bg-black {
  background-color: black;
}

.bg-deep-blue {
  background-color: #001D56;
}

/* Background color : END*/
/*----------------Kenny CSS Default: START-------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}

body {
  background-color: #ffffff;
  /*OTHER STYLE*/
  /*table: START*/
  /*table: END*/
  /* underline / hr : START*/
  /*  underline / hr: END*/
}

body a,
body a:link,
body a:active,
body a:hover,
body a:visited {
  text-decoration: none;
  outline: none;
}

body button,
body button:link,
body button:active,
body button:hover,
body button:visited {
  text-decoration: none;
  outline: none;
}

body section img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}

body figure {
  margin-bottom: 0;
}

body .hidden {
  visibility: hidden;
}

body .no-padding {
  padding-left: 0;
  padding-right: 0;
}

body .no-margin {
  margin-left: 0;
  margin-right: 0;
}

body .mb-0 {
  margin-bottom: 0 !important;
}

body .pl-15px {
  padding-left: 15px;
}

body .pr-15px {
  padding-right: 15px;
}

body .annotation {
  margin-top: 0.4em;
  margin-left: 0.5em;
  line-height: 140%;
  font-size: 0.85em;
}

body .orange {
  color: #e85a4a;
}

body .bigger {
  font-size: 120%;
}

body .white {
  color: #ffffff !important;
}

body .main-color {
  color: #E88C00;
}

body .green {
  color: #0C863C;
}

body .text-shadow {
  text-shadow: 1px 1px 4px #3e3e3e;
}

body .tile-shadow {
  -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2);
}

body .abs-center {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

body a.abs-full-wide-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

body a {
  color: #53a5fd;
}

body a:hover {
  color: #3b92f0;
}

body a.disabled {
  pointer-events: none;
}

body ul.unordered-list-group {
  list-style: disc;
  padding-left: 1.35em;
}

body ul.unordered-list-group li {
  line-height: 150%;
}

body ul.unordered-list-group.line-h-200pct li {
  line-height: 200%;
}

body ol.ordered-list-group-hrz {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: decimal;
  padding-left: 1.35em;
}

body ol.ordered-list-group-hrz li {
  float: left;
  margin-right: 2em;
  white-space: nowrap;
}

body .dashed-underline {
  border-bottom: 1px dashed #2b2b2b;
}

body .blue-dashed-underline {
  border-bottom: 1px dashed #E88C00;
  margin-top: 0.3em;
}

body .divider {
  border-top: none;
  border-bottom: 1px solid #E88C00;
}

body .font-weight-600 {
  font-weight: 600 !important;
}

body .pic-center {
  display: block;
  margin: 0 auto;
}

body .vs-hidden {
  visibility: hidden;
}

body .max-w100 {
  max-width: 100px !important;
}

body .max-w110 {
  max-width: 110px !important;
}

body .max-w150 {
  max-width: 150px !important;
}

body .max-w200 {
  max-width: 200px !important;
}

body .max-w250 {
  max-width: 250px !important;
}

body .max-w300 {
  max-width: 300px !important;
}

body .max-w350 {
  max-width: 350px !important;
}

body .max-w400 {
  max-width: 400px !important;
}

body .max-w450 {
  max-width: 450px !important;
}

body .max-w500 {
  max-width: 500px !important;
}

body .max-w550 {
  max-width: 550px !important;
}

body .max-w600 {
  max-width: 600px !important;
}

body .max-w700 {
  max-width: 700px !important;
}

body .max-w750 {
  max-width: 750px !important;
}

body .max-w800 {
  max-width: 800px !important;
}

body .max-w850 {
  max-width: 850px !important;
}

body .max-w900 {
  max-width: 900px !important;
}

body .max-w950 {
  max-width: 950px !important;
}

body .max-w1000 {
  max-width: 1000px !important;
}

body ul.list-disc {
  list-style-type: disc;
  padding-left: 1.5em;
  color: #231815;
  margin-bottom: 0;
}

body ul.list-disc li {
  color: #231815;
}

body a button.btn-1 {
  min-width: 12em;
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 200ms;
  transition: all 200ms;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-style: none;
  border: 1px solid #ffffff;
  border-radius: 30px;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
}

body a button.btn-1:hover {
  outline: none !important;
  background-color: rgba(83, 168, 255, 0.1) !important;
}

body a button.btn-1:active {
  outline: none !important;
}

body a button.btn-1:focus {
  outline: none !important;
}

body a button.btn-1 p {
  font-size: 1em;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  padding-left: 0.8em;
  padding-right: 0.8em;
}

body a button.btn-1 h4 {
  margin-top: 0;
  margin-bottom: 0;
}

body a button.btn-2 {
  min-width: 12em;
  position: relative;
  background-color: #ffffff;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-style: none;
  border: 1px solid #ffffff;
  border-radius: 30px;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  -webkit-box-shadow: 0 0 13px rgba(128, 128, 128, 0.6);
          box-shadow: 0 0 13px rgba(128, 128, 128, 0.6);
}

body a button.btn-2:hover {
  outline: none !important;
  background-color: #E88C00 !important;
  border: 1px solid #E88C00;
}

body a button.btn-2:hover h4 {
  color: #ffffff;
}

body a button.btn-2:active {
  outline: none !important;
}

body a button.btn-2:focus {
  outline: none !important;
}

body a button.btn-2 p {
  font-size: 1em;
  font-weight: 400;
  line-height: 140%;
  color: #E88C00;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  padding-left: 0.8em;
  padding-right: 0.8em;
}

body a button.btn-2 h4 {
  color: #E88C00;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}

body .table-style-1 thead tr th {
  min-width: 10em;
  font-size: 0.9em;
  vertical-align: middle !important;
}

body .table-style-1 tbody tr td {
  font-size: 0.9em;
  vertical-align: middle !important;
}

body .table-style-1 tbody tr td:first-child {
  font-size: 0.9em;
}

body .table-style-2 {
  border: 1px solid #E88C00;
}

body .table-style-2 thead tr th {
  width: 33.3%;
  font-size: 1em;
  font-weight: 600;
  color: #231815;
  text-align: -webkit-left;
  text-align: center;
  vertical-align: middle;
  background-color: #FFC94E;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

@media screen and (min-width: 768px) {
  body .table-style-2 thead tr th:nth-child(1) {
    width: 20%;
  }
}

@media screen and (min-width: 768px) {
  body .table-style-2 thead tr th:nth-child(2) {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  body .table-style-2 thead tr th:nth-child(3) {
    width: 40%;
  }
}

body .table-style-2 thead tr th.bdr-right {
  border-right: 1px solid #E88C00;
}

body .table-style-2 tbody tr {
  background-color: #ffffff;
}

body .table-style-2 tbody tr td {
  font-size: 0.8em;
  text-align: left;
  vertical-align: top;
  border: 1px solid #E88C00;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

@media screen and (min-width: 768px) {
  body .table-style-2 tbody tr td {
    padding: 1em;
  }
}

body .table-style-2 tbody tr td:first-child {
  background-color: #EDEDED;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  body .table-style-2 tbody tr td:first-child {
    text-align: center;
  }
}

body .table-style-2 tbody tr td:last-child {
  border-right: none;
}

body .table-style-2 tbody tr td ul li {
  text-align: left;
  font-size: 0.9em;
}

body div.hr-left {
  position: absolute;
  top: 1em;
  right: 60px;
  width: 100%;
  border-bottom: 1px solid #EFBE50;
}

@media screen and (min-width: 992px) {
  body div.hr-left {
    top: 1.5em;
    right: 120px;
  }
}

@media screen and (min-width: 1600px) {
  body div.hr-left {
    right: 200px;
  }
}

body div.hr-right {
  position: absolute;
  bottom: 1em;
  left: 60px;
  width: 100%;
  border-bottom: 1px solid #EFBE50;
}

@media screen and (min-width: 992px) {
  body div.hr-right {
    bottom: 1.5em;
    left: 120px;
  }
}

@media screen and (min-width: 1600px) {
  body div.hr-right {
    left: 200px;
  }
}

/*---------------Kenny CSS Default: END-------------------------*/
.amrButton {
  -webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.amrButton.armButtonArrow:hover::before {
  -webkit-animation-name: bounceAlpha;
          animation-name: bounceAlpha;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.amrButton.armButtonArrow:hover::after {
  -webkit-animation-name: bounceAlpha;
          animation-name: bounceAlpha;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.amrButtonCus {
  -webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.amrButtonCus.armButtonArrowCus:hover::before {
  -webkit-animation-name: bounceAlpha;
          animation-name: bounceAlpha;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.amrButtonCus.armButtonArrowCus:hover::after {
  -webkit-animation-name: bounceAlpha;
          animation-name: bounceAlpha;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes bounceAlpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%, -50%) scale(1);
            transform: translateX(-50%, -50%) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-35%, -50%) scale(0.9);
            transform: translateX(-35%, -50%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-65%, -50%) scale(0.9);
            transform: translateX(-65%, -50%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(-50%, -50%) scale(1);
            transform: translateX(-50%, -50%) scale(1);
  }
}

@keyframes bounceAlpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%, -50%) scale(1);
            transform: translateX(-50%, -50%) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-35%, -50%) scale(0.9);
            transform: translateX(-35%, -50%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-65%, -50%) scale(0.9);
            transform: translateX(-65%, -50%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(-50%, -50%) scale(1);
            transform: translateX(-50%, -50%) scale(1);
  }
}

nav.solution-menu div.custom-container div.sol-header-row {
  /*mobile solution nav*/
  background-color: rgba(39, 39, 39, 0.84);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  padding: 0.5em;
}

nav.solution-menu div.custom-container div.sol-header-row a.sol-nav-header-wrapper-m {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

nav.solution-menu div.custom-container div.sol-header-row img.sol-nav-arrow-m {
  opacity: 0.9;
  width: 1.3em;
  height: 1.3em;
  margin-right: 0.2em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

nav.solution-menu div.custom-container div.sol-header-row img.sol-nav-arrow-m.active {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

nav.solution-menu div.custom-container div.sol-menu-content-m {
  display: none;
  background-color: rgba(39, 39, 39, 0.8);
  padding: 0.5em;
}

nav.solution-menu div.custom-container div.sol-menu-content-m ul.sol-menu-list-m a.m-sol-list-item li {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}

nav.solution-menu div.custom-container div.sol-menu-content-m ul.sol-menu-list-m img.mail-icon-m {
  width: 1.2em;
  margin-right: 0.3em;
  position: relative;
  top: -1px;
}

nav.solution-menu.active {
  z-index: 999;
}

@media only screen and (min-width: 1200px) {
  nav.solution-menu {
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #231815;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  nav.solution-menu div.custom-container div.sol-header-row {
    display: none;
  }
  nav.solution-menu div.custom-container div.sol-menu-content-m {
    display: none !important;
  }
}

.coustom-nav-title {
  position: absolute;
  left: 80%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

div.contact-label {
  display: none;
}

@media only screen and (min-width: 1200px) {
  div.contact-label {
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 45px;
    z-index: 999;
    background-color: #E46644;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    padding-top: 0.2em;
    padding-bottom: 0.5em;
  }
  div.contact-label a {
    display: inline-block;
  }
  div.contact-label a div.contact-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  div.contact-label a div.contact-box:last-child {
    border-bottom: none;
  }
  div.contact-label a div.contact-box h4 {
    font-size: 1em;
    color: white;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    text-orientation: mixed;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  div.contact-label a div.contact-box img {
    width: 30px;
  }
}

/* Slick Slider Carousel : START*/
.collapse:not(.show) {
  display: block !important;
  height: 0px;
  overflow: hidden;
}

.slick-dots {
  position: relative;
  bottom: 0;
}

/* Slider Carousel : END*/
/* slick dot: START*/
.slick-dots li.slick-active button:before {
  color: #676767;
}

.slick-dots li button:before {
  color: #676767;
}

/* slick dot: END*/
/* slick custom arrow: STRAT*/
figure.custom-arrow {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

figure.custom-arrow img {
  width: 3em;
  height: 3em;
  opacity: 0.8;
}

figure.custom-arrow:hover img {
  opacity: 1;
}

figure.custom-arrow.custom-arrow-prev {
  display: block;
  position: absolute;
  top: 7em;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

figure.custom-arrow.custom-arrow-prev:hover {
  left: -0.5em;
}

figure.custom-arrow.custom-arrow-next {
  display: block;
  position: absolute;
  top: 7em;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
}

figure.custom-arrow.custom-arrow-next:hover {
  right: -0.5em;
}

.slick-disabled img {
  opacity: 0.3;
}

.slick-disabled.custom-arrow.custom-arrow-prev img {
  opacity: 0.3;
}

.slick-disabled.custom-arrow.custom-arrow-prev:hover {
  left: 0;
  cursor: default;
}

.slick-disabled.custom-arrow.custom-arrow-next img {
  opacity: 0.3;
}

.slick-disabled.custom-arrow.custom-arrow-next:hover {
  right: 0;
  cursor: default;
}

/* slick custom arrow: END*/
/* prod-slider (slick carousel): START*/
body .prod-slider div.prod-tile {
  display: block;
}

body .prod-slider div.prod-tile div.pic-box {
  text-align: center;
}

body .prod-slider div.prod-tile div.pic-box img {
  max-width: 14em;
  margin: 0 auto;
}

body .prod-slider div.prod-tile figure {
  position: relative;
  margin-bottom: 1.5em;
}

body .prod-slider div.prod-tile figure figcaption {
  text-align: center;
}

body .prod-slider div.prod-tile figure figcaption h4 {
  font-size: 1em;
}

body .prod-slider div.prod-tile figure figcaption p {
  font-size: 0.9em;
}

body .prod-slider div.prod-tile figure figcaption ul {
  display: inline-block;
  list-style-type: disc;
  text-align: left;
  padding-left: 1.2em;
  padding-right: 0.5em;
}

body .prod-slider div.prod-tile figure figcaption ul li {
  font-size: 0.9em;
  line-height: 180%;
}

body .prod-slider div.prod-tile figure figcaption span.annotation {
  display: block;
  color: #c90012;
  font-size: inherit;
}

@media only screen and (min-width: 768px) {
  body .prod-slider div.prod-tile figure div.pic-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 992px) {
  body .prod-slider div.prod-tile {
    padding-right: 6px;
    padding-left: 6px;
    margin-bottom: 3em;
  }
  body .prod-slider div.prod-tile figure {
    margin-bottom: 0;
  }
  body .prod-slider div.prod-tile figure div.pic-box img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body .prod-slider div.prod-tile figure figcaption {
    max-width: 280px;
    margin: 0 auto;
  }
  body .prod-slider div.prod-tile figure figcaption h4 {
    font-size: 1em;
  }
  body .prod-slider div.prod-tile figure figcaption p {
    font-size: 0.95em;
  }
  body .prod-slider div.prod-tile figure figcaption ul li {
    font-size: 0.95em;
  }
  body .prod-slider div.prod-tile figure:hover div.pic-box img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@media only screen and (min-width: 1920px) {
  body div.prod-row {
    font-size: 17px;
  }
  body div.prod-row div.prod-tile figure div.pic-box img {
    max-width: 13em;
  }
  body div.prod-row div.prod-tile figure figcaption h4 {
    margin-top: 0.5em;
  }
  body div.prod-row div.prod-tile figure figcaption p {
    font-size: 0.8em;
  }
  body div.prod-row div.prod-tile figure figcaption ul li {
    font-size: 0.8em;
  }
}

/* prod-slider (slick carousel): END*/
/* mouseover tile: START */
article.post-tile {
  overflow: hidden;
  position: relative;
  display: block;
  min-height: 19em;
  background-size: cover;
  background-position: center center;
}

article.post-tile div.tile-entry-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 1.1em;
  top: calc(100% - 2.7em);
  /*transition*/
  -webkit-transition: opacity .35s, bottom .35s, top .4s;
  transition: opacity .35s, bottom .35s, top .4s;
  background-color: rgba(36, 36, 36, 0.7);
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-top: 0;
  padding-bottom: 0;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box h3 {
  width: 100%;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 0.4em;
  margin-bottom: 0.7em;
  text-align: center;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box h3 span {
  /* make it one-line ellipsis*/
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box .divider {
  border-top: none;
  border-bottom: 1px solid white;
  width: 100%;
  margin-top: 0.3em;
  margin-bottom: 1em;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box p {
  font-size: 0.95em;
  color: #ffffff;
  width: 100%;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box p.lines-to-show {
  color: #ffffff;
  padding: 0 1px;
  /*****variables*****/
  display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  height: 102.4px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box ul {
  color: #ffffff;
  list-style: disc;
  padding-left: 1.3em;
}

article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box ul li {
  font-size: 0.95em;
  color: #ffffff;
  line-height: 180%;
}

article.post-tile a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 768px) {
  article.post-tile div.tile-entry-content div.tile-entry-wrapper {
    top: calc(100% - 2.4em);
  }
}

@media only screen and (min-width: 992px) {
  article.post-tile div.tile-entry-content {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  article.post-tile div.tile-entry-content div.tile-entry-wrapper {
    top: calc(100% - 2.8em);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content {
    height: 100%;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box {
    height: 100%;
    margin: 0 auto;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box h3 {
    margin-top: 0.6em;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  article.post-tile div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box ul {
    display: inline-block;
    margin: 0 auto;
    max-width: 314px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    opacity: 0.4;
  }
  article.post-tile:hover div.tile-entry-content div.tile-entry-wrapper {
    top: 0;
  }
  article.post-tile:hover div.tile-entry-content div.tile-entry-wrapper div.entry-content {
    opacity: 1;
  }
  article.post-tile:hover div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  article.post-tile:hover div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box h3 {
    margin-top: 1.5em;
  }
  article.post-tile:hover div.tile-entry-content div.tile-entry-wrapper div.entry-content div.text-box ul {
    display: inline-block;
    margin: 0 auto;
    opacity: 1;
  }
}

/* mouseover tile: END */
ul.item-group li {
  padding-bottom: 1em;
}

ul.item-group li figure {
  text-align: center;
}

ul.item-group li figure img {
  max-width: 5em;
}

ul.item-group li figure figcaption {
  max-width: 17em;
  margin: 0 auto;
  display: block;
}

body .show {
  display: block;
}

body .hide {
  display: none;
}

body *:focus {
  outline: none;
}

body .has-error {
  border: 2px solid red !important;
}

body .has-error-2.agreement_checkbox {
  border: 2px solid red !important;
  outline: 2px solid red !important;
}

body .field-style {
  max-width: 100%;
  color: black !important;
  border: 1px solid #b8b8b8 !important;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  border-radius: 3px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

body .field-style::-webkit-input-placeholder {
  color: #292929 !important;
}

body .field-style:-ms-input-placeholder {
  color: #292929 !important;
}

body .field-style::-ms-input-placeholder {
  color: #292929 !important;
}

body .field-style::placeholder {
  color: #292929 !important;
}

body div .content {
  width: 100% !important;
}

.inquiry-sec {
  font-size: 16px;
}

.inquiry-sec div.container article {
  margin-top: 1.3em;
  margin-bottom: 0.6em;
}

.inquiry-sec div.container article div.row h1 {
  text-align: center;
  margin-bottom: 0.6em;
}

.inquiry-sec div.container article div.row h1 i {
  display: none;
}

.inquiry-sec div.container article div.row p {
  margin-bottom: 0;
  margin-top: 0;
}

.inquiry-sec div.container article div.row div {
  line-height: 170%;
  padding: 0 0.4em;
}

.inquiry-sec div.container form {
  display: block;
}

.inquiry-sec div.container form div.form-block {
  display: block;
}

.inquiry-sec div.container form div.form-block div.row div.field-block {
  padding-left: 0;
  padding-right: 0;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.has-error {
  border: 2px solid red !important;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box {
  width: 100%;
  min-height: 40px;
  position: relative;
  padding-right: 1.5em;
  background-color: #ffffff;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box input.input-style {
  display: inline-block;
  width: 100%;
  border-style: none;
  background-color: #ffffff;
  color: #292929;
  margin-left: 0.2em;
  -webkit-box-shadow: 0 0 0 50px white inset;
          box-shadow: 0 0 0 50px white inset;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box input.input-style::-webkit-input-placeholder {
  color: #292929;
  opacity: 1;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box input.input-style:-ms-input-placeholder {
  color: #292929;
  opacity: 1;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box input.input-style::-ms-input-placeholder {
  color: #292929;
  opacity: 1;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box input.input-style::placeholder {
  color: #292929;
  opacity: 1;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box input.input-style::-ms-expand {
  display: none !important;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box a.input-clear {
  display: none;
  position: absolute;
  top: 0.5em;
  right: 0.3em;
}

.inquiry-sec div.container form div.form-block div.row div.field-block div.field-box a.input-clear img {
  width: 0.7em;
  height: 0.7em;
}

.inquiry-sec div.container form div.form-block div.row div.field-block input:required:invalid {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.inquiry-sec div.container form div.form-block div.row div.field-block input::-ms-expand {
  display: none !important;
}

.inquiry-sec div.container form div.form-block div.row div.field-block select.field-style.has-error {
  border: 2px solid red !important;
}

.inquiry-sec div.container form div.form-block div.row div.field-block select.field-style {
  width: 100%;
  min-height: 40px;
  /*Resets Chrome/Safari and allows styling*/
  text-indent: 0.01px;
  text-overflow: "";
  /*Custom style*/
  padding: 0.5em 0.3em;
  border-radius: 3px;
  border: 1px solid #b8b8b8 !important;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 98% 50%;
  background-size: 6px 6px;
}

.inquiry-sec div.container form div.form-block div.row div.field-block select.field-style::-ms-expand {
  display: none;
}

.inquiry-sec div.container form div.form-block div.row div.field-block select.field-style:required:invalid {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.inquiry-sec div.container form div.form-block div.row div.field-block select.usa-state-field {
  display: none;
}

.inquiry-sec div.container form div.form-block div.row div.field-block select.usa-state-field.show {
  display: block;
}

.inquiry-sec div.container form div.form-block div.row div.field-block textarea.field-style.has-error {
  border: 2px solid red !important;
}

.inquiry-sec div.container form div.form-block div.row div.field-block textarea.field-style {
  width: 100%;
  margin-bottom: 0;
  padding-left: 0.3em;
  background-color: white;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block {
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #b8b8b8;
  height: 14em;
  overflow: hidden;
  overflow-y: scroll;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block div {
  line-height: 170%;
  font-size: 1em;
  color: #292929;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block h1 {
  margin-bottom: 1em;
  line-height: 150%;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block h2 {
  line-height: 150%;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block p {
  color: #292929;
  line-height: 170%;
  margin-top: 0;
  margin-bottom: 0;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block ul {
  color: #292929;
  list-style-type: disc;
  padding-left: 1.5em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block ul li {
  color: #292929;
  line-height: 170%;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block ol {
  color: #292929;
  list-style-type: decimal;
  padding-left: 1.5em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-block ol li {
  color: #292929;
  line-height: 170%;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block span.required-star {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 0.3em;
  color: white;
  margin-top: 4px;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block input.agreement-checkbox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 0.2em;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block input[type="checkbox"] {
  width: 1.1em;
  height: 1.1em;
  min-width: 1.1em;
  min-height: 1.1em;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block label {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  font-size: 1em;
  color: black !important;
  line-height: 150%;
  font-weight: normal;
  padding-right: 2px;
  margin-bottom: 0;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block label a {
  color: #0dd6a6 !important;
}

.inquiry-sec div.container form div.form-block div.row div.gdpr-checkbox-block label a:hover {
  color: rgba(13, 214, 166, 0.8) !important;
}

.inquiry-sec div.container form div.button-block {
  display: block;
  text-align: center;
}

.inquiry-sec div.container form div.button-block p.error-msg {
  margin-bottom: 0.5em;
  color: red !important;
  display: none;
}

.inquiry-sec div.container form div.button-block p.error-msg.show {
  display: block;
}

.inquiry-sec div.container form div.button-block button.submit-btn {
  display: inline-block;
  padding: 10px 46px 8px 56px !important;
  margin: 1em 2em;
  margin-bottom: 1.5em;
  border-radius: 30px !important;
  text-align: center;
  background: #2080CE !important;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 1px;
  -webkit-transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.inquiry-sec div.container form div.button-block button.submit-btn:hover {
  background: #224678 !important;
}

@keyframes bounceAlpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%, -50%) scale(1);
            transform: translateX(-50%, -50%) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(-35%, -50%) scale(0.9);
            transform: translateX(-35%, -50%) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-65%, -50%) scale(0.9);
            transform: translateX(-65%, -50%) scale(0.9);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(-50%, -50%) scale(1);
            transform: translateX(-50%, -50%) scale(1);
  }
}

@media only screen and (min-width: 768px) {
  section.inquiry-sec {
    font-size: 15px;
  }
  section.inquiry-sec div.container article {
    margin-top: 2em;
  }
  section.inquiry-sec div.container article div.row h1 {
    font-size: 1.6em;
  }
  section.inquiry-sec div.container form div.form-block div.row div.field-block {
    padding-left: 4px;
    padding-right: 4px;
  }
  section.inquiry-sec div.container form div.form-block div.row div.gdpr-block {
    margin-left: 4px;
    margin-right: 4px;
    padding-left: 1em;
    padding-right: 1em;
  }
}

@media only screen and (min-width: 1000px) {
  section.inquiry-sec div.container article div.row h1 {
    font-size: 1.8em;
    text-align: left;
    padding-left: 4px;
    font-weight: normal;
  }
  section.inquiry-sec div.container article div.row h1 i {
    display: inline-block;
    /* float: left; */
    color: #66c2af;
    font-size: 1.1em;
    margin-right: 0.2em;
    margin-left: 0.1em;
    position: relative;
    top: 3px;
  }
  section.inquiry-sec div.container article div.row p {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.display-none {
  display: none;
}

@media screen and (min-width: 768px) {
  .inquiry-sec .form-block .col-md-6 {
    position: relative;
    min-height: 1px;
    float: left;
    width: 100%;
  }
  .inquiry-sec .form-block .row {
    display: block;
  }
}

.inquiry-sec .form-block .col-xs-12 {
  position: relative;
  min-height: 1px;
  float: left;
  width: 100%;
}

.modal-body .container {
  width: 100%;
}

body .video-banner {
  font-size: 16px !important;
  position: relative;
  height: 60vh;
  min-height: 25rem;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  body .video-banner {
    min-height: 600px;
  }
}

body .video-banner h2 {
  font-size: 1em;
}

@media screen and (min-width: 768px) {
  body .video-banner h2 {
    font-size: 1.2em;
  }
}

body .video-banner .text-shadow {
  text-shadow: 0 0 10px black;
}

body .video-banner .custom-h1 {
  color: white;
  text-shadow: 0 0 10px black;
  font-size: 30px;
  font-weight: 500 !important;
  letter-spacing: 2px;
  margin: 0;
}

@media screen and (min-width: 992px) {
  body .video-banner .custom-h1 {
    font-size: 40px;
    margin-bottom: 0.2em;
  }
}

@media screen and (min-width: 1200px) {
  body .video-banner .custom-h1 {
    font-size: 48px;
    margin-bottom: 0.2em;
  }
}

body .video-banner__content {
  position: absolute;
  min-height: 100vw;
  width: 56.25vw;
  -webkit-transform: translate(-35%, -30%);
          transform: translate(-35%, -30%);
  -webkit-transition: 1s;
  transition: 1s;
  background-color: transparent;
  display: none;
  min-width: 250vw;
  height: 1000px;
  top: 5%;
  left: 20%;
}

@media screen and (min-width: 768px) {
  body .video-banner__content {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -45%);
            transform: translate(-50%, -45%);
  }
}

@media screen and (min-width: 768px) {
  body .video-banner__content {
    min-width: 150vw;
    top: 50%;
    left: 50%;
  }
}

@media screen and (min-width: 992px) {
  body .video-banner__content {
    min-width: 120vw;
    top: 50%;
    left: 50%;
  }
}

@media screen and (min-width: 1200px) {
  body .video-banner__content {
    min-width: 100vw;
    top: 40%;
  }
}

body .video-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.5;
  z-index: 1;
}

body .video-banner__titleBox {
  color: white;
  margin-top: 6em;
  z-index: 2;
  position: relative;
}

@media screen and (min-width: 768px) {
  body .video-banner__titleBox {
    margin-top: 13em;
  }
}

body .video-banner__subtitle {
  font-weight: 300;
  font-family: "Open Sans", Helvetica, Verdana, Tahoma, sans-serif;
  font-size: 1em !important;
}

@media screen and (min-width: 992px) {
  body .video-banner__subtitle {
    font-size: 1.3em !important;
  }
}

body .video-banner__videoTag {
  position: absolute;
  max-width: 110vh;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  body .video-banner__videoTag {
    max-width: initial;
    top: 40%;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}

body .video-banner .support {
  font-size: 10px;
  color: white;
  position: absolute;
  right: 3%;
  bottom: 3%;
  text-shadow: 0 0 10px black;
  z-index: 2;
}

.custom-fadeIn {
  -webkit-animation: customFadein 1s;
          animation: customFadein 1s;
}

@-webkit-keyframes customFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes customFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body section.all-section {
  display: block;
  font-size: 16px;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
  overflow: hidden;
}

body section.all-section div.container div.title-row {
  display: block;
  margin-bottom: 1em;
}

body section.all-section div.container div.title-row div.title-box {
  display: block;
}

body section.all-section div.container div.title-row div.title-box h2 {
  text-align: center;
}

body section.all-section div.container div.title-row div.title-box h3 {
  text-align: center;
}

body section.all-section div.container table {
  width: 100%;
}

/*---------------Desktops--------------------------------*/
@media only screen and (min-width: 992px) {
  body section.all-section {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}

body section.top-sec {
  font-size: 16px;
  position: relative;
  background: #d1cfcd;
  background: -webkit-gradient(linear, left top, right top, from(#d1cfcd), color-stop(49%, #d1cfcd), color-stop(51%, #565656), to(#565656));
  background: linear-gradient(90deg, #d1cfcd 0%, #d1cfcd 49%, #565656 51%, #565656 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d1cfcd",endColorstr="#565656",GradientType=1);
  overflow: hidden;
}

body section.top-sec .banner-block {
  max-width: 1920px;
  min-height: 500px;
  margin: 0 auto;
  /*BG*/
  background-image: url(../_img/AGV-AMR_Landing-Page_banner_500x375-PNG.png);
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  body section.top-sec .banner-block {
    background-image: url(../_img/AGV-AMR_Landing-Page-banner-for-pc.jpg);
  }
}

@media screen and (min-width: 992px) {
  body section.top-sec .banner-block {
    background-image: url(../_img/AGV-AMR_Landing-Page-banner-for-pc.jpg);
    min-height: 700px;
  }
}

@media screen and (min-width: 1921px) {
  body section.top-sec .banner-block {
    background-image: url(../_img/AGV-AMR_Landing-Page_banner-for-4K.png);
  }
}

body section.top-sec .banner-block .container {
  min-height: 500px;
}

body section.top-sec .banner-block .container .article-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-height: 500px;
  padding-top: 5em;
  padding-bottom: 2.5em;
}

@media screen and (min-width: 992px) {
  body section.top-sec .banner-block .container .article-wrapper {
    min-height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 6em;
  }
}

body section.top-sec .banner-block .container .article-wrapper article {
  background-color: rgba(232, 139, 0, 0.7);
  width: 100%;
  max-width: 750px;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 0.3em;
}

@media screen and (min-width: 768px) {
  body section.top-sec .banner-block .container .article-wrapper article {
    max-width: 550px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 1.3em;
    padding-right: 1.3em;
  }
}

@media screen and (min-width: 992px) {
  body section.top-sec .banner-block .container .article-wrapper article {
    max-width: 700px;
    padding-bottom: 1em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

@media screen and (min-width: 1200px) {
  body section.top-sec .banner-block .container .article-wrapper article {
    max-width: auto;
  }
}

body section.top-sec .banner-block .container .article-wrapper article h1 {
  font-size: 2.2em;
}

@media screen and (min-width: 768px) {
  body section.top-sec .banner-block .container .article-wrapper article h1 {
    font-size: 2.5em;
    text-align: left;
  }
}

@media screen and (min-width: 992px) {
  body section.top-sec .banner-block .container .article-wrapper article h1 {
    font-size: 3.2em;
  }
}

body section.top-sec .banner-block .container .article-wrapper article h2 {
  font-size: 1.4em;
  line-height: 150%;
}

@media screen and (min-width: 768px) {
  body section.top-sec .banner-block .container .article-wrapper article h2 {
    font-size: 1.8em;
    text-align: left;
  }
}

body section.top-sec:before {
  bottom: -1px;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 50px;
  border-color: transparent transparent transparent #f5f4f4;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #f5f4f4;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.top-sec:before {
    border-width: 40px 0 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  body section.top-sec:before {
    border-width: 70px 0 0 180px;
  }
}

body section.theme-sec {
  position: relative;
}

body section.theme-sec:before {
  bottom: -1px;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 50px;
  border-color: transparent transparent transparent #ffffff;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #ffffff;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.theme-sec:before {
    border-width: 40px 0 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  body section.theme-sec:before {
    border-width: 70px 0 0 180px;
  }
}

body section.theme-sec:after {
  top: -1px;
  right: 0;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 20px 0;
  border-color: transparent #565656 transparent transparent;
  line-height: 0px;
  _border-color: #000000 #565656 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.theme-sec:after {
    border-width: 0 100px 40px 0;
  }
}

@media screen and (min-width: 1600px) {
  body section.theme-sec:after {
    border-width: 0 180px 70px 0;
  }
}

body section.ai-sec {
  position: relative;
}

body section.ai-sec:before {
  bottom: -1px;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 50px;
  border-color: transparent transparent transparent #F5F4F4;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #F5F4F4;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.ai-sec:before {
    border-width: 40px 0 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  body section.ai-sec:before {
    border-width: 70px 0 0 180px;
  }
}

body section.ai-sec:after {
  top: -1px;
  right: 0;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 20px 0;
  border-color: transparent #f5f4f4 transparent transparent;
  line-height: 0px;
  _border-color: #000000 #f5f4f4 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.ai-sec:after {
    border-width: 0 100px 40px 0;
  }
}

@media screen and (min-width: 1600px) {
  body section.ai-sec:after {
    border-width: 0 180px 70px 0;
  }
}

.item-group figcaption p {
  font-weight: 600;
}

body section.benefit-sec, body section.video-sec {
  position: relative;
}

body section.benefit-sec:before, body section.video-sec:before {
  bottom: -1px;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 50px;
  border-color: transparent transparent transparent #F5F4F4;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #F5F4F4;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.benefit-sec:before, body section.video-sec:before {
    border-width: 40px 0 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  body section.benefit-sec:before, body section.video-sec:before {
    border-width: 70px 0 0 180px;
  }
}

body section.benefit-sec:after, body section.video-sec:after {
  top: -1px;
  right: 0;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 20px 0;
  border-color: transparent #f5f4f4 transparent transparent;
  line-height: 0px;
  _border-color: #000000 #f5f4f4 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.benefit-sec:after, body section.video-sec:after {
    border-width: 0 100px 40px 0;
  }
}

@media screen and (min-width: 1600px) {
  body section.benefit-sec:after, body section.video-sec:after {
    border-width: 0 180px 70px 0;
  }
}

body section.controller2-sec {
  position: relative;
}

body section.controller2-sec:before {
  bottom: -1px;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 50px;
  border-color: transparent transparent transparent #F5F4F4;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #F5F4F4;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.controller2-sec:before {
    border-width: 40px 0 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  body section.controller2-sec:before {
    border-width: 70px 0 0 180px;
  }
}

body section.controller2-sec:after {
  top: -1px;
  right: 0;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 20px 0;
  border-color: transparent #f5f4f4 transparent transparent;
  line-height: 0px;
  _border-color: #000000 #f5f4f4 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.controller2-sec:after {
    border-width: 0 100px 40px 0;
  }
}

@media screen and (min-width: 1600px) {
  body section.controller2-sec:after {
    border-width: 0 180px 70px 0;
  }
}

.resp-tab-item {
  background-color: #fff !important;
  color: #949495 !important;
  width: 33.333% !important;
  border-right: none !important;
  border-bottom: solid 1px #949495 !important;
}

.resp-tab-content {
  border: none !important;
}

h2.resp-tab-active {
  background-color: white !important;
  color: #E88C00;
  border-bottom: 1px solid #FFC94E !important;
}

h2.resp-accordion {
  background-color: white;
  color: #949495;
  border: none;
  border-bottom: solid 1px #949495;
}

h2.resp-accordion:first-child {
  border-top: none !important;
}

.resp-arrow {
  border-bottom: 10px solid #949495;
}

h2.resp-tab-active span.resp-arrow {
  border-top: 10px solid #FFC94E;
}

.resp-tab-active {
  color: #E88C00 !important;
  background-color: white !important;
  border-bottom: solid 1px #FFC94E !important;
  position: relative;
  font-weight: 700 !important;
}

.resp-tab-active:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 5px;
  background-color: #FFC94E;
  left: 50%;
  top: 96%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body section.app-sec {
  position: relative;
}

@media screen and (min-width: 992px) {
  body section.app-sec:before {
    bottom: -1px;
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 0 100px;
    border-color: transparent transparent transparent #ffffff;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #ffffff;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  }
}

@media screen and (min-width: 1600px) {
  body section.app-sec:before {
    border-width: 70px 0 0 180px;
  }
}

@media screen and (min-width: 992px) {
  body section.app-sec:after {
    top: -1px;
    right: 0;
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 40px 0;
    border-color: transparent #ffffff transparent transparent;
    line-height: 0px;
    _border-color: #000000 #ffffff #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  }
}

@media screen and (min-width: 1600px) {
  body section.app-sec:after {
    border-width: 0 180px 70px 0;
  }
}

.prod-tile figcaption h4 {
  font-weight: 600;
  color: #E88C00;
}

body section.prod-sec {
  position: relative;
}

body section.prod-sec:before {
  bottom: -1px;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 50px;
  border-color: transparent transparent transparent #FFFFFF;
  line-height: 0px;
  _border-color: #000000 #000000 #000000 #FFFFFF;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.prod-sec:before {
    border-width: 40px 0 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  body section.prod-sec:before {
    border-width: 70px 0 0 180px;
  }
}

body section.prod-sec:after {
  top: -1px;
  right: 0;
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 20px 0;
  border-color: transparent #FFFFFF transparent transparent;
  line-height: 0px;
  _border-color: #000000 #FFFFFF #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

@media screen and (min-width: 992px) {
  body section.prod-sec:after {
    border-width: 0 100px 40px 0;
  }
}

@media screen and (min-width: 1600px) {
  body section.prod-sec:after {
    border-width: 0 180px 70px 0;
  }
}

body section.inquiry-sec {
  background-position: center center;
  background-size: cover;
  padding-top: 0;
  padding-bottom: 0;
}

body section.inquiry-sec .bg-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  /*BG*/
  background-image: url(../_img/demo-kit-request.png);
  background-position: center center;
  background-size: cover;
}

body section.inquiry-sec .bg-wrapper article {
  margin-top: 3em;
  margin-bottom: 4em;
}

@media screen and (min-width: 768px) {
  body section.inquiry-sec .bg-wrapper article {
    min-height: 15em;
  }
}

@media screen and (min-width: 992px) {
  body section.inquiry-sec:after {
    top: -1px;
    right: 0;
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 40px 0;
    border-color: transparent #ffffff transparent transparent;
    line-height: 0px;
    _border-color: #000000 #ffffff #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  }
}

@media screen and (min-width: 1600px) {
  body section.inquiry-sec:after {
    border-width: 0 180px 70px 0;
  }
}

.video-sec h3 {
  font-size: 1em;
}

@media screen and (min-width: 992px) {
  .video-sec h3 {
    font-size: 1.2em;
  }
}
