/*********************
COLOURS
*********************/
/*********************
TYPOGRAPHY
*********************/
/* 
ampersand 
*/
span.amp {
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clear {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: normal;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
BORDER RADIUS
*********************/
/* USAGE: .border-radius(4px); */
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
BUTTONS
*********************/
.buttons,
.buttons:visited {
  transform: perspective(2000px);
  background: #87be3c;
  padding: 10px;
  display: block;
  color: #fff;
  width: 60%;
  font-weight: bold;
  font-size: 13px;
  background-image: url("../images/_template/arrow_white.html");
  background-repeat: no-repeat;
  background-position: 143px;
  border-radius: 0px;
  width: 170px;
  border: 0px;
  text-shadow: 0px 0px;
}
.buttons:hover,
.buttons:visited:hover,
.buttons:focus,
.buttons:visited:focus {
  background-color: #109189;
  color: #ffffff;
}
/* HIDE ELEMENTS ON MOBILE VIEW
-------------------------------------------------------------- */
.header-social,
#login-box,
#newsletter-box,
.sub-nav,
.screenNav {
  display: none;
}
/* HIDE HEADING ON LIGHT VONTROL PAGE
-------------------------------------------------------------- */
body.template-1989 .hero-title h2 {
  display: none;
}
/* GENERAL
-------------------------------------------------------------- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  color: #053d51;
  font-family: 'Cabin', Arial, sans-serif;
  line-height: 1.4;
}
a {
  color: #f29156;
}
/* FONTS
-------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  color: #053d51;
}
h1 {
  color: #053d51;
  font-size: 28px;
  margin-top: 0px;
}
h1 .orange {
  color: #f29156;
}
h3 {
  font-weight: 700;
  color: #f29156;
  font-size: 20px;
}
h3.download {
  line-height: 42px;
  padding-left: 60px;
  font-weight: 400;
  margin-bottom: 20px;
  background-image: url(../images/00-template/icon-download.png);
  background-repeat: no-repeat;
}
h3.view360 {
  line-height: 42px;
  padding-left: 50px;
  font-weight: 400;
  margin-bottom: 20px;
  background-image: url(../images/00-template/360degree-iconSML.png);
  background-repeat: no-repeat;
}
strong {
  font-weight: 700;
}
p,
blockquote,
li {
  font-size: 18px;
}
.orange {
  color: #f29156;
}
.blueTxt {
  color: #053d51;
}
.White {
  color: #fff;
}
code,
pre {
  padding: 0;
  border: none;
  font-size: 1rem;
  font-family: 'Cabin', Arial, sans-serif;
  line-height: 1.4;
}
/* ARROW BOUNCE
-------------------------------------------------------------- */
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
i {
  display: block;
  color: #053d51;
}
.arrow {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  /*margin-top: 30px;*/
  width: 40px;
  height: 60px;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
/* HEADER
-------------------------------------------------------------- */
.header-login #login {
  text-align: center;
}
.header-login #login .login-cont {
  margin-left: -15px;
  margin-right: -15px;
}
.header-login #login .login-cont a.login-btn {
  color: #fff;
  background-color: #f29156;
  padding: 10px 15px;
  display: inline-block;
}
.header-login #login .login-cont a.login-btn:visited {
  color: #fff;
}
.header-login #login .login-cont a.login-btn:hover {
  text-decoration: none;
}
.header-login .newsletter-btn,
.header-login .login-btn {
  float: left;
  display: inline-block;
  width: 50%;
  text-align: center;
  margin: 0px;
  padding: 10px 20px;
  font-weight: 700;
}
.header-login .login-btn {
  color: #fff;
  background-color: #f29156;
}
.header-login .newsletter-btn {
  background-color: #fff;
}
/*--- LOGIN BOX -- */
#login-box,
#newsletter-box {
  top: 38px;
  right: 0px;
  width: 100%;
  height: 250px;
}
div.keepontop {
  position: absolute;
  z-index: 1000;
}
.header-info-box {
  color: #053d51;
  padding: 15px 15px;
  background-color: #fff;
  font-size: 16px;
  text-align: left;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}
