/*
  Centraliza
*/
/*
 Calculo automatico da largura
*/
/*
 Margins e paddins responsivos
*/
/*
	Font size responsiva para titulos. De 33 a 999;
*/
/*
	Font size responsiva para subtitulos. De 24 a 32;
*/
/*
	Font size responsiva para paragrafo. De 18 a 24;
*/
.products-home {
  width: 100%;
  margin-bottom: 80px;
  margin-top: 80px;
}

@media (max-width: 1366px) {
  .products-home {
    margin-bottom: 64px;
  }
}

@media (max-width: 1100px) {
  .products-home {
    margin-bottom: 51.2px;
  }
}

@media (max-width: 900px) {
  .products-home {
    margin-bottom: 40.96px;
  }
}

@media (max-width: 600px) {
  .products-home {
    margin-bottom: 32.768px;
  }
}

@media (max-width: 450px) {
  .products-home {
    margin-bottom: 22.9376px;
  }
}

@media (max-width: 1366px) {
  .products-home {
    margin-top: 64px;
  }
}

@media (max-width: 1100px) {
  .products-home {
    margin-top: 51.2px;
  }
}

@media (max-width: 900px) {
  .products-home {
    margin-top: 40.96px;
  }
}

@media (max-width: 600px) {
  .products-home {
    margin-top: 32.768px;
  }
}

@media (max-width: 450px) {
  .products-home {
    margin-top: 22.9376px;
  }
}

.products-home .categories-home-list {
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .products-home .categories-home-list {
    margin-bottom: 30px;
  }
}

.products-home .categories-home-list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

@media (max-width: 1200px) {
  .products-home .categories-home-list ul {
    gap: 10px 15px;
  }
}

@media (max-width: 600px) {
  .products-home .categories-home-list ul {
    gap: 5px 10px;
  }
}

