/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

 .owl-carousel,
 .owl-carousel .owl-item {
     -webkit-tap-highlight-color: transparent;
     position: relative;
 }
 
 .owl-carousel {
     display: none;
     width: 100%;
     z-index: 1;
 }
 
 .owl-carousel .owl-stage {
     position: relative;
     -ms-touch-action: pan-Y;
     -moz-backface-visibility: hidden;
 }
 
 .owl-carousel .owl-stage:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
 }
 
 .owl-carousel .owl-stage-outer {
     position: relative;
     overflow: hidden;
     -webkit-transform: translate3d(0, 0, 0);
 }
 
 .owl-carousel .owl-item,
 .owl-carousel .owl-wrapper {
     -webkit-backface-visibility: hidden;
     -moz-backface-visibility: hidden;
     -ms-backface-visibility: hidden;
     -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
     -ms-transform: translate3d(0, 0, 0);
 }
 
 .owl-carousel .owl-item {
     min-height: 1px;
     float: left;
     -webkit-backface-visibility: hidden;
     -webkit-touch-callout: none;
 }
 
 .owl-carousel .owl-item img {
     display: block;
     width: 100%;
 }
 
 .owl-carousel .owl-dots.disabled,
 .owl-carousel .owl-nav.disabled {
     display: none;
 }
 
 .no-js .owl-carousel,
 .owl-carousel.owl-loaded {
     display: block;
 }
 
 .owl-carousel .owl-dot,
 .owl-carousel .owl-nav .owl-next,
 .owl-carousel .owl-nav .owl-prev {
     cursor: pointer;
     cursor: hand;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
 }
 
 .owl-carousel.owl-loading {
     opacity: 0;
     display: block;
 }
 
 .owl-carousel.owl-hidden {
     opacity: 0;
 }
 
 .owl-carousel.owl-refresh .owl-item {
     visibility: hidden;
 }
 
 .owl-carousel.owl-drag .owl-item {
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
 }
 
 .owl-carousel.owl-grab {
     cursor: move;
     cursor: grab;
 }
 
 .owl-carousel.owl-rtl {
     direction: rtl;
 }
 
 .owl-carousel.owl-rtl .owl-item {
     float: right;
 }
 
 .owl-carousel .animated {
     animation-duration: 1s;
     animation-fill-mode: both;
 }
 
 .owl-carousel .owl-animated-in {
     z-index: 0;
 }
 
 .owl-carousel .owl-animated-out {
     z-index: 1;
 }
 
 .owl-carousel .fadeOut {
     animation-name: fadeOut;
 }
 
 @keyframes fadeOut {
     0% {
         opacity: 1;
     }
     100% {
         opacity: 0;
     }
 }
 
 .owl-height {
     transition: height 0.5s ease-in-out;
 }
 
 .owl-carousel .owl-item .owl-lazy {
     opacity: 0;
     transition: opacity 0.4s ease;
 }
 
 .owl-carousel .owl-item img.owl-lazy {
     transform-style: preserve-3d;
 }
 
 .owl-carousel .owl-video-wrapper {
     position: relative;
     height: 100%;
     background: #000;
 }
 
 .owl-carousel .owl-video-play-icon {
     position: absolute;
     height: 80px;
     width: 80px;
     left: 50%;
     top: 50%;
     margin-left: -40px;
     margin-top: -40px;
     background: url(../owl.video.play.html) no-repeat;
     cursor: pointer;
     z-index: 1;
     -webkit-backface-visibility: hidden;
     transition: transform 0.1s ease;
 }
 
 .owl-carousel .owl-video-play-icon:hover {
     -ms-transform: scale(1.3, 1.3);
     transform: scale(1.3, 1.3);
 }
 
 .owl-carousel .owl-video-playing .owl-video-play-icon,
 .owl-carousel .owl-video-playing .owl-video-tn {
     display: none;
 }
 
 .owl-carousel .owl-video-tn {
     opacity: 0;
     height: 100%;
     background-position: center center;
     background-repeat: no-repeat;
     background-size: contain;
     transition: opacity 0.4s ease;
 }
 
 .owl-carousel .owl-video-frame {
     position: relative;
     z-index: 1;
     height: 100%;
     width: 100%;
 }
 
 
 /* Magnific Popup CSS */
 
 .mfp-bg {
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1042;
     overflow: hidden;
     position: fixed;
     background: #0b0b0b;
     opacity: 0.8;
     filter: alpha(opacity=80);
 }
 
 .mfp-wrap {
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1043;
     position: fixed;
     outline: none !important;
     -webkit-backface-visibility: hidden;
 }
 
 .mfp-container {
     text-align: center;
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     padding: 0 8px;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
 }
 
 .mfp-container:before {
     content: "";
     display: inline-block;
     height: 100%;
     vertical-align: middle;
 }
 
 .mfp-align-top .mfp-container:before {
     display: none;
 }
 
 .mfp-content {
     position: relative;
     display: inline-block;
     vertical-align: middle;
     margin: 0 auto;
     text-align: left;
     z-index: 1045;
 }
 
 .mfp-inline-holder .mfp-content,
 .mfp-ajax-holder .mfp-content {
     width: 100%;
     cursor: auto;
 }
 
 .mfp-ajax-cur {
     cursor: progress;
 }
 
 .mfp-zoom-out-cur,
 .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
     cursor: pointer;
 }
 
 .mfp-zoom {
     cursor: pointer;
     cursor: -webkit-zoom-in;
     cursor: -moz-zoom-in;
     cursor: zoom-in;
 }
 
 .mfp-auto-cursor .mfp-content {
     cursor: auto;
 }
 
 .mfp-close,
 .mfp-arrow,
 .mfp-preloader,
 .mfp-counter {
     -webkit-user-select: none;
     -moz-user-select: none;
     user-select: none;
 }
 
 .mfp-loading.mfp-figure {
     display: none;
 }
 
 .mfp-hide {
     display: none !important;
 }
 
 .mfp-preloader {
     color: #CCC;
     position: absolute;
     top: 50%;
     width: auto;
     text-align: center;
     margin-top: -0.8em;
     left: 8px;
     right: 8px;
     z-index: 1044;
 }
 
 .mfp-preloader a {
     color: #CCC;
 }
 
 .mfp-preloader a:hover {
     color: #FFF;
 }
 
 .mfp-s-ready .mfp-preloader {
     display: none;
 }
 
 .mfp-s-error .mfp-content {
     display: none;
 }
 
 button.mfp-close,
 button.mfp-arrow {
     overflow: visible;
     cursor: pointer;
     background: transparent;
     border: 0;
     -webkit-appearance: none;
     display: block;
     outline: none;
     padding: 0;
     z-index: 1046;
     -webkit-box-shadow: none;
     box-shadow: none;
 }
 
 button::-moz-focus-inner {
     padding: 0;
     border: 0;
 }
 
 .mfp-close {
     width: 44px;
     height: 44px;
     line-height: 44px;
     position: absolute;
     right: 0;
     top: 0;
     text-decoration: none;
     text-align: center;
     opacity: 0.65;
     filter: alpha(opacity=65);
     padding: 0 0 18px 10px;
     color: #FFF;
     font-style: normal;
     font-size: 28px;
     font-family: Arial, Baskerville, monospace;
 }
 
 .mfp-close:hover,
 .mfp-close:focus {
     opacity: 1;
     filter: alpha(opacity=100);
 }
 
 .mfp-close:active {
     top: 1px;
 }
 
 .mfp-close-btn-in .mfp-close {
     color: #333;
 }
 
 .mfp-image-holder .mfp-close,
 .mfp-iframe-holder .mfp-close {
     color: #FFF;
     right: -6px;
     text-align: right;
     padding-right: 6px;
     width: 100%;
 }
 
 .mfp-counter {
     position: absolute;
     top: 0;
     right: 0;
     color: #CCC;
     font-size: 12px;
     line-height: 18px;
     white-space: nowrap;
 }
 
 .mfp-arrow {
     position: absolute;
     opacity: 0.65;
     filter: alpha(opacity=65);
     margin: 0;
     top: 50%;
     margin-top: -55px;
     padding: 0;
     width: 90px;
     height: 110px;
     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }
 
 .mfp-arrow:active {
     margin-top: -54px;
 }
 
 .mfp-arrow:hover,
 .mfp-arrow:focus {
     opacity: 1;
     filter: alpha(opacity=100);
 }
 
 .mfp-arrow:before,
 .mfp-arrow:after,
 .mfp-arrow .mfp-b,
 .mfp-arrow .mfp-a {
     content: "";
     display: block;
     width: 0;
     height: 0;
     position: absolute;
     left: 0;
     top: 0;
     margin-top: 35px;
     margin-left: 35px;
     border: medium inset transparent;
 }
 
 .mfp-arrow:after,
 .mfp-arrow .mfp-a {
     border-top-width: 13px;
     border-bottom-width: 13px;
     top: 8px;
 }
 
 .mfp-arrow:before,
 .mfp-arrow .mfp-b {
     border-top-width: 21px;
     border-bottom-width: 21px;
     opacity: 0.7;
 }
 
 .mfp-arrow-left {
     left: 0;
 }
 
 .mfp-arrow-left:after,
 .mfp-arrow-left .mfp-a {
     border-right: 17px solid #FFF;
     margin-left: 31px;
 }
 
 .mfp-arrow-left:before,
 .mfp-arrow-left .mfp-b {
     margin-left: 25px;
     border-right: 27px solid #3F3F3F;
 }
 
 .mfp-arrow-right {
     right: 0;
 }
 
 .mfp-arrow-right:after,
 .mfp-arrow-right .mfp-a {
     border-left: 17px solid #FFF;
     margin-left: 39px;
 }
 
 .mfp-arrow-right:before,
 .mfp-arrow-right .mfp-b {
     border-left: 27px solid #3F3F3F;
 }
 
 .mfp-iframe-holder {
     padding-top: 40px;
     padding-bottom: 40px;
 }
 
 .mfp-iframe-holder .mfp-content {
     line-height: 0;
     width: 100%;
     max-width: 1000px;
 }
 
 .mfp-iframe-holder .mfp-close {
     top: -40px;
 }
 
 .mfp-image-holder .mfp-close {
     top: -16px;
 }
 
 .mfp-iframe-scaler {
     width: 100%;
     height: 0;
     overflow: hidden;
     padding-top: 56.25%;
 }
 
 .mfp-iframe-scaler iframe {
     position: absolute;
     display: block;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
     background: #000;
 }
 
 
 /* Main image in popup */
 
 img.mfp-img {
     height: auto;
     display: block;
     line-height: 0;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
     padding: 20px 0 30px;
     margin: 0 auto;
     max-width: 100%;
     max-height: 680px !important;
 }
 
 
 /* The shadow behind the image */
 
 .mfp-figure {
     line-height: 0;
 }
 
 .mfp-figure:after {
     content: "";
     position: absolute;
     left: 0;
     top: 40px;
     bottom: 40px;
     display: block;
     right: 0;
     width: auto;
     height: auto;
     z-index: -1;
     box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
     background: #444;
 }
 
 .mfp-figure small {
     color: #BDBDBD;
     display: block;
     font-size: 12px;
     line-height: 14px;
 }
 
 .mfp-figure figure {
     margin: 0;
 }
 
 .mfp-bottom-bar {
     margin-top: -26px;
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     cursor: auto;
 }
 
 .mfp-title {
     text-align: left;
     line-height: 18px;
     color: #F3F3F3;
     word-wrap: break-word;
     padding-right: 36px;
 }
 
 .mfp-image-holder .mfp-content {
     max-width: 100%;
 }
 
 .mfp-gallery .mfp-image-holder .mfp-figure {
     cursor: pointer;
 }
 
 @media screen and (max-width: 800px) and (orientation: landscape),
 screen and (max-height: 300px) {
     /**
        * Remove all paddings around the image on small screen
        */
     .mfp-img-mobile .mfp-image-holder {
         padding-left: 0;
         padding-right: 0;
     }
     .mfp-img-mobile img.mfp-img {
         padding: 0;
     }
     .mfp-img-mobile .mfp-figure:after {
         top: 0;
         bottom: 0;
     }
     .mfp-img-mobile .mfp-figure small {
         display: inline;
         margin-left: 5px;
     }
     .mfp-img-mobile .mfp-bottom-bar {
         background: rgba(0, 0, 0, 0.6);
         bottom: 0;
         margin: 0;
         top: auto;
         padding: 3px 5px;
         position: fixed;
         -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
         box-sizing: border-box;
     }
     .mfp-img-mobile .mfp-bottom-bar:empty {
         padding: 0;
     }
     .mfp-img-mobile .mfp-counter {
         right: 5px;
         top: 3px;
     }
     .mfp-img-mobile .mfp-close {
         top: 0;
         right: 0;
         width: 35px;
         height: 35px;
         line-height: 35px;
         background: rgba(0, 0, 0, 0.6);
         position: fixed;
         text-align: center;
         padding: 0;
     }
 }
 
 @media all and (max-width: 900px) {
     .mfp-arrow {
         transform: scale(0.75);
     }
     .mfp-arrow-left {
         -webkit-transform-origin: 0;
         transform-origin: 0;
     }
     .mfp-arrow-right {
         -webkit-transform-origin: 100%;
         transform-origin: 100%;
     }
     .mfp-container {
         padding-left: 6px;
         padding-right: 6px;
     }
 }
 
 .mfp-ie7 .mfp-img {
     padding: 0;
 }
 
 .mfp-ie7 .mfp-bottom-bar {
     width: 600px;
     left: 50%;
     margin-left: -300px;
     margin-top: 5px;
     padding-bottom: 5px;
 }
 
 .mfp-ie7 .mfp-container {
     padding: 0;
 }
 
 .mfp-ie7 .mfp-content {
     padding-top: 44px;
 }
 
 .mfp-ie7 .mfp-close {
     top: 0;
     right: 0;
     padding-top: 0;
 }
 
 #homepage-slider {
     min-height: calc(100vh - 84px);
     overflow: hidden;
     position: relative;
 }
 
 #homepage-slider .owl-carousel {
     min-height: 200px;
 }
 
 #homepage-slider .owl-dots {
     position: absolute;
     width: 100%;
     z-index: 51;
     bottom: 80px;
     left: 0;
     text-align: center;
 }
 
 #homepage-slider .owl-dots .owl-dot {
     display: inline-block;
     border-radius: 100%;
     border: 2px solid #fff;
     height: 20px;
     width: 20px;
     margin: 0 10px;
     position: relative;
 }
 
 #homepage-slider .owl-dots .owl-dot.active:before {
     content: "";
     height: 10px;
     width: 10px;
     background-color: #fff;
     border-radius: 100%;
     left: 50%;
     top: 50%;
     display: block;
     position: absolute;
     transform: translate(-50%, -50%);
 }
 
 #homepage-slider .owl-prev,
 #homepage-slider .owl-next {
     z-index: 50;
     position: absolute;
     color: #fff;
     font-size: 37px;
     top: 50%;
     transform: translateY(-30%);
 }
 
 #homepage-slider .owl-prev {
     left: 20px;
 }
 
 #homepage-slider .owl-next {
     right: 20px;
 }
 
 #homepage-slider .item {
     position: relative;
     height: calc(100vh - 84px);
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center center;
     overflow: hidden;
 }
 
 #homepage-slider .item .playIcon {
     display: none;
 }
 
 #homepage-slider .item.visorevideo .playIcon {
     display: block;
     background: transparent url("../png/play.png") no-repeat 0 0;
     width: 80px;
     height: 80px;
     background-size: cover;
     position: relative;
     left: 50%;
     margin-top: 30px;
 }
 
 #homepage-slider .headline {
     position: absolute;
     z-index: 20;
     width: 100%;
     max-width: 1180px;
     text-align: center;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     padding: 0 5em;
 }
 
 #homepage-slider .headline h3 {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 90px;
     margin: 0.2em 0 0.2em;
     padding: 0;
     text-transform: uppercase;
     line-height: 0.9em;
     color: #fff;
     letter-spacing: 2px;
 }
 
 #homepage-slider .headline .h4 {
     font-size: 18px;
     color: #fff;
     max-width: 1060px;
     margin: 0 auto;
 }
 
 @media only screen and (max-width: 992px) {
     #homepage-slider .headline .h4 {
         font-size: 16px;
     }
 }
 
 @media only screen and (max-width: 768px) {
     #homepage-slider .headline .h4 {
         display: none;
     }
 }
 
 #homepage-slider .headline .mainTag {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-BookCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 400;
     font-size: 22px;
     position: relative;
 }
 
 #homepage-slider .headline .mainTag .brk-left,
 #homepage-slider .headline .mainTag .brk-right {
     height: 37px;
     width: 16px;
     display: block;
     position: absolute;
     top: -7px;
 }
 
 #homepage-slider .headline .mainTag .brk-left {
     left: -20px;
 }
 
 #homepage-slider .headline .mainTag .brk-right {
     right: -20px;
 }
 
 #homepage-slider .headline .mainTag[data-cat=""] {
     display: none;
 }
 
 #homepage-slider .headline .mainTag[data-cat$=oad] .brk-left,
 #homepage-slider .headline .mainTag[data-cat$=oad] .brk-right {
     fill: #C6C6C6;
 }
 
 #homepage-slider .headline .mainTag[data-cat$=ife] .brk-left,
 #homepage-slider .headline .mainTag[data-cat$=ife] .brk-right {
     fill: #FFDD00;
 }
 
 #homepage-slider .headline .mainTag[data-cat$=ace] .brk-left,
 #homepage-slider .headline .mainTag[data-cat$=ace] .brk-right {
     fill: #D2373A;
 }
 
 #homepage-slider .headline .mainTag a {
     color: #fff;
     text-transform: uppercase;
 }
 
 #homepage-slider .noTitle .headline {
     display: none;
 }
 
 #homepage-slider img {
     position: relative;
     z-index: 10;
     width: 100%;
     height: auto;
 }
 
 @media only screen and (max-width: 992px) {
     #homepage-slider img {
         transform: translateX(-25%);
     }
 }
 
 @media only screen and (max-width: 768px) {
     #homepage-slider img {
         transform: translateX(-35%);
     }
 }
 
 @media only screen and (max-width: 568px) {
     #homepage-slider img {
         transform: translateX(-50%);
     }
 }
 
 @media only screen and (max-width: 320px) {
     #homepage-slider img {
         transform: translateX(-56%);
     }
 }
 
 #homepage-slider .link {
     position: absolute;
     z-index: 20;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
 }
 
 #homepage-slider .link-cta {
     text-transform: uppercase;
     background: transparent;
     color: #fff;
     border-radius: 0;
     font-size: 11px;
     border: 2px solid #fff;
     padding: 14px 32px 13px;
     letter-spacing: 0.5px;
     font-family: "Gotham 6r", "Gotham A", "Gotham B", "Gotham-Bold", Arial, Helvetica, sans-serif;
     font-weight: 700;
 }
 
 #homepage-slider .link-cta:first-child {
     background: #fff;
     color: #222;
     margin-right: 10px;
 }
 
 @media only screen and (max-width: 480px) {
     #homepage-slider .link-cta:first-child {
         margin: 10px 0;
     }
 }
 
 #homepage-slider #go-down {
     height: 45px;
     width: 50px;
     background: transparent url("../png/arrows.png") no-repeat center;
     position: absolute;
     bottom: 30px;
     left: 50%;
     cursor: pointer;
     z-index: 100;
     transform: translateX(-50%);
     transition: bottom 0.5s ease-in-out;
 }
 
 #homepage-slider iframe {
     position: absolute;
     left: 0;
     top: 0;
     display: none;
     width: 100%;
     height: 100%;
     z-index: 100;
 }
 
 #homepage-slider .iframeOverlay {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 110;
 }
 
 @media screen and (max-width: 1400px) {
     #homepage-slider img {
         width: auto;
         height: 100%;
     }
 }
 
 @media screen and (max-width: 1024px) {
     #homepage-slider {
         min-height: calc(100vh - 55px);
     }
     #homepage-slider .owl-item .item {
         height: calc(100vh - 55px);
     }
 }
 
 @media screen and (max-width: 475px) {
     #homepage-slider .owl-nav {
         position: relative;
         bottom: 50px;
         z-index: 2;
     }
     #homepage-slider .owl-nav .owl-prev,
     #homepage-slider .owl-nav .owl-next {
         top: -16px;
         font-size: 34px;
     }
     #homepage-slider .owl-dots {
         bottom: 50px;
         z-index: 1;
     }
     #homepage-slider #go-down {
         display: none;
     }
     #homepage-slider .headline {
         top: 50px;
         left: auto;
         padding: 0 25px;
         transform: none;
     }
     #homepage-slider .headline h3 {
         font-size: 45px;
     }
 }
 
 @media screen and (min-width: 476px) and (max-width: 580px) {
     #homepage-slider .headline h3 {
         font-size: 70px;
     }
 }
 
 @media screen and (max-width: 569px) and (max-height: 414px) {
     #homepage-slider .headline {
         top: 5px;
         transform: translateX(-50%);
     }
     #homepage-slider .headline h3 {
         font-size: 46px;
     }
     #homepage-slider .headline .h4 {
         font-size: 14px;
     }
 }
 
 @media screen and (min-width: 569px) and (max-width: 736px) and (max-height: 414px) {
     #homepage-slider .headline {
         top: 42%;
     }
     #homepage-slider .headline h3 {
         font-size: 46px;
     }
     #homepage-slider .headline .h4 {
         font-size: 14px;
     }
 }
 
 @media screen and (min-width: 1025px) and (max-height: 550px) {
     #homepage-slider .item {
         min-height: 560px;
     }
 }
 
 .ctaSlideItem .headline {
     height: 100%;
 }
 
 .ctaSlideItem .btnWrapper {
     margin: 0;
     overflow: hidden;
     position: absolute;
     width: 100%;
     left: 0;
     bottom: 190px;
 }
 
 @media only screen and (max-width: 640px) {
     .ctaSlideItem .btnWrapper {
         bottom: 150px;
     }
 }
 
 .ctaSlideItem .btn {
     text-transform: uppercase;
     color: #fff;
     border: 1px solid rgba(0, 0, 0, 0.7);
     margin: 0 1%;
     padding: 9px 20px;
     font-size: 20px;
     background-color: rgb(0, 0, 0);
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-BoldCondensed", Arial, Helvetica, sans-serif;
     transition: all 0.5s ease-in-out;
 }
 
 .ctaSlideItem .btn i {
     top: -1px;
     margin: 0 5px 0 0;
     right: 0;
     font-size: 18px;
 }
 
 .ctaSlideItem .btn:hover {
     color: #FDDD00;
     border: 1px solid rgba(0, 0, 0, 0.8);
     background-color: rgba(0, 0, 0, 0.8);
 }
 
 @media only screen and (max-width: 360px) {
     .ctaSlideItem .btn {
         font-size: 18px;
     }
 }
 
 .videoSlideItem video {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     height: 100%;
     width: auto;
 }
 
 @media only screen and (max-height: 900px) {
     .videoSlideItem video {
         width: 100%;
         height: auto;
     }
 }
 
 @media (min-device-width: 1201px) and (max-height: 999px) {
     .videoSlideItem video {
         height: 100%;
         width: auto;
     }
 }
 
 @media (max-device-width: 1200px) and (max-height: 760px) {
     .videoSlideItem video {
         height: 100%;
         width: auto;
     }
 }
 
 @media (min-width: 1400px) {
     .videoSlideItem video {
         width: 100%;
         height: auto;
     }
 }
 
 .videoSlideItem .videoItemOverlay {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     background: rgba(0, 0, 0, 0.6);
 }
 
 #videoModal-wrapper {
     background-color: rgba(0, 0, 0, 0.96);
     position: fixed;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     z-index: 999;
 }
 
 #videoModal-wrapper .videoModalContent {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     width: 98%;
     padding: 0;
     max-width: 1200px;
     max-height: 860px;
     height: auto;
     background-color: #000;
 }
 
 #videoModal-wrapper .videoModalContent .videoModalClose {
     position: absolute;
     right: 0px;
     top: -30px;
     font-size: 25px;
     color: #fff;
     cursor: pointer;
 }
 
 #videoModal-wrapper .videoModalContent .videoModalClose:before {
     content: "close";
     text-transform: uppercase;
     font-size: 11px;
     position: relative;
     top: -5px;
     left: -4px;
 }
 
 #videoModal-wrapper .videoModalContent video {
     margin: 0 auto;
     display: block;
     width: 100%;
 }
 
 #videoModal-wrapper .videoModalContent .respContainer {
     position: relative;
     overflow: hidden;
     padding-top: 56.25%;
 }
 
 #videoModal-wrapper .videoModalContent iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: 0;
 }
 
 @media (max-device-width: 1200px) and (max-height: 760px) {
     #videoModal-wrapper .videoModalContent {
         width: auto;
     }
     #videoModal-wrapper .videoModalContent video {
         width: auto;
         height: 90%;
     }
 }
 
 #kit-section {
     background-color: #fff;
     padding: 19px 0;
     border-bottom: 1px solid #333;
 }
 
 #kit-section form label {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     text-transform: uppercase;
     float: left;
     font-size: 29px;
     margin: 0;
     line-height: 38px;
 }
 
 #kit-section form div {
     float: left;
     width: calc(100% - 250px);
 }
 
 #kit-section form input {
     margin: 0 15px;
     float: left;
     width: calc(100% - 150px);
     max-width: 400px;
     font-size: 13px;
 }
 
 #kit-section form button {
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 17px;
     line-height: 20px;
     border-color: #000;
     background-color: #fff;
     padding: 8px 30px;
     width: 80px;
 }
 
 #kit-section form button:hover,
 #kit-section form button:focus,
 #kit-section form button:active {
     background-color: #000;
     color: #fff;
 }
 
 #kit-section .socialList {
     float: right;
     margin: 4px 0;
 }
 
 #kit-section .socialList a {
     display: inline-block;
     color: #3C3D41;
     margin: 0 0 0 20px;
     font-size: 22px;
     transition: color 0.5s ease-in-out;
 }
 
 #kit-section .socialList a.facebookSocial:hover,
 #kit-section .socialList a.facebookSocial:focus,
 #kit-section .socialList a.facebookSocial:active {
     color: #3D5995;
 }
 
 #kit-section .socialList a.twitterSocial:hover,
 #kit-section .socialList a.twitterSocial:focus,
 #kit-section .socialList a.twitterSocial:active {
     color: #101419;
 }
 
 #kit-section .socialList a.x-twitterSocial:hover,
 #kit-section .socialList a.x-twitterSocial:focus,
 #kit-section .socialList a.x-twitterSocial:active {
     color: #040404; <!--040404-->
 }
 
 #kit-section .socialList a.instagramSocial:hover,
 #kit-section .socialList a.instagramSocial:focus,
 #kit-section .socialList a.instagramSocial:active {
     /*-webkit-gradient(linear, left top, right top, color-stop(0%,#87e0fd), color-stop(40%,#53cbf1), color-stop(100%,#05abe0));*/
     color:#E22F6D;
 }
 
 #kit-section .socialList a.youtubeSocial:hover,
 #kit-section .socialList a.youtubeSocial:focus,
 #kit-section .socialList a.youtubeSocial:active {
     color: #E52317;
 }
 
 #kit-section .socialList a.linkedinSocial:hover,
 #kit-section .socialList a.linkedinSocial:focus,
 #kit-section .socialList a.linkedinSocial:active {
     color: #0178B5;
 }
 
 #kit-section .socialList a.tiktokSocial:hover,
 #kit-section .socialList a.tiktokSocial:focus,
 #kit-section .socialList a.tiktokSocial:active {
     color: #040404;
 }
 
 @media only screen and (max-width: 992px) {
     #kit-section {
         text-align: center;
         padding: 8px 0;
     }
     #kit-section form label,
     #kit-section form div,
     #kit-section .socialList {
         float: none;
     }
     #kit-section form label {
         font-size: 24px;
     }
     #kit-section form div {
         width: 100%;
         text-align: center;
     }
     #kit-section form input {
         margin: 0;
         border-radius: 0;
         padding: 4px 10px;
         height: 36px;
         float: none;
         display: inline-block;
         font-size: 12px;
     }
     #kit-section form button {
         background-color: #000;
         color: #fff;
         border-radius: 0;
         font-size: 14px;
         padding: 4px 20px;
         height: 36px;
     }
     #kit-section .socialList {
         margin: 12px 0 0;
     }
     #kit-section .socialList a.facebookSocial {
         color: #3D5995;
     }
     #kit-section .socialList a.twitterSocial {
         color: #101419;
     }
     #kit-section .socialList a.x-twitterSocial {
         color: #040404;
     }
     #kit-section .socialList a.instagramSocial {
         color: #E22F6D;
         /*color: linear-gradient(315deg, rgba(251,225,138,1) 0%, rgba(252,187,69,1) 21%, rgba(247,82,116,1) 38%, rgba(213,54,146,1) 52%, rgba(143,57,206,1) 74%, rgba(91,79,233,1) 100%);*/
     }
     #kit-section .socialList a.youtubeSocial {
         color: #E52317;
     }
     #kit-section .socialList a.linkedinSocial {
         color: #0178B5;
     }
     #kit-section .socialList a.tiktokSocial {
         color: #101419;
     }
 }
 
 @media screen and (min-width: 768px) and (max-width: 1199px) {
     #kit-section form input {
         width: calc(100% - 150px);
     }
 }
 
 @media screen and (max-width: 475px) {
     #kit-section form input {
         width: calc(100% - 90px);
     }
 }
 
 .mosaicSection {
     overflow: hidden;
 }
 
 .mosaicSection .mosaicWrapper {
     position: relative;
     margin: 0 -15px;
     height: 0;
     transition: height 0.5s ease-in-out;
 }
 
 .mosaicSection .articleItem {
     float: left;
     margin: 15px;
     position: absolute;
     opacity: 1;
     transition: opacity 1s ease-in-out;
     width: 33.333333%;
     display: block;
 }
 
 .mosaicSection .articleItem.on {
     opacity: 1;
 }
 
 .mosaicSection .articleItem div {
     padding: 15px 20px 15px;
     background-color: rgba(0, 0, 0, 0.5);
     position: absolute;
     bottom: 10px;
     left: 10px;
     right: 10px;
     min-height: 78px;
 }
 
 @media only screen and (max-width: 568px) {
     .mosaicSection .articleItem div {
         padding: 15px 15px;
     }
 }
 
 .mosaicSection .articleItem div.btnWrapper {
     background: transparent;
     padding: 0 15px;
     width: 100%;
     left: 0;
     text-align: center;
     bottom: 6%;
 }
 
 .mosaicSection .articleItem div.btnWrapper .btn {
     margin: 1% 2%;
     position: relative;
     padding: 0.6em 1.8em 0.6em 1.8em;
 }
 
 .mosaicSection .articleItem div.btnWrapper .btn.btn-icon {
     padding: 0.6em 1.3em 0.6em 2.4em;
 }
 
 .mosaicSection .articleItem div.btnWrapper .btn.btn-icon i {
     position: absolute;
     left: 14px;
     top: 14px;
     right: auto;
 }
 
 .mosaicSection .articleItem .overlaylink {
     position: absolute;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
     z-index: 60;
 }
 
 .mosaicSection .articleItem figure {
     overflow: hidden;
     height: 297px;
     background-color: #999;
     position: relative;
 }
 
 .mosaicSection .articleItem figure img {
     width: auto;
     height: 100%;
     transition: transform 0.5s ease-in-out;
     transform-origin: 0 50%;
     position: absolute;
     left: 50%;
     transform: translate3d(-50%, 0, 0);
 }
 
 @media only screen and (max-width: 768px) {
     .mosaicSection .articleItem figure img {
         width: auto;
         height: 100%;
     }
 }
 
 .mosaicSection .articleItem:hover figure img {
     left: 50%;
     transform: scale(1.2, 1.2) translate3d(-50%, 0, 0);
 }
 
 .mosaicSection .articleItem .img-responsive {
     margin: 0 auto;
 }
 
 @media only screen and (max-width: 768px) {
     .mosaicSection .articleItem .img-responsive {
         width: 100%;
     }
 }
 
 .mosaicSection .articleItem h3 {
     font-family: "GothamHTF-BookCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-size: 25px;
     letter-spacing: 1.5px;
     margin: 0 80px 0 0;
     line-height: 1.2em;
     height: 59px;
     overflow: hidden;
     font-weight: bold;
     color: #fff;
 }
 
 .mosaicSection .articleItem h3 a {
     color: #fff!important;
 }
 
 .mosaicSection .articleItem span {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-BookCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 400;
     font-size: 28px;
     letter-spacing: 1.5px;
     margin: 0 0 0;
     line-height: 1em;
     height: 59px;
     overflow: hidden;
     font-weight: bold;
     color: #fff;
 }
 
 @media only screen and (max-width: 1200px) {
     .mosaicSection .articleItem h3 {
         font-size: 24px;
         height: 50px;
     }
 }
 
 .mosaicSection .articleItem h3 a {
     color: #222;
     text-decoration: none;
 }
 
 @media all and (max-width: 480px) {
     .mosaicSection .articleItem h3 {
         height: auto;
         font-size: 20px;
         letter-spacing: 1px;
         width: calc(100% - 60px);
     }
 }
 
 .mosaicSection .articleItem small {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-BookCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 400;
     font-size: 18px;
     text-transform: uppercase;
     color: #fff;
 }
 
 .mosaicSection .articleItem .mainTag {
     font-size: 15px;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     text-transform: uppercase;
     position: absolute;
     right: 15px;
     bottom: 15px;
     opacity: 1;
     margin-right: 12px;
     color: #fff;
     z-index: 100;
 }
 
 .mosaicSection .articleItem .mainTag .brk-left,
 .mosaicSection .articleItem .mainTag .brk-right {
     height: 25px;
     width: 14px;
     display: block;
     position: absolute;
     top: -2px;
     fill: #fff;
 }
 
 .mosaicSection .articleItem .mainTag .brk-left {
     left: -15px;
 }
 
 .mosaicSection .articleItem .mainTag .brk-right {
     right: -15px;
 }
 
 .mosaicSection .articleItem .mainTag[data-cat$=oad] .brk-left,
 .mosaicSection .articleItem .mainTag[data-cat$=oad] .brk-right {
     fill: #C6C6C6;
 }
 
 .mosaicSection .articleItem .mainTag[data-cat$=ife] .brk-left,
 .mosaicSection .articleItem .mainTag[data-cat$=ife] .brk-right {
     fill: #FFDD00;
 }
 
 .mosaicSection .articleItem .mainTag[data-cat$=ace] .brk-left,
 .mosaicSection .articleItem .mainTag[data-cat$=ace] .brk-right {
     fill: #D2373A;
 }
 
 .mosaicSection .articleItem .mainTag a {
     color: #fff;
     letter-spacing: 1px;
     font-weight: normal;
 }
 
 .mosaicSection .articleItem .mainTag a:hover {
     text-decoration: none;
 }
 
 @media only screen and (max-width: 768px) {
     .mosaicSection .articleItem {
         position: relative;
         top: auto !important;
         left: auto !important;
         width: calc(100% - 30px) !important;
         max-width: 450px;
         margin: 0 auto 25px;
         float: none;
     }
 }
 
 #news-module .header {
     position: relative;
     border: solid #ddd;
     border-width: 1px 0;
     padding: 15px 0;
 }
 
 #news-module .header h2 {
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     margin: 0;
     padding: 0;
     font-size: 32px;
 }
 
 @media all and (min-width: 380px) {
     #news-module .header .btn {
         position: absolute;
         right: 0;
         top: 16px;
     }
 }
 
 #news-module .news-CNT {
     min-height: 316px;
     overflow: hidden;
 }
 
 #news-module .newsItem {
     margin: 13px 0 20px;
 }
 
 #news-module .newsItem h3 {
     font-size: 15px;
     margin: 0;
 }
 
 #news-module .newsItem h3 a {
     color: #333;
 }
 
 #news-module .newsItem h3 a:hover,
 #news-module .newsItem h3 a:focus,
 #news-module .newsItem h3 a:active {
     text-decoration: none;
 }
 
 #news-module .newsItem span {
     color: #999;
     font-size: 12px;
 }
 
 #news-module .newsItem:nth-child(n+4) {
     display: none;
 }
 
 @media only screen and (max-width: 1200px) {
     #news-module .newsItem h3 {
         font-size: 14px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #news-module .news-CNT {
         min-height: auto;
     }
 }
 
 #calendar-module .header {
     position: relative;
     border: solid #ddd;
     border-width: 1px 0;
     padding: 15px 0;
 }
 
 #calendar-module .header h2 {
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     margin: 0;
     padding: 0;
     font-size: 32px;
 }
 
 @media all and (min-width: 380px) {
     #calendar-module .header .btn {
         position: absolute;
         right: 0;
         top: 16px;
     }
 }
 
 #calendar-module .event-CNT {
     min-height: 316px;
     overflow: hidden;
 }
 
 #calendar-module .eventItem {
     margin: 13px 0 20px;
 }
 
 #calendar-module .eventItem h3 {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 28px;
     margin: 0;
 }
 
 #calendar-module .eventItem h3 a {
     color: #333;
 }
 
 #calendar-module .eventItem h3 a:hover,
 #calendar-module .eventItem h3 a:focus,
 #calendar-module .eventItem h3 a:active {
     text-decoration: none;
 }
 
 #calendar-module .eventItem span {
     color: #999;
     font-size: 15px;
 }
 
 #calendar-module .eventItem:nth-child(n+4) {
     display: none;
 }
 
 @media only screen and (max-width: 1200px) {
     #calendar-module .eventItem h3 {
         font-size: 14px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #calendar-module .event-CNT {
         min-height: auto;
     }
 }
 
 #racingspot-news-module .header {
     position: relative;
     border: solid #ddd;
     border-width: 1px 0;
     padding: 15px 0;
 }
 
 #racingspot-news-module .header h2 {
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     margin: 0;
     padding: 0;
     font-size: 32px;
 }
 
 #racingspot-news-module .header h2 a {
     color: #333;
     text-decoration: none;
 }
 
 #racingspot-news-module .header h2 img {
     max-width: 180px;
     margin-top: -9px;
 }
 
 @media all and (min-width: 992px) and (max-width: 1200px) {
     #racingspot-news-module .header h2 img {
         max-width: 105px;
     }
 }
 
 @media all and (max-width: 400px) {
     #racingspot-news-module .header h2 img {
         max-width: 140px;
     }
 }
 
 #racingspot-news-module .header h2 span {
     text-indent: -99999px;
     display: inline-block;
 }
 
 @media all and (min-width: 380px) {
     #racingspot-news-module .header .btn {
         position: absolute;
         right: 0;
         top: 16px;
     }
 }
 
 #racingspot-news-module .newItem {
     border-left: 6px solid #D2373A;
     padding: 10px 0 10px 20px;
     margin: 15px 0;
     position: relative;
     color: #D2373A;
 }
 
 #racingspot-news-module .newItem h3 {
     margin: 0 25px 0.3em 0;
     padding: 0;
     font-family: "Gotham 7r", "Gotham A", "Gotham B", "Gotham-Black", Arial, Helvetica, sans-serif;
     font-weight: 800;
     font-size: 16px;
     line-height: 1.1em;
 }
 
 #racingspot-news-module .newItem h3 a {
     color: #222;
     text-decoration: none;
 }
 
 #racingspot-news-module .newItem span {
     color: #D2373A;
     font-family: "Gotham 5r", "Gotham A", "Gotham B", "Gotham-Medium", Arial, Helvetica, sans-serif;
     font-weight: 500;
     font-size: 13px;
 }
 
 #racingspot-news-module .newItem span p {
     margin: 0;
 }
 
 #racingspot-news-module .newItem span p br {
     display: none;
 }
 
 @media only screen and (max-width: 1200px) {
     #racingspot-news-module .newsItem h3 {
         font-size: 14px;
     }
 }
 
 .newsletter-reg {
     float: left;
     width: 70%;
 }
 
 .newsletter-reg .newsletter-ctr {
     display: block;
     float: left;
     margin: 0;
     padding: 0;
     width: 100%;
 }
 
 .newsletter-reg .newsletter-ctr .form-ctr {
     margin: 0 auto;
 }
 
 .newsletter-reg .newsletter-ctr label {
     font-size: 19px;
     line-height: 1.3em;
     font-family: "Gotham 3r", "Gotham A", "Gotham B", "Gotham-Light", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 300;
     color: #000;
     padding-bottom: 11px;
     display: block;
 }
 
 .newsletter-reg .newsletter-ctr label strong {
     font-family: "Gotham 6r", "Gotham A", "Gotham B", "Gotham-Bold", Arial, Helvetica, sans-serif;
     font-weight: 700;
 }
 
 .newsletter-reg .newsletter-ctr input[type=text] {
     float: left;
     border: 0;
     border-radius: 20px;
     margin: 0 15px 0 -3px;
     padding: 0 15px;
     width: 264px;
     height: 40px;
     background: #f2f2f2;
     font-size: 14px;
     line-height: 40px;
     font-family: "Gotham 3r", "Gotham A", "Gotham B", "Gotham-Light", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 300;
     color: #797979;
 }
 
 .newsletter-reg .newsletter-ctr .btnMail {
     float: left;
     border: 1px solid #333;
     border-radius: 20px;
     width: 103px;
     height: 38px;
     background: #fff;
     font-size: 13px;
     line-height: 38px;
     font-family: "Gotham 5r", "Gotham A", "Gotham B", "Gotham-Medium", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     color: #000;
     text-decoration: none;
     text-align: center;
     text-transform: uppercase;
 }
 
 
 /*lightbox*/
 
 .newsletter-lightbox {
     top: 50px;
     height: auto;
 }
 
 .newsletter-lightbox h3 {
     padding: 0;
     margin: 40px 30px 30px;
     font-size: 22px;
     line-height: 1.1em;
     font-family: "Gotham 5r", "Gotham A", "Gotham B", "Gotham-Medium", Arial, Helvetica, sans-serif;
     font-weight: 500;
     color: #fff;
     text-align: center;
 }
 
 .newsletter-lightbox input[type=text],
 .newsletter-lightbox select {
     display: block;
     border: 0;
     border-radius: 0;
     margin: 0 auto 15px;
     padding: 0 5px;
     width: 320px;
     height: 34px;
     background: #f2f2f2;
     font-size: 11px;
     line-height: 34px;
     font-family: "Gotham 3r", "Gotham A", "Gotham B", "Gotham-Light", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 300;
     color: #797979;
 }
 
 .newsletter-lightbox select {
     width: 330px;
 }
 
 .newsletter-lightbox select#storia {
     font-size: 11px;
     padding: 0 5px;
 }
 
 .newsletter-lightbox .content-lightbox {
     width: auto;
 }
 
 .newsletter-lightbox .privacy {
     margin: 0 auto 15px;
     max-width: 330px;
 }
 
 .newsletter-lightbox .privacy input[type=checkbox] {
     position: absolute;
     left: 0;
     margin: 3px 10px 0 0;
     width: 13px;
     height: 13px;
 }
 
 .newsletter-lightbox .privacy label {
     font-size: 11px;
     line-height: 1.4em;
     font-family: "Gotham 3r", "Gotham A", "Gotham B", "Gotham-Light", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 300;
     position: relative;
     padding-left: 20px;
     margin: 0;
     color: #fff;
 }
 
 .newsletter-lightbox .privacy label a {
     color: #fff;
 }
 
 .newsletter-lightbox .privacy hr {
     border-top-color: rgba(255, 255, 255, 0.1);
     margin: 10px 0;
 }
 
 .newsletter-lightbox .btnGroup {
     text-align: center;
 }
 
 .newsletter-lightbox .privacyTextarea {
     margin: 0 auto 20px;
     display: block;
     padding: 8px;
     overflow: scroll;
     font-size: 11px;
     color: #666;
     border-radius: 5px;
     resize: none;
 }
 
 @media (max-width: 835px) {
     .lightbox.newsletter-lightbox {
         width: 422px;
         left: 50% !important;
         margin-left: -211px;
     }
 }
 
 @media (max-width: 515px) {
     .lightbox.newsletter-lightbox {
         width: 300px;
         height: auto;
         margin-left: -150px;
         margin-top: 0;
     }
     .newsletter-lightbox h3 {
         text-align: left;
         margin-top: 20px;
     }
     .newsletter-lightbox input[type=text] {
         width: 250px;
     }
     .newsletter-lightbox .privacyTextarea {
         height: 60px;
     }
     .newsletter-lightbox select {
         width: 260px;
     }
     .newsletter-lightbox .privacy {
         max-width: 280px;
         margin-top: 15px;
     }
     .newsletter-lightbox .privacy label {
         float: none;
         font-size: 10px;
     }
     .lightbox.newsletter-lightbox .close-lightbox {
         right: 6px;
         top: -7px;
     }
     .newsletter-lightbox #newsletter-form {
         padding: 0 20px;
     }
 }
 
 @media only screen and (max-width: 880px) {
     .newsletter-reg .newsletter-ctr {
         margin-bottom: 40px;
     }
     .newsletter-reg .newsletter-ctr label {
         float: none;
         display: block;
         padding: 0 0 10px;
         font-size: 13px;
         line-height: 15px;
         text-align: center;
         margin-bottom: -10px;
     }
     .newsletter-reg .newsletter-ctr input[type=text] {
         float: none;
         margin: 15px auto;
         width: 90%;
     }
     .newsletter-reg .newsletter-ctr .btnMail {
         float: none;
         display: block;
         margin: 5px auto 0;
     }
 }
 
 
 /* EDIT PIRELLICOM 2017 */
 
 .newsletter-lightbox {
     background: #282828;
     border-radius: 6px;
 }
 
 .newsletter-lightbox #newsletter-form {
     padding: 0 20px;
     box-sizing: content-box;
 }
 
 .newsletter-lightbox select,
 .newsletter-lightbox input[type=text],
 .newsletter-lightbox textarea {
     width: 100%;
     border-radius: 4px;
     margin-left: 0;
     margin-right: 0;
 }
 
 .newsletter-lightbox textarea {
     resize: none;
     height: 150px;
 }
 
 .newsletter-lightbox .form-error .info-error {
     color: #FFD800 !important;
     text-align: center;
     display: block;
     margin: -12px 0 10px;
     font-family: Arial, sans-serif;
     font-size: 11px;
 }
 
 .newsletter-lightbox .form-error input,
 .newsletter-lightbox .form-error textarea,
 .newsletter-lightbox .form-error .selecter-options,
 .newsletter-lightbox .form-error .cke,
 .newsletter-lightbox .form-error .select-fk {
     border: 1px solid red !important;
 }
 
 .newsletter-lightbox .lightbox.newsletter-lightbox .close-lightbox {
     position: absolute;
     top: -40px;
     right: -40px;
     background-image: url("../png/spritesite.png");
     background-position: -47px -2px;
     width: 40px;
     height: 41px;
     background-color: transparent;
 }
 
 
 /* NEWSLETTER STICKY BAR - OLD WEBSITE BUT STILL USEFUL*/
 
 #newsletter-bar {
     position: fixed;
     width: 100%;
     background-color: rgba(255, 255, 255, 0.98);
     padding: 9px 0 6px;
     bottom: 0;
     left: 0;
     text-align: center;
     border-top: 1px solid #222;
     z-index: 900;
 }
 
 #newsletter-bar label {
     font-size: 15px;
     line-height: 1.3em;
     font-family: "Gotham 3r", "Gotham A", "Gotham B", "Gotham-Light", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 300;
     color: #000;
     display: inline-block;
     position: relative;
     top: -12px;
 }
 
 #newsletter-bar label strong {
     font-family: "Gotham 5r", "Gotham A", "Gotham B", "Gotham-Medium", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
 }
 
 #newsletter-bar div {
     display: inline-block;
 }
 
 #newsletter-bar input[type=text] {
     float: left;
     border: 0;
     border-radius: 20px;
     margin: 0 6px 0 15px;
     padding: 0 15px;
     width: 165px;
     height: 36px;
     background: #e8e8e8;
     font-size: 12px;
     line-height: 36px;
     font-family: "Gotham 3r", "Gotham A", "Gotham B", "Gotham-Light", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 300;
     color: #797979;
 }
 
 #newsletter-bar .btnMail {
     float: left;
     border: 1px solid #333;
     border-radius: 20px;
     width: 85px;
     height: 33px;
     margin-top: 1px;
     background: #fff;
     font-size: 10px;
     line-height: 33px;
     font-family: "Gotham 5r", "Gotham A", "Gotham B", "Gotham-Medium", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     color: #000;
     text-decoration: none;
     text-align: center;
     text-transform: uppercase;
 }
 
 #newsletter-bar .btnMail span:nth-child(2) {
     font-size: 20px;
     display: none;
 }
 
 #newsletter-bar .closeButton {
     position: absolute;
     left: 0;
     top: 0;
     height: 55px;
     width: 50px;
     font-size: 22px;
     line-height: 54px;
     display: none;
     cursor: pointer;
     text-align: center;
 }
 
 #newsletter-bar .closeButton .fa-envelope-o {
     font-size: 17px;
 }
 
 #newsletter-bar .closeButton:after {
     height: 48px;
     width: 1px;
     background-color: #ddd;
     content: "";
     right: 0;
     top: 5px;
     position: absolute;
 }
 
 #newsletter-bar .closeButton:before {
     content: "\f003";
     position: absolute;
     right: -30px;
     color: #333;
     top: 2px;
     font-family: FontAwesome, sans-serif;
     font-size: 21px;
     display: none;
 }
 
 #newsletter-bar.step02 {
     text-align: left;
 }
 
 #newsletter-bar.step02 .closeButton {
     display: block;
 }
 
 #newsletter-bar.step02 form {
     margin: 0 0 0 75px;
 }
 
 #newsletter-bar.step02[data-close=true] .closeButton:before {
     content: "\f105";
     display: block;
 }
 
 #newsletter-bar.step02[data-close=true] form {
     visibility: hidden;
 }
 
 #newsletter-bar.step03 {
     width: 320px;
     border-right: 1px solid #333;
 }
 
 #newsletter-bar.step03 label {
     text-align: left;
     margin: 0 0 0 15px;
     float: left;
     width: 90px;
     height: 30px;
     top: 4px;
     overflow: hidden;
     font-size: 11px;
 }
 
 #newsletter-bar.step03 input[type=text] {
     width: 120px;
 }
 
 #newsletter-bar.step03 .btnMail {
     width: 33px;
     border: 0;
 }
 
 #newsletter-bar.step03 .btnMail span:first-child {
     display: none;
 }
 
 #newsletter-bar.step03 .btnMail span:nth-child(2) {
     display: block;
 }
 
 #newsletter-bar.step04 {
     display: none;
 }
 
 @media only screen and (max-width: 768px) {
     #newsletter-bar #newsletter-bar {
         display: none;
     }
 }
 
 body {
     opacity: 1;
     transition: opacity 0.6s ease-in-out 0.5s;
 }
 
 body.on,
 body[data-mediator=inline-edit] {
     opacity: 1;
 }
 
 .mosaicSection .mosaicWrapper {
     height: 1118px;
 }
 
 @media only screen and (max-width: 1400px) {
     .mosaicSection .mosaicWrapper {
         height: 950px;
     }
 }
 
 @media only screen and (max-width: 1200px) {
     .mosaicSection .mosaicWrapper {
         height: 770px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     .mosaicSection .mosaicWrapper {
         height: 1440px;
     }
 }
 
 @media only screen and (max-width: 768px) {
     .mosaicSection .mosaicWrapper {
         height: auto;
     }
 }
 
 #top-section {
     background-color: #fff;
     padding: 1.2em 0 4.8em;
 }
 
 #top-section h2 {
     margin: 0;
     text-align: center;
     font-size: 60px;
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
 }
 
 #top-section .mosaicWrapper .articleItem:nth-child(1) figure,
 #top-section .mosaicWrapper .articleItem:nth-child(3) figure,
 #top-section .mosaicWrapper .articleItem:nth-child(5) figure {
     height: 624px;
 }
 
 @media only screen and (max-width: 1400px) {
     #top-section .mosaicWrapper .articleItem:nth-child(1) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(3) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(5) figure {
         height: 535px;
     }
 }
 
 @media only screen and (max-width: 1200px) {
     #top-section .mosaicWrapper .articleItem:nth-child(1) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(3) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(5) figure {
         height: 435px;
     }
 }
 
 #top-section .mosaicWrapper .articleItem:nth-child(2) figure,
 #top-section .mosaicWrapper .articleItem:nth-child(4) figure,
 #top-section .mosaicWrapper .articleItem:nth-child(6) figure {
     height: 416px;
 }
 
 @media only screen and (max-width: 1400px) {
     #top-section .mosaicWrapper .articleItem:nth-child(2) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(4) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(6) figure {
         height: 360px;
     }
 }
 
 @media only screen and (max-width: 1200px) {
     #top-section .mosaicWrapper .articleItem:nth-child(2) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(4) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(6) figure {
         height: 293px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #top-section .mosaicWrapper .articleItem:nth-child(1) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(2) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(4) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(6) figure {
         height: 512px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #top-section .mosaicWrapper .articleItem:nth-child(3) figure,
     #top-section .mosaicWrapper .articleItem:nth-child(5) figure {
         height: 345px;
     }
 }
 
 @media only screen and (max-width: 768px) {
     #top-section .mosaicWrapper .articleItem:nth-child(1n) figure {
         height: 450px;
     }
 }
 
 @media only screen and (max-width: 478px) {
     #top-section .mosaicWrapper .articleItem:nth-child(1n) figure {
         height: 300px;
     }
 }
 
 #lower-section {
     background-color: #fff;
     padding: 4em 0 4em;
 }
 
 #lower-section .mosaicWrapper .articleItem:nth-child(2) figure,
 #lower-section .mosaicWrapper .articleItem:nth-child(4) figure,
 #lower-section .mosaicWrapper .articleItem:nth-child(6) figure {
     height: 624px;
 }
 
 @media only screen and (max-width: 1400px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(2) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(6) figure {
         height: 535px;
     }
 }
 
 @media only screen and (max-width: 1200px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(2) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(6) figure {
         height: 435px;
     }
 }
 
 #lower-section .mosaicWrapper .articleItem:nth-child(1) figure,
 #lower-section .mosaicWrapper .articleItem:nth-child(3) figure,
 #lower-section .mosaicWrapper .articleItem:nth-child(5) figure {
     height: 416px;
 }
 
 @media only screen and (max-width: 1400px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(1) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(3) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(5) figure {
         height: 360px;
     }
 }
 
 @media only screen and (max-width: 1200px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(1) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(3) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(5) figure {
         height: 293px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(1) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(5) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(6) figure {
         height: 513px;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(2) figure,
     #lower-section .mosaicWrapper .articleItem:nth-child(3) figure {
         height: 345px;
     }
 }
 
 @media only screen and (max-width: 768px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(1n) figure {
         height: 450px;
     }
 }
 
 @media only screen and (max-width: 478px) {
     #lower-section .mosaicWrapper .articleItem:nth-child(1n) figure {
         height: 300px;
     }
 }
 
 @media only screen and (min-width: 769px) {
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4),
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) {
         overflow: hidden;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) figure {
         height: 416px !important;
         border-radius: 100%;
         overflow: hidden;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) figure:after,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) figure:after {
         content: "";
         position: absolute;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) figure img,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) figure img {
         height: 100%;
         width: auto;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) div,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) div {
         background: transparent;
         position: absolute;
         width: 100%;
         top: 45%;
         left: 0;
         padding: 0 30px;
         color: #fff;
         text-align: center;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) h3,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) h3 {
         height: auto;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) small,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) small {
         display: none;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) .mainTag,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) .mainTag {
         float: none;
         position: relative;
         bottom: -13px;
         right: 0;
         display: inline-block;
         color: #fff;
     }
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) .mainTag a,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) .mainTag a {
         color: #fff;
         letter-spacing: 1px;
         font-weight: normal;
     }
 }
 
 @media only screen and (min-width: 769px) and (max-width: 1400px) {
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) figure {
         height: 360px !important;
     }
 }
 
 @media only screen and (min-width: 769px) and (max-width: 1200px) {
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) figure {
         height: 293px !important;
     }
 }
 
 @media only screen and (min-width: 769px) and (max-width: 992px) {
     #top-section.mosaicSection .mosaicWrapper .articleItem:nth-child(4) figure,
     #lower-section.mosaicSection .mosaicWrapper .articleItem:nth-child(3) figure {
         height: 345px !important;
     }
 }
 
 #widearticle-section:not(#widearticle-section),
 #widearticle-section-2:not(#widearticle-section) {
     margin-bottom: 0;
 }
 
 #widearticle-section .articleItemWide,
 #widearticle-section-2 .articleItemWide {
     position: relative;
     max-height: 614px;
     overflow: hidden;
 }
 
 #widearticle-section .articleItemWide:after,
 #widearticle-section-2 .articleItemWide:after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.2);
     z-index: 15;
 }
 
 #widearticle-section .articleItemWide figure,
 #widearticle-section-2 .articleItemWide figure {
     position: relative;
     z-index: 10;
 }
 
 #widearticle-section .articleItemWide figure img,
 #widearticle-section-2 .articleItemWide figure img {
     width: 100%;
     height: auto;
     transition: transform 4s cubic-bezier(0.215, 0.61, 0.355, 1);
     /* transform: translateY(-5%); */
 }
 
 #widearticle-section .articleItemWide.hover figure img,
 #widearticle-section-2 .articleItemWide.hover figure img {
     transform: scale(1.2, 1.2);
 }
 
 #widearticle-section .articleItemWide .header,
 #widearticle-section-2 .articleItemWide .header {
     position: absolute;
     z-index: 20;
     width: 100%;
     max-width: 1180px;
     text-align: center;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }
 
 #widearticle-section .articleItemWide .header h3,
 #widearticle-section-2 .articleItemWide .header h3 {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 90px;
     margin: 0.2em 0 0.2em;
     padding: 0;
     text-transform: uppercase;
     line-height: 0.9em;
 }
 
 #widearticle-section .articleItemWide .header h3 a,
 #widearticle-section-2 .articleItemWide .header h3 a {
     color: #fff;
     text-decoration: none;
 }
 
 #widearticle-section .articleItemWide .header .h4,
 #widearticle-section-2 .articleItemWide .header .h4 {
     font-size: 18px;
     color: #fff;
 }
 
 @media only screen and (max-width: 992px) {
     #widearticle-section .articleItemWide .header .h4,
     #widearticle-section-2 .articleItemWide .header .h4 {
         font-size: 12px;
     }
 }
 
 #widearticle-section .articleItemWide .header .mainTag,
 #widearticle-section-2 .articleItemWide .header .mainTag {
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-BookCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 400;
     font-size: 22px;
     position: relative;
 }
 
 #widearticle-section .articleItemWide .header .mainTag .brk-left,
 #widearticle-section .articleItemWide .header .mainTag .brk-right,
 #widearticle-section-2 .articleItemWide .header .mainTag .brk-left,
 #widearticle-section-2 .articleItemWide .header .mainTag .brk-right {
     height: 37px;
     width: 16px;
     display: block;
     position: absolute;
     top: -7px;
 }
 
 #widearticle-section .articleItemWide .header .mainTag .brk-left,
 #widearticle-section-2 .articleItemWide .header .mainTag .brk-left {
     left: -20px;
 }
 
 #widearticle-section .articleItemWide .header .mainTag .brk-right,
 #widearticle-section-2 .articleItemWide .header .mainTag .brk-right {
     right: -20px;
 }
 
 #widearticle-section .articleItemWide .header .mainTag[data-cat$=oad] .brk-left,
 #widearticle-section .articleItemWide .header .mainTag[data-cat$=oad] .brk-right,
 #widearticle-section-2 .articleItemWide .header .mainTag[data-cat$=oad] .brk-left,
 #widearticle-section-2 .articleItemWide .header .mainTag[data-cat$=oad] .brk-right {
     fill: #C6C6C6;
 }
 
 #widearticle-section .articleItemWide .header .mainTag[data-cat$=ife] .brk-left,
 #widearticle-section .articleItemWide .header .mainTag[data-cat$=ife] .brk-right,
 #widearticle-section-2 .articleItemWide .header .mainTag[data-cat$=ife] .brk-left,
 #widearticle-section-2 .articleItemWide .header .mainTag[data-cat$=ife] .brk-right {
     fill: #FFDD00;
 }
 
 #widearticle-section .articleItemWide .header .mainTag[data-cat$=ace] .brk-left,
 #widearticle-section .articleItemWide .header .mainTag[data-cat$=ace] .brk-right,
 #widearticle-section-2 .articleItemWide .header .mainTag[data-cat$=ace] .brk-left,
 #widearticle-section-2 .articleItemWide .header .mainTag[data-cat$=ace] .brk-right {
     fill: #D2373A;
 }
 
 #widearticle-section .articleItemWide .header .mainTag a,
 #widearticle-section-2 .articleItemWide .header .mainTag a {
     color: #fff;
     text-transform: uppercase;
 }
 
 @media only screen and (max-width: 992px) {
     #widearticle-section .articleItemWide .header h3,
     #widearticle-section-2 .articleItemWide .header h3 {
         font-size: 7vw;
         padding: 0 20px;
     }
     #widearticle-section .articleItemWide .header .h4,
     #widearticle-section-2 .articleItemWide .header .h4 {
         padding: 0 20px;
     }
 }
 
 @media only screen and (max-width: 568px) {
     #widearticle-section .articleItemWide .header h3,
     #widearticle-section-2 .articleItemWide .header h3 {
         font-size: 10vw;
     }
 }
 
 #widearticle-section-2 .c-banner {
     position: relative;
     max-height: 420px;
     overflow: hidden;
 }
 
 #widearticle-section-2 .c-banner:before {
     content: "";
     display: block;
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     width: 100%;
     height: 100%;
     z-index: 8;
     background-color: rgba(0, 0, 0, 0.2);
 }
 
 #widearticle-section-2 .c-banner img {
     display: block;
     width: 100%;
     height: auto;
     margin: 0 auto;
     -webkit-transition: transform 0.5s ease-in-out;
     -moz-transition: transform 0.5s ease-in-out;
     -ms-transition: transform 0.5s ease-in-out;
     -o-transition: transform 0.5s ease-in-out;
     transition: transform 0.5s ease-in-out;
 }
 
 #widearticle-section-2 .c-banner--caption {
     position: absolute;
     top: 50%;
     left: 50%;
     padding: 0 6%;
     width: 100%;
     transform: translate(-50%, -50%);
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 68px;
     line-height: 1;
     text-align: center;
     color: #FFFFFF;
     text-decoration: none;
     /*text-transform: uppercase;*/
     z-index: 9;
 }
 
 @media only screen and (max-width: 992px) {
     #widearticle-section-2 .c-banner--caption {
         font-size: 36px;
     }
 }
 
 #widearticle-section-2 .c-banner:hover img {
     transform: scale(1.15, 1.15);
 }
 
 #news-section {
     padding: 0 0 6em 0;
 }
 
 #gallery-image {
     position: relative;
     margin: 10px 0;
     padding: 35px 0;
     overflow: hidden;
 }
 
 #gallery-image .frames-box {
     position: absolute;
     width: 330px;
     height: 250px;
     padding: 0 20px;
     background: #000000;
     z-index: 2;
     opacity: 1;
     transition: all 250ms ease;
 }
 
 #gallery-image .frames-box h2,
 #gallery-image .frames-box h3 {
     margin: 0;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     color: #FFFFFF;
     text-transform: uppercase;
 }
 
 #gallery-image .frames-box h2 {
     font-size: 60px;
 }
 
 #gallery-image .frames-box h3 {
     position: absolute;
     bottom: 20px;
     padding-right: 30px;
     font-size: 21px;
     line-height: 1;
     letter-spacing: 0.8px;
 }
 
 #gallery-image .images-wrapper {
     position: relative;
     transition: all 0.5s ease-in-out;
 }
 
 #gallery-image .images-wrapper:after {
     content: "";
     display: table;
     clear: both;
 }
 
 #gallery-image .images-wrapper .image-container {
     position: relative;
     float: left;
     transition: all 250ms ease;
 }
 
 #gallery-image .images-wrapper .image-container a {
     display: block;
     position: relative;
     z-index: 1;
     transition: all 250ms ease;
 }
 
 #gallery-image .images-wrapper .image-container a:focus {
     outline: 0;
 }
 
 #gallery-image .images-wrapper .image-container img {
     position: relative;
     max-height: 530px;
     width: auto;
     transform: scale(1);
     z-index: 1;
     cursor: pointer;
 }
 
 #gallery-image .images-wrapper .image-container.double-image img {
     display: block;
     max-height: 265px;
 }
 
 #gallery-image .images-wrapper .image-container.focus-on {
     z-index: 3;
 }
 
 #gallery-image .images-wrapper .image-container.focus-on a:hover {
     z-index: 4;
     overflow: hidden;
     transform: scale(1.1);
 }
 
 #gallery-image .images-wrapper .image-container.focus-on a:hover:before {
     content: "";
     position: absolute;
     display: block;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.5);
     z-index: 3;
 }
 
 #gallery-image .images-wrapper .image-container.focus-on a:hover:after {
     content: "";
     position: absolute;
     display: block;
     width: 30px;
     height: 30px;
     margin: auto;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: url("../png/icon-enlarge.png");
     z-index: 3;
 }
 
 #gallery-image .images-wrapper .image-container.focus-on a:hover img {
     z-index: 2;
 }
 
 #gallery-image .more-shots-button {
     position: absolute;
     top: 50%;
     right: 0;
     transform: translateY(-50%);
     padding: 12px 36px;
     border: none;
     background: #FFFFFF;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 18px;
     color: #000000;
     text-transform: uppercase;
     z-index: 4;
 }
 
 #gallery-image .more-shots-button:focus {
     outline: 0;
 }
 
 #gallery-image .more-shots-button.prev {
     display: none;
     left: 0;
     right: initial;
 }
 
 #gallery-image.elem-under-frame .frames-box {
     z-index: 1;
 }
 
 #gallery-image.elem-under-frame .images-wrapper {
     z-index: 2;
 }
 
 .mfp-hp-gallery {
     background: #FFFFFF;
     opacity: 1;
     overflow: hidden;
     z-index: 1000000;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content {
     position: initial;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure:after {
     content: none;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure .mfp-close {
     position: absolute;
     width: 50px;
     top: 20px;
     right: 20px;
     font-family: "Gotham 2r", "Gotham A", "Gotham B", "Gotham-XLight", Arial, Helvetica, sans-serif;
     font-weight: 200;
     font-size: 90px;
     color: #000;
     line-height: 0;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure .mfp-close:hover {
     opacity: 0.8;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure img.mfp-img {
     padding: 65px;
     width: auto;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure .mfp-bottom-bar {
     top: initial;
     left: 0;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure .mfp-bottom-bar .mfp-counter {
     display: inline-block;
     top: -15px;
     left: 0;
     width: 100%;
     text-align: center;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-style: normal;
     font-weight: 500;
     font-size: 21px;
     color: #000;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure .mfp-bottom-bar .mfp-counter .mfp-custom-counter {
     display: inline-block;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-custom-arrow {
     z-index: 50;
     position: absolute;
     color: #fff;
     top: 50%;
     transform: translateY(-50%);
     width: 26px;
     height: 49px;
     opacity: 0.8;
     border: none;
     background: transparent url("../png/arrow-sprite.png") no-repeat left top;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-custom-arrow:hover {
     opacity: 1;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-custom-arrow:focus {
     outline: 0;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-custom-arrow.mfp-custom-arrow-right {
     right: 35px;
     background-position: -34px -63px;
 }
 
 .mfp-hp-gallery .mfp-container .mfp-custom-arrow.mfp-custom-arrow-left {
     left: 35px;
     background-position: -2px -63px;
 }
 
 @media only screen and (max-width: 1400px) {
     .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure img.mfp-img {
         display: block;
         max-width: 100%;
         height: auto;
         padding: 45px;
         padding-bottom: 60px;
     }
 }
 
 @media only screen and (max-width: 1024px) {
     #gallery-image {
         margin-top: 20px;
         padding-top: 140px;
         padding-bottom: 0;
     }
     #gallery-image .frames-box {
         left: 0;
         width: 100%;
         height: 160px;
         transform: translateY(-100%);
         line-height: 2;
         z-index: 5;
     }
     #gallery-image .frames-box h2 {
         font-size: 58px;
     }
     .mfp-hp-gallery .mfp-container .mfp-content .mfp-figure .mfp-close {
         font-size: 60px;
     }
     .mfp-hp-gallery .mfp-container .mfp-custom-arrow {
         display: none;
     }
 }
 
 @media only screen and (max-width: 1200px) {
     #gallery-image {
         min-height: initial;
     }
     #gallery-image .overflow-wrapper {
         overflow-x: scroll;
         overflow-scrolling: touch;
         -webkit-overflow-scrolling: touch;
     }
     #gallery-image .overflow-wrapper .images-wrapper {
         transform: translateX(0px);
     }
     #gallery-image .overflow-wrapper .images-wrapper .image-container img {
         max-height: 370px;
     }
     #gallery-image .overflow-wrapper .images-wrapper .image-container.double-image img {
         max-height: 185px;
     }
     #gallery-image .more-shots-button {
         display: none !important;
         padding: 12px 20px;
     }
 }
 
 @media only screen and (max-width: 425px) {
     #gallery-image .frames-box {
         height: 140px;
     }
     #gallery-image .frames-box h2 {
         font-size: 42px;
     }
     #gallery-image .frames-box h3 {
         font-size: 18px;
     }
     #gallery-image .images-wrapper .image-container img {
         max-height: 340px;
     }
     #gallery-image .images-wrapper .image-container.double-image img {
         max-height: 170px;
     }
     #gallery-image .more-shots-button {
         padding: 8px 16px;
         font-size: 16px;
     }
 }
 
 body.galleryOn {
     overflow: hidden !important;
     overflow-scrolling: auto;
     -webkit-overflow-scrolling: auto;
 }
 
 #special-section {
     background: #f5f4f4;
     padding: 3em 0 4em;
     position: relative;
     box-shadow: 0 0 4px rgba(0, 0, 0, 0.26) inset;
     /*a {
       display: block;
       overflow: hidden;
       position: relative;
       margin: 0 auto 30px;
       &:hover {
         img.visual {
           transform: scale(1.1);
         }
       }
     }*/
 }
 
 @media (min-width: 1480px) {
     #special-section .container {
         width: 1450px;
     }
 }
 
 #special-section .row {
     display: flex;
     padding: 0 16px;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }
 
 #special-section .row .col-xs-12:nth-child(1) {
     order: 2;
 }
 
 #special-section .row .col-xs-12:nth-child(2) {
     order: 1;
 }
 
 #special-section .row .col-xs-12:nth-child(3) {
     order: 3;
 }
 
 @media only screen and (min-width: 1024px) {
     #special-section .row {
         padding: 0;
         flex-direction: row;
         gap: 30px;
     }
 }
 #special-section .row .special-section-tile {
     position: relative;
     max-width: 462px;
     height: 122px;
     width: 100%;
     overflow: hidden;
 }
 @media only screen and (min-width: 768px) {
     #special-section .row .special-section-tile {
         height: 148px;
     }
 }
 #special-section .row .special-section-tile a {
     display: flex;
     align-items: center;
     height: 100%;
     width: 100%;
     padding: 0 32px;
     color: transparent;
 }
 @media only screen and (min-width: 768px) {
     #special-section .row .special-section-tile a {
         padding: 0 42px;
     }
 }
 #special-section .row .special-section-tile a:hover {
     text-decoration: none;
 }
 #special-section .row .special-section-tile a:hover img {
     transform: scale(1.1);
     transition: transform 0.5s ease-in-out;
 }
 #special-section .row .special-section-tile img {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     transition: transform 0.5s ease-in-out;
 }
 #special-section .row .special-section-tile .section-tile-title {
     font-size: 42px;
     font-family: "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-weight: 500;
     color: #FFF;
     z-index: 1;
 }
 @media only screen and (min-width: 786px) {
     #special-section .row .special-section-tile .section-tile-title {
         font-size: 60px;
     }
 }
 
 
 #special-section .sectionTitle {
     margin: 0 0 0.7em;
     line-height: 1em;
 }
 
 @media only screen and (min-width: 992px) {
     #special-section .sectionTitle br {
         display: none;
     }
 }
 
 #special-section picture {
     display: block;
     overflow: hidden;
 }
 
 #special-section img {
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto;
 }
 
 #special-section img.visual {
     transition: transform 0.5s ease-in-out;
     position: static;
     z-index: 20;
 }
 
 #special-section .prodTitle {
     position: absolute;
     padding: 0 15px;
     text-align: center;
     width: 100%;
     top: 50px;
     text-transform: uppercase;
     color: #fff;
     font-family: "Gotham 5r", "Gotham A", "Gotham B", "Gotham-Medium", Arial, Helvetica, sans-serif;
     font-weight: 500;
     font-size: 26px;
     z-index: 100;
     line-height: 1.2em;
 }
 
 #special-section .prodTitle:after {
     width: 50px;
     height: 1px;
     display: block;
     content: "";
     background: #fff;
     left: 50%;
     position: absolute;
     bottom: -20px;
     transform: translateX(-50%);
 }
 
 @media only screen and (min-width: 992px) {
     #special-section .prodTitle {
         font-size: 30px;
     }
 }
 
 @media only screen and (min-width: 1200px) {
     #special-section .prodTitle {
         font-size: 36px;
         top: 70px;
     }
     #special-section .prodTitle:after {
         bottom: -35px;
     }
 }
 
 @media only screen and (min-width: 768px) and (max-width: 992px) {
     #special-section .col-sm-4 {
         padding: 0 10px;
     }
 }
 
 @media only screen and (max-width: 1000px) {
     #special-section .sectionTitle {
         margin: 0 0 0.5em;
     }
 }
 
 @media only screen and (max-width: 992px) {
     #special-section a,
     #special-section img.visual {
         max-width: 350px;
     }
 }
 
 @media only screen and (max-width: 768px) {
     #special-section {
         padding: 1em 0 1em;
     }
     #special-section .sectionTitle {
         font-size: 42px;
     }
     #special-section a {
         margin-bottom: 20px;
     }
     #special-section a,
     #special-section img.visual {
         max-width: 450px;
     }
 }
 
 .banner-about-us {
     margin-top: 40px;
 }
 
 .banner-about-us img {
     margin: 0 auto;
 }
 
 @media only screen and (min-width: 769px) and (max-width: 1199px) {
     .banner-about-us img {
         min-height: 125px;
     }
 }
 
 .banner-about-us_wrapper {
     position: relative;
 }
 
 @media only screen and (max-width: 768px) {
     .banner-about-us_wrapper {
         max-width: 450px;
         margin: 0 auto;
     }
 }
 
 .banner-about-us_wrapper .banner-caption {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     width: 85%;
 }
 
 @media only screen and (max-width: 768px) {
     .banner-about-us_wrapper .banner-caption {
         width: 92%;
     }
 }
 
 .banner-about-us_wrapper .banner-caption h4 {
     margin: 0 0 20px;
     font-size: 50px;
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-weight: 500;
     color: #FFFFFF;
     line-height: 0.88;
 }
 
 @media only screen and (max-width: 992px) {
     .banner-about-us_wrapper .banner-caption h4 {
         font-size: 36px;
     }
 }
 
 .banner-about-us_wrapper .banner-caption a {
     text-transform: uppercase;
     font-family: "Gotham Cond A", "Gotham Cond B", "GothamHTF-MediumCondensed", Arial, Helvetica, sans-serif;
     font-weight: 500;
     font-size: 16px;
     line-height: 20px;
     background-color: #fff;
     padding: 8px 30px;
     text-decoration: none;
     color: #1a1a1a;
 }
 
 @media only screen and (max-width: 768px) {
     .banner-about-us_wrapper .banner-caption a {
         padding: 6px 24px;
     }
 }
 
 .banner-industrial-plan {
     margin-top: 40px;
 }
 
 .banner-industrial-plan-wrapper {
     border: 0 solid #000;
     padding: 0;
     align-items: center;
 }
 
 @media only screen and (max-width: 992px) {
     .banner-industrial-plan-wrapper {
         padding: 0;
     }
 }
 
 .banner-industrial-plan-wrapper picture {
     width: 100%;
 }
 
 .banner-industrial-plan-wrapper picture img {
     margin: 0 auto;
 }
 
 @media only screen and (max-width: 992px) {
     .banner-industrial-plan-wrapper picture {
         width: 100%;
     }
 
 }
 #highlight-section {
   padding: 60px 0;
 }
 #highlight-section .sectionTitle {
   text-align: left;
 }
 #highlight-section .owl-carousel {
   width: 100%;
 }
 #highlight-section .owl-carousel .owl-stage .owl-item {
   height: 100%;
 }
 #highlight-section .owl-carousel .owl-stage .owl-item .item {
   height: 100%;
   background-size: cover;
   background-position: center;
   padding-top: 150%;
 }
 @media screen and (min-width: 640px) {
   #highlight-section .owl-carousel .owl-stage .owl-item .item {
     padding-top: 50%;
     max-height: 400px;
   }
 }
 @media screen and (min-width: 1400px) {
   #highlight-section .owl-carousel .owl-stage .owl-item .item {
     padding-top: 30%;
   }
 }
 #highlight-section .owl-carousel .owl-stage .owl-item .item h2 {
   margin: 0;
 }
 #highlight-section .owl-carousel .owl-nav {
   position: absolute;
   align-items: center;
   top: -85px;
   right: 0;
   height: 85px;
   gap: 16px;
   display: none;
 }
 @media screen and (min-width: 640px) {
   #highlight-section .owl-carousel .owl-nav {
     display: flex;
   }
 }
 #highlight-section .owl-carousel .owl-nav .owl-prev,
 #highlight-section .owl-carousel .owl-nav .owl-next {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border: 1px solid #1F1F1F;
   border-radius: 4px;
   transition: all 0.4s ease-in-out;
 }
 #highlight-section .owl-carousel .owl-nav .owl-prev i,
 #highlight-section .owl-carousel .owl-nav .owl-next i {
   transition: all 0.4s ease-in-out;
 }
 #highlight-section .owl-carousel .owl-nav .owl-prev.disabled,
 #highlight-section .owl-carousel .owl-nav .owl-next.disabled {
   border-color: #CCCCCC;
 }
 #highlight-section .owl-carousel .owl-nav .owl-prev.disabled i,
 #highlight-section .owl-carousel .owl-nav .owl-next.disabled i {
   color: #CCCCCC;
 }
 #highlight-section .highlightSection-link {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 4;
 }