/* NEWSLETTER FORM
______________________________________________________________ */
.login-form .privacy-consent {
  margin-top: 15px;
}
.login-form p {
  margin: 0;
}
.login-form fieldset {
  border: none;
  padding: 0;
}
.login-form label {
  margin-left: 0;
  display: inline;
}
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  color: #053d51;
  border: none;
  width: 80%;
  border-bottom: 1px solid #053d51;
  /*font-size: 1em;*/
  margin: 0;
  padding: 5px 10px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: rgba(255, 255, 255, 0.2);
}
.login-form input[type="text"]::-webkit-input-placeholder,
.login-form input[type="email"]::-webkit-input-placeholder,
.login-form input[type="password"]::-webkit-input-placeholder,
.login-form input[type="text"]::-moz-placeholder,
.login-form input[type="email"]::-moz-placeholder,
.login-form input[type="password"]::-moz-placeholder,
.login-form input[type="text"]:-ms-input-placeholder,
.login-form input[type="email"]:-ms-input-placeholder,
.login-form input[type="password"]:-ms-input-placeholder,
.login-form input[type="text"]:-moz-placeholder,
.login-form input[type="email"]:-moz-placeholder,
.login-form input[type="password"]:-moz-placeholder {
  color: #053d51;
}
.login-form input[type="text"]:focus,
.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
  outline: none;
  -webkit-box-shadow: 3px 6px 15px -9px #6a6a6a;
  -moz-box-shadow: 3px 6px 15px -9px #6a6a6a;
  box-shadow: 3px 6px 15px -9px #6a6a6a;
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  transform: scale(1.01);
}
.login-form button[type="submit"] {
  margin: 0;
  color: #f29156;
  background-color: rgba(255, 255, 255, 0);
  padding: 10px 25px 10px 0px;
  border: none;
  background-image: url(../images/00-template/login-submit.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.login-form span.field-validation-error {
  display: inline-block;
  width: 90%;
  color: #fff !important;
  font-size: 1em;
}
header {
  /*padding: 30px 0;*/
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 999;
  font-size: 14px;
  background-color: #eeeeee;
  border-bottom: 4px solid #fff;
}
header .container {
  max-width: 100%;
  padding: 0;
}
header .row {
  margin: 0;
}
header label {
  margin-left: 25px;
  margin-right: 0px;
}
.brand {
  margin: 15px 0;
  max-width: 100px;
  text-align: left;
}
/* HERO BANNER
______________________________________________________________ */
.hero {
  margin-top: 135px;
}
.hero .hero-cont {
  position: absolute;
  /*top: 230px;*/
  top: 150px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-title {
  margin-top: 0px;
}
.hero .hero-title h2 {
  font-size: 32px;
  color: #fff;
}
/* GRID
-------------------------------------------------------------- */
.grid-section > div,
#download {
  padding: 20px 0;
}
.grid-section > div .prodDownload,
#download .prodDownload {
  padding-left: 20px;
}
.page-cont {
  clear: both;
}
/* LOGOS
-------------------------------------------------------------- */
.logos {
  text-align: center;
}
.logos IMG {
  margin: 0 30px;
}
/* VIDEO
-------------------------------------------------------------- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* HOMEPAGE
-------------------------------------------------------------- */
#homeCarousel {
  margin-top: 91px;
}
#homeCarousel .banner-cont IMG {
  max-width: 50%;
}
#homeCarousel .home-bannerL {
  margin-top: 20px;
}
#homeCarousel .home-bannerL .readMore a:link,
#homeCarousel .home-bannerL .readMore a:visited {
  display: inline-block;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 15px;
  color: #fff;
  background-color: #053d51;
}
#homeCarousel .home-bannerL .readMore a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #f29156;
}
#homeCarousel .carousel-indicators {
  display: none;
}
.prod-blocks {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.prod-blocks .prod-block {
  min-height: 200px;
  border-bottom: 1px solid #000;
}
.prod-blocks .prod-block1,
.prod-blocks .prod-block2,
.prod-blocks .prod-block3 {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.prod-blocks .prod-cont {
  position: absolute;
  padding: 0px;
  width: 100%;
  height: 100%;
}
.prod-blocks .prod-cont h2 {
  padding: 20px;
  margin: 0px;
  color: #053d51;
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.75);
}
.prod-blocks .prod-cont .readMore {
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: 15px;
}
.prod-blocks .prod-cont .readMore a:link,
.prod-blocks .prod-cont .readMore a:visited {
  display: inline-block;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  color: #053d51;
  background-color: #fff;
  border: 2px solid #053d51;
}
.prod-blocks .prod-cont .readMore a:hover {
  text-decoration: none;
  background-color: #eeeeee;
}
/* GENERAL LANDING PAGE
-------------------------------------------------------------- */
#landingCont {
  margin-top: 80px;
}
.landingBlock {
  display: table;
  width: 100%;
  margin-bottom: 30px;
}
.landingBlock .landingBlockCont {
  position: relative;
  height: 250px;
  display: table-cell;
  vertical-align: middle;
}
.landingBlock .landingBlockCont a h3 {
  z-index: 1;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
  text-align: center;
}
.landingBlock .landingBlockCont a:hover {
  text-decoration: none;
}
.landingBlock .landingBlockCont a:hover h3 {
  color: #ffffff;
}
.landingBlock .landingBlockCont:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
  top: 0;
  left: 0;
  position: absolute;
}
.landingBlock .landingBlockCont:hover:after {
  opacity: 1;
}
/* PRODUCT LANDING PAGE
-------------------------------------------------------------- */
.landingBlockCont {
  zoom: 1;
  overflow: hidden;
  margin-bottom: 60px;
}
.landingBlockCont a:hover {
  text-decoration: none;
}
.landingBlockCont a p {
  color: #053d51;
}
.product .summary {
  padding: 0 15px 15px 15px;
  border: 1px solid #053d51;
}
.product .summary h3 {
  background: url(../images/00-template/prodTitle-arrow.png);
  background-repeat: no-repeat;
  background-position: right;
}
.product .summary:hover {
  background-color: #eee;
}
/* PRODUCT DETAIL PAGE
-------------------------------------------------------------- */
#features-screen {
  display: none;
}
#product {
  margin-top: 139px;
}
#product .sub-nav {
  margin-bottom: 0px;
}
#product-sections {
  background-color: #f29156;
}
#product-sections ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
#product-sections ul li {
  list-style: none;
  display: inline;
}
#product-sections ul li a:link,
#product-sections ul li a:visited {
  display: inline-block;
  padding: 5px 10px ;
  color: rgba(255, 255, 255, 0.8);
  background-color: #f29156;
  -moz-transition: all 2s;
  -webkit-transition: all 2s;
  transition: all 2s;
}
#product-sections ul li a:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #ef752b;
}
.prod-title {
  display: none;
}
.carousel-links {
  position: absolute;
  z-index: 99;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.carousel-links IMG.ida-logo {
  margin-right: 10px;
  max-width: 60px;
}
.carousel-links IMG.view360 {
  margin-right: 20px;
}
.carousel-links .container {
  text-align: right;
}
.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}
.noMargin {
  margin-bottom: 0px;
}
#product-arrow {
  text-align: center;
  margin-top: 40px;
}
#product-info h2.features {
  text-align: center;
  color: #f29156;
}
#product-info ul.features-left {
  margin: 0px;
  padding: 0px;
}
#product-info ul.features-left li {
  list-style: none;
  margin-bottom: 10px;
  min-height: 35px;
  padding-top: 4px;
  padding-left: 60px;
  background-repeat: no-repeat;
  background-position: left;
}
#product-info ul.features-left li.smartcity {
  background-image: url(../images/1138/smartcity-icon.png);
}
#product-info ul.features-left li.toolfree {
  background-image: url(../images/1142/toolfree-access-icon.png);
}
#product-info ul.features-left li.clo {
  background-image: url(../images/1131/clo-icon.png);
}
#product-info ul.features-left li.ip66 {
  background-image: url(../images/1134/ip-icon.png);
}
#product-info ul.features-left li.ik10 {
  background-image: url(../images/1133/ik-icon.png);
}
#product-info ul.features-left li.ik08 {
  background-image: url(../images/1133/ik-icon.png);
}
#product-info ul.features-left li.modular {
  background-image: url(../images/1137/modular_icon.png);
}
#product-info ul.features-left li.lightweight {
  background-image: url(../images/1135/lightweight-icon.png);
}
#product-info ul.features-left li.colourTemp {
  background-image: url(../images/1470/colourtemp-icon.png);
}
#product-info ul.features-left li.zebra {
  background-image: url(../images/1625/zebra.png);
}
#product-info ul.features-right {
  margin: 0px;
  padding: 0px;
}
#product-info ul.features-right li {
  list-style: none;
  text-align: laft;
  margin-bottom: 10px;
  min-height: 35px;
  padding-top: 4px;
  padding-left: 60px;
  background-repeat: no-repeat;
  background-position: left;
}
#product-info ul.features-right li.lumen {
  background-image: url(../images/1136/lumen-boost-icon.png);
}
#product-info ul.features-right li.dim {
  background-image: url(../images/1132/dimming-icon.png);
}
#product-info ul.features-right li.surge {
  background-image: url(../images/1139/surge-protection-icon.png);
}
#product-info ul.features-right li.tilt {
  background-image: url(../images/1141/tilt-angle-icon.png);
}
#product-info ul.features-right li.modular {
  background-image: url(../images/1137/modular_icon.png);
}
#product-info ul.features-right li.lm6 {
  background-image: url(../images/1135/lightweight-icon.png);
}
#product-info ul.features-right li.lightweight {
  background-image: url(../images/1135/lightweight-icon.png);
}
#product-info ul.features-right li.colourTemp {
  background-image: url(../images/1470/colourtemp-icon.png);
}
#product-info ul.features-right li.zebra {
  background-image: url(../images/1625/zebra.png);
}
#features {
  background-image: none!important;
}
/* PRODUCT TABLE
______________________________________________________________ */
.product_content table {
  border: transparent;
  max-width: 100%;
}

