@charset "UTF-8";
@font-face {
  font-family: "PP Neue Montreal Book";
  font-style: normal;
  font-weight: normal;
  src: local("PP Neue Montreal Book"), url("../fonts/ppneuemontreal-book.woff") format("woff");
}
@font-face {
  font-family: "akzidenz-grotesk-pro";
  src: url("AkzidenzGroteskPro-Regular.eot");
  src: url("AkzidenzGroteskPro-Regular.eot?#iefix") format("embedded-opentype"), url("AkzidenzGroteskPro-Regular.woff2") format("woff2"), url("AkzidenzGroteskPro-Regular.woff") format("woff"), url("AkzidenzGroteskPro-Regular.svg#AkzidenzGroteskPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "font-1";
  src: url("https://cdn.shopify.com/s/files/1/0902/9507/5090/files/font-1.woff2?v=1728091885") format("woff2");
}
@font-face {
  font-family: "font-2";
  src: url("https://cdn.shopify.com/s/files/1/0902/9507/5090/files/font-2.woff2?v=1728091884") format("woff2");
}
@font-face {
  font-family: "Compacta BT V1";
  src: url("compacta-bt-v1.woff2") format("woff2");
}
@font-face {
  font-family: "LL Akkuratmono Regular Web Subset";
  src: url("https://cdn.shopify.com/s/files/1/0902/9507/5090/files/lineto-akkuratmono-regular.woff2?v=1728091884") format("woff2");
}
@font-face {
  font-family: "Steiner W01 Special";
  src: url("Steiner-W01-Special.woff2") format("woff2");
}
@font-face {
  font-family: "12 Akzidenz Grotesk** Roman 05003";
  src: url("Akzidenz-Grotesk-Roman.woff2") format("woff2");
}
@font-face {
  font-family: "LL Akkuratmono Regular Web Subset Digits";
  src: url("./lineto-akkuratmono-regular.eot");
  src: url("./lineto-akkuratmono-regular.eot?#iefix") format("embedded-opentype"), url("./lineto-akkuratmono-regular.woff2") format("woff2"), url("./lineto-akkuratmono-regular.woff") format("woff");
  unicode-range: U+30-39;
  font-weight: normal;
  font-style: normal;
}
html,
body,
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

hr {
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
  background: #b3b3b3;
}

body {
  background: rgb(245, 245, 245);
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in;
}

a[href=""] {
  cursor: initial;
}

.page-width {
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
}

.hide {
  display: none !important;
}

ul {
  list-style: none;
  padding: 0;
}

.hide {
  display: none !important;
}

/* HEADER */
.container-header {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
  position: fixed;
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
  top: 0;
  padding: 13px 10px 17px 10px;
  border-radius: 0px;
  z-index: 9;
  left: 0;
  right: 0;
  transition: all 0.2s ease-in-out;
}
.container-header > header {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .container-header > header {
    padding: 0 10px;
  }
}
.container-header > header > div.wrapper-logo > a > img {
  width: 100%;
  max-width: 250px;
  display: flex;
  align-self: center;
}
.container-header > header > nav {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.container-header > header > nav > .mobile-menu {
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  display: none;
}
@media screen and (max-width: 767px) {
  .container-header > header > nav > .mobile-menu {
    display: block;
  }
}
.container-header > header > nav > .mobile-menu > img {
  width: 25px;
  align-self: center;
}
.container-header > header > nav > ul {
  display: flex;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .container-header > header > nav > ul {
    max-height: 0;
    visibility: hidden;
    flex-direction: column;
    position: absolute;
    top: 85%;
    width: 100%;
    right: 0;
    left: 0;
    background: inherit;
    padding: 20px 10px;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    background-color: #d8e2e7;
  }
}
.container-header > header > nav > ul li a {
  font-size: 15px;
  text-transform: capitalize;
  color: #000;
  font-weight: 300;
}
.container-header > header > nav > ul li a:hover {
  /*transform: scale(1.03);*/
  color: #454545;
}
.container-header > header > nav > ul li a.type-btn {
  background: #0058f1;
  border: 1px solid #0058f1;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  text-align: center;
}
.container-header > header > nav > ul li a.type-btn:hover {
  background: transparent;
  color: #000;
}
.container-header > header > nav > ul > li {
  padding: 10px 10px 0px 10px;
  display: inline-flex;
}
.container-header > header > nav > ul > li > a {
  display: flex;
  align-items: center;
}
.container-header > header > nav > ul > li > a > img {
  margin-left: 5px;
  width: 10px;
  align-self: center;
}
.container-header > header > nav > ul > li > div.inline-submenu {
  visibility: hidden;
  max-height: 0;
  position: absolute;
  background: #fff;
  min-width: 150px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 10px;
  display: none;
}
@media screen and (max-width: 767px) {
  .container-header > header > nav > ul > li > div.inline-submenu {
    position: relative;
    padding-top: 10px;
  }
}
.container-header > header > nav > ul > li > div.inline-submenu > ul > li {
  transition: all 0.1s ease-in;
}
.container-header > header > nav > ul > li > div.inline-submenu > ul > li:hover {
  background: rgb(243, 243, 243);
}
.container-header > header > nav > ul > li > div.inline-submenu > ul > li > a {
  display: block;
  padding: 7px 15px;
}
.container-header > header > nav > ul > li.submenu:hover > div.inline-submenu {
  display: block;
  border-radius: 10px;
  visibility: visible;
  opacity: 1;
  max-height: 2000px;
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .container-header > header > nav > ul > li.submenu:hover > div.inline-submenu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .container-header > header > nav > ul > li.submenu.active > div.inline-submenu {
    display: block;
    border-radius: 10px;
    visibility: visible;
    opacity: 1;
    max-height: 2000px;
  }
}
.container-header > header > nav > ul > li.submenu.active > a > img {
  transform: rotate(180deg);
}
.container-header > header > nav > ul > li#search > span {
  cursor: pointer;
  display: flex;
}
.container-header > header > nav > ul > li#search > span > img {
  width: 18px;
  transition: all 0.3s ease-in;
  align-self: center;
}
.container-header > header > nav > ul > li#search > span:hover > img {
  transform: scale(1.08);
}
.container-header > header > nav > ul > li#search > div {
  opacity: 1;
  visibility: hidden;
  transition: all 0.3s ease-in;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  top: 70px;
  min-height: 45px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.container-header > header > nav > ul > li#search > div > span {
  position: absolute;
  right: 0;
  width: 10px;
  cursor: pointer;
  margin: 10px;
  display: flex;
  align-items: center;
}
.container-header > header > nav > ul > li#search > div > span > img {
  width: 100%;
}
.container-header > header > nav > ul > li#search > div > form {
  width: 100%;
  margin: 0 20px;
}
.container-header > header > nav > ul > li#search > div > form > input {
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px 20px;
}
.container-header > header > nav > ul > li#search > div > form > input:focus {
  border: 0;
  outline: 0;
}
.container-header > header > nav > ul > li#search.active > div {
  opacity: 1;
  visibility: visible;
}
.container-header > header > nav.active > ul {
  overflow: hidden;
  visibility: visible;
  max-height: 2000px;
  background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}

.container-header.sticky {
  position: sticky;
  top: 20px;
}

.container-header.inactive {
  opacity: 0;
  visibility: hidden;
}

