@charset "utf-8";

/* CSS Document */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

:root {
  --primary: #e8703c !important;
  --secondary: #1b447a !important;
  --white: #ffffff !important;
  --black: #666666 !important;
  --font-title: "Exo", sans-serif !important;
  --fonts: "Roboto", sans-serif !important;
}

.bg-gray {
  background-color: #f5f5f5;
}

.bg-blue {
  background-color: #04012e;
}

.product-detail-head {
  padding: 100px 0 60px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-detail-main {
  width: 100%;
  background-color: #fff;
  border-radius: 20px !important;
  padding: 15px;
  border: 1px solid #d9d9d9;
  height: 100%;
  position: relative;
}

.product-code {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--fonts) !important;
  margin-top: 15px;
}

.product-detail-name {
  color: var(--black);
  font-size: 36px;
  font-weight: 600;
  font-family: var(--font-title);
  line-height: 40px;
  margin-bottom: 20px;
}

.main-product-view ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 20px;
}

.main-product-view ul li {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  padding: 3px 10px 3px 20px;
  font-weight: 400;
  background-image: url(../images/orange_arrow.png);
  background-repeat: no-repeat;
  background-position: top 8px left;
}

.product-detail-box {
  padding: 15px 15px 15px 60px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
  transition: background-color 0.5s;
}

.product-detail-box img {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.specifications-features {
  background-image: url(../images/key-features-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.specifications-features h4 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.product-detail-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 5px;
}

.product-detail-text {
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0px;
  text-align: left;
}

.product-banner-text {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 50px;
}

.product-price {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin: 0 auto 20px auto;
}

.btn-primary img {
  filter: brightness(0) invert(1);
  margin-left: 15px;
}

.product-detail-head .btn-primary {
  border-radius: 50px;
  font-size: 20px;
}

.product-detail-ind {
  padding-bottom: 50px;
}

.product-detail-ind .swiper-pagination-bullet {
  width: 50px;
  border-radius: 0;
  height: 2px;
  background-color: var(--primary);
  opacity: 0.5;
}

.product-detail-ind .swiper-pagination-bullet:hover,
.product-detail-ind .swiper-pagination-bullet-active {
  height: 4px;
  opacity: 2;
}

.ind-btn {
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
  border-radius: 15px;
  position: relative;
  padding: 17px 12px;
  color: var(--white);
  font-weight: 600;
}

.ind-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  border: 3px solid transparent;
  background: linear-gradient(
      135deg,
      rgba(148, 64, 35, 1) 0%,
      rgba(81, 34, 72, 1) 50%,
      rgba(57, 120, 169, 1) 100%
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

/* .ind-btn:hover{
	background: linear-gradient(155deg, rgba(192,90,54,1) 0%, rgba(81,34,72,0.9) 50%, rgba(57,120,169,1) 100%);
	transition: background-position 0.3s;
} */

.ind-btn::after {
  background: linear-gradient(
    155deg,
    rgba(192, 90, 54, 1) 0%,
    rgba(81, 34, 72, 0.9) 50%,
    rgba(57, 120, 169, 1) 100%
  );
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  content: "";
  border-radius: 20px;
  z-index: -1;
  transition: width 0.3s linear;
}

.ind-btn:hover::after {
  background: linear-gradient(
    155deg,
    rgba(192, 90, 54, 1) 0%,
    rgba(81, 34, 72, 0.9) 50%,
    rgba(57, 120, 169, 1) 100%
  );
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  content: "";
  border-radius: 20px;
  z-index: -1;
  transform: translateX(-50%);
  transition: width 0.3s linear;
}

.ind-btn i {
  opacity: 0;
  right: 0;
}

.ind-btn:hover i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  font-size: 20px;
  opacity: 1;
  transition: right 0.5s;
}

.product-detail-ind .ind-btn {
  height: 125px;
}

.product-detail-ind .ind-btn img {
  width: 50px;
}

.isolation-list h5 {
  color: var(--white);
  font-weight: 700;
  font-family: var(--fonts);
  margin-bottom: 20px;
}

.isolation-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none !important;
  margin-bottom: 20px;
}

.isolation-list ul li {
  color: var(--white);
  font-size: 16px;
  line-height: 37px;
  padding-left: 20px;
  font-weight: 400;
  background-image: url(../images/orange_arrow.png);
  background-repeat: no-repeat;
  background-position: top 12px left;
}

.graph {
  position: relative;
}

.graph1 {
  position: relative;
}

.graph-img {
  width: 95%;
  border-radius: 10px;
  /* margin: 10px 0; */
}

.vs {
  font-size: 22px;
  width: 77px;
  height: 77px;
  text-align: center;
  font-weight: 600;
  border-radius: 77px;
  color: #fff;
  line-height: 77px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.graph-1 {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 5px 10px;
  font-weight: 600;
  position: absolute;
  top: -30px;
  left: 20px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 10px;
}

.graph-2 {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 5px 10px;
  font-weight: 600;
  position: absolute;
  top: -30px;
  left: 40px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 10px;
}

.graph-text {
  height: auto;
  border-radius: 10px;
  color: #fff;
}

.features-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 20px;
}

.features-list ul li {
  color: var(--black);
  font-size: 16px;
  line-height: 20px;
  padding: 6px 0 6px 20px;
  font-weight: 400;
  background-image: url(../images/orange_arrow.png);
  background-repeat: no-repeat;
  background-position: top 12px left;
}

.enlarge-gallery {
  width: 100%;
  height: 266px;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}

.enlarge-img {
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* also interested */

.also-interested-div {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  overflow: hidden;
}

.discovered-product {
  padding-bottom: 50px;
  margin-bottom: 25px;
  overflow: visible;
}

.discover-products {
  background-color: #113460;
  padding: 15px 15px 15px 210px;
  border-radius: 20px;
  position: relative;
  min-height: 168px;
}

.discover-products h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 26px;
  margin-bottom: 15px;
}

.discover-products p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.discover-products h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s;
}