.product_content table tr td:first-child {
  background-color: #197697;
}
.product_content table th,
.product_content table td {
  padding: 10px 15px;
  margin: 5px;
  /* border-right: 10px solid #053d51; */
}
.product_content table th {
  background-color: #197697;
  vertical-align: bottom;
}
.product_content table th.empty {
  background-color: transparent;
}
.product_content table td {
  vertical-align: top;
  overflow-wrap: break-word;
  word-break: break-word;
}
.product_content table th,
.product_content table td {
  vertical-align: top;
  margin: 5px;
  /* border-right: none; */
  border-bottom: 10px solid #053d51;
}
.member {
  margin: 158px 15px 20px 15px;
}
.member h1 {
  font-weight: 700;
}
.member h2 {
  font-size: 1.4em;
}
/* PRODUCT CONFIGURATOR MENU
______________________________________________________________ */
#prod-selector-menu {
  margin-bottom: 0px;
  margin-top: 40px;
}
#prod-selector-menu .prod-menu {
  margin-bottom: 50px;
}
#prod-selector-menu .prod-menu a:link,
#prod-selector-menu .prod-menu a:visited {
  display: block;
  height: 100%;
  min-height: 60px;
  padding: 8px;
  color: #053d51;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #eeeeee;
}
#prod-selector-menu .prod-menu a:hover,
#prod-selector-menu .prod-menu a.current:link,
#prod-selector-menu .prod-menu a.current:visited {
  color: #fff;
  text-decoration: none;
  background-color: #053d51;
}
#prod-selector-menu .prod-menu p {
  display: inline-block;
}
#prod-selector-menu .prod-menu .prod-menu-img {
  position: absolute;
  top: -52px;
  right: 15px;
}
/* PRODUCT CONFIGURATOR
______________________________________________________________ */
#prod-selector {
  margin: 0 -15px 60px -15px;
}
#prod-selector h3 {
  font-size: 15px;
}
.selector {
  margin-top: 45px;
  margin-bottom: 30px;
}
.form-item {
  clear: both;
  min-height: 26px;
  margin-bottom: 9px;
}
.form-item p {
  float: left;
  width: 40%;
  font-size: 0.9em;
}
.form-subtitle {
  width: 80%;
}
.form-subtitle h3 {
  color: #053d51;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
dl {
  width: 100%;
  overflow: hidden;
  background: #eee;
  padding: 0;
  margin: 0;
}
dt,
dd {
  float: left;
  min-height: 46px;
  border-bottom: 1px solid #ccc;
  padding: 0px 10px 5px 10px;
  margin-bottom: 5px;
}
dt.last-dt,
dd.last-dt {
  border-bottom: none;
}
dt:last-child,
dd:last-child {
  border-bottom: none;
}
dt.model,
dd.model {
  color: #fff;
  font-weight: 700;
  background-color: #053d51;
}
dt {
  width: 35%;
}
dd {
  width: 65%;
}
dt {
  clear: both;
}
.small-note {
  font-size: 0.9em;
  margin-top: 5px;
}
button#reset,
button.copy {
  text-align: left;
  margin-top: 15px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 25px;
  background-color: #f29156;
}
.button {
  margin-top: 15px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 25px 7px 25px;
  background-color: #f29156;
}
.button:hover {
  color: #fff;
  text-decoration: none;
}
.prod-notes {
  margin-top: 50px;
}
.prod-notes p {
  font-weight: 700;
}
.prod-notes textarea {
  width: 80%;
  height: 185px;
}
.prod-notes .btn-notes {
  clear: both;
}
button {
  color: #f29156;
  background-color: transparent;
  border: none;
  padding: 0px;
}
.config-result {
  margin-top: 40px;
}
.config-result H3 {
  font-size: 15px;
}
.config-result TABLE {
  font-size: 16px;
  margin: 20px 0 40px 0;
}
.config-result TABLE td {
  text-align: left;
  padding: 5px 10px;
}
.config-result TABLE td.prod-code,
.config-result TABLE td.prod-code-access,
.config-result TABLE td.prod-code-desc {
  background-color: #eee;
  border: 1px solid #000;
}
.config-result TABLE td.copy {
  text-align: right;
  font-size: 14px;
  padding-bottom: 20px;
}
.config-result TABLE td.copy .pCode {
  float: left;
  width: 50%;
}
.config-result TABLE td.copy .pAccess {
  float: left;
  width: 50%;
  text-align: right;
}
.config-result p.desc-title {
  font-weight: 700;
}
.config-result p.desc {
  padding: 10px;
  background-color: #eee;
}
/* NEWS
-------------------------------------------------------------- */
.newsHero IMG {
  min-height: 106px;
  margin-bottom: 30px;
}
.news-nav {
  margin-bottom: 15px;
}
nav.pagination {
  display: block;
  position: absolute;
  z-index: 99;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  /* transform: translateX(100%); */
  background-color: transparent;
  left: 20px;
  right: 0px;
  top: 10px;
  transition: none;
}
nav.pagination .pageFirst,
nav.pagination .pageNext,
nav.pagination .pagePrev,
nav.pagination .pageLast,
nav.pagination .page-num {
  padding: 5px 15px;
  margin-right: 10px;
}
.grid {
  margin-top: 60px;
}
.newsSummary:nth-child(3n + 2) {
    clear: both;
}

.newsSummary .grid-cont IMG {
  display: block;
  width: 100%;
}
.newsSummary .grid-cont .postCont {
  margin: 10px;
}
.newsSummary .grid-cont .postCont img.newsThumb {
  margin-bottom: 10px;
}
.newsSummary .grid-cont .postCont H3 {
  font-size: 1.2em;
  margin: 0px;
}
.newsSummary .grid-cont .postCont H3 a:link,
.newsSummary .grid-cont .postCont H3 a:visited {
  color: #053d51;
}
.newsSummary .grid-cont .postCont H3 a:hover {
  color: #f29156;
}
.newsSummary .grid-cont .postCont .newsDate {
  color: #053d51;
  font-size: 14px;
  border-bottom: 1px solid #053d51;
  margin-bottom: 20px;
}
.newsSummary .grid-cont .postCont p {
  color: #929191;
}
#news {
  margin-bottom: 60px;
}
#news h1 {
  font-size: 24px;
}
#news .pagingSummary {
  display: none;
}
#news .pageFirst,
#news .pageLast {
  background-color: #eee;
}
#news .newsIMG {
  margin-bottom: 40px;
}
#news .newsDate {
  color: #053d51;
  border-bottom: 1px solid #053d51;
  margin-bottom: 20px;
}
#news .newsArchive ul {
  margin: 0px;
  padding: 0px;
}
#news .newsArchive ul li {
  list-style: none;
  padding: 0 10px;
}
.newsSide-title {
  font-weight: 700;
}
ul.latest-news {
  margin: 0px;
  padding: 0px;
}
ul.latest-news li {
  font-size: 14px;
  line-height: 1.2em;
  list-style: none;
  margin-bottom: 10px;
}
ul.latest-news li a:link,
ul.latest-news li a:visited {
  color: #929191;
}
ul.latest-news li a:hover {
  color: #f29156;
}
.newsSide-archive {
  margin-top: 30px;
}
.newsSide-archive ul.smartArchive {
  margin: 0px;
  padding: 0px;
}
.newsSide-archive ul.smartArchive li {
  font-size: 14px;
  line-height: 1.2em;
  list-style: none;
  margin-bottom: 10px;
  padding: 0px;
}
.newsSide-archive ul.smartArchive li a:link,
.newsSide-archive ul.smartArchive li a:visited {
  color: #929191;
}
.newsSide-archive ul.smartArchive li a:hover {
  color: #f29156;
}
/* CONTACT PAGE
-------------------------------------------------------------- */
#contactPage {
  margin-top: 139px;
}
#contactPage #map {
  height: 300px;
}
#contactPage .sub-nav {
  clear: both;
  margin-top: 0px;
  margin-bottom: 0px;
}
#contactPage #location {
  margin: 0px;
}
#contactPage #location .address {
  margin: 20px 15px;
}
#contactPage #location .address span {
  display: block;
  font-size: 18px;
  color: #053d51;
  font-weight: 700;
  line-height: 1.3em;
}
#contactPage #location .address span[itemprop="addressCountry"] {
  color: #f29156;
  font-size: 24px;
}
#contactPage #location .address span[itemprop="telephone"] {
  color: #f29156;
}
#contactPage #location .contact-form .container {
  width: 100%;
}
#contactPage #location .contact-form .grid-section > div {
  padding: 0px;
}
#contactPage #location .contact-form .umbraco-forms-form {
  padding: 0px;
}
#contactPage #location .contact-form .umbraco-forms-form .umbraco-forms-field {
  margin-bottom: 10px;
}
#contactPage #location .contact-form .umbraco-forms-form input.text,
#contactPage #location .contact-form .umbraco-forms-form textarea {
  color: #053d51;
  width: 100%;
  font-size: 1em;
  margin: 0;
  padding: 5px 10px;
  background-color: #f2f2f2;
}
#contactPage #location .contact-form .umbraco-forms-form input.text:focus,
#contactPage #location .contact-form .umbraco-forms-form textarea:focus {
  outline: none;
}
#contactPage #location .contact-form .umbraco-forms-form input[type="submit"] {
  margin: 15px 0;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 0.2em;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #053d51;
  padding: 10px 30px;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#contactPage #location .contact-form .umbraco-forms-form input[type="submit"]:hover {
  background-color: #f29156;
}
#contactPage #location .contact-form .row-fluid {
  margin-left: -15px;
  margin-right: -15px;
}
#contactPage #location .contact-form h4 {
  margin: 0px;
  color: #f29156;
  font-weight: 700;
  line-height: 1.4em;
}
/* GENERIC FORM
-------------------------------------------------------------- */
#umbraco_form_451eff3e32fc4f92a74cc976076e393d.umbraco-forms-form input.text,
#umbraco_form_abf86710098a42faaaf1287557d1d6ed.umbraco-forms-form input.text,
#umbraco_form_451eff3e32fc4f92a74cc976076e393d.umbraco-forms-form textarea,
#umbraco_form_abf86710098a42faaaf1287557d1d6ed.umbraco-forms-form textarea {
  width: 100% !important;
  max-width: 100% !important;
}
.umbraco-forms-form {
  padding: 0px;
}
.umbraco-forms-form .umbraco-forms-field {
  margin-bottom: 10px;
}
.umbraco-forms-form input.text,
.umbraco-forms-form textarea {
  color: #053d51;
  width: 100%;
  max-width: 100%;
  font-size: 1em;
  margin: 0;
  padding: 5px 10px;
  background-color: #f2f2f2;
}
.umbraco-forms-form input.text:focus,
.umbraco-forms-form textarea:focus {
  outline: none;
}
.umbraco-forms-form input[type="submit"] {
  margin: 15px 0;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 0.2em;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #053d51;
  padding: 10px 30px;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.umbraco-forms-form input[type="submit"]:hover {
  background-color: #f29156;
}
.umbraco-forms-form .row-fluid {
  margin-left: -15px;
  margin-right: -15px;
}
.umbraco-forms-form legend {
  color: #053d51;
}
.umbraco-forms-form h4 {
  margin: 0px;
  color: #f29156;
  font-weight: 700;
  line-height: 1.4em;
}
/* FOOTER CTA
-------------------------------------------------------------- */
.home-cta {
  text-align: center;
}
.home-cta h3 {
  font-size: 22px;
  line-height: 1.2em;
  margin: 0px;
}
.home-cta a:link,
.home-cta a:visited {
  color: #fff;
  text-decoration: none;
}
.home-cta a:hover {
  color: #fff;
}
.home-cta span.orange a:link,
.home-cta span.orange a:visited {
  color: #f29156;
}
.home-cta span.orange a:hover {
  color: #f29156;
}
/* BACK TO TOP
-------------------------------------------------------------- */
#site-scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  color: #898989;
  height: 35px;
  line-height: 35px;
  width: 35px;
  font-size: 16px;
  border-radius: 50%;
  background: #ededed;
  border: 3px solid #fff;
  text-align: center;
  z-index: 998;
  /*visibility: hidden; */
  opacity: 1;
  transition: all 0.25s ease-in-out;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#site-scroll-top:hover {
  border-color: transparent;
  text-decoration: none;
  color: #333;
  background: #d8d8d8;
}
#site-scroll-top .show {
  display: block;
  visibility: visible;
  opacity: 1;
}
/* LOGIN
-------------------------------------------------------------- */
#login-page {
  margin-top: 80px;
  margin-bottom: 60px;
}
#login-page form label {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 3px;
}
#login-page form input[type=text],
#login-page form input[type="password"] {
  color: #053d51;
  background-color: rgba(238, 238, 238, 0.8);
  margin-bottom: 10px;
  border: 1px solid #eee !important;
  border-radius: 0px;
  width: 100%;
  padding: 5px 10px;
  height: 40px;
}
#login-page form button {
  float: right;
  margin-top: 15px;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 40px;
  background-color: #f29156;
  border: 1px solid #fff;
}
#login-page form button.logout {
  float: left;
}
.forgotten {
  padding-top: 20px;
}
.forgotten .toggle-login {
  text-align: right;
}
/* FOOTER
-------------------------------------------------------------- */
.footer {
  background-color: #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer #footer-id {
  /*position: relative;
		min-height: 175px;*/
}
.footer #footer-id .copyright {
  position: absolute;
  bottom: 0px;
}
.footer #footer-id .copyright p {
  font-size: 11px;
}
.footer #footer-nav {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.footer #footer-nav ul {
  margin: 10px 0 0 0;
  padding: 0px;
}
.footer #footer-nav ul li {
  font-size: 15px;
  margin-bottom: 5px;
}
.footer #footer-nav a {
  color: #053d51;
}
.footer #footer-contact p {
  font-size: 22px;
  font-weight: 700;
  color: #053d51;
}
.footer #footer-contact p a {
  color: #053d51;
}
.footer #footer-social IMG.middle {
  margin: 0 5px;
}
.footer .login,
.footer .privacy {
  display: inline;
  margin-top: 20px;
  line-height: 1em;
}
.footer .login a,
.footer .privacy a {
  color: #053d51;
}
.footer .login {
  border-right: 1px solid #053d51;
  margin-right: 7px;
  padding-right: 10px;
}
.footer .copyright {
  display: inline;
  margin-top: 20px;
}
.footer .copyright p {
  font-size: 14px;
}

