.numbersHome .container .row.icons div[class^=col-] .item p, .numbersHome .container .row.icons div[class^=col-] .item, .numbersHome .container .p-content h2, .videoHome .container-fluid .row div[class^=col-] a.item, .productsHome .container-fluid .row div[class^=col-] a.item, .aboutusHome .container .p-content p, .aboutusHome .container .p-content pre, .aboutusHome .container .p-content h2, .aboutusHome .container .p-content span img, .aboutusHome .container .p-content span, .homeSlide .owl-carousel .owl-dots button span, .productSlide .owl-carousel .owl-dots button span, .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h3, .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h2 {
  display: inline-block;
  width: auto;
  height: auto;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.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;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -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 {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.homeSlide, .productSlide {
  overflow: hidden;
  position: relative;
  height: auto;
  background-color: #001a72;
}
.homeSlide .owl-carousel, .productSlide .owl-carousel {
  position: relative;
  float: left;
  height: 100vh;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel, .productSlide .owl-carousel {
    height: 60vh;
  }
}
@media only screen and (max-width: 769px) {
  .homeSlide .owl-carousel, .productSlide .owl-carousel {
    height: 45vh;
  }
}
@media only screen and (max-width: 480px) {
  .homeSlide .owl-carousel, .productSlide .owl-carousel {
    height: 400px;
  }
}
.homeSlide .owl-carousel .owl-slide, .productSlide .owl-carousel .owl-slide {
  height: 100vh;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel .owl-slide, .productSlide .owl-carousel .owl-slide {
    height: 60vh;
  }
}
@media only screen and (max-width: 769px) {
  .homeSlide .owl-carousel .owl-slide, .productSlide .owl-carousel .owl-slide {
    height: 45vh;
  }
}
@media only screen and (max-width: 480px) {
  .homeSlide .owl-carousel .owl-slide, .productSlide .owl-carousel .owl-slide {
    height: 400px;
  }
}
.homeSlide .owl-carousel .owl-slide .textcontainer, .productSlide .owl-carousel .owl-slide .textcontainer {
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 3;
}
.homeSlide .owl-carousel .owl-slide .textcontainer .container, .homeSlide .owl-carousel .owl-slide .textcontainer .row, .productSlide .owl-carousel .owl-slide .textcontainer .container, .productSlide .owl-carousel .owl-slide .textcontainer .row {
  height: 100%;
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container, .homeSlide .owl-carousel .owl-slide .textcontainer .row, .productSlide .owl-carousel .owl-slide .textcontainer .container, .productSlide .owl-carousel .owl-slide .textcontainer .row {
    padding-bottom: 0px;
  }
}
.homeSlide .owl-carousel .owl-slide .textcontainer .container > div, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div, .productSlide .owl-carousel .owl-slide .textcontainer .container > div, .productSlide .owl-carousel .owl-slide .textcontainer .row > div {
  position: relative;
  z-index: 1;
}
.homeSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h2 {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #FFF;
  margin: 0;
  padding: 0;
}
.homeSlide .owl-carousel .owl-slide .textcontainer .container > div h2::before, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h2::before, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h2::before, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h2::before {
  display: none;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h2 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 769px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h2 {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 480px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h2, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h2 {
    font-size: 0.9rem;
  }
}
.homeSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h3 {
  width: 100%;
  display: block;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #FFF;
  margin: 15px 0 0 0;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 769px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .homeSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .homeSlide .owl-carousel .owl-slide .textcontainer .row > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .container > div h3, .productSlide .owl-carousel .owl-slide .textcontainer .row > div h3 {
    font-size: 1.5rem;
  }
}
.homeSlide .owl-carousel .owl-slide .link, .productSlide .owl-carousel .owl-slide .link {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.homeSlide .owl-carousel .owl-slide .cropcontainer, .productSlide .owl-carousel .owl-slide .cropcontainer {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.83;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.homeSlide .owl-carousel .owl-slide .cropcontainer::after, .productSlide .owl-carousel .owl-slide .cropcontainer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  z-index: 3;
  background: #001a72;
  background: -webkit-gradient(linear, left top, right top, from(#0f64f2), to(#0f64f2));
  background: linear-gradient(90deg, #0f64f2 0%, #0f64f2 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
}
.homeSlide .owl-carousel .owl-slide .cropcontainer::before, .productSlide .owl-carousel .owl-slide .cropcontainer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.homeSlide .owl-carousel .owl-dots, .productSlide .owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 50px;
  z-index: 5;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel .owl-dots, .productSlide .owl-carousel .owl-dots {
    bottom: 30px;
  }
}
.homeSlide .owl-carousel .owl-dots button, .productSlide .owl-carousel .owl-dots button {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-radius: 100%;
  padding: 5px;
}
.homeSlide .owl-carousel .owl-dots button.active, .productSlide .owl-carousel .owl-dots button.active {
  border: 1px solid #FFF;
}
.homeSlide .owl-carousel .owl-dots button.active span, .productSlide .owl-carousel .owl-dots button.active span {
  background-color: #FFF;
  opacity: 1;
}
.homeSlide .owl-carousel .owl-dots button span, .productSlide .owl-carousel .owl-dots button span {
  width: 8px;
  height: 8px;
  background-color: #FFF;
  opacity: 0.3;
  border-radius: 100%;
}
@media only screen and (max-width: 992px) {
  .homeSlide .owl-carousel .owl-dots button, .productSlide .owl-carousel .owl-dots button {
    float: none;
    display: inline-block;
  }
}

.homeSlide {
  height: 100vh;
}
@media only screen and (max-width: 992px) {
  .homeSlide {
    height: 60vh;
  }
}
@media only screen and (max-width: 769px) {
  .homeSlide {
    height: 45vh;
  }
}
@media only screen and (max-width: 480px) {
  .homeSlide {
    height: 400px;
  }
}

.productSlide {
  margin-top: -100px;
}
@media only screen and (max-width: 992px) {
  .productSlide {
    margin-top: -12px;
    height: 50vh;
  }
}
@media only screen and (max-width: 769px) {
  .productSlide {
    height: 40vh;
  }
}
@media only screen and (max-width: 480px) {
  .productSlide {
    margin-top: -18px;
    height: 340px;
  }
}
@media only screen and (max-width: 992px) {
  .productSlide .owl-carousel {
    height: 50vh;
  }
}
@media only screen and (max-width: 769px) {
  .productSlide .owl-carousel {
    height: 40vh;
  }
}
@media only screen and (max-width: 480px) {
  .productSlide .owl-carousel {
    height: 340px;
  }
}
@media only screen and (max-width: 992px) {
  .productSlide .owl-carousel .owl-slide {
    height: 50vh;
  }
}
@media only screen and (max-width: 769px) {
  .productSlide .owl-carousel .owl-slide {
    height: 40vh;
  }
}
@media only screen and (max-width: 480px) {
  .productSlide .owl-carousel .owl-slide {
    height: 340px;
  }
}
.productSlide .owl-carousel .owl-slide::before {
  display: none;
}
.productSlide .owl-carousel .owl-slide .cropcontainer::before {
  display: none;
}

.aboutusHome .container {
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
  z-index: 5;
}
.aboutusHome .container .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.aboutusHome .container .p-content span {
  width: 100%;
}
.aboutusHome .container .p-content span img {
  width: 100%;
}
.aboutusHome .container .p-content h2 {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #00182c;
  margin-bottom: 30px;
  padding: 0;
}
@media only screen and (max-width: 769px) {
  .aboutusHome .container .p-content h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.aboutusHome .container .p-content p, .aboutusHome .container .p-content pre {
  width: 100%;
  font-size: 1rem;
  line-height: 1.6;
  color: #00182c;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: justify;
}
@media only screen and (max-width: 769px) {
  .aboutusHome .container .p-content p, .aboutusHome .container .p-content pre {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .aboutusHome .container .p-content p, .aboutusHome .container .p-content pre {
    font-size: 0.8rem;
  }
}

.productsHome .container-fluid {
  padding: 0px;
}
.productsHome .container-fluid .row {
  margin: 0px -1px;
}
.productsHome .container-fluid .row div[class^=col-] {
  padding: 1px;
}
.productsHome .container-fluid .row div[class^=col-] a.item {
  width: 100%;
  min-height: 575px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 769px) {
  .productsHome .container-fluid .row div[class^=col-] a.item {
    min-height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .productsHome .container-fluid .row div[class^=col-] a.item {
    min-height: 300px;
  }
}
.productsHome .container-fluid .row div[class^=col-] a.item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.productsHome .container-fluid .row div[class^=col-] a.item span.text {
  position: absolute;
  left: 14.5%;
  top: 34%;
  width: 150px;
  height: 50px;
  font-size: 1.9rem;
  line-height: 1.5;
  color: #FFF;
  font-weight: 500;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod="auto expand", M11=-0.4480736161, M12=--0.8939966636, M21=-0.8939966636, M22=-0.4480736161);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=-0.4480736161, M12=--0.8939966636, M21=-0.8939966636, M22=-0.4480736161)";
  zoom: 1;
  z-index: 4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
@media only screen and (max-width: 2200px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    left: 13.7%;
  }
}
@media only screen and (max-width: 1920px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    left: 12.3%;
  }
}
@media only screen and (max-width: 1700px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    left: 11%;
  }
}
@media only screen and (max-width: 1500px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    left: 10%;
  }
}
@media only screen and (max-width: 1300px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    left: 9%;
  }
}
@media only screen and (max-width: 1100px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    left: 7%;
  }
}
@media only screen and (max-width: 769px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.text {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod="auto expand", M11=1, M12=-0, M21=0, M22=1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=-0, M21=0, M22=1)";
    zoom: 1;
    left: 0px;
    top: auto;
    bottom: 40px;
    width: 100%;
    font-size: 1.2rem;
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.productsHome .container-fluid .row div[class^=col-] a.item span.line {
  position: absolute;
  left: 0px;
  top: 130px;
  width: 100%;
  height: 180px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 769px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.line {
    display: none;
  }
}
.productsHome .container-fluid .row div[class^=col-] a.item span.line2 {
  position: absolute;
  left: -80%;
  top: 130px;
  width: 200%;
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod="auto expand", M11=-0.4480736161, M12=--0.8939966636, M21=-0.8939966636, M22=-0.4480736161);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=-0.4480736161, M12=--0.8939966636, M21=-0.8939966636, M22=-0.4480736161)";
  zoom: 1;
  z-index: 4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 769px) {
  .productsHome .container-fluid .row div[class^=col-] a.item span.line2 {
    display: none;
  }
}
.productsHome .container-fluid .row div[class^=col-] a.item:hover::before {
  background: rgba(0, 0, 0, 0.1);
}
.productsHome .container-fluid .row div[class^=col-] a.item:hover span.line {
  margin-top: -10px;
  height: 200px;
}
.productsHome .container-fluid .row div[class^=col-] a.item:hover span.line2 {
  margin-top: -10px;
  height: 70px;
}

.videoHome .container-fluid {
  padding: 0px;
}
.videoHome .container-fluid .row {
  margin: 0px;
}
.videoHome .container-fluid .row div[class^=col-] {
  padding: 1px 0 0 0;
}
.videoHome .container-fluid .row div[class^=col-] a.item {
  width: 100%;
  min-height: 575px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 769px) {
  .videoHome .container-fluid .row div[class^=col-] a.item {
    min-height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .videoHome .container-fluid .row div[class^=col-] a.item {
    min-height: 300px;
  }
}
.videoHome .container-fluid .row div[class^=col-] a.item::after {
  content: "\e809";
  position: absolute;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  z-index: 5;
  font-family: "kimpas-font";
  font-size: 4.5rem;
  line-height: 1;
  color: #FFF;
  margin: -36px 0 0 -36px;
}
@media only screen and (max-width: 769px) {
  .videoHome .container-fluid .row div[class^=col-] a.item::after {
    font-size: 3.5rem;
    margin: -23px 0 0 -23px;
  }
}
.videoHome .container-fluid .row div[class^=col-] a.item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.videoHome .container-fluid .row div[class^=col-] a.item span.text {
  position: absolute;
  left: 0px;
  bottom: 80px;
  width: 100%;
  font-size: 1.9rem;
  line-height: 1.5;
  color: #FFF;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 769px) {
  .videoHome .container-fluid .row div[class^=col-] a.item span.text {
    bottom: 40px;
    font-size: 1.2rem;
    height: auto;
  }
}
.videoHome .container-fluid .row div[class^=col-] a.item:hover::before {
  background: rgba(0, 0, 0, 0.1);
}
.videoHome .container-fluid .row div[class^=col-] a.item:hover span.text {
  margin-bottom: -10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.numbersHome .container {
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
  z-index: 5;
}
.numbersHome .container .p-content h2 {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #00182c;
  margin-bottom: 30px;
  padding: 0;
}
.numbersHome .container .row.icons {
  margin-top: 20px;
}
.numbersHome .container .row.icons div[class^=col-] {
  position: relative;
}
.numbersHome .container .row.icons div[class^=col-]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 30px;
  background-color: #00182c;
}
@media only screen and (max-width: 992px) {
  .numbersHome .container .row.icons div[class^=col-]::after {
    display: none;
  }
}
.numbersHome .container .row.icons div[class^=col-]:last-child::after {
  display: none;
}
.numbersHome .container .row.icons div[class^=col-] .item {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .numbersHome .container .row.icons div[class^=col-] .item {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.numbersHome .container .row.icons div[class^=col-] .item i {
  font-size: 4.5rem;
  line-height: 1;
  color: #0f64f2;
}
@media only screen and (max-width: 992px) {
  .numbersHome .container .row.icons div[class^=col-] .item i {
    font-size: 3.8rem;
  }
}
.numbersHome .container .row.icons div[class^=col-] .item p {
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  color: #00182c;
  margin-top: 20px;
}
@media only screen and (max-width: 992px) {
  .numbersHome .container .row.icons div[class^=col-] .item p {
    font-size: 0.9rem;
  }
}