.discover-products:hover h6 {
  color: var(--white);
  transition: all 0.3s;
}

.discover-products-img {
  width: 172px;
  height: 137px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.discover-products-img div {
  width: 100%;
  height: 100%;
  background-color: #fff !important;
  position: relative;
  border-radius: 15px;
}

.discover-products-img div .overlay {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4) !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 100;
  transition: all 0.3s;
}

.discover-products-img:hover div .overlay {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  transition: all 0.3s;
}

.discover-products-img div img {
  width: auto;
  height: auto;
  max-width: 162px;
  max-height: 127px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* recent */

.col-lg-2-8 {
  flex: 0 0 auto;
  width: 12.5%;
  margin-bottom: 15px;
}

.recently-view {
  width: 100%;
  text-align: center;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3) !important;
  padding: 10px;
  height: auto;
  color: var(--black);
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  line-height: 18px;
}

/* .recently-view img {
	width: 100%;
	margin-bottom: 5px;
} */

.recently-view-img-div {
  background-color: #fff !important;
  height: 100px !important;
  width: 100% !important;
  position: relative !important;
  border-radius: 10px;
}

.recently-view-img {
  max-width: calc(100% - 20px) !important;
  max-height: 90px !important;
  width: auto !important;
  vertical-align: middle !important;
  margin: auto !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: absolute !important;
}