.products-home .categories-home-list li a {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  opacity: 0.6;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 1200px) {
  .products-home .categories-home-list li a {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .products-home .categories-home-list li a {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .products-home .categories-home-list li a {
    font-size: 12px;
  }
}

.products-home .categories-home-list li a.atv,
.products-home .categories-home-list li a:hover {
  color: #e68020;
  opacity: 1;
}

.products-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.products-list .product-item {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 90px;
}

@media (max-width: 1366px) {
  .products-list .product-item {
    margin-bottom: 72px;
  }
}

@media (max-width: 1100px) {
  .products-list .product-item {
    margin-bottom: 57.6px;
  }
}

@media (max-width: 900px) {
  .products-list .product-item {
    margin-bottom: 46.08px;
  }
}

@media (max-width: 600px) {
  .products-list .product-item {
    margin-bottom: 36.864px;
  }
}

@media (max-width: 450px) {
  .products-list .product-item {
    margin-bottom: 25.8048px;
  }
}

.products-list .product-item:nth-child(3n) {
  margin-right: 0;
}

.products-list .product-item:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 1000px) {
  .products-list .product-item {
    width: 49%;
    margin-right: 2%;
  }

  .products-list .product-item:nth-child(3n) {
    margin-right: 2%;
  }

  .products-list .product-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 550px) {
  .products-list .product-item {
    width: 100%;
    margin-right: 0 !important;
  }
}

.products-list .product-image {
  width: 100%;
  height: 365px;
  position: relative;
  border-radius: 8px;
  border-top: 20px solid #e68020;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
}

@media (max-width: 1400px) {
  .products-list .product-image {
    padding: 20px;
  }
}

@media (max-width: 800px) {
  .products-list .product-image {
    height: 300px;
  }
}

.products-list picture {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.products-list picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  -o-object-fit: contain;
  -o-object-position: center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.products-list .product-body {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

@media (max-width: 800px) {
  .products-list .product-body {
    padding: 0 10px;
  }
}

.products-list .product-body h3 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

.products-list .product-body h3 a {
  color: #00121f;
  display: block;
}

.products-list .product-body p {
  color: #00121f;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 20px;
}

@media (max-width: 650px) {
  .products-list .product-body p {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .products-list .product-body p {
    font-size: 14px;
  }
}

.products-list .product-body p strong {
  display: block;
  color: #e68020;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 650px) {
  .products-list .product-body p strong {
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  .products-list .product-body p strong {
    font-size: 18px;
  }
}

.products-list .product-body .btn-outline {
  margin: 0 auto;
  margin-top: 20px;
}

.products-categories-list {
  width: 100%;
  position: relative;
  margin-top: 60px;
  margin-bottom: 100px;
}

@media (max-width: 1366px) {
  .products-categories-list {
    margin-bottom: 80px;
  }
}

@media (max-width: 1100px) {
  .products-categories-list {
    margin-bottom: 64px;
  }
}

@media (max-width: 900px) {
  .products-categories-list {
    margin-bottom: 51.2px;
  }
}

@media (max-width: 600px) {
  .products-categories-list {
    margin-bottom: 40.96px;
  }
}

@media (max-width: 450px) {
  .products-categories-list {
    margin-bottom: 28.672px;
  }
}

@media (max-width: 900px) {
  .products-categories-list {
    margin-top: 40px;
  }
}

.products-categories-list .container {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .products-categories-list .container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
}

.products-categories-list .categories-list {
  position: sticky;
  top: 60px;
  min-width: 340px;
  margin-right: 60px;
}

@media (max-width: 1366px) {
  .products-categories-list .categories-list {
    margin-right: 30px;
    min-width: 260px;
  }
}

@media (max-width: 1200px) {
  .products-categories-list .categories-list {
    margin-right: 15px;
    min-width: 200px;
  }
}

@media (max-width: 900px) {
  .products-categories-list .categories-list {
    width: 100%;
    position: relative;
    margin: 0;
    top: auto;
    min-width: 100%;
  }
}

.products-categories-list .categories-list h3 {
  color: #ffffff;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #e68020;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding: 20px 40px;
  margin-bottom: -10px;
  z-index: 90;
  position: relative;
}

@media (max-width: 1366px) {
  .products-categories-list .categories-list h3 {
    padding: 20px 10px;
    font-size: 16px;
  }
}

.products-categories-list .categories-list ul {
  border-radius: 8px;
  background: #fff;
  padding: 40px 40px 20px;
  border: 1px solid #ccc;
  border-top: none;
}

@media (max-width: 1366px) {
  .products-categories-list .categories-list ul {
    padding: 40px 20px 20px;
  }
}

@media (max-width: 900px) {
  .products-categories-list .categories-list ul {
    padding: 20px 20px 10px;
  }
}

.products-categories-list .categories-list ul li {
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .products-categories-list .categories-list ul li {
    margin-bottom: 10px;
  }
}

.products-categories-list .categories-list ul li a {
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 1200px) {
  .products-categories-list .categories-list ul li a {
    font-size: 14px;
  }
}

.products-categories-list .categories-list ul li a.atv {
  color: #e68020;
  font-weight: 700;
}

.products-categories-list .categories-list ul li a:hover {
  color: #e68020;
}

@media (max-width: 900px) {
  .products-categories-list .products-list-content {
    width: 100%;
    margin-bottom: 20px;
  }
}

.products-categories-list .products-list-content .product-image {
  height: 280px;
  padding: 30px;
}

@media (max-width: 1400px) {
  .products-categories-list .products-list-content .product-image {
    padding: 20px;
  }
}

.pagination {
  width: 100%;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 700px) {
  .pagination {
    margin-top: 20px;
  }
}

.pagination li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

@media (max-width: 700px) {
  .pagination li {
    margin: 2px;
  }
}

.pagination li .btn {
  background-color: transparent;
  opacity: 1 !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 700px) {
  .pagination li .btn {
    padding: 5px 10px;
  }
}

.pagination li .btn strong {
  color: #00121f;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.pagination li .btn:hover,
.pagination li .btn.btn-atv {
  background-color: #e68020;
}

.pagination li .btn:hover strong,
.pagination li .btn.btn-atv strong {
  color: #ffffff;
}

#video {
  margin: 6rem 0 0;
}

#video .video-wrapper {
  position: relative;
  width: 100%;
  height: 450px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
  overflow: hidden;
}

#video .video-wrapper .lazyload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  z-index: 0;
}

#video .video-wrapper .lazyload:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

#video .video-wrapper .lazyload-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#video .video-wrapper .content {
  position: relative;
  z-index: 2;
  text-align: center;
}

#video .video-wrapper .content svg {
  width: auto;
  height: 60px;
}

#video .video-wrapper .content h3 {
  color: #fff;
  margin-top: 1rem;
}

.product {
  padding-bottom: 60px;
  width: 100%;
}

@media (max-width: 1366px) {
  .product {
    padding-bottom: 48px;
  }
}

@media (max-width: 1100px) {
  .product {
    padding-bottom: 38.4px;
  }
}

@media (max-width: 900px) {
  .product {
    padding-bottom: 30.72px;
  }
}

@media (max-width: 600px) {
  .product {
    padding-bottom: 24.576px;
  }
}

@media (max-width: 450px) {
  .product {
    padding-bottom: 17.2032px;
  }
}