.footer #footer-id img {
  height: 77px;
}

.landingBlockCont {
  display: flex;
  flex-wrap: wrap;
}

.product .summary {
  width: 100%;
}

.landingBlockCont_box {
  margin-bottom: 2%;
}

.landingBlockCont_box .limg {
  height: min(25vw, 326px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.landingBlockCont_box .limg .swiper {
  width: 100%;
  height: 100%;
}

.landingBlockCont_box .limg .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.landingBlockCont_box .limg .back {
  background-repeat: no-repeat;
  background-position: bottom;
  /* background-size: 100% auto; */
  min-height: 100%;
  background-size: contain;
  height: 100%;
}

.landingBlockCont_box .limg .back img {
  opacity: 0;
}

.landingBlockCont_box .product {
  height: 100%;
}

.landingBlockCont_box .product a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.landingBlockCont_box .product a .summary {
  flex: 1;
}

.case {
  display: flex;
  flex-wrap: wrap;
}

.case_box {
  margin-bottom: 3%;
}

.case_box>div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case_box .cimg {
  flex: 1;
}

.newsSummary .grid-cont .postCont img.newsThumb {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  height: 19.3vw;
}


.case_detail {
  padding: 3% 0;
}

.case_detail h1 {
  margin-bottom: 4%;
}


#download .swiper-g {
  height: 46vw;
  margin-bottom: 10px;
  max-height: 460px;
  border: 1px solid #ccc;
}

#download .swiper-g .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#download .swiper-g .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

#download .swiper-t {
  height: 14vw;
  max-height: 150px;
}