.product-detail-banner {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.main-product-detail-img-div {
  background-color: #fff !important;
  height: 470px !important;
  width: 100% !important;
  position: relative !important;
  margin-bottom: 20px;
  border-radius: 10px;
}

.main-product-detail-img {
  max-width: calc(100% - 20px) !important;
  max-height: 455px !important;
  width: auto !important;
  vertical-align: middle !important;
  margin: auto !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: absolute !important;
  border-radius: 10px;
}

.thumb-product-detail-img-div {
  background-color: #fff !important;
  height: 100px !important;
  width: 100% !important;
  position: relative !important;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
}

.thumb-product-detail-img {
  max-width: calc(100% - 10px) !important;
  max-height: calc(100% - 10px) !important;
  width: auto !important;
  height: auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-product-img {
  height: auto;
  width: 100%;
}

/* .thumb-product-img .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
} */

.mobile-show {
  display: none;
}

.mobile-hide {
  display: block;
}

@media only screen and (max-width: 1100px) {
  .col-lg-7 {
    width: 100%;
  }
}

.gallery {
  list-style: none;
}

.gallery li {
  float: left;
  margin: 0 2px;
}

.gallery1 {
  list-style: none;
}

.gallery1 li {
  float: left;
  margin: 0 2px;
}

/* pager */

.mfp-pager {
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.mfp-pager::after {
  clear: both;
  display: block;
  content: "";
}

.mfp-pager li {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.mfp-pager .arrow_next,
.mfp-pager .arrow_prev {
  display: inline-block;
}

.mfp-pager .arrow_next button,
.mfp-pager .arrow_prev button {
  vertical-align: middle;
  border: none;
}

.mfp-pager li .arrow {
  position: relative;
  top: 2px;
  padding: 0;
  margin: 0;
  display: inline-block;
  background: url(/temas/claraboia/html/img/sprite.png) no-repeat;
  width: 18px;
  height: 11px;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  position: relative;
}

.mfp-pager li .prev {
  background-position: -20px -22px;
}

.mfp-pager li .next {
  background-position: -20px -40px;
}

.mfp-pager .dots {
  vertical-align: top;
  text-align: center;
  display: inline-block;
  margin: 0 8px;
  position: relative;
}

.mfp-pager .dots li {
  display: inline-block;
  margin: 0 2px;
}

.mfp-pager .dots li a {
  display: block;
  width: 15px;
  height: 15px;
  background: #666;
  text-indent: -9999px;
  padding: 5px;
  margin: 0;
  cursor: pointer;
  border: none;
}

.mfp-pager .dots li.active {
  border: 2px solid red;
}

.main-product-img .button-next,
.main-product-img .button-prev {
  color: var(--primary);
  width: 47px;
  height: 47px;
  text-align: center;
  line-height: 47px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  font-size: 20px;
  position: absolute;
  z-index: 10000;
  transition: all 0.3s;
  background: #fff !important;
}

.main-product-img .button-next:hover,
.main-product-img .button-prev:hover {
  background: linear-gradient(
    90deg,
    rgba(234, 112, 58, 1) 26%,
    rgba(234, 83, 58, 1) 75%
  ) !important;
  color: var(--white);
  transition: all 0.3s;
}

.main-product-img .button-next {
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.main-product-img .button-prev {
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.image-icon-detail {
  position: relative;
}

.image-icon-detail img {
  width: 74px;
  margin: 3px;
}

.icon-zoom {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
  color: var(--black);
  background-color: var(--primary);
  text-align: center;
  border-radius: 25px;
  margin-bottom: 15px;
  opacity: 0.5;
}

/* industries */

.product-detail-industries {
  padding-bottom: 50px;
}

.mobile-ind-div {
  width: 100%;
  height: 310px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 20px;
  padding: 22px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.mobile-ind-div:hover {
  background-size: 110%;
  transition: all 0.3s ease-in-out;
}

.mobile-ind-div p {
  font-size: 24px;
  color: var(--white);
  z-index: 1;
  font-family: var(--fonts);
  position: absolute;
  bottom: 30px;
  left: 22px;
  font-weight: 600;
}

.mobile-ind-div .inq-know-more {
  position: absolute;
  bottom: 15px;
  color: var(--white);
  font-weight: 400;
  transition: all 0.3s;
  font-size: 16px;
}

.mobile-ind-div:hover .inq-know-more {
  color: var(--primary);
  transition: all 0.3s;
}

.mobile-ind-div .ind-rel-pro {
  position: absolute;
  bottom: 30px;
  left: 22px;
}

.mobile-ind-div .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 20%,
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 20px;
}

.rf-isolation {
  background-color: #24589d;
  border-radius: 20px;
  padding: 20px;
}

.download-inq-links {
  width: 100%;
  /* position: absolute;
  bottom: 0;
  left: 0; */
}

.download-inq-links h4 {
  font-family: var(--fonts);
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
  font-weight: 700;
}

.download-inq-links h6 {
  font-family: var(--fonts);
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 30px;
}

.download-data-sheet {
  width: 100%;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  width: 100%;
  display: block;
  margin-bottom: 15px;
  padding: 5px 0;
}

.download-data-sheet a {
  width: 100%;
  font-size: 20px;
  line-height: 38px;
  font-weight: 700;
  color: var(--black);
  width: 100%;
  display: block;
  transition: all 0.4s;
  line-height: 38px;
  margin: 10px 0;
}

.download-data-sheet a:hover {
  color: var(--primary);
  transition: all 0.4s;
}

.download-data-sheet img {
  float: right;
}

/* responsive */

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
  .col-lg-2-8 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media only screen and (max-width: 1100px) {
  .product-code {
    font-size: 14px !important;
    font-weight: 400;
  }
  .product-detail-name {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .counter {
    padding: 10px 20px;
    height: 100%;
  }
  .counter h3 {
    font-size: 36px;
    line-height: 48px;
  }
  .counter p {
    font-size: 14px;
    line-height: 18px;
  }
  .key-features-div img {
    width: 50px;
  }
  .key-features-div p {
    font-size: 14px;
  }
  .how-work-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    z-index: 1;
  }
  .orange-line {
    position: absolute;
    width: calc(100% - 16px);
    height: 1px;
    background-color: var(--primary);
    top: 20px;
    left: 40px;
  }
  .gray-line {
    position: absolute;
    width: 1px;
    height: 90px;
    background-color: var(--black);
    top: 27px;
    left: 20px;
  }
  .blue-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background-color: #24589d;
    border-radius: 11px;
    top: 112px;
    left: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .download-inq-links {
    position: relative;
  }
  .how-work-div {
    overflow: hidden;
  }
  .download-data-sheet a {
    font-size: 18px;
    line-height: 28px;
  }

  .download-data-sheet a img {
    width: 28px;
  }

  .download-inq-links h4 {
    font-size: 20px;
  }
  .download-inq-links h6 {
    font-size: 16px;
    line-height: 22px;
  }
  .main-product-view ul li {
    font-size: 14px;
  }
  .image-icon-detail img {
    width: 60px;
  }
  .specifications-features h4 {
    font-size: 22px;
    margin: 0;
  }
  .product-detail-title {
    font-size: 18px;
  }
  .product-detail-text {
    font-size: 16px;
  }
  .main-product-img .button-next,
  .main-product-img .button-prev {
    display: none;
  }
  .main-product-detail-img-div {
    background-color: #fff !important;
    height: 260px !important;
  }
  .main-product-detail-img {
    max-width: calc(100% - 20px) !important;
    max-height: calc(100% - 10px) !important;
  }
  .features-list ul li {
    font-size: 14px;
  }
  .mobile-ind-div p {
    font-size: 18px;
  }
  .mobile-ind-div .inq-know-more {
    font-size: 14px;
  }
  .isolation-list ul {
    margin-bottom: 40px;
  }
  .isolation-list ul li {
    font-size: 14px;
    background-position: top 14px left;
  }
  .graph-img {
    width: 100%;
  }
  .graph-text {
    font-size: 14px;
    margin-top: 15px;
  }
  .vs img {
    width: 30px;
  }
  .graph-2,
  .graph-1 {
    position: relative;
    left: unset;
    top: unset;
    margin: 0;
  }
  .discover-products {
    padding: 10px 10px 10px 135px;
  }
  .discover-products-img {
    width: 106px;
    height: 86px;
    position: absolute;
    top: 15px;
    left: 15px;
  }
  .discover-products-img div img {
    max-width: 102px;
    max-height: 86px;
  }
  .discover-products p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .discover-products h5 {
    font-size: 18px;
    height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    /* Standard property */
    -webkit-box-orient: vertical;
  }
  .discover-products h6 {
    margin: 0;
    font-size: 14px;
  }
  .recently-view {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .m-panel {
    height: 0px !important;
    transition:
      visibility 0.3s,
      opacity 0s;
    margin-bottom: 0px;
    visibility: hidden;
    opacity: 0;
  }
  .m-panel.show {
    height: auto !important;
    transition:
      visibility 0.3s,
      opacity 0.5s;
    visibility: visible;
    margin-top: 15px;
    opacity: 1;
  }
  .col-lg-2-8 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media only screen and (max-width: 640px) {
  .key-features-div {
    text-align: center;
  }
  .key-features-div img {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 600px) {
}

@media only screen and (max-width: 568px) {
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 360px) {
}