.product .banner-inner .banner-body {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .product .banner-inner .banner-body {
    padding-bottom: 120px;
  }
}

.product .banner-inner .banner-body h1 {
  padding: 0 80px;
  font-size: 42px;
}

@media (max-width: 1366px) {
  .product .banner-inner .banner-body h1 {
    font-size: calc(42px * 0.9);
  }
}

@media (max-width: 1100px) {
  .product .banner-inner .banner-body h1 {
    font-size: calc(42px * 0.8);
  }
}

@media (max-width: 900px) {
  .product .banner-inner .banner-body h1 {
    font-size: calc(42px * 0.7);
  }
}

@media (max-width: 600px) {
  .product .banner-inner .banner-body h1 {
    font-size: calc(42px * 0.6);
  }
}

@media (max-width: 450px) {
  .product .banner-inner .banner-body h1 {
    font-size: calc(42px * 0.55);
  }
}

@media (max-width: 650px) {
  .product .banner-inner .banner-body h1 {
    padding: 0;
  }
}

.product .banner-inner .banner-body .arrow-back {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(0) translateY(-50%);
  -moz-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  -o-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
  position: absolute;
}

@media (max-width: 650px) {
  .product .banner-inner .banner-body .arrow-back {
    display: none;
  }
}

.product .product-description {
  width: 100%;
  margin-top: 50px;
}

.product .product-description .product-flex {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 100px;
}

@media (max-width: 1366px) {
  .product .product-description .product-flex {
    margin-bottom: 80px;
  }
}

@media (max-width: 1100px) {
  .product .product-description .product-flex {
    margin-bottom: 64px;
  }
}

@media (max-width: 900px) {
  .product .product-description .product-flex {
    margin-bottom: 51.2px;
  }
}

@media (max-width: 600px) {
  .product .product-description .product-flex {
    margin-bottom: 40.96px;
  }
}

@media (max-width: 450px) {
  .product .product-description .product-flex {
    margin-bottom: 28.672px;
  }
}

@media (max-width: 900px) {
  .product .product-description .product-flex {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
  }
}

.product .product-description .product-gallery-content {
  width: 50%;
  box-sizing: border-box;
  margin-top: -120px;
}

@media (max-width: 900px) {
  .product .product-description .product-gallery-content {
    width: 100%;
  }
}

.product .product-description .product-gallery-content .product-gallery {
  width: 100%;
  display: block;
}

.product .product-description .product-gallery-content .product-gallery .slick-slide {
  padding: 1rem;
}

.product .product-description .product-gallery-content .product-gallery .product-gallery-item {
  width: auto;
  height: 560px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-top: 30px solid #e68020;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 30px;
  background-color: #ffffff;
  cursor: pointer;
}

.product .product-description .product-gallery-content .product-gallery .product-gallery-item img {
  max-width: 100%;
  width: auto;
  height: 520px;
  margin: 0 auto;
}

.product .product-description .product-gallery-content .thumbs-gallery {
  width: 100%;
  display: block;
  position: relative;
}

.product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-content .slick-track {
  width: 100% !important;
}

.product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-content .slick-slide {
  padding: 1rem;
}