/* SLIDER  */
.main-slider {
  height: 100vh;
  position: relative;
}
.main-slider > .swiper {
  width: 100%;
  height: 100%;
}
.main-slider > .swiper > .swiper-wrapper {
  z-index: 1;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div:nth-of-type(1), .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div:nth-of-type(1) {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div:nth-of-type(1) {
    display: none;
  }
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div:nth-of-type(2) {
  display: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div:nth-of-type(2) {
    display: flex;
  }
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3098039216);
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
  justify-content: center;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 50px;
  right: 0;
  left: 0;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide > .btn {
  backdrop-filter: blur(10px);
  background-color: rgba(66, 66, 69, 0.7);
  border-radius: 100px;
  padding: 12px 16px;
  border: 0px solid #fff;
  display: flex;
  margin-top: 25px;
  color: #fff;
  min-width: 200px;
  font-size: 15px;
  text-align: center;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide > .btn > .button__text {
  font-size: 15px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 5px;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide > .btn:hover {
  background: rgba(255, 255, 255, 0.2705882353);
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide > .btn .button__text {
  font-size: 15px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide > .btn .button__icon {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0058f1;
  border-radius: 50%;
  color: #fff;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide > .btn .button__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media screen and (max-width: 800px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .btn-cta-slide {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content {
    align-items: center;
  }
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt {
  text-align: center;
  max-width: 83%;
  padding-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt {
    max-width: 90%;
    text-align: center;
  }
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt > h4 {
  color: #fff;
  font-size: 50px;
  text-transform: capitalize;
  /*font-weight: 100;*/
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt > h4 {
    font-size: 25px;
    padding: 0 20px;
  }
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt > a {
  background: transparent;
  border-radius: 100px;
  padding: 12px 16px;
  border: 1px solid #fff;
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  min-width: 200px;
  font-size: 15px;
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt > a:hover {
  background: rgba(255, 255, 255, 0.2705882353);
}
.main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt > p {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  margin-top: 6px;
  font-weight: 200;
}
@media screen and (max-width: 800px) {
  .main-slider > .swiper > .swiper-wrapper .swiper-slide > div > div.wrapper-content > .content-txt > p {
    font-size: 15px;
  }
}
.main-slider > .swiper > .swiper-pagination {
  z-index: 3;
}
.main-slider > .swiper > .swiper-pagination > span {
  background: #fff;
}
.main-slider > .swiper > .swiper-pagination > span.swiper-pagination-bullet-active {
  background: #fff;
}
.main-slider > .swiper > .swiper-button-prev, .main-slider > .swiper > .swiper-button-next {
  z-index: 10;
  color: #fff;
  font-size: 15px;
}
.main-slider > .swiper > .swiper-button-prev:after, .main-slider > .swiper > .swiper-button-next:after {
  font-size: 25px;
}
.main-slider > .swiper > .swiper-button-prev.swiper-button-disabled, .main-slider > .swiper > .swiper-button-next.swiper-button-disabled {
  z-index: 10;
}
.main-slider .btn-div {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.main-slider .btn-div .btn {
  background: transparent;
  border-radius: 100px;
  padding: 12px 16px;
  border: 1px solid #000;
  display: inline-block;
  margin-top: 25px;
  color: #000;
  min-width: 200px;
  font-size: 15px;
  text-align: center;
}
.main-slider .btn-div .btn:hover {
  background: rgba(255, 255, 255, 0.2705882353);
}

/* BLOCKS ABOUT */
.about {
  width: 100%;
  max-width: 1400px;
  margin: 20px auto;
  padding: 50px 20px;
  color: #3c3c3c;
  overflow: hidden;
}
.about > h3 {
  text-align: center;
  color: #3c3c3c;
  font-size: 25px;
  margin-bottom: 40px;
  text-transform: capitalize;
}
@media screen and (max-width: 800px) {
  .about > h3 {
    font-size: 20px;
  }
}
.about > .wrapper-block {
  display: flex;
  flex-wrap: wrap;
}
.about > .wrapper-block > .block {
  flex-basis: 50%;
  padding: 0px 20px;
  margin-bottom: 30px;
  display: flex;
}
@media screen and (max-width: 800px) {
  .about > .wrapper-block > .block {
    flex-basis: 50%;
  }
}
@media screen and (max-width: 480px) {
  .about > .wrapper-block > .block {
    flex-basis: 80%;
  }
}
.about > .wrapper-block > .block > .content {
  padding: 15px;
  color: #6d6d6d;
}
.about > .wrapper-block > .block > .content > h4 {
  font-size: 40px;
}
.about > .wrapper-block > .block > .content > p {
  font-size: 16px;
  line-height: 23px;
  padding-top: 20px;
}
.about > .wrapper-block > .block > .content > .btn {
  background: transparent;
  border-radius: 100px;
  padding: 12px 16px;
  border: 1px solid #000;
  display: inline-block;
  margin-top: 25px;
  color: #000;
  min-width: 200px;
  font-size: 15px;
  text-align: center;
}
.about > .wrapper-block > .block > .content > .btn:hover {
  background: rgba(255, 255, 255, 0.2705882353);
}
.about > .wrapper-block > .block > h4 {
  font-size: 40px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 21px;
  display: flex;
  align-items: center;
}
.about > .wrapper-block > .block > h4 > img {
  margin-right: 10px;
}
.about > .wrapper-block > .block > span {
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 21px;
  display: flex;
  align-items: center;
}
.about > .wrapper-block > .block > span > img {
  margin-right: 10px;
}
.about > .wrapper-block > .block > p {
  font-size: 16px;
  line-height: 23px;
}

/* GALLERY */
.gallery {
  width: 100%;
  padding: 50px 20px;
  margin: auto;
  background: #ebebeb;
  color: #3c3c3c;
  overflow: hidden;
}
.gallery > h3 {
  text-align: center;
  color: #3c3c3c;
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media screen and (max-width: 800px) {
  .gallery > h3 {
    font-size: 20px;
  }
}
.gallery > p {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 50px;
  font-size: 16px;
  line-height: 23px;
}
@media screen and (max-width: 800px) {
  .gallery > p {
    font-size: 13px;
  }
}
.gallery > .wrapper-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}
.gallery > .wrapper-gallery > .wrapper-image {
  margin-bottom: 40px;
  flex-basis: 40%;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .gallery > .wrapper-gallery > .wrapper-image {
    flex-basis: 45%;
  }
}
.gallery > .wrapper-gallery > .wrapper-image > a > img {
  width: 100%;
  border-radius: 10px;
}
.gallery > .wrapper-gallery > .wrapper-image > a > h5 {
  font-size: 12px;
  text-transform: capitalize;
  padding: 5px 0;
}
.gallery > .wrapper-gallery > .wrapper-image.big {
  flex-basis: 50%;
}

/* COLLECTION SLIDER */
.slider-collection {
  padding: 5% 20px;
  position: relative;
  overflow: hidden;
}
.slider-collection > h3 {
  text-align: center;
  text-transform: capitalize;
  color: #4c4c4c;
  font-size: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .slider-collection > h3 {
    font-size: 20px;
  }
}
.slider-collection > .wrapper-collection {
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  .slider-collection > .wrapper-collection {
    padding: 0;
  }
}
.slider-collection > .wrapper-collection > .swiper > .swiper-wrapper > .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-wrapper > .swiper-slide > .wrapper-image {
  padding-top: 100%;
  display: block;
  position: relative;
  width: 100%;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-wrapper > .swiper-slide > .wrapper-image > img {
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-pagination {
  z-index: 3;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-pagination > span {
  background: #fff;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-pagination > span.swiper-pagination-bullet-active {
  background: #fff;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-button-prev, .slider-collection > .wrapper-collection > .swiper > .swiper-button-next {
  z-index: 10;
  color: #fff;
  font-size: 15px;
}
.slider-collection > .wrapper-collection > .swiper > .swiper-button-prev:after, .slider-collection > .wrapper-collection > .swiper > .swiper-button-next:after {
  font-size: 25px;
}

/* FOOTER */
footer {
  background: #0d0d0d;
  color: #fff;
  text-transform: capitalize;
  font-size: 17px;
  font-weight: 100;
}
footer > .wrapper-content {
  width: 100%;
}
footer > .wrapper-content > .footer--top {
  border-bottom: 1px solid #8f8f8f;
  padding: 10px 20px;
}
footer > .wrapper-content > .footer--top > ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer > .wrapper-content > .footer--top > ul {
    flex-wrap: wrap;
    justify-content: start;
  }
}
footer > .wrapper-content > .footer--top > ul > li {
  padding: 10px 15px;
}
@media screen and (max-width: 767px) {
  footer > .wrapper-content > .footer--top > ul > li {
    flex-basis: 50%;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  footer > .wrapper-content > .footer--top > ul > li > a {
    display: block;
  }
}
footer > .wrapper-content > .footer--top > ul > li > a:hover {
  opacity: 0.7;
}
footer > .wrapper-content > .footer--bottom {
  display: flex;
  justify-content: space-between;
  padding: 50px 20px;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer > .wrapper-content > .footer--bottom {
    flex-direction: column;
  }
}
footer > .wrapper-content > .footer--bottom > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  footer > .wrapper-content > .footer--bottom > div {
    flex-basis: 25%;
  }
}
@media screen and (max-width: 767px) {
  footer > .wrapper-content > .footer--bottom > div {
    flex-basis: 100%;
    align-items: start;
    margin-bottom: 30px;
  }
}
footer > .wrapper-content > .footer--bottom > .logo > a > img {
  width: 100%;
  max-width: 140px;
  opacity: 0.8;
}
footer > .wrapper-content > .footer--bottom > .menu > ul > li {
  margin-bottom: 10px;
}
footer > .wrapper-content > .footer--bottom > .menu > ul > li > a:hover {
  opacity: 0.7;
}
footer > .wrapper-content > .footer--bottom > .menu--dscpt > p {
  margin-bottom: 10px;
}
footer > .wrapper-content > .footer--bottom > .qr {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  flex-direction: column-reverse;
}
footer > .wrapper-content > .footer--bottom > .qr img {
  width: 100%;
  max-width: 100px;
}

/* COLLECTION */
.container-collection {
  width: 100%;
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 20px;
}
.container-collection > h2 {
  padding: 20px;
  padding-bottom: 0;
  text-transform: capitalize;
  font-size: 24px;
  padding-left: 0;
}
.container-collection > .wrapper-select-rows {
  margin-top: 20px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  min-height: 60px;
}
.container-collection > .wrapper-select-rows > div {
  display: flex;
}
.container-collection > .wrapper-select-rows > div > div.wrapper--grid {
  cursor: pointer;
  opacity: 0.3;
  display: flex;
  padding-right: 15px;
}
.container-collection > .wrapper-select-rows > div > div.wrapper--grid > img {
  align-self: center;
  display: flex;
  width: 100%;
  height: 20px;
}
.container-collection > .wrapper-select-rows > div > div.wrapper--grid.active {
  opacity: 1;
}
.container-collection > .wrapper-select-rows > div > div.filters:first-of-type {
  padding-left: 10px;
}
.container-collection > .wrapper-select-rows > div > .filters {
  display: flex;
  justify-content: flex-end;
  border-left: 1px solid #dfdfdf;
  position: relative;
  z-index: 2;
  padding-left: 0px;
  align-items: center;
}
.container-collection > .wrapper-select-rows > div > .filters > div {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.container-collection > .wrapper-select-rows > div > .filters > div > span {
  display: flex;
  font-size: 13px;
  letter-spacing: 1px;
  color: #dfdfdf;
  color: #747474;
  cursor: pointer;
}
.container-collection > .wrapper-select-rows > div > .filters > div > span > img {
  width: 10px;
  margin-left: 5px;
  align-self: center;
}
.container-collection > .wrapper-select-rows > div > .filters > div > ul {
  position: absolute;
  background: #fff;
  padding: 10px 20px;
  min-width: 200px;
  top: 59px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #dfdfdf;
  right: 0;
  border-top: 0;
  visibility: hidden;
  max-height: 0;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  background: #f5f5f5;
}
.container-collection > .wrapper-select-rows > div > .filters > div > ul > li {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.6;
}
.container-collection > .wrapper-select-rows > div > .filters > div > ul > li a:hover {
  text-decoration: underline;
}
.container-collection > .wrapper-select-rows > div > .filters.active > div > span > img {
  transform: rotate(180deg);
}
.container-collection > .wrapper-select-rows > div > .filters.active > div > ul {
  visibility: visible;
  max-height: 2000px;
}
.container-collection > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.container-collection > ul > li {
  flex-basis: 25%;
  margin-bottom: 40px;
  padding: 0 5px;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .container-collection > ul > li {
    flex-basis: 50%;
    margin-bottom: 20px;
  }
}
.container-collection > ul > li > a {
  position: relative;
}
.container-collection > ul > li > a > div.image {
  position: relative;
  pointer-events: none;
}
.container-collection > ul > li > a > div.image > img {
  width: 100%;
  transition: all 0.4s ease-in-out;
  aspect-ratio: 1/1; /* Relación de aspecto cuadrada (1:1) */
  object-fit: cover;
}
.container-collection > ul > li > a > div.image > img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.container-collection > ul > li > a > .info {
  position: relative;
  bottom: 0;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}
.container-collection > ul > li > a > .info > p {
  max-width: 100%;
  font-size: 15px;
  text-transform: capitalize;
  text-align: center;
}
.container-collection > ul > li > a > .info > span {
  font-size: 12px;
}
.container-collection > ul > li > a:hover > div.image > img:first-of-type {
  opacity: 0;
}
.container-collection > ul > li > a:hover > div.image > img:last-of-type {
  opacity: 1;
}
.container-collection > ul#grid-collection.view-elements-6 > li {
  flex-basis: 16.6666666667%;
}
@media screen and (max-width: 767px) {
  .container-collection > ul#grid-collection.view-elements-6 > li {
    flex-basis: 33.3333333333%;
  }
}
.container-collection .pagination {
  text-align: center;
  font-size: 18px;
}
.container-collection .pagination > nav > div > a, .container-collection .pagination > nav > div > span {
  padding: 20px;
  font-size: 15px;
  color: #7a7a7a;
}
.container-collection .pagination > nav > div > a:hover, .container-collection .pagination > nav > div > span:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.container-collection .pagination > nav > div > div {
  font-size: 15px;
  color: #7a7a7a;
}
.container-collection .pagination > nav > div > div > p {
  font-size: 15px;
  color: #7a7a7a;
  padding: 10px 0;
}
.container-collection .pagination > nav > div > div > span {
  padding: 0 10px;
}
.container-collection .pagination > nav > div > div > span > a, .container-collection .pagination > nav > div > div > span > span {
  padding: 0 10px;
}
.container-collection .pagination > nav > div > div > span > span[aria-current=page] {
  text-decoration: underline;
}

#popup-product {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
#popup-product > div.wrapper-product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
#popup-product > div.wrapper-product div.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#popup-product > div.wrapper-product div.container {
  background: #fff;
  width: 100%;
  max-width: 1300px;
  max-height: 90vh;
  z-index: 2;
  position: relative;
  overflow: auto;
  border-radius: 20px;
}
#popup-product > div.wrapper-product div.container > span.close-popup {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin: 10px;
  display: block;
}
#popup-product > div.wrapper-product div.container > span.close-popup > img {
  width: 100%;
}
#popup-product > div.wrapper-product div.container > .container-product {
  padding: 30px 20px;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery {
  overflow: hidden;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-wrapper > .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-wrapper > .swiper-slide > .wrapper-image {
  position: relative;
  width: 100%;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-wrapper > .swiper-slide > .wrapper-image > img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-pagination {
  z-index: 3;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-pagination > span {
  background: #fff;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-pagination > span.swiper-pagination-bullet-active {
  background: #fff;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-button-prev, #popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-button-next {
  z-index: 10;
  color: #fff;
  font-size: 15px;
}
#popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-button-prev:after, #popup-product > div.wrapper-product div.container > .container-product > .wrapper-product > .media-galery > .swiper > .swiper-button-next:after {
  font-size: 25px;
}

#popup-product.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

/* PRODUCT */
.container-product {
  padding: 115px 0;
}
.container-product > .wrapper-product {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .container-product > .wrapper-product {
    flex-direction: column;
  }
}
.container-product > .wrapper-product > .media-galery {
  flex-basis: 53%;
}
@media screen and (max-width: 767px) {
  .container-product > .wrapper-product > .media-galery {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.container-product > .wrapper-product > .media-galery > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .container-product > .wrapper-product > .media-galery > ul {
    display: none;
  }
}
.container-product > .wrapper-product > .media-galery > ul > li > div > img {
  width: 100%;
  display: flex;
}
.container-product > .wrapper-product > .media-galery > ul > li.main {
  width: 100%;
}
.container-product > .wrapper-product > .media-galery > ul > li.secondary {
  width: calc(50% - 5px);
  overflow: hidden;
  margin: 10px 0;
}
.container-product > .wrapper-product > .media-galery > ul > li.secondary > div {
  padding-top: 100%;
  display: block;
  position: relative;
  width: 100%;
}
.container-product > .wrapper-product > .media-galery > ul > li.secondary > div > img {
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .container-product > .wrapper-product > .media-galery > .mySwiper-mobile {
    display: block;
  }
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-wrapper > .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-wrapper > .swiper-slide > img {
  width: 100%;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-wrapper > .swiper-slide > .wrapper-image {
  padding-top: 100%;
  display: block;
  position: relative;
  width: 100%;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-wrapper > .swiper-slide > .wrapper-image > img {
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-pagination {
  z-index: 3;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-pagination > span {
  background: #fff;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-pagination > span.swiper-pagination-bullet-active {
  background: #fff;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-button-prev, .container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-button-next {
  z-index: 10;
  color: #fff;
  font-size: 15px;
}
.container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-button-prev:after, .container-product > .wrapper-product > .media-galery > .mySwiper-mobile > .swiper-button-next:after {
  font-size: 25px;
}
.container-product > .wrapper-product > .wrapper-info {
  flex-basis: 45%;
  position: sticky;
  top: 100px;
  align-self: baseline;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .container-product > .wrapper-product > .wrapper-info {
    flex-basis: 100%;
    position: relative;
    top: 0;
    margin-bottom: 50px;
  }
}
.container-product > .wrapper-product > .wrapper-info > h1 {
  font-size: 25px;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.container-product > .wrapper-product > .wrapper-info > span.price {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.container-product > .wrapper-product > .wrapper-info > .picker-swatch, .container-product > .wrapper-product > .wrapper-info > .picker-select {
  margin: 20px 0;
}
.container-product > .wrapper-product > .wrapper-info > .picker-swatch > label, .container-product > .wrapper-product > .wrapper-info > .picker-select > label {
  text-transform: uppercase;
  font-size: 10px;
  padding-bottom: 10px;
  display: block;
}
.container-product > .wrapper-product > .wrapper-info > .picker-swatch > .swatches, .container-product > .wrapper-product > .wrapper-info > .picker-select > .swatches {
  display: flex;
}
.container-product > .wrapper-product > .wrapper-info > .picker-swatch > .swatches > span, .container-product > .wrapper-product > .wrapper-info > .picker-select > .swatches > span {
  width: 33px;
  height: 33px;
  display: block;
  border: 2px solid #d7d7d7;
  margin-right: 5px;
  cursor: pointer;
}
.container-product > .wrapper-product > .wrapper-info > .picker-swatch > .swatches > span.active, .container-product > .wrapper-product > .wrapper-info > .picker-select > .swatches > span.active {
  border-color: #000;
}
.container-product > .wrapper-product > .wrapper-info > .picker-swatch > select, .container-product > .wrapper-product > .wrapper-info > .picker-select > select {
  font-size: 12px;
  width: 100%;
  padding: 10px;
  border: 1px solid;
  max-width: 100%;
}
.container-product > .wrapper-product > .wrapper-info > .wrapper-buy-buttons {
  margin: 20px 0;
}
.container-product > .wrapper-product > .wrapper-info > .wrapper-buy-buttons > button {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 12px 10px;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  display: block;
  border: 1px solid #000;
  transition: all 0.2s ease-in-out;
}
.container-product > .wrapper-product > .wrapper-info > .wrapper-buy-buttons > button:hover {
  background: transparent;
  color: #000;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container {
  padding-bottom: 30px;
  transition: all 0.2s ease-in-out;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form input, .container-product > .wrapper-product > .wrapper-info > .frm-container > form > textarea {
  box-sizing: border-box;
  border: 1px solid #000;
  margin-bottom: 10px;
  padding: 10px;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form > div {
  display: flex;
  justify-content: space-between;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form > div > input {
  flex-basis: 49%;
  min-height: 40px;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form > div > input:first-of-type {
  margin-right: 10px;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form > textarea {
  width: 100%;
  min-height: 100px;
  font-family: inherit;
  letter-spacing: 1px;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form > button {
  transition: all 0.3s ease-in-out;
  width: 100%;
  min-height: 40px;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 12px;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form > button:hover {
  background: transparent;
  color: #000;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container > form #show-err {
  display: block;
  margin-top: 7px;
  font-size: 13px;
}
.container-product > .wrapper-product > .wrapper-info > .frm-container.hide {
  display: none;
  opacity: 0;
}
.container-product > .wrapper-product > .wrapper-info > .description > h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.container-product > .wrapper-product > .wrapper-info > .description > p {
  font-size: 16px;
  line-height: 23px;
}

/* PAGES */
.container-page {
  margin: 80px 0;
}
.container-page > h2 {
  padding: 20px;
  text-transform: uppercase;
  font-size: 17px;
}
.container-page > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.container-page > ul > li {
  flex-basis: calc(25% - 10px);
  margin-bottom: 20px;
  padding: 0 5px;
}
@media screen and (max-width: 1000px) {
  .container-page > ul > li {
    flex-basis: calc(50% - 10px);
  }
}
.container-page > ul > li > a {
  position: relative;
}
.container-page > ul > li > a > div > img {
  width: 100%;
}
.container-page > ul > li > a > .info {
  position: relative;
  bottom: 0;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.container-page > ul > li > a > .info > p {
  max-width: 100%;
  font-size: 15px;
  text-transform: capitalize;
  text-align: center;
}
.container-page > ul > li > a > .info > span {
  font-size: 12px;
}

.main-about > .wrapper-container-about {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-about > .wrapper-container-about > .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.main-about > .wrapper-container-about > .content {
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1000px;
}
.main-about > .wrapper-container-about > .content > h2 {
  font-size: 110px;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .main-about > .wrapper-container-about > .content > h2 {
    font-size: 60px;
  }
}
.main-about > .wrapper-container-about > .content > ul {
  display: flex;
  justify-content: space-evenly;
  margin: 55px 0;
}
.main-about > .wrapper-container-about > .content > ul > li {
  cursor: pointer;
}
.main-about > .wrapper-container-about > .content > ul > li span {
  pointer-events: none;
}
.main-about > .wrapper-container-about > .content > ul > li.active {
  text-decoration: underline;
}
.main-about > .wrapper-container-about > .content > ul > li.active > span {
  opacity: 0;
}
.main-about > .container-tab {
  width: 100%;
  margin: auto;
  min-height: 400px;
  color: #000;
}
.main-about > .container-tab > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
}
@media screen and (max-width: 767px) {
  .main-about > .container-tab > div {
    padding: 50px 20px;
  }
}
.main-about > .container-tab > div > div {
  font-size: 30px;
  overflow: hidden;
}
.main-about > .container-tab > div > div > div.container-txt {
  width: 100%;
  max-width: 960px;
  margin: auto;
}
.main-about > .container-tab > div > div > div.container-txt > h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .main-about > .container-tab > div > div > div.container-txt > h3 {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
.main-about > .container-tab > div > div > div.container-txt > p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 27px;
}
.main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before, .main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .main-about > .container-tab > div > div [class^=swiper-button-] {
  transition: all 0.3s ease;
}
.main-about > .container-tab > div > div .swiper-container-fact {
  width: 100%;
  height: 28vw;
  transition: opacity 0.6s ease;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .main-about > .container-tab > div > div .swiper-container-fact {
    height: 400px;
  }
}
.main-about > .container-tab > div > div .swiper-container-fact.swiper-container-coverflow {
  padding-top: 2%;
}
.main-about > .container-tab > div > div .swiper-container-fact.loading {
  opacity: 0;
  visibility: hidden;
}
.main-about > .container-tab > div > div .swiper-container-fact:hover .swiper-button-prev,
.main-about > .container-tab > div > div .swiper-container-fact:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.main-about > .container-tab > div > div .swiper-slide {
  background-position: center;
  background-size: cover;
}
.main-about > .container-tab > div > div .swiper-slide .entity-img {
  display: none;
}
.main-about > .container-tab > div > div [class^=swiper-button-] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}
.main-about > .container-tab > div > div .swiper-button-prev {
  transform: translateX(50px);
}
.main-about > .container-tab > div > div .swiper-button-next {
  transform: translateX(-50px);
}
.main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 9px;
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.4;
}
.main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 0px solid #fff;
  border-radius: 50%;
}
.main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:hover, .main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.main-about > .container-tab > div > div .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-width: 1px;
}
@media (max-width: 1180px) {
  .main-about > .container-tab > div > div .swiper-slide .content .title {
    font-size: 25px;
  }
  .main-about > .container-tab > div > div .swiper-slide .content .caption {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .main-about > .container-tab > div > div .swiper-container {
    height: 40vw;
  }
  .main-about > .container-tab > div > div .swiper-container.swiper-container-coverflow {
    padding-top: 0;
  }
}

.container--page {
  display: flex;
  min-height: 70vh;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .container--page {
    flex-direction: column;
  }
}
.container--page > .container--image {
  flex-basis: 50%;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .container--page > .container--image {
    flex-basis: 100%;
    min-height: 300px;
  }
}
.container--page > .container--image > span {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  background-position: center;
  min-height: inherit;
  z-index: 1;
}
.container--page > .container--image > span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6392156863);
}
.container--page > .container--image > .container--txt {
  position: absolute;
  z-index: 2;
  max-width: 500px;
  text-align: center;
  padding: 0 20px;
}
.container--page > .container--image > .container--txt > h2 {
  color: #fff;
  font-size: 70px;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .container--page > .container--image > .container--txt > h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 500px) {
  .container--page > .container--image > .container--txt > h2 {
    font-size: 30px;
  }
}
.container--page > .container--image > .container--txt > p {
  color: #fff;
  margin-top: 20px;
  font-size: 15px;
}
@media screen and (max-width: 500px) {
  .container--page > .container--image > .container--txt > p {
    font-size: 13px;
  }
}
.container--page > .container--frm {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .container--page > .container--frm {
    flex-basis: 100%;
  }
}
.container--page > .container--frm .row {
  margin: -20px 0;
}
.container--page > .container--frm .row:after {
  content: "";
  display: table;
  clear: both;
}
.container--page > .container--frm .row .col {
  padding: 0 20px;
  float: left;
  box-sizing: border-box;
}
.container--page > .container--frm .row .col.x-50 {
  width: 50%;
}
.container--page > .container--frm .row .col.x-100 {
  width: 100%;
}
.container--page > .container--frm .content-wrapper {
  min-height: 100%;
  position: relative;
}
.container--page > .container--frm .get-in-touch {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .container--page > .container--frm .get-in-touch {
    transform: translateY(0);
    padding: 50px 0;
  }
}
.container--page > .container--frm .get-in-touch .title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 36px;
  line-height: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 1000px) {
  .container--page > .container--frm .get-in-touch .title {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .container--page > .container--frm .get-in-touch .title {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .container--page > .container--frm .contact-form {
    padding: 0 10px;
  }
}
.container--page > .container--frm .contact-form .form-field {
  position: relative;
  margin: 25px 0;
}
@media screen and (max-width: 767px) {
  .container--page > .container--frm .contact-form .form-field {
    padding: 0 10px;
  }
}
.container--page > .container--frm .contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-bottom: 2px solid #000;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  background: transparent;
}
.container--page > .container--frm .contact-form .input-text:focus {
  outline: none;
}
.container--page > .container--frm .contact-form .input-text:focus + .label, .container--page > .container--frm .contact-form .input-text.not-empty + .label {
  transform: translateY(-24px);
}
.container--page > .container--frm .contact-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  color: #888;
  cursor: text;
  transition: transform 0.2s ease-in-out;
}
.container--page > .container--frm .contact-form .submit-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 24px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.container--page > .container--frm .contact-form .submit-btn:hover {
  opacity: 0.6;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.arrow-down,
.arrow-down-2 {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  z-index: 99999;
}
.arrow-down > div img,
.arrow-down-2 > div img {
  width: 100%;
  max-width: 40px;
  cursor: pointer;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  filter: invert(1);
}
@media screen and (max-width: 749px) {
  .arrow-down > div img,
  .arrow-down-2 > div img {
    max-width: 40px;
  }
}
.arrow-down > .btn-cta-slide,
.arrow-down-2 > .btn-cta-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 50px;
  right: 0;
  left: 0;
}
.arrow-down > .btn-cta-slide > .btn,
.arrow-down-2 > .btn-cta-slide > .btn {
  backdrop-filter: blur(10px);
  background-color: rgba(66, 66, 69, 0.7);
  border-radius: 100px;
  padding: 12px 16px;
  border: 0px solid #fff;
  display: flex;
  margin-top: 25px;
  color: #fff;
  min-width: 200px;
  font-size: 15px;
  text-align: center;
}
.arrow-down > .btn-cta-slide > .btn > .button__text,
.arrow-down-2 > .btn-cta-slide > .btn > .button__text {
  font-size: 15px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 5px;
}
.arrow-down > .btn-cta-slide > .btn:hover,
.arrow-down-2 > .btn-cta-slide > .btn:hover {
  background: rgba(255, 255, 255, 0.2705882353);
}
.arrow-down > .btn-cta-slide > .btn .button__text,
.arrow-down-2 > .btn-cta-slide > .btn .button__text {
  font-size: 15px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
}
.arrow-down > .btn-cta-slide > .btn .button__icon,
.arrow-down-2 > .btn-cta-slide > .btn .button__icon {
  margin-left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0058f1;
  border-radius: 50%;
  color: #fff;
}
.arrow-down > .btn-cta-slide > .btn .button__icon svg,
.arrow-down-2 > .btn-cta-slide > .btn .button__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media screen and (max-width: 800px) {
  .arrow-down > .btn-cta-slide,
  .arrow-down-2 > .btn-cta-slide {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.video-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.home.section-3 {
  width: 100%;
  padding: 50px 20px;
}
.home.section-3 .title {
  text-align: center;
  text-transform: capitalize;
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .home.section-3 .title {
    font-size: 20px;
  }
}
.home.section-3 .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .home.section-3 .container {
    flex-direction: column;
    align-items: center;
  }
}
.home.section-3 .container .side_1 {
  width: 30%;
  padding: 16px;
}
.home.section-3 .container .side_1 img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 749px) {
  .home.section-3 .container .side_1 {
    width: 100%;
  }
}
.home.section-3 .container .side_2 {
  width: 70%;
  padding: 16px;
}
@media screen and (max-width: 749px) {
  .home.section-3 .container .side_2 {
    width: 100%;
  }
}
.home.section-3 .container .side_2 .pages {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home.section-3 .container .side_2 .pages h1 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.home.section-3 .container .side_2 .pages > div {
  width: 48%;
  margin-bottom: 20px;
  cursor: pointer;
}
.home.section-3 .container .side_2 .pages > div > img {
  width: 100%;
  border-radius: 10px;
}
.home.section-3 .container .side_2 .pages > div > h3 {
  font-size: 18px;
  text-transform: capitalize;
  padding: 5px 0;
}
.home.section-3 .btn {
  background: transparent;
  border-radius: 100px;
  padding: 12px 16px;
  border: 1px solid #000;
  display: inline-block;
  margin-top: 25px;
  color: #000;
  min-width: 200px;
  font-size: 15px;
  text-align: center;
}
.home.section-3 .btn:hover {
  background: rgba(255, 255, 255, 0.2705882353);
}

/* PAGES PROJECTS */
.wrapper-content-projects {
  width: 100%;
  margin: 120px 0;
}
.wrapper-content-projects .container-projects {
  margin: auto;
  max-width: 1140px;
  padding: 0 20px;
}
.wrapper-content-projects .container-projects .projects-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-content-projects .container-projects .projects-image > span {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  background-position: center;
  min-height: inherit;
  z-index: 1;
}
.wrapper-content-projects .container-projects .projects-image > span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6392156863);
}
@media screen and (max-width: 1000px) {
  .wrapper-content-projects .container-projects {
    padding: 0 10px;
  }
}
.wrapper-content-projects .container-projects p {
  margin-top: 10px;
  font-size: 20px;
}
.wrapper-content-projects .container-projects > h1 {
  text-transform: capitalize;
  font-size: 40px;
}
.wrapper-content-projects .container-projects > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.wrapper-content-projects .container-projects > ul > li {
  flex-basis: calc(25% - 10px);
  margin-bottom: 20px;
  padding: 0 5px;
}
@media screen and (max-width: 1000px) {
  .wrapper-content-projects .container-projects > ul > li {
    flex-basis: calc(50% - 10px);
  }
}
.wrapper-content-projects .container-projects > ul > li > a {
  position: relative;
}
.wrapper-content-projects .container-projects > ul > li > a > div > img {
  width: 100%;
}
.wrapper-content-projects .container-projects > ul > li > a > .info {
  position: relative;
  bottom: 0;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.wrapper-content-projects .container-projects > ul > li > a > .info > p {
  max-width: 100%;
  font-size: 15px;
  text-transform: capitalize;
  text-align: center;
}
.wrapper-content-projects .container-projects > ul > li > a > .info > span {
  font-size: 12px;
}
.wrapper-content-projects .container-projects ul.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.wrapper-content-projects .container-projects ul.steps > li {
  width: 78%;
  margin-bottom: 20px;
  cursor: pointer;
}
.wrapper-content-projects .container-projects ul.steps > li > img {
  width: 100%;
  border-radius: 10px;
}
.wrapper-content-projects .container-projects ul.steps > li > span {
  font-size: 30px;
  text-transform: capitalize;
  padding: 5px 0;
  font-weight: bold;
}

/* PAGE PRODUCT */
.main--image > div {
  width: 100%;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}

/* IMAGE WITH TEXT */
.image-with--text {
  padding: 100px 0;
}
.image-with--text > .wrapper--header {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #000;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.image-with--text > .wrapper--header > h3 {
  font-size: 32px;
  font-weight: 600;
  color: #a4a4a4;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .image-with--text > .wrapper--header > h3 {
    font-size: 28px;
  }
}
.image-with--text > .wrapper--header > p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 28px;
  color: #546273;
}
@media screen and (max-width: 900px) {
  .image-with--text > .wrapper--header > p {
    font-size: 15px;
    line-height: 20px;
  }
}
.image-with--text > .wrapper--container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .image-with--text > .wrapper--container {
    flex-direction: column;
  }
}
.image-with--text > .wrapper--container > .image {
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  .image-with--text > .wrapper--container > .image {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.image-with--text > .wrapper--container > .image > img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .image-with--text > .wrapper--container > .image > br {
    display: none;
  }
}
.image-with--text > .wrapper--container > .text {
  flex-basis: 50%;
  padding: 50px;
}
@media screen and (max-width: 900px) {
  .image-with--text > .wrapper--container > .text {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .image-with--text > .wrapper--container > .text {
    padding: 20px 0;
  }
}
.image-with--text > .wrapper--container > .text > h3 {
  font-size: 32px;
  font-weight: 500;
  color: #a4a4a4;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .image-with--text > .wrapper--container > .text > h3 {
    font-size: 28px;
  }
}
.image-with--text > .wrapper--container > .text > h4 {
  font-size: 19px;
  color: #a4a4a4;
  margin-bottom: 20px;
}
.image-with--text > .wrapper--container > .text > p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 28px;
  color: #546273;
}
@media screen and (max-width: 900px) {
  .image-with--text > .wrapper--container > .text > p {
    font-size: 15px;
    line-height: 20px;
  }
}
.image-with--text > .wrapper--container > .text > a {
  transition: all 0.3s;
  color: #ff0000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b5b5b5;
  border-radius: 10px 10px 10px 10px;
  font-size: 16px;
  padding: 15px 30px;
  display: inline-block;
  margin-top: 30px;
}
.image-with--text > .wrapper--container > .text > a:hover {
  background: #ff0000;
  color: #fff;
}
.image-with--text > .wrapper--container.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .image-with--text > .wrapper--container.reverse {
    flex-direction: column;
  }
}

.image-with--text.fit {
  padding: 10px 0;
}

.wrapper-products {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}
.wrapper-products > .container {
  display: flex;
  margin-right: -20px;
  margin-left: -20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1250px) {
  .wrapper-products > .container {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .wrapper-products > .container {
    flex-direction: column;
  }
}
.wrapper-products > .container > .item {
  flex-basis: 50%;
  padding: 20px;
  margin-bottom: 50px;
}
.wrapper-products > .container > .item > img {
  width: 100%;
  display: flex;
}
.wrapper-products > .container > .item > h4 {
  font-size: 32px;
  font-weight: 700;
  color: #a4a4a4;
  margin-top: 15px;
  margin-bottom: 0;
  margin-bottom: -10px;
}
.wrapper-products > .container > .item > p {
  margin: 30px 0;
  font-size: 1.1rem;
  color: #546273;
}
@media screen and (max-width: 900px) {
  .wrapper-products > .container > .item > p {
    font-size: 15px;
  }
}
.wrapper-products > .container > .item > a {
  transition: all 0.3s;
  color: #ff0000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b5b5b5;
  border-radius: 10px 10px 10px 10px;
  font-size: 16px;
  padding: 15px 30px;
  display: inline-block;
}
.wrapper-products > .container > .item > a:hover {
  background: #ff0000;
  color: #fff;
}
.wrapper-products > .container > .item > a.red {
  background: #ff0000;
  color: #fff;
  border: 0;
  border-radius: 8px;
}
.wrapper-products > .container > .item > a.red:hover {
  background: transparent;
  color: #ff0000;
}

.container-products {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}
.container-products > .main-image {
  position: relative;
}
.container-products > .main-image > div.bg {
  display: block;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  height: 600px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .container-products > .main-image > div.bg {
    height: 400px;
  }
}
.container-products > .main-image > .bg.overlay {
  position: relative;
}
.container-products > .main-image > .bg.overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  width: 100%;
  height: 100%;
}
.container-products > .main-image > img {
  width: 100%;
  display: none;
}
.container-products > .main-image > div.txt {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px 50px;
}
@media screen and (max-width: 767px) {
  .container-products > .main-image > div.txt {
    padding: 50px 20px;
  }
}
.container-products > .main-image > div.txt > h3 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.63);
  font-size: 32px;
  margin-bottom: 20px;
}
.container-products > .main-image > div.txt > p {
  margin: 0;
  font-weight: 200;
}
.container-products > .main-image.center-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-products > .main-image.center-left > .txt {
  top: initial;
  bottom: initial;
  text-align: right;
}
.container-products > .bottom-container {
  display: flex;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .container-products > .bottom-container {
    flex-direction: column;
  }
}
.container-products > .bottom-container > div:first-of-type {
  flex-basis: 60%;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .container-products > .bottom-container > div:first-of-type {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.container-products > .bottom-container > div:first-of-type > h2 {
  font-size: 32px;
  font-weight: 500;
  color: #a4a4a4;
  margin: 30px 0;
}
.container-products > .bottom-container > div:first-of-type > ul {
  list-style: initial;
}
.container-products > .bottom-container > div:first-of-type > ul > li {
  margin-bottom: 5px;
}
.container-products > .bottom-container > div:first-of-type > p,
.container-products > .bottom-container > div:first-of-type li {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 28px;
  color: #546273;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 900px) {
  .container-products > .bottom-container > div:first-of-type > p,
  .container-products > .bottom-container > div:first-of-type li {
    font-size: 15px;
    line-height: 20px;
  }
}
.container-products > .bottom-container > div:first-of-type > p > span,
.container-products > .bottom-container > div:first-of-type li > span {
  margin-left: 20px;
  padding-right: 50px;
}
.container-products > .bottom-container > div:last-of-type {
  flex-basis: 40%;
  overflow: hidden;
}
.container-products > .bottom-container > div:last-of-type > .swiper-container-horizontal > .swiper-wrapper > .swiper-slide {
  text-align: center;
}
.container-products > .bottom-container > div:last-of-type > .swiper-container-horizontal > .swiper-wrapper > .swiper-slide > img {
  max-width: 300px;
}
.container-products > .bottom-container > div:last-of-type > .swiper-container-horizontal > .swiper-button-next, .container-products > .bottom-container > div:last-of-type > .swiper-container-horizontal > .swiper-button-prev {
  color: #fff;
  filter: invert(1) grayscale(1) brightness(0);
  height: 20px;
}
.container-products > .bottom-container.bottom-50-50 > div:first-of-type {
  flex-basis: 50%;
}
.container-products > .bottom-container.bottom-50-50 > div:last-of-type {
  flex-basis: 50%;
}
.container-products > .bottom-container.bottom-50-50 > div:last-of-type > .swiper-container-horizontal > .swiper-wrapper > .swiper-slide {
  text-align: center;
}
.container-products > .bottom-container.bottom-50-50 > div:last-of-type > .swiper-container-horizontal > .swiper-wrapper > .swiper-slide > img {
  max-width: 100%;
}

/* STYLES PAGE 1 */
.image-with--text-60-40 {
  padding: 100px 20px;
}
.image-with--text-60-40 > .wrapper--container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .image-with--text-60-40 > .wrapper--container {
    flex-direction: column;
  }
}
.image-with--text-60-40 > .wrapper--container > .image {
  flex-basis: 60%;
}
@media screen and (max-width: 767px) {
  .image-with--text-60-40 > .wrapper--container > .image {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.image-with--text-60-40 > .wrapper--container > .image > img {
  width: 100%;
}
.image-with--text-60-40 > .wrapper--container > .text {
  flex-basis: 40%;
  padding: 20px;
}
@media screen and (max-width: 900px) {
  .image-with--text-60-40 > .wrapper--container > .text {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .image-with--text-60-40 > .wrapper--container > .text {
    padding: 20px 0;
  }
}
.image-with--text-60-40 > .wrapper--container > .text > h3 {
  font-size: 32px;
  font-weight: 700;
  color: #a4a4a4;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .image-with--text-60-40 > .wrapper--container > .text > h3 {
    font-size: 28px;
  }
}
.image-with--text-60-40 > .wrapper--container > .text > p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 28px;
  color: #546273;
}
@media screen and (max-width: 900px) {
  .image-with--text-60-40 > .wrapper--container > .text > p {
    font-size: 15px;
    line-height: 20px;
  }
}
.image-with--text-60-40 > .wrapper--container > .text > a {
  transition: all 0.3s;
  color: #ff0000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #b5b5b5;
  border-radius: 10px 10px 10px 10px;
  font-size: 16px;
  padding: 15px 30px;
  display: inline-block;
  margin-top: 30px;
}
.image-with--text-60-40 > .wrapper--container > .text > a:hover {
  background: #ff0000;
  color: #fff;
}
.image-with--text-60-40 > .wrapper--container.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .image-with--text-60-40 > .wrapper--container.reverse {
    flex-direction: column;
  }
}

.image-over-text {
  margin-bottom: 50px;
}
.image-over-text > .wrapper--header {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  border-top: 1px solid #000;
  margin-top: 20px;
  padding: 20px;
}
.image-over-text > .wrapper--header > h3 {
  font-size: 32px;
  font-weight: 600;
  color: #a4a4a4;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .image-over-text > .wrapper--header > h3 {
    font-size: 28px;
  }
}
.image-over-text > .wrapper--header > p {
  font-size: 1.1em;
  font-weight: 400;
  line-height: 28px;
  color: #546273;
}
@media screen and (max-width: 900px) {
  .image-over-text > .wrapper--header > p {
    font-size: 15px;
    line-height: 20px;
  }
}
.image-over-text > .wrapper-image {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}
.image-over-text > .wrapper-image > .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 600px;
  position: relative;
}
.image-over-text > .wrapper-image > .image.small {
  min-height: 350px;
}
.image-over-text > .wrapper-image > .image.hovered-bg:before {
  content: "";
  transition: all 0.6s ease-in-out;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .image-over-text > .wrapper-image > .image.hovered-bg:before {
    background-color: rgba(255, 255, 255, 0.36);
  }
}
.image-over-text > .wrapper-image > .image.hovered-bg:hover:before {
  background-color: rgba(0, 0, 0, 0.1411764706);
}
@media screen and (max-width: 767px) {
  .image-over-text > .wrapper-image > .image.hovered-bg:hover:before {
    background-color: rgba(255, 255, 255, 0.36);
  }
}
.image-over-text > .wrapper-image > .text {
  position: absolute;
  padding: 50px;
}
.image-over-text > .wrapper-image > .text > h4 {
  color: #a4a4a4;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: rgba(7, 7, 7, 0.5411764706);
  padding: 15px;
}
.image-over-text > .wrapper-image > .text > h4.not-bg {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}
.image-over-text > .wrapper-image > .text > p {
  color: #767676;
  margin: 0;
}
.image-over-text > .wrapper-image > .text > a {
  transition: all 0.3s;
  color: #fff;
  border-radius: 10px 10px 10px 10px;
  font-size: 16px;
  padding: 15px 30px;
  background: #ff0000;
  display: inline-block;
}
.image-over-text > .wrapper-image > .text > a:hover {
  background: #000;
  color: #ff0000;
}
.image-over-text > .wrapper-image > .text.right {
  text-align: right;
}

.full--slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .image {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  min-height: 800px;
}
.full--slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 50px;
}
.full--slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content > h3 {
  margin-bottom: 8px;
  font-size: 36px;
}
.full--slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content > p {
  font-size: 17px;
}
.full--slider > .full-slid.swiper-container-horizontal > .swiper-button-next, .full--slider > .full-slid.swiper-container-horizontal > .swiper-button-prev {
  color: #fff;
  filter: brightness(0) invert(1);
  height: 20px;
}

.width-slider > .full-slid.swiper-container-horizontal {
  padding: 50px 0;
}
.width-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .image {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  min-height: 600px;
}
.width-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 50px;
}
.width-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content > h3 {
  margin-bottom: 8px;
  font-size: 36px;
}
.width-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content > p {
  font-size: 17px;
}
.width-slider > .full-slid.swiper-container-horizontal > .swiper-button-next, .width-slider > .full-slid.swiper-container-horizontal > .swiper-button-prev {
  color: #fff;
  filter: brightness(0) invert(1);
}

.new-slider > .full-slid.swiper-container-horizontal {
  padding: 50px 0;
}
.new-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .image {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  min-height: 600px;
}
.new-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* negro con 40% de opacidad */
  z-index: 1;
}
.new-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 50px;
  z-index: 1;
}
.new-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content > h3 {
  margin-bottom: 8px;
  font-size: 36px;
}
.new-slider > .full-slid.swiper-container-horizontal > .swiper-wrapper > .swiper-slide > .content > p {
  font-size: 17px;
  font-weight: 100;
}
.new-slider > .full-slid.swiper-container-horizontal > .swiper-button-next, .new-slider > .full-slid.swiper-container-horizontal > .swiper-button-prev {
  color: #fff;
  filter: brightness(0) invert(1);
}
.new-slider > .bottom-container {
  margin-bottom: 50px;
}
.new-slider > .bottom-container > p {
  color: #404142;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 200;
  text-align: center;
}

.product--options {
  margin: 50px auto;
}
.product--options > p {
  margin: 30px 0;
  color: #c7c7c7;
  font-size: 14px;
  text-align: center;
}
.product--options > .top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .product--options > .top {
    flex-direction: column;
  }
}
.product--options > .top > .title {
  flex-basis: 60%;
  /*responsive*/
}
@media screen and (max-width: 767px) {
  .product--options > .top > .title {
    fflex-basis: 100%;
    margin-bottom: 50px;
  }
}
.product--options > .top > .title > h3 {
  color: #003c75;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .product--options > .top > .title {
    flex-basis: 100%;
    text-align: center;
  }
}
.product--options > .top > .bottom {
  display: flex;
  justify-content: flex-end;
  color: #546273;
  flex-basis: 40%;
  min-height: 150px;
}
@media screen and (max-width: 767px) {
  .product--options > .top > .bottom {
    flex-basis: 100%;
    flex-direction: column;
  }
}
.product--options > .top > .bottom > .item {
  width: 100%;
  max-width: 240px;
  padding: 35px;
  border: 1px solid #e1e1e1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .product--options > .top > .bottom > .item {
    max-width: 100%;
  }
}
.product--options > .top > .bottom > .item > p {
  color: #000;
  margin-bottom: 10px;
}
.product--options > .top > .bottom > .item > span {
  font-weight: 200;
}
.product--options > .top > .bottom > .item:first-of-type {
  border-right: none;
}
.product--options > .bottom {
  display: flex;
  flex-wrap: wrap;
  color: #546273;
  /*responsive*/
}
.product--options > .bottom > .item {
  width: 100%;
  max-width: 240px;
  padding: 35px;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  min-height: 150px;
}
.product--options > .bottom > .item > p {
  color: #000;
  margin-bottom: 10px;
}
.product--options > .bottom > .item > span {
  font-weight: 200;
}
@media (max-width: 768px) {
  .product--options > .bottom > .item {
    max-width: 100%;
  }
}

.technical-details {
  background: #f4f8fc;
  padding: 60px 20px;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
}
.technical-details h2 {
  font-size: 2.2rem;
  color: #002b5c;
  margin-bottom: 70px;
  font-weight: 400;
}
.technical-details .details-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .technical-details .details-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.technical-details .details-container .details-left,
.technical-details .details-container .details-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 250px;
  text-align: left;
}
.technical-details .details-container .details-left .detail-block h4,
.technical-details .details-container .details-right .detail-block h4 {
  color: #002b5c;
  font-weight: 400;
  margin-bottom: 5px;
  border-left: 3px solid #5ba4ff;
  padding-left: 10px;
  font-size: 18px;
}
.technical-details .details-container .details-left .detail-block p,
.technical-details .details-container .details-right .detail-block p {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-weight: 300;
  margin-top: 17px;
}
.technical-details .details-container .details-image img {
  max-height: 300px;
  object-fit: contain;
}
.technical-details .button-container {
  margin-top: 140px;
}
.technical-details .button-container .spec-button {
  background: white;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.technical-details .button-container .spec-button:hover {
  background: #007bff;
  color: white;
}

.image > img {
  width: 100%;
}

.smart-buildings {
  display: flex;
  gap: 2rem;
  padding: 4rem 2rem;
  font-family: "Segoe UI", sans-serif;
}
.smart-buildings .content {
  flex: 1;
}
.smart-buildings .content h2 {
  font-size: 3.2rem;
  color: #1d3c6e;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.smart-buildings .content h3 {
  font-size: 1.2rem;
  color: #666;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.smart-buildings .content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}
.smart-buildings .content .access-control {
  margin-top: 2rem;
}
.smart-buildings .content .access-control h4 {
  font-size: 1.5rem;
  color: #1d3c6e;
  margin-bottom: 0.25rem;
}
.smart-buildings .content .access-control .subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}
.smart-buildings .image {
  flex: 1;
  display: flex;
}
.smart-buildings .image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .smart-buildings {
    flex-direction: column;
  }
  .smart-buildings .image {
    margin-top: 2rem;
  }
}

.digital-passport {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 6%;
}
.digital-passport .content {
  flex: 1;
  max-width: 50%;
}
.digital-passport .content h2 {
  color: #2a61ad;
  font-size: 3.2rem;
  margin-bottom: 0.2rem;
  font-weight: 200;
}
.digital-passport .content .subtitle {
  color: #8a8fa6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.digital-passport .content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
  font-weight: 300;
}
.digital-passport .content .description {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  font-weight: 300;
}
.digital-passport .images {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 130px;
  padding-left: 100px;
}
.digital-passport .images img:first-of-type {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.digital-passport .images > img:last-of-type {
  width: 100%;
  max-width: 60%;
  position: absolute;
  bottom: -24px;
  left: -20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .digital-passport .images > img:last-of-type {
    left: -10px;
  }
}
@media (max-width: 768px) {
  .digital-passport {
    flex-direction: column;
  }
  .digital-passport .content,
  .digital-passport .images {
    max-width: 100%;
  }
  .digital-passport .images {
    margin-top: 2rem;
  }
}

.switch,
.switch--main {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: end;
  padding: 20px 30px;
  align-items: center;
}
.switch > p,
.switch--main > p {
  padding: 0 10px;
  font-size: 15px;
}
.switch > span:first-of-type,
.switch--main > span:first-of-type {
  border-radius: 20px 0 0 20px;
}
.switch > span:last-of-type,
.switch--main > span:last-of-type {
  border-radius: 0 20px 20px 0;
}
.switch > span,
.switch--main > span {
  transition: all 0.2s ease-in;
  border: 1px solid #000;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.switch > span.active,
.switch--main > span.active {
  background: #003c75;
  border: 1px solid #003c75;
}

/*# sourceMappingURL=main.css.map */
