@import url("https://fonts.bunny.net/css?family=oswald:600|roboto:300,500");
@import 'reset.css';
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  background: none;
  border: none;
}
* {
  margin: 0;
  hyphens: auto;
  word-break: break-word;
  box-sizing: border-box;
  hyphenate-limit-chars: 14;
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #2d2a29;
}
body p {
  line-height: 22px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.btn-inline-white {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.25rem;
  color: #fafafa;
  display: inline-flex;
  gap: 1rem;
}
.btn-inline-white:after {
  content: '';
  width: 44px;
  height: 26px;
  display: block;
  background: url("../img/icon-arrow-white.svg") no-repeat;
  transition: 200ms;
  transform: translateX(0px);
}
.btn-inline-white:hover:after {
  transition: 200ms;
  transform: translateX(10px);
}
.btn-inline-orange {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.25rem;
  color: #e8490f;
  display: inline-flex;
  gap: 1rem;
  transition: 200ms;
}
.btn-inline-orange:after {
  content: '';
  width: 44px;
  height: 26px;
  display: block;
  background: url("../img/icon-arrow-orange.svg") no-repeat;
  transition: 200ms;
  transform: translateX(0px);
}
.btn-inline-orange:hover:after {
  transition: 200ms;
  transform: translateX(10px);
}
.card {
  position: relative;
  border-bottom: 10px solid #fdc200;
}
.card-img img {
  width: 100%;
  height: auto;
}
.card-overlay {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, #2d2a29, transparent);
}
.card-overlay-noicon {
  background: none !important;
}
.card-overlay-icon {
  background: linear-gradient(to right, #fdc200, #e8490f);
  border-radius: 100px;
  width: 70px;
  height: 70px;
}
.card-overlay-icon img {
  padding: 1rem;
  width: 70px;
  height: 70px;
}
.card-overlay-content {
  color: #fafafa;
}
.card-overlay-content h2 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.header {
  background: #f2f2f2;
  padding-bottom: 15vh;
}
.header-top {
  padding: 0vw 15vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #fdc200, #e8490f);
}
@media only screen and (max-width: 1920px) {
  .header-top {
    padding: 0vw 5vw;
  }
}
.header-top-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  color: #fafafa;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: 200ms;
}
@media only screen and (max-width: 700px) {
  .header-top-cta {
    font-size: 0.75rem;
  }
}
.header-top-cta:hover {
  transition: 200ms;
  background: #e8490f;
}
@media only screen and (max-width: 700px) {
  .header-top-cta {
    gap: 0.15rem;
    padding: 0.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  .header-top-cta span {
    display: none;
  }
}
.header-top-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #2d2a29;
}
.header-top-left a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.header-top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 700px) {
  .header-top-right {
    gap: 0.15rem;
  }
}
.header-menu {
  padding: 4rem 15vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  overflow-x: hidden;
}
@media only screen and (max-width: 1920px) {
  .header-menu {
    padding: 4rem 5vw;
  }
}
@media only screen and (max-width: 1200px) {
  .header-menu {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  .header-menu {
    flex-direction: row;
    gap: 2rem;
  }
}
.header-menu-logo {
  max-width: 300px;
}
@media only screen and (max-width: 1400px) {
  .header-menu-logo {
    max-width: 200px;
  }
}
.header-menu-open {
  flex-basis: 20%;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.header-menu-open img {
  width: 100%;
}
@media only screen and (min-width: 700px) {
  .header-menu-open {
    display: none;
  }
}
@media only screen and (min-width: 700px) {
  .header-menu-close {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .header-menu-home {
    display: none;
  }
}
.header-menu-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 700px) {
  .header-menu-nav {
    flex-direction: column;
    transform: translateX(100%);
    position: fixed;
    transition: 0.5s;
    background: #f2f2f2;
    padding: 4rem 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100vh;
    z-index: 100;
    top: 0;
    gap: 0.5rem;
  }
}
.header-menu-nav a {
  font-size: 1rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: #2d2a29;
  text-decoration: none;
  transition: 200ms;
}
@media only screen and (max-width: 700px) {
  .header-menu-nav a {
    font-size: 0.75rem;
  }
}
.header-menu-nav a:hover {
  color: #e8490f;
  transition: 200ms;
}
@media only screen and (max-width: 700px) {
  .header-menu-nav a {
    font-size: 1.25rem;
  }
}
main > :first-child {
  margin-top: -15vh;
}
main > :not(:first-child) {
  margin-top: 6rem;
}
.gallery {
  position: relative;
  overflow: hidden;
  margin: 0vh 15vw;
  -webkit-mask-image: linear-gradient(to right, #000 70%, rgba(0,0,0,0));
  mask-image: linear-gradient(to right, #000 70%, rgba(0,0,0,0));
}
@media only screen and (max-width: 1920px) {
  .gallery {
    margin: 0vh 5vw;
  }
}
.gallery .embla_container {
  display: flex;
  gap: 6rem;
}
.gallery .embla_slide {
  flex: 0 0 50%;
  min-width: 0;
  aspect-ratio: 6/4;
  object-fit: cover;
}
@media only screen and (max-width: 700px) {
  .gallery .embla_slide {
    flex: 0 0 100%;
  }
}
.gallery-controls {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.gallery-controls button {
  cursor: pointer;
}
.gallery-controls .is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contentbox {
  padding: 6rem 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
@media only screen and (max-width: 1920px) {
  .contentbox {
    padding: 6rem 15vw;
  }
}
@media only screen and (max-width: 700px) {
  .contentbox {
    flex-direction: column;
    gap: 3rem;
  }
}
.contentbox-left {
  text-align: right;
  padding-right: 5rem;
  flex: 1;
}
@media only screen and (max-width: 700px) {
  .contentbox-left {
    padding-right: 0;
    text-align: left;
  }
}
.contentbox-left h2 {
  font-size: 3rem;
}
@media only screen and (max-width: 700px) {
  .contentbox-left h2 {
    font-size: 2rem;
  }
}
.contentbox-left h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contentbox-right {
  border-inline-start: 10px solid;
  border-image: linear-gradient(to bottom, #e8490f, #fdc200) 1;
  padding-left: 5rem;
  flex: 1;
}
@media only screen and (max-width: 700px) {
  .contentbox-right {
    padding-left: 0;
    border-inline-start: none;
  }
}
.contentbox-right p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.contentthing {
  padding: 6rem 25vw;
  background: #e8490f;
  color: #fafafa;
}
@media only screen and (max-width: 700px) {
  .contentthing {
    padding: 15vw;
  }
}
.contentthing P:first-of-type {
  margin-top: 0.5rem;
}
.contentthing p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.contentthing-unilux {
  display: flex;
  padding: 1rem 0;
  align-items: center;
  gap: 1rem;
}
.hero {
  padding: 0vw 25vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
}
@media only screen and (max-width: 1920px) {
  .hero {
    padding: 0vw 15vw;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0vw 15vw;
    gap: 3rem;
  }
}
.hero-img {
  aspect-ratio: 2/1;
  grid-area: 1/1/2/5;
  border-bottom: 10px solid #e8490f;
}
.hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-content {
  grid-area: 1/4/2/6;
  align-self: center;
  background: #fdc200;
  padding: 3rem;
  border-radius: 1rem 1rem 1rem 0;
}
@media only screen and (max-width: 700px) and (max-width: 1920px) {
  .hero {
    padding: 0vw 5vw;
  }
}
.categories {
  padding: 0vw 15vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 1920px) {
  .categories {
    padding: 0vw 5vw;
  }
}
@media only screen and (max-width: 700px) {
  .categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
}
.brands {
  padding: 6rem 15vw;
  background: #f2f2f2;
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 1920px) {
  .brands {
    padding: 6rem 5vw;
  }
}
@media only screen and (max-width: 700px) {
  .brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.brands a {
  display: flex;
  align-items: center;
}
.usp {
  padding: 6rem 15vw;
  display: flex;
  align-items: stretch;
  gap: 3rem;
  background: url("../img/pattern-lines.webp");
}
@media only screen and (max-width: 1920px) {
  .usp {
    padding: 6rem 5vw;
  }
}
@media only screen and (max-width: 700px) {
  .usp {
    flex-direction: column;
  }
}
.usp-reviews {
  background: #e8490f;
  overflow: hidden;
  border-radius: 1rem;
  align-content: center;
  min-width: 300px;
}
@media only screen and (max-width: 1200px) {
  .usp-reviews {
    display: none;
  }
}
.usp-reviews .embla_container {
  display: flex;
}
.usp-reviews-item {
  color: #fafafa;
  flex: 0 0 100%;
  min-width: 0;
  padding: 3rem;
  max-width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 700px) {
  .usp-reviews-item {
    max-width: 100%;
  }
}
.usp-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
}
@media only screen and (max-width: 700px) {
  .usp-box {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
}
.usp-box-content {
  padding: 3rem;
  color: #fafafa;
  grid-area: 1/1/2/4;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 700px) {
  .usp-box-content {
    background: url("../img/bg-usp.webp");
    background-size: cover;
    border-radius: 1rem;
  }
}
.usp-box-content-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.usp-box-bg {
  background: url("../img/bg-usp.webp");
  background-size: cover;
  border-radius: 1rem;
  grid-area: 1/1/2/5;
  z-index: 0;
}
@media only screen and (max-width: 700px) {
  .usp-box-bg {
    display: none;
  }
}
.usp-box-cta {
  grid-area: 1/4/2/6;
  align-self: center;
  background: #fdc200;
  padding: 3rem;
  border-radius: 1rem 1rem 1rem 0;
  z-index: 2;
}
.usp-box-cta h4 {
  font-size: 1.75rem;
}
.services {
  padding: 0vh 25vw;
  text-align: center;
}
@media only screen and (max-width: 1920px) {
  .services {
    padding: 0vh 15vw;
  }
}
@media only screen and (max-width: 1200px) {
  .services {
    padding: 0vh 15vw;
  }
}
.services h3 {
  font-size: 3rem;
}
@media only screen and (max-width: 700px) {
  .services h3 {
    font-size: 2rem;
  }
}
.services-wrapper {
  display: flex;
  padding: 3rem;
  gap: 3rem;
}
@media only screen and (max-width: 1200px) {
  .services-wrapper {
    flex-direction: column;
  }
}
.services-card {
  padding: 3rem;
  border: 10px solid #fdc200;
  border-radius: 1rem 1rem 1rem 0;
}
@media only screen and (max-width: 1200px) {
  .services-card {
    padding: 1.5rem;
  }
}
.services-card h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1200px) and (max-width: 1920px) {
  .services {
    padding: 0vh 5vw;
  }
}
.footer {
  margin: 0vh 25vw;
  margin-top: calc(10vh + 6rem) !important;
  background: url("../img/bg-noise.webp");
  background-size: cover;
  border-radius: 1rem 1rem 0 0;
}
@media only screen and (max-width: 1920px) {
  .footer {
    margin: 0vh 15vw;
  }
}
@media only screen and (max-width: 1200px) {
  .footer {
    margin-top: 0;
    margin: 0vh 15vw;
  }
}
.footer-michel {
  padding: 0 20%;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 700px) {
  .footer-michel {
    flex-direction: column;
    padding: 3rem 3rem 0 3rem;
    gap: 3rem;
  }
}
.footer-michel h4 {
  color: #fafafa;
  font-size: 3rem;
  padding: 1rem 0;
  align-self: center;
}
@media only screen and (max-width: 700px) {
  .footer-michel h4 {
    font-size: 2rem;
  }
}
.footer-michel span {
  color: #e8490f;
}
.footer-michel img {
  margin-top: -10vh;
}
@media only screen and (max-width: 700px) {
  .footer-michel img {
    margin-top: 0;
  }
}
.footer-contact {
  background: linear-gradient(to right, #fdc200, #e8490f);
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: #fafafa;
  font-size: 1.75rem;
  gap: 1rem;
  transition: 200ms;
  transform: scale(1);
}
.footer-contact-item:hover {
  transition: 200ms;
  transform: scale(1.05);
}
@media only screen and (max-width: 1200px) {
  .footer-contact-item span {
    display: none;
  }
}
.footer-details {
  display: flex;
  justify-content: space-around;
  color: #fafafa;
  padding: 6rem 3rem;
}
@media only screen and (max-width: 1200px) {
  .footer-details {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.footer-details-right {
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 700px) {
  .footer-details-right {
    flex-direction: column;
  }
}
.footer-details-right ul {
  padding: 0;
  list-style: none;
}
.footer-details-right h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-details-right-sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 700px) {
  .footer-details-right-sitemap {
    grid-template-columns: 1fr;
  }
}
.footer-details .sociallinks {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 1200px) and (max-width: 1920px) {
  .footer {
    margin: 0vh 5vw;
  }
}
.invendi-copy {
  text-align: center;
}
.invendi-copy a {
  background: linear-gradient(-45deg, #fdc200, #e8490f 40%);
  transition: background 0.5s;
  padding: 0.75rem 1.5rem;
  margin-bottom: -7px;
  display: inline-block;
}
.invendi-copy a:hover {
  transition: background 0.5s;
}
.contactform {
  margin: 0vh 25vw;
  padding: 6rem;
  background: #2d2a29;
  border-radius: 1rem 1rem 1rem 0;
}
@media only screen and (max-width: 1920px) {
  .contactform {
    margin: 0vh 15vw;
  }
}
@media only screen and (max-width: 700px) {
  .contactform {
    margin: 0vh 15vw;
    padding: 1.5rem;
  }
}
.contactform h4 {
  color: #fafafa;
  font-size: 2rem;
}
.contactform form {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
}
.contactform fieldset {
  border: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 1400px) {
  .contactform fieldset {
    flex-direction: column;
  }
}
.contactform-details,
.contactform-products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contactform-details input,
.contactform-products input,
.contactform-details textarea,
.contactform-products textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
}
.contactform-details select,
.contactform-products select {
  border: none;
  padding: 0.75rem;
}
.contactform #add-product,
.contactform #submit-form {
  display: flex;
  background: #fdc200;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: #fafafa;
  cursor: pointer;
}
.contactform .remove-product {
  cursor: pointer;
  flex-basis: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fdc200;
}
.contactform .remove-product img {
  pointer-events: none;
  width: 32px;
}
@media only screen and (max-width: 700px) and (max-width: 1920px) {
  .contactform {
    margin: 0vh 5vw;
  }
}
.contentwrap {
  background: #f2f2f2;
  padding: 4rem 0;
}
.contentwrap > *:not(img) {
  margin: 1rem 25vw;
}
@media only screen and (max-width: 1920px) {
  .contentwrap > *:not(img) {
    margin: 1rem 15vw;
  }
}
.contentwrap img {
  padding: 2rem 15vw;
  max-height: 50vh;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1920px) {
  .contentwrap img {
    padding: 2rem 5vw;
  }
}
.contentwrap a {
  color: #e8490f;
}
.help {
  background: linear-gradient(to right, #fdc200, #e8490f);
  position: fixed;
  top: 20vh;
  right: 0;
  z-index: 100;
  padding: 1rem;
  transition: 200ms;
  cursor: pointer;
}
.help:hover {
  transition: 200ms;
  transform: scale(1.05);
}
@media only screen and (max-width: 700px) {
  .help {
    left: 0;
    top: 80vh;
    right: auto;
  }
}
.help a {
  display: flex;
  justify-content: center;
}