.product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-item {
  width: 100%;
  height: 160px;
  position: relative;
  border-radius: 8px;
  border-top: 8px solid #e68020;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-item img {
  max-width: 100%;
  width: auto;
  height: 120px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-item {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-item {
    height: 100px;
  }
}

@media (max-width: 420px) {
  .product .product-description .product-gallery-content .thumbs-gallery .thumbs-gallery-item {
    height: 80px;
  }
}

.product .product-description .product-gallery-content .thumbs-gallery .slick-slide img {
  width: 100%;
}

.product .product-description .product-gallery-content .thumbs-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 98;
  -webkit-transform: translateX(0) translateY(-50%);
  -moz-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  -o-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
  position: absolute;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.product .product-description .product-gallery-content .thumbs-gallery .slick-arrow.slick-next {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  right: 0;
}

.product .product-description .product-gallery-content .thumbs-gallery .slick-arrow.slick-next:hover {
  opacity: 0.6;
}

.product .product-description .product-gallery-content .thumbs-gallery .slick-arrow.slick-prev {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  left: 0;
}

.product .product-description .product-gallery-content .thumbs-gallery .slick-arrow.slick-prev:hover {
  opacity: 0.6;
}

.product .product-description .product-gallery-content picture {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.product .product-description .product-gallery-content picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  -o-object-fit: contain;
  -o-object-position: center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.product .product-description .text-right {
  width: 50%;
  padding-left: 60px;
  text-align: left;
}

@media (max-width: 1200px) {
  .product .product-description .text-right {
    padding-left: 30px;
  }
}

@media (max-width: 900px) {
  .product .product-description .text-right {
    width: 100%;
    padding: 0;
  }
}

.product .product-description .text-right .product-text {
  width: 100%;
  max-width: 720px;
}

.product .product-description .product-price {
  width: 100%;
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .product .product-description .product-price {
    margin-bottom: 30px;
  }
}

.product .product-description .product-price h3 {
  display: table;
  width: auto;
  text-align: left;
  color: #e68020;
  font-size: 36px;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 0;
}

@media (max-width: 1366px) {
  .product .product-description .product-price h3 {
    font-size: calc(36px * 0.95);
  }
}

@media (max-width: 1100px) {
  .product .product-description .product-price h3 {
    font-size: calc(36px * 0.9);
  }
}

@media (max-width: 900px) {
  .product .product-description .product-price h3 {
    font-size: calc(36px * 0.85);
  }
}

@media (max-width: 600px) {
  .product .product-description .product-price h3 {
    font-size: calc(36px * 0.8);
  }
}

@media (max-width: 450px) {
  .product .product-description .product-price h3 {
    font-size: calc(36px * 0.75);
  }
}

.product .product-description .product-btn-cart {
  width: auto;
  display: table;
}

.product .product-description .product-btn-cart .btn-secondary {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  padding: 22px 30px;
  border: none;
}

.product .product-description .product-content-full {
  width: 100%;
  text-align: center;
  max-width: 1530px;
  margin: 0 auto;
  margin-bottom: 70px;
}

@media (max-width: 1366px) {
  .product .product-description .product-content-full {
    margin-bottom: 56px;
  }
}

@media (max-width: 1100px) {
  .product .product-description .product-content-full {
    margin-bottom: 44.8px;
  }
}

@media (max-width: 900px) {
  .product .product-description .product-content-full {
    margin-bottom: 35.84px;
  }
}

@media (max-width: 600px) {
  .product .product-description .product-content-full {
    margin-bottom: 28.672px;
  }
}

@media (max-width: 450px) {
  .product .product-description .product-content-full {
    margin-bottom: 20.0704px;
  }
}

.product .product-description .technical-specifications {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.product .product-description .technical-specifications h4 {
  border-radius: 8px;
  background: #e68020;
  text-align: center;
  padding: 25px;
  color: #fff;
  font-size: 40px;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width: 1366px) {
  .product .product-description .technical-specifications h4 {
    font-size: calc(40px * 0.9);
  }
}

@media (max-width: 1100px) {
  .product .product-description .technical-specifications h4 {
    font-size: calc(40px * 0.8);
  }
}

@media (max-width: 900px) {
  .product .product-description .technical-specifications h4 {
    font-size: calc(40px * 0.7);
  }
}

@media (max-width: 600px) {
  .product .product-description .technical-specifications h4 {
    font-size: calc(40px * 0.6);
  }
}

@media (max-width: 450px) {
  .product .product-description .technical-specifications h4 {
    font-size: calc(40px * 0.55);
  }
}

@media (max-width: 1200px) {
  .product .product-description .technical-specifications h4 {
    padding: 15px;
  }
}

@media (max-width: 420px) {
  .product .product-description .technical-specifications h4 {
    padding: 10px;
  }
}

.product .product-description .technical-specifications h4 strong {
  font-weight: 900;
}

.product .product-description .technical-specifications ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 750px) {
  .product .product-description .technical-specifications ul {
    display: flex;
    flex-direction: column;
  }
}

.product .product-description .technical-specifications ul li {
  width: calc(50% - 60px);
  margin-right: 60px;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #ececec;
}

.product .product-description .technical-specifications ul li:nth-child(2n) {
  margin-right: 0;
  margin-left: 60px;
}

@media (max-width: 1200px) {
  .product .product-description .technical-specifications ul li {
    width: calc(50% - 20px);
    margin-right: 20px;
  }

  .product .product-description .technical-specifications ul li:nth-child(2n) {
    margin-right: 0;
    margin-left: 20px;
  }
}

@media (max-width: 750px) {
  .product .product-description .technical-specifications ul li {
    width: 100%;
    margin: 0 !important;
    padding: 15px 0;
  }
}

.product .product-description .technical-specifications ul li h5,
.product .product-description .technical-specifications ul li p {
  margin-bottom: 0;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}

@media (max-width: 900px) {

  .product .product-description .technical-specifications ul li h5,
  .product .product-description .technical-specifications ul li p {
    font-size: 16px;
  }
}

@media (max-width: 450px) {

  .product .product-description .technical-specifications ul li h5,
  .product .product-description .technical-specifications ul li p {
    font-size: 14px;
  }
}

.product .product-description .technical-specifications ul li h5 {
  padding-right: 10px;
}

.product .product-description .technical-specifications ul li p {
  color: #e68020;
  text-align: right;
  font-weight: 700;
  padding-left: 10px;
}

.product .product-description .product-video {
  width: 100%;
  display: block;
  position: relative;
}

.product .product-description .product-video video {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.product .product-description .product-video .iframe-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.product .product-description .product-video .iframe-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product .product-description .product-video .mask-video {
  background: linear-gradient(272deg, rgba(0, 0, 0, 0.35) 20.63%, rgba(0, 0, 0, 0) 49.87%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}

.product .product-description .product-video h4 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(0) translateY(-50%);
  -moz-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  -o-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
  position: absolute;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-size: 34px;
  font-weight: 900;
  line-height: 160%;
}

@media (max-width: 1366px) {
  .product .product-description .product-video h4 {
    font-size: calc(34px * 0.9);
  }
}

@media (max-width: 1100px) {
  .product .product-description .product-video h4 {
    font-size: calc(34px * 0.8);
  }
}

@media (max-width: 900px) {
  .product .product-description .product-video h4 {
    font-size: calc(34px * 0.7);
  }
}

@media (max-width: 600px) {
  .product .product-description .product-video h4 {
    font-size: calc(34px * 0.6);
  }
}

@media (max-width: 450px) {
  .product .product-description .product-video h4 {
    font-size: calc(34px * 0.55);
  }
}

@media (max-width: 600px) {
  .product .product-description .product-video h4 {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .product .product-description .product-video h4 {
    font-size: 14px;
  }
}

.product .product-description .product-video h4 svg {
  display: block !important;
  margin: 0 auto 32px;
}

@media (max-width: 1000px) {
  .product .product-description .product-video h4 svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .product .product-description .product-video h4 svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 420px) {
  .product .product-description .product-video h4 svg {
    width: 25px;
    height: 25px;
  }
}

.other-products {
  width: 100%;
  margin: 6rem 0;
}

@media (max-width: 1366px) {
  .other-products {
    margin-top: 48px;
  }
}

@media (max-width: 1100px) {
  .other-products {
    margin-top: 38.4px;
  }
}

@media (max-width: 900px) {
  .other-products {
    margin-top: 30.72px;
  }
}

@media (max-width: 600px) {
  .other-products {
    margin-top: 24.576px;
  }
}

@media (max-width: 450px) {
  .other-products {
    margin-top: 17.2032px;
  }
}

.products-list.product-list-slider {
  width: 100%;
  display: block;
}

.products-list.product-list-slider .slick-track {
  width: 100% !important;
}

.products-list.product-list-slider .product-item {
  width: auto;
}

.products-list.product-list-slider .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 1366px) {
  .products-list.product-list-slider .slick-dots {
    margin-top: 64px;
  }
}

@media (max-width: 1100px) {
  .products-list.product-list-slider .slick-dots {
    margin-top: 51.2px;
  }
}

@media (max-width: 900px) {
  .products-list.product-list-slider .slick-dots {
    margin-top: 40.96px;
  }
}

@media (max-width: 600px) {
  .products-list.product-list-slider .slick-dots {
    margin-top: 32.768px;
  }
}

@media (max-width: 450px) {
  .products-list.product-list-slider .slick-dots {
    margin-top: 22.9376px;
  }
}

@media (max-width: 1366px) {
  .products-list.product-list-slider .slick-dots {
    margin-bottom: 64px;
  }
}

@media (max-width: 1100px) {
  .products-list.product-list-slider .slick-dots {
    margin-bottom: 51.2px;
  }
}

@media (max-width: 900px) {
  .products-list.product-list-slider .slick-dots {
    margin-bottom: 40.96px;
  }
}

@media (max-width: 600px) {
  .products-list.product-list-slider .slick-dots {
    margin-bottom: 32.768px;
  }
}

@media (max-width: 450px) {
  .products-list.product-list-slider .slick-dots {
    margin-bottom: 22.9376px;
  }
}

.products-list.product-list-slider .slick-dots li button {
  border: 2px solid #e68020;
}

.gallery-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 999;
  text-align: center;
}

.gallery-popup .close-popup {
  color: #fff;
  font-size: 3em;
  position: absolute;
  top: 60px;
  right: 60px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .gallery-popup .close-popup {
    top: 20px;
    right: 20px;
  }
}

.gallery-popup .image-popup {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  object-position: center;
  -o-object-fit: contain;
  -o-object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
}