#download .swiper-t .swiper-slide {
  padding: 2%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  cursor: pointer;
}

#download .swiper-t .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

#download .swiper-t .swiper-slide-thumb-active {
  border-color: #053d51;
}



@media screen and (max-width:992px) {
    #download .swiper-g {
      max-height: 350px;
    }

    #download .swiper-t {
      max-height: 80px;
    }

    .newsSummary:nth-child(3n + 2) {
      clear: none;
    }

    .newsSummary:nth-child(2n + 2) {
      clear: both;
    }
}

@media screen and (max-width:768px) {
  .landingBlockCont_box .limg {
    height: 70vw;
  }

  .newsSummary .grid-cont .postCont img.newsThumb {
    height: 55vw;
  }

  #download .swiper-g {
    height: 60vw;
    max-height: none;
  }

  #download .swiper-t {
    height: 20vw;
    max-height: none;
  }
}

.products_nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 16px;
  margin-bottom: 2em;
}

.products_nav a {
  font-size: inherit;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0.6em 1em;
  color: #053d51;
  border: 1px solid #053d51;
  text-align: center;
}

.products_nav a.active {
  background-color: #053d51;
  color: #fff;
}

@media screen and (max-width:768px) {
  .products_nav a {
    flex: none;
    width: calc((100% - 1em) / 2);
  }
}

@media screen and (max-width:431px) {
  .products_nav {
    font-size: 12px;
  }
}