@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
  font-display: swap;
  color: black;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 1.6rem;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  scroll-behavior: smooth !important;
}

header {
  width: 100%;
  display: block;
  position: relative;
}

header a {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #E9511C;
  transition: all 0.2s ease-in-out 0s;
}

hr {
  display: block;
  width: 100px;
  margin: 20px 0px;
  border: 1px solid #E9511C;
}

.desktop {
  display: none;
}

.mobile {
  display: inline;
}

@media (min-width: 1024px) {
  .desktop {
    display: inline;
  }

  .mobile {
    display: none;
  }
}
html {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  font-weight: 300;
  font-display: swap;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.25;
  font-display: swap;
  font-family: "Roboto", sans-serif;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
}

.heading {
  color: #F3913B;
  padding-bottom: 2rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 900px;
  z-index: 10;
  position: relative;
}
.heading--center {
  text-align: center;
  margin: 0 auto;
}
.heading--left {
  text-align: left;
  margin: 0;
}
.heading__head {
  text-transform: uppercase;
  font-size: 12px;
  color: #E9511C;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-bottom: 1rem;
}
.heading__icon {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}
.heading__title {
  font-size: 3.2rem;
  margin-top: 0;
  position: relative;
  line-height: 32px;
  font-weight: 500;
  color: #3D4543;
}
.heading__title em {
  font-style: normal;
  color: #E9511C;
}
.heading__title span {
  font-style: normal;
  color: #E9511C;
}
.heading__subtitle {
  font-size: 2.4rem;
  line-height: 2;
  color: #666666;
  margin: 20px 0px;
  font-weight: 600;
}
.heading__desc {
  color: #3D4543;
  line-height: 1.7;
  font-size: 1.6rem;
  margin-top: 1rem;
  font-weight: 400;
}
.heading__desc p {
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  font-weight: #3D4543;
}
.heading__desc p + p {
  margin-top: 20px;
}
.heading__divider {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #707070;
}
.heading__illustration {
  position: relative;
  height: 15rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.heading__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.heading--btn {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.heading--btn .heading__title {
  max-width: 800px;
}
.heading--btn .btn {
  display: inline-block;
  margin-top: 0;
}

.title--footer {
  color: #3D4543;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--center {
  text-align: center;
}
.title--white {
  color: #fff;
}
.title--black {
  color: #3D4543;
}
.title--uppercase {
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .heading {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .heading__title {
    font-size: 2.4rem;
    line-height: 32px;
  }
}
.btn {
  padding: 8px 15px;
  color: #fff;
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  font-size: 1.4rem;
  transition: all 0.2s ease-in-out 0s;
  margin-top: 2rem;
  display: inline-block;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.7px;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 19px;
}
.btn i {
  padding-right: 15px;
  color: #fff;
}
.btn:hover {
  transform: translateX(5px);
}
.btn--black {
  background: #242625;
  color: #fff;
}
.btn--white {
  background: #fff;
  border: 1px solid #fff;
  color: #E9511C;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--secondary {
  background-color: #F3913B;
  color: white;
  border: 1px solid #F3913B;
}
.btn--secondary:hover {
  background-color: #fff;
  color: #E9511C;
}
.btn--small {
  font-size: 12px;
  padding: 10px 20px;
}
.btn--big {
  font-size: 16px;
  padding: 20px 60px;
}

.icon--service {
  max-width: autos;
  max-height: 80px;
}

p, ul, li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
}

a {
  color: #E9511C;
  line-height: 1.5;
}

code {
  background: #ECEFF1;
}

.faq__content {
  width: 50%;
}

.faq__title {
  margin-bottom: 20px;
}

.faq__desc {
  max-width: 400px;
}

.faq__cta a + a {
  margin-left: 1rem;
}

.praticals__list {
  width: 100%;
}
.praticals__list ul {
  list-style: initial !important;
  margin: 0px 0px;
}
.praticals__list ol {
  list-style: decimal !important;
}
.praticals__list li {
  line-height: 30px;
  position: relative;
}
.praticals__list em {
  font-style: normal;
  color: #E9511C;
}

.praticals__text {
  width: 50%;
  padding: 0px 0px;
}

.praticals__item {
  overflow: hidden;
  transition: height 300ms ease-in-out;
  margin-bottom: 0px;
  border-bottom: 1px solid rgba(1, 1, 1, 0.25);
}
.praticals__item:last-child {
  margin-bottom: 0;
}
.praticals__title, .praticals__content {
  padding: 15px 0;
}
.praticals__title {
  display: flex;
  position: relative;
  list-style: none;
  outline: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  transition: color 300ms ease-in-out;
  padding-left: 0;
  color: #3D4543;
  line-height: 1.4;
  padding-right: 0;
  padding-right: 5rem;
  justify-content: space-between;
}
[open] > .praticals__title {
  color: #E9511C;
}
.praticals__title:hover {
  color: #E9511C;
}
.praticals__title::-webkit-details-marker {
  display: none;
}
.praticals__title:before, .praticals__title:after {
  content: "";
  position: absolute;
}
.praticals__title:before {
  right: 20px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 16px;
  background: #E9511C;
  border-radius: 5px;
}
.praticals__title:after {
  right: 27px;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  width: 2px;
  margin-left: -1px;
  background: #E9511C;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}
[open] .praticals__title:after {
  opacity: 0;
  transform: translateY(25%);
}
.praticals__heading {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 300px;
}
.praticals__desc {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
  margin: 20px 0px;
}
.praticals__content {
  padding-top: 0;
  max-width: 90%;
}
.praticals__content p + p {
  margin-top: 15px;
}
.praticals__cta {
  text-align: center;
  margin-top: 50px;
}
.praticals__cta + a {
  margin-left: 1rem;
}

#faq .container {
  display: flex;
  flex-direction: row;
}

#faq .heading {
  width: 30%;
  padding-right: 5%;
}

#faq .praticals__list {
  width: 70%;
}

@media (max-width: 1024px) {
  .faq__content {
    width: 100%;
    text-align: center;
  }

  .faq__desc {
    margin: 0 auto;
  }

  #faq .container {
    flex-direction: column;
  }

  #faq .praticals__list {
    width: 100%;
  }

  #faq .heading {
    width: 100%;
  }

  .praticals__list {
    width: 100%;
  }

  .praticals__text {
    width: 100%;
  }

  .faq__cta {
    text-align: left;
    margin-top: 2rem;
  }
  .faq__cta .btn {
    margin-left: 0;
    margin-top: 1rem;
  }

  .faq__title {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .praticals__text {
    padding: 0px 5%;
  }

  .praticals__title {
    font-size: 15px;
  }

  .praticals__content {
    font-size: 13px;
    line-height: 1.6;
  }
}
.referral__block {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.referral__block + .referral__block {
  margin-top: 8rem;
}
.referral__block:nth-child(even) {
  flex-direction: row-reverse;
}

.referral__content {
  position: relative;
  width: 55%;
  padding: 4rem 0;
}
.referral__content h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 700px;
  line-height: 1.6;
}
.referral__content h3, .referral__content h4, .referral__content h5, .referral__content h6 {
  margin-bottom: 1rem;
}
.referral__content h3 {
  color: #E9511C;
  font-size: 1.5rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.referral__content h4 {
  color: #F3913B;
  font-weight: 400;
  font-size: 16px;
}
.referral__content p {
  line-height: 1.8;
  font-size: 1.5rem;
  margin: 1rem 0;
}
.referral__content p + h3 {
  margin-top: 4rem;
}
.referral__content ul {
  margin-bottom: 20px;
  list-style-type: disc;
  margin-left: 2rem;
  padding: 1rem 0;
}
.referral__content li {
  line-height: 1.7;
  font-size: 1.6rem;
}

.referral__illustration {
  width: 40%;
  text-align: center;
}

.referral__image {
  position: relative;
  width: 100%;
  height: 90%;
  border-radius: 6px;
}
.referral__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@media (max-width: 1024px) {
  .referral__block {
    width: 100%;
    margin: 0px;
  }
  .referral__block + .seo__block {
    margin-top: 40px;
  }

  .referral__content h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.hero {
  position: relative;
  height: 90vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  max-height: 70rem;
}
.hero:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(1, 1, 1, 0.5);
}

.hero__container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 0;
  z-index: 5;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* Ratio 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  /* Ratio 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__content {
  color: white;
}

.hero__title {
  font-size: 3.1rem;
  line-height: 40px;
}

.hero__shop {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__shop li {
  text-transform: uppercase;
  margin-left: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.7px;
}
.hero__shop li:before {
  content: "";
  height: 10px;
  width: 1px;
  background-color: #E9511C;
  display: inline-block;
  margin-right: 1rem;
}
.hero__shop li:first-child {
  margin-left: 0;
}
.hero__shop li:first-child:before {
  display: none;
}

.hero__cta {
  display: flex;
  flex-direction: column;
}
.hero__cta a {
  align-self: flex-start;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .hero {
    height: 80vh;
  }

  .hero__content {
    max-width: 600px;
  }

  .hero__title {
    font-size: 3.8rem;
    line-height: 1.4;
  }
}
.categories__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.categories__item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.categories__item:before {
  content: "";
  padding-bottom: 140%;
  display: block;
  border-radius: 5px;
}
.categories__item:hover .categories__illustration {
  transform: scale(1.03);
}

.categories__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
}

.categories__illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.5s ease-in-out 0s;
}

.categories__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 5px;
}
.categories__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(170deg, #3d4543 0%, rgba(61, 69, 67, 0.5) 20%, rgba(61, 69, 67, 0) 50%);
  border-radius: 6px 6px 0px 0px;
}

.categories__name {
  position: relative;
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  transition: all 0.2s ease-in-out 0s;
  z-index: 2;
  text-align: left;
}
.categories__name em {
  display: block;
  font-style: normal;
  font-weight: 600;
}

.categories__desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 90%;
  margin-inline: auto;
}

.categories__buttons {
  align-self: end;
}

.categories__buttons .btn--arrow {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  border-radius: 5px;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.categories__buttons .btn--arrow img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.categories__arrows {
  margin-bottom: 3rem;
  text-align: right;
}

@media (min-width: 1024px) {
  .categories__item {
    margin-right: 1rem;
  }

  .categories__buttons .btn--arrow {
    height: 4.5rem;
    width: 4.5rem;
  }

  #categories .slick-dots {
    bottom: -10%;
  }

  .categories__cta {
    margin-top: 5rem;
    text-align: center;
  }

  .categories__header {
    align-self: start;
  }

  .categories__name {
    font-weight: 300;
    font-size: 2.4rem;
    text-align: left;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }
}
@media (max-width: 1024px) {
  .categories__list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .categories__list {
    gap: 1rem;
  }

  .categories__item {
    margin-right: 1rem;
  }

  .categories__item:before {
    padding-bottom: 150%;
  }

  .categories__content {
    padding: 1.5rem;
    text-align: left;
    align-items: start;
  }

  .categories__name {
    font-size: 1.5rem;
    max-width: 90%;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
  }

  .categories__desc {
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
    display: none;
  }

  .categories__buttons {
    align-self: end;
    margin-right: 0;
  }
  .categories__buttons .btn {
    display: none;
  }

  .categories__buttons .btn--arrow {
    background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
    border-radius: 5px;
    padding: 0.8rem;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
  .categories__buttons .btn--arrow img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  .categories__cta {
    padding-top: 6rem;
  }

  .categories__cta .btn--white {
    display: none;
  }

  .categories__cta .btn--arrow {
    background: #fff;
    border-radius: 5px;
    padding: 0.8rem;
    height: 4rem;
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
  }
  .categories__cta .btn--arrow img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}
.products__card {
  border-radius: 10px;
  border: 1px solid rgba(1, 1, 1, 0.5);
  margin-right: 1rem;
}

.products__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  height: 2rem;
  width: auto;
  max-width: 7rem;
}

.products__illustration {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px 6px 0px 0px;
}

.products__image {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 6px 6px 0px 0px;
  overflow: hidden;
}
.products__image:hover img {
  transform: scale(1.01);
}
.products__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 8px 8px 0px 0px;
}

.products__link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  height: 3rem;
  width: 3rem;
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  border-radius: 6px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products__link img {
  height: 100%;
  width: 100%;
}

.products__content {
  padding: 1rem;
}
.products__content .mark {
  font-weight: 500;
}
.products__content .title {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0.5rem 0;
}
.products__content .taxonomy {
  color: #E9511C;
  border: 1px solid #E9511C;
  padding: 0.6rem 1.2rem;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.products__content .price {
  font-weight: 500;
  display: block;
}
.products__content .btn {
  font-size: 1rem;
  padding: 0.2rem 1rem;
}

.products__btn {
  background-color: #242625;
  text-align: center;
  border-radius: 0px 0px 6px 6px;
  transition: all 0.2s ease-in-out 0s;
}
.products__btn a {
  color: #fff;
  display: block;
  padding: 1rem 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.7px;
}
.products__btn:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .products__card {
    margin-right: 1rem;
  }

  #products .slick-dots {
    bottom: -10%;
  }

  #products .products__cta {
    margin-top: 6rem;
    text-align: center;
  }

  .products__illustration {
    aspect-ratio: 7/5;
  }

  .products__content {
    padding: 2rem;
  }

  .products__content .price {
    display: block;
  }
}
@media (max-width: 768px) {
  .products__illustration {
    aspect-ratio: 16/9;
  }
}
.products-slider {
  margin-left: calc(150/1680 * 100%);
}
.products-slider .slick-list {
  padding-left: 0 !important;
}

.products-slider__item {
  position: relative;
  margin-right: 1rem;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.products-slider__item:before {
  content: "";
  padding-bottom: 140%;
  display: block;
}

.products-slider__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  padding: 1.2rem;
}
.products-slider__wrapper:hover .products-slider__content {
  transform: translateX(5px);
}
.products-slider__wrapper:hover .products-slider__btn {
  transform: scale(1.1);
}
.products-slider__wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(170deg, #3d4543 0%, rgba(61, 69, 67, 0.5) 20%, rgba(61, 69, 67, 0) 50%);
  border-radius: 6px 6px 0px 0px;
}

.products-slider__content {
  z-index: 2;
  transition: all 0.2s ease-in-out 0s;
}

.products-slider__mark {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.7px;
}

.products-slider__title {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.7px;
  font-weight: 700;
  z-index: 2;
}
.products-slider__title em {
  font-weight: 800;
  font-style: normal;
}

.products-slider__btn {
  height: 3rem;
  width: 3rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  color: #fff;
  align-self: flex-start;
  font-weight: 700;
  line-height: 19px;
  margin-left: auto;
  transition: all 0.2s ease-in-out 0s;
}

@media (min-width: 1024px) {
  .products-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .products-slider__item:before {
    padding-bottom: 120%;
  }

  .products-slider__wrapper {
    padding: 2rem;
  }

  .products-slider__mark {
    font-size: 1.8rem;
  }

  .products-slider__title {
    font-size: 2rem;
  }
}
#page-header + #products {
  padding: 0;
}

.products__list {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .products__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .products__list {
    grid-template-columns: 1fr;
  }
}
.blog-card__illustration {
  position: relative;
  width: 100%;
  height: 20rem;
  border-radius: 6px 6px 0px 0px;
}
.blog-card__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog-card__content {
  background-color: #F0F0F0;
  padding: 2rem;
  border-radius: 0px 0px 6px 6px;
}

.blog-card__date {
  font-size: 1.2rem;
}

.blog-card__title {
  color: #3D4543;
  font-size: 1.7rem;
  margin: 1rem 0;
}

.blog-card__link {
  color: #E9511C;
  font-weight: 700;
  border-bottom: 1px solid #E9511C;
}
.blog-card__link:hover {
  color: #3D4543;
  font-weight: 700;
  border-bottom: 1px solid #3D4543;
}

.blog-card__author {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-card__author .illustration {
  position: relative;
  height: 6rem;
  width: 6rem;
  object-fit: cover;
  border-radius: 50%;
}

.blog-card__text {
  margin-left: 2rem;
}
.blog-card__text p {
  font-size: 1.1rem;
}

.blog-card__text .name {
  line-height: 1.2;
  color: #E9511C;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}

.shop__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.shop__illustration {
  position: relative;
  overflow: hidden;
}
.shop__illustration img {
  transform: scale(1.3) translateX(-20%);
}

.shop-card {
  display: grid;
  grid-template-columns: 1fr 4rem;
  gap: 1rem;
  aspect-ratio: 7/5;
}

.shop-card__content {
  position: relative;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
}

.shop-card__content a {
  display: inline-block;
  align-self: flex-start;
}

.shop-card__title {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.shop-card__title em {
  display: block;
  font-weight: 600;
  font-style: normal;
}

.shop-card__btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}

.shop-card__btn a {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  border-radius: 6px;
}
.shop-card__btn a:last-child {
  background: #242625;
}

/* SHOP SLIDER */
.shop-slider {
  margin-left: calc(150/1680 * 100%);
}
.shop-slider .slick-list {
  padding-left: 0 !important;
}

.shop-slider__item {
  position: relative;
  margin-right: 1rem;
  border-radius: 6px;
}
.shop-slider__item:before {
  content: "";
  padding-bottom: 80%;
  display: block;
}

.shop-slider__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  padding: 1.2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.shop-slider__wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(170deg, #3d4543 0%, rgba(61, 69, 67, 0.5) 20%, rgba(61, 69, 67, 0) 50%);
  border-radius: 6px 6px 0px 0px;
}

.shop-slider__title {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.7px;
  z-index: 2;
}
.shop-slider__title em {
  font-weight: 800;
  font-style: normal;
}

.shop-slider__link {
  color: #fff;
  border-bottom: 1px solid #fff;
  align-self: flex-start;
  font-weight: 700;
  line-height: 19px;
}

.shop-slider__cta {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .shop-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .shop-slider__item:before {
    padding-bottom: 120%;
  }

  .shop-slider__wrapper {
    padding: 2rem;
  }

  .shop-slider__title {
    font-size: 2.4rem;
  }

  .shop__list {
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0rem;
  }

  .shop__illustration {
    width: calc(25% - 1rem);
    background-color: rgba(36, 38, 37, 0.07);
    border-radius: 10px;
  }
  .shop__illustration img {
    transform: scale(0.8) translateX(-25%);
  }

  .shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4/5;
    width: calc(33.33% - 1rem);
  }

  .shop-card__content {
    height: 100%;
  }

  .shop-card__btn {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
  }

  #shop .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }

  #shop .heading {
    width: 100%;
    flex: 1 0 100%;
    /* Prendre toute la largeur disponible */
    justify-self: stretch;
    max-width: 100%;
  }
  #shop .heading > * {
    max-width: 600px;
  }

  .shop__cta.desktop {
    margin-bottom: 2rem;
    margin-left: 1rem;
    display: inline-block;
  }
}
@media (max-width: 1400px) {
  .shop__illustration {
    display: none;
  }

  .shop__list {
    width: 100%;
    margin-top: 1rem;
  }
}
#banner {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  padding-bottom: 100px !important;
}

.banner__cta {
  display: flex;
  flex-direction: column;
}
.banner__cta a {
  margin-top: 0;
  align-self: flex-start;
}
.banner__cta a + a {
  margin-top: 1rem;
}

.banner__logo {
  position: absolute;
  bottom: -30%;
  right: 0;
  z-index: 10;
}

.projects__item {
  position: relative;
  margin: 0 10px;
}

.projects__illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 7/5;
  border-radius: 6px;
}
.projects__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.projects__filter {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.projects__filter .filter-button {
  border: none;
  background: #3D4543;
  margin: 0.5rem;
  color: #fff;
  font-weight: 400;
  border-radius: 6px;
  line-height: 19px;
  padding: 8px 15px;
  letter-spacing: 0.7px;
  font-size: 1.4rem;
  font-family: "Roboto";
  cursor: pointer;
}
.projects__filter .filter-button.active {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
}

.projects__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.projects__gallery .projects__item {
  margin: 0;
}

.projects__image {
  position: relative;
  border-radius: 10px;
}
.projects__image:before {
  content: "";
  padding-bottom: 80%;
  display: block;
}
.projects__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}

.projects__arrows {
  text-align: right;
  margin-bottom: 1rem;
}

.projects__cta {
  margin-top: 4rem;
}

#projects .slick-list {
  margin: 0 -10px;
}

@media (max-width: 1024px) {
  .projects__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .projects__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reviews__item {
  background-color: #F0F0F0;
  border-radius: 6px;
  padding: 2rem;
}

.reviews__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.reviews__author .illustration {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  object-fit: cover;
}
.reviews__author .text {
  line-height: 1;
  margin-left: 2rem;
  padding-top: 1rem;
}
.reviews__author .text .name {
  font-weight: 500;
  line-height: 0.7;
}
.reviews__author .text .date {
  font-weight: 400;
  opacity: 0.4;
}
.reviews__author .google {
  margin-left: auto;
  height: 2.5rem;
  width: 2.5rem;
}

.reviews__rating {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.reviews__rating li {
  height: 1.5rem;
  width: 1.5rem;
  fill: #E9511C;
}
.reviews__rating li + li {
  margin-left: 0.2rem;
}

.reviews__text p {
  line-height: 19px;
}
.reviews__text .more {
  font-weight: 700;
  color: #3D4543;
}

.reviews__arrows {
  margin-bottom: 1rem;
  text-align: right;
}

.reviews__cta {
  margin-top: 4rem;
}
.reviews__cta.mobile {
  display: none;
}

@media (min-width: 1024px) {
  .reviews__item {
    margin-right: 1rem;
  }

  #reviews .container {
    display: flex;
    flex-direction: row;
  }

  .reviews__header {
    width: 30%;
    padding-right: 5%;
  }

  .reviews__list {
    width: 70%;
  }

  .reviews__arrows {
    position: absolute;
    top: -3rem;
    right: 0;
  }

  .reviews__cta .btn {
    margin-top: 0rem;
  }
}
.perks__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.perks__item {
  background-color: #F0F0F0;
  padding: 3.5rem 2rem 6rem;
}

.perks--contact {
  display: none;
  background-color: #242625;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.perks__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #E9511C;
  letter-spacing: 0.7px;
  margin-bottom: 0.8rem;
}
.perks__title em {
  font-weight: 500;
  font-style: normal;
}

.perks__text {
  font-size: 1.4rem;
  line-height: 25px;
  color: #242625;
}

@media (min-width: 1024px) {
  .perks__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .perks--contact {
    display: flex;
  }
  .perks--contact .perks__title {
    color: #fff;
    text-align: center;
  }

  .perks__title em {
    display: block;
  }

  .perks__text {
    line-height: 1.6;
  }
}
.team__illustration {
  position: relative;
  aspect-ratio: 4/3;
}
.team__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.team__cta {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  #team .container {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .team__illustration {
    aspect-ratio: 4/3;
    width: 50%;
  }

  #team .heading {
    width: 50%;
    padding: 4rem 0 4rem 10rem;
  }
}
#gallery {
  height: 60vh;
  margin-top: 4rem;
}

.gallery__list {
  position: relative;
  height: 100%;
  width: 100%;
}

.gallery__illustration {
  position: relative;
  height: 100%;
  border-radius: 6px;
}
.gallery__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@media (min-width: 1024px) {
  #gallery {
    width: calc(100% - 300/1680*100%);
    margin: 10rem calc(150/1680*100%) 0rem;
  }
}
.stores__illustration {
  position: relative;
  height: 25rem;
  border-radius: 6px;
}
.stores__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.stores__buttons {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.stores__buttons a {
  display: block;
  text-align: center;
  margin-top: 0rem;
}

.stores__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.stores__item {
  width: 100%;
  position: relative;
  background-color: #F0F0F0;
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
}

.stores__title {
  font-size: 2rem;
}
.stores__title em {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 800;
}

/* GALLERY */
.stores__arrows {
  text-align: right;
  margin: 2rem 0;
}
.stores__arrows .slick-prev, .stores__arrows .slick-next {
  background-color: #F0F0F0;
}

.stores-gallery .slick-prev {
  background-color: #F0F0F0;
  position: absolute;
  top: -2.5rem;
  right: 6rem;
}
.stores-gallery .slick-next {
  background-color: #F0F0F0;
  position: absolute;
  top: -2.6rem;
  right: 0;
}

.stores-gallery {
  height: 20rem;
  width: 100%;
  margin-bottom: 6rem;
  margin-top: 4rem;
}

.stores-gallery__item {
  position: relative;
  height: 20rem;
  border-radius: 6px;
}
.stores-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* CONTACT */
.stores-contact {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 4rem 0;
}
.stores-contact .button {
  display: inline-flex;
  align-self: flex-start;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #E9511C;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  line-height: 19px;
  margin: 0.5rem 0;
}
.stores-contact .link {
  display: none;
  padding: 0.5rem 0;
}
.stores-contact .link:hover {
  color: #3D4543;
}

/* TEAM */
.stores-team {
  margin: 2rem 0;
}

.stores-team__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.7px;
  margin-bottom: 2rem;
  color: #242625;
}

.stores-team__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stores-team__item img {
  position: relative;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.stores-team__item .name {
  text-transform: uppercase;
  color: #E9511C;
  font-weight: 500;
  font-size: 1.5rem;
}

.stores-team__item .function {
  color: #3D4543;
  font-size: 1.1rem;
}

/* CONTENT */
.stores__content {
  font-size: 1.5rem;
  color: #242625;
  line-height: 25px;
}

/* HOURS */
.stores-hours .button {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #E9511C;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  line-height: 19px;
  margin: 1rem 0;
}
.stores-hours .link {
  color: #E9511C;
  margin-top: 1rem;
}

.stores-hours__list {
  display: none;
}

@media (min-width: 1024px) {
  .stores__illustration {
    display: none;
  }

  .stores__buttons {
    display: none;
  }

  .stores__list {
    justify-content: space-between;
  }

  .stores__item {
    width: calc(33.33% - 2rem);
  }
}
#content-image .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: stretch;
}

#content-image + #content-image .container {
  flex-direction: row;
}
#content-image + #content-image .content__text {
  width: 50%;
  padding-right: 6rem;
  padding-left: 0;
}

.content__text {
  width: 50%;
  padding-left: 6rem;
  display: flex;
  align-items: center;
}
.content__text h2 {
  color: #E9511C;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  margin-bottom: 2rem;
}
.content__text p {
  margin-bottom: 2rem;
}

.content__illustration {
  width: 50%;
  position: relative;
  border-radius: 6px;
  height: 45rem;
}
.content__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.content__buttons {
  margin-top: 1rem;
}
.content__buttons a {
  margin-top: 1rem;
}

/* PRATICALS */
#content-image .praticals__list, #content .praticals__list {
  margin-top: 2rem;
}
#content-image .praticals__item, #content .praticals__item {
  background-color: #F0F0F0;
  border-radius: 6px;
  border-bottom: none;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

#content .container--stretch {
  max-width: 800px;
  margin: 0 auto;
}

#content .content__text {
  width: 100%;
  padding: 0;
  flex-direction: column;
}

.marks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#marks-main {
  padding: 0;
}

@media (max-width: 1024px) {
  .marks__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .marks__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.page-header__container {
  position: relative;
}

.page-header__illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 6px;
}
.page-header__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.page-header__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6rem 6%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
}

.page-header__title {
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: 1.8rem;
  max-width: 80%;
}

/* TRUST */
.page-header__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2rem 4rem;
  gap: 4rem;
}

.page-header__trust .item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page-header__trust .item img {
  height: 4rem;
}
.page-header__trust .item p {
  font-size: 1.6rem;
  margin-left: 2rem;
  line-height: 1.2;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .page-header__trust {
    grid-template-columns: 1fr 1fr;
  }

  .page-header__subtitle {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .page-header__trust {
    padding: 2rem 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 2rem;
  }
}
.author {
  padding-bottom: 100px;
}

.author__content {
  border: 1px solid rgba(1, 1, 1, 0.3);
  border-radius: 5px;
  padding: 2rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.author__content .title {
  font-size: 14px;
  text-transform: uppercase;
}

.author__header {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}
.author__header img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border-radius: 50%;
}
.author__header .title {
  text-transform: uppercase;
  font-size: 12px;
}
.author__header .name {
  font-weight: 600;
  color: #E9511C;
}
.author__header .function {
  font-size: 12px;
  line-height: 1.4;
}

.author__text p {
  font-size: 13px;
  line-height: 1.6;
}

/* HEADER */
.header {
  position: relative;
  width: 100%;
  box-shadow: 0px 0px 6px rgba(1, 1, 1, 0.16);
}

.breadcrumbs {
  padding-top: 4rem;
  margin-bottom: -4rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 99;
}
.breadcrumbs a {
  position: relative;
  padding-left: 3rem;
  line-height: 1;
  color: #3D4543;
  font-size: 1.1rem;
}
.breadcrumbs a:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  display: block;
  height: 1rem;
  width: 2rem;
  background-image: url("../img/arrow-primary.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(180deg) translateY(50%);
}
.breadcrumbs span {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  font-size: 1.1rem;
}
.breadcrumbs span:before {
  content: "";
  height: 0.4rem;
  width: 0.4rem;
  display: inline-block;
  background-color: #E9511C;
  border-radius: 50%;
  margin-right: 1rem;
}
.breadcrumbs span:first-child {
  padding-left: 0;
}
.breadcrumbs span:first-child:before {
  display: none;
}

.section {
  position: relative;
  padding-top: 100px;
}
.section + .section {
  padding-top: 100px;
}
.section + .section--gradient {
  margin-top: 100px;
}
.section + #banner {
  margin-top: 100px;
}
.section--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--columns {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
.section--grey {
  background-color: #F0F0F0;
}
.section--gradient {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  padding-bottom: 100px !important;
}
.section--secondary {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  color: #fff;
}
.section--secondary:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  opacity: 0.05;
  background-size: 50%;
  background-repeat: repeat;
  background-image: url("../img/pattern-bg.png");
  z-index: 1;
}

.wrapper {
  width: calc(1380/1680 * 100%);
}
.wrapper--centered {
  margin-left: auto;
  margin-right: auto;
}
.wrapper--accent {
  background-color: #F0F0F0;
  padding-left: calc(150/1680 * 100%);
  padding-right: calc(150/1680 * 100%);
}
.wrapper--white {
  background-color: #fff;
  padding-left: calc(150/1680 * 100%);
  padding-right: calc(150/1680 * 100%);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.column {
  display: flex;
  flex-wrap: wrap;
}
.column--free {
  display: flex;
}
.column--spaced {
  justify-content: space-between;
}
.column--centered {
  align-items: center;
}
.column--reversed {
  flex-direction: row-reverse;
}
.column--equal {
  align-items: stretch;
}
.column--centered-w {
  justify-content: center;
}
.column--half {
  width: 45%;
}
.column--third {
  width: 30%;
}
.column--fourth {
  width: 23%;
}

.container {
  width: calc(1380/1680 * 100%);
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.container--stretch {
  max-width: 1000px;
}

.list--inline li {
  display: inline-block;
}

@media (max-width: 1024px) {
  .section {
    padding-top: 50px;
  }
  .section + .section {
    padding-top: 50px;
  }
}
/* FORM */
.form__title {
  font-size: 18px;
  font-weight: 700;
  color: #E9511C;
  margin-bottom: 2rem;
  max-width: 60%;
}

#gform_confirmation_message_1 {
  margin-bottom: 40px;
}

#gform_1 .gform_fields {
  gap: 1rem;
}

#gform_1 .gform-field-label {
  color: #fff;
  opacity: 1;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
}

#gform_1 .gfield_label {
  color: #242625;
  opacity: 1;
  font-size: 1.5rem;
  font-weight: 500;
}

#gform_1 .gfield_radio {
  gap: 0.5rem;
}

#gform_1 input {
  width: 100%;
  border: 1px solid #fff;
  padding: 1rem 1.5rem;
  font-family: "Roboto", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.2rem;
  color: #242625;
}
#gform_1 input::placeholder {
  opacity: 0.5;
}

#gform_1 textarea {
  width: 100%;
  border: 1px solid #fff;
  padding: 1rem 1.5rem;
  font-family: "Roboto", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.2rem;
  color: #242625;
}
#gform_1 textarea::placeholder {
  opacity: 0.5;
}

#gform_1 .gfield-choice-input {
  width: auto;
  border: 1px solid #fff;
  padding: 0;
  margin: 0;
  background-color: initial;
  cursor: default;
  appearance: auto;
  box-sizing: border-box;
  margin: 2px;
  padding: initial;
  border: initial;
}
#gform_1 .gfield-choice-input:before {
  background-color: #E9511C;
  border: 1px solid #E9511C;
}

#gform_1 select {
  border-radius: 6px;
  border: 1px solid white;
}

#gform_1 .gform_button {
  width: auto;
  border: 1px solid #242625;
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  background: #242625;
  font-family: "Roboto", sans-serif;
  padding: 1rem 2rem;
  display: block;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.7px;
  border-radius: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#gform_1 .gform_button:hover {
  background-color: transparent;
  color: black;
}

.gform_required_legend {
  display: none !important;
}

#input_1_10 {
  display: block;
  width: 100%;
  margin: 10px 0px;
}

#input_1_10 label {
  max-width: 100%;
}

#input_1_10.gchoice {
  display: inline-block;
  margin-left: 20px;
}

.gform_heading {
  display: none;
}

.gform_title {
  color: #fff;
  font-size: 2.4rem;
  line-height: 32px;
  margin-bottom: 2rem;
}

.gchoice {
  display: inline-block;
  margin-left: 20px;
}

.gchoice:first-child {
  margin-left: 0px;
}

.footer {
  background: #fff;
  position: relative;
  padding: 8rem 0 4rem;
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__logo {
  display: block;
  margin-right: auto;
  max-width: 100%;
  height: 60px;
}

.footer__part {
  position: relative;
  border-bottom: 1px solid #E9511C;
  padding-bottom: 3rem;
}
.footer__part:first-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #3D4543;
}

.footer__text {
  color: white;
}
.footer__text h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__text p {
  color: #BCBCBC;
  font-weight: 300;
}

/* MENU FOOTER */
.menu--footer {
  max-width: 200px;
}
.menu--footer a {
  position: relative;
  color: rgba(1, 1, 1, 0.6);
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 1;
  display: block;
  padding: 0.5rem 0;
}
.menu--footer a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 1.5rem;
  background-image: url("../img/arrow-menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease-in-out 0s;
}
.menu--footer a:hover:after {
  right: -5px;
}

/* CONTACT */
.footer-contact__btn {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid #E9511C;
  line-height: 19px;
  padding: 0.2rem 0;
  display: table;
  margin-bottom: 1rem;
}

.footer-contact__link {
  display: none;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: #242625;
}
.footer-contact__link:hover {
  color: #E9511C;
}

/* SHOP */
.footer-shop__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 0rem;
  max-width: 100%;
  overflow: hidden;
}

.footer-shop__item {
  width: calc(33% - 0.5rem);
  display: flex;
  flex-direction: column;
}
.footer-shop__item .title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #3D4543;
  letter-spacing: 0.7px;
  margin-bottom: 1rem;
}
.footer-shop__item .title em {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 20px;
  font-style: normal;
  display: block;
}
.footer-shop__item .link {
  display: none;
  line-height: 1.2;
  margin: 0.7rem 0;
  color: #242625;
}
.footer-shop__item .link:hover {
  color: #E9511C;
}
.footer-shop__item .button {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid #E9511C;
  line-height: 19px;
  padding: 0.2rem 0;
  display: flex;
  align-self: baseline;
  margin-bottom: 1rem;
}

/* SOCIAL */
.footer-social {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin: 1rem 0rem;
}
.footer-social a {
  display: flex;
  align-items: end;
  justify-content: end;
}
.footer-social a + a {
  margin-left: 1.5rem;
}
.footer-social i {
  color: #E9511C;
  font-size: 2.6rem;
}

/* COPYRIGHT */
.footer__copyright {
  padding-top: 3rem;
  background-color: #fff;
  color: #fff;
}
.footer__copyright li {
  color: rgba(1, 1, 1, 0.6);
  font-size: 1.2rem;
  margin: 0.3rem 0;
}
.footer__copyright li p {
  font-size: 1.2rem;
}
.footer__copyright li a {
  color: rgba(1, 1, 1, 0.6);
  font-size: 1.2rem;
}
.footer__copyright li a:hover {
  color: #E9511C;
}
.footer__copyright li p a {
  color: #E9511C;
  font-weight: 700;
}
.footer__copyright li p a:hover {
  color: #242625;
}

@media (min-width: 1024px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }

  .footer-shop__list {
    gap: 2rem;
  }

  .footer-shop__item .title em {
    display: block;
  }

  .footer__part {
    border-bottom: 0;
  }

  .menu--footer a {
    min-width: 200px;
  }

  .footer-shop__item {
    display: flex;
    flex-direction: column;
  }
  .footer-shop__item .button {
    align-self: flex-start;
  }

  .footer__copyright {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .footer-copyright__item {
    position: relative;
    margin-left: 1rem !important;
    padding-left: 1.5rem;
  }
  .footer-copyright__item:first-child {
    margin-left: 0;
  }
  .footer-copyright__item:first-child:before {
    display: none;
  }
  .footer-copyright__item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 0.4rem;
    width: 0.4rem;
    background-color: #E9511C;
    border-radius: 50%;
    display: inline-block;
    margin-right: 1rem;
  }
}
.slick-track,
.slick-list {
  height: 100%;
  width: 100%;
}

.slick-arrow {
  display: inline-block !important;
  transition: all 0.2s ease-in-out 0s;
}
.slick-arrow:hover {
  opacity: 0.5;
}

.slick-next {
  position: relative;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
  margin-left: 1rem;
}
.slick-next:before {
  content: "";
  background-image: url("../img/arrow-black.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
}

.slick-prev {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-prev:before {
  content: "";
  background-image: url("../img/arrow-black.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  transform: rotate(180deg);
}

.slick-dots {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li + li {
  margin-left: 10px;
  margin-top: 0;
}
.slick-dots button {
  background-color: #242625;
  cursor: pointer;
  border: 1px solid #242625;
  text-indent: -999999px;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
}
.slick-dots button:focus {
  outline: none;
}
.slick-dots .slick-active button {
  width: 10px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: none;
  background-image: url("../img/icon-dot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.products__list {
  margin: 2rem 0;
}

.products__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.products-sidebar {
  width: calc(25% - 4rem);
  border: 1px solid #3D4543;
  border-radius: 6px;
  padding: 2rem 2.5rem;
}

.products-list {
  width: 75%;
}

.products__shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}
.products__shop .products__card {
  margin-right: 0;
}

/* PAGINATION */
.products__pagination {
  width: 100%;
  margin-top: 4rem;
  text-align: center;
}

/* SEARCH */
.searchandfilter {
  margin: 0rem 0 1rem;
}

.sf-field-search label {
  width: 100%;
  display: block;
  font-size: 1.6rem;
}

.sf-field-search input {
  width: 95%;
  display: block;
  padding: 1rem 1.4rem;
  border-radius: 6px;
  border: 1px solid rgba(1, 1, 1, 0.5);
}

@media (max-width: 768px) {
  .products-sidebar {
    display: none;
  }

  .products__card {
    display: flex;
    flex-direction: column;
  }

  .products__shop {
    margin-bottom: 2rem;
  }

  .products__btn {
    margin-top: auto;
  }

  .products-list {
    width: 100%;
  }

  .products__shop {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.menu {
  position: relative;
  width: 100%;
  z-index: 999;
}

.menu--container {
  padding: 20px calc(150/1680 * 100%);
}

.menu--header {
  margin-left: auto;
}

.menu--logo {
  height: 100%;
}
.menu--logo img {
  text-align: center;
  width: 140px;
  margin-right: auto;
}

.menu--buttons {
  margin-left: 4rem;
}
.menu--buttons a {
  margin-top: 0;
  font-size: 1.4rem;
}
.menu--buttons a + a {
  margin-left: 1rem;
}

.menu__list {
  width: 100%;
  display: inline-block;
}
.menu__list li {
  position: relative;
  display: inline-block;
}
.menu__list li + li {
  margin-left: 25px;
}
.menu__list a {
  display: block;
  color: #242625;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.7rem;
  padding: 20px 0px;
}
.menu__list a:hover, .menu__list a:active, .menu__list a.active {
  color: #E9511C;
}
.menu__list .menu--button a {
  background-color: #E9511C;
  padding: 30px 35px;
  margin-left: 5%;
  color: white;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.menu__list .menu--button a:hover {
  color: white;
  transform: scale(1.03);
}

.menu__list .menu--button.current-menu-item a:before {
  display: none;
}

.unclickable > a {
  pointer-events: none !important;
}

.button-shop a {
  padding: 8px 15px;
  color: #fff;
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  font-size: 1.4rem;
  transition: all 0.2s ease-in-out 0s;
  margin-top: 2rem;
  display: inline-block;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.7px;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 19px;
}

/* MOBILE MENU */
.button--mobile {
  display: none;
}

/* MENU BURGER */
.menu--burger {
  position: relative;
  text-align: right;
  display: none;
  z-index: 1022;
  cursor: pointer;
  margin-left: 2rem;
}

.menu--burger div {
  width: 30px;
  height: 2px;
  margin: 5px;
  background: #E9511C;
  transition: all 0.5s ease-in;
  border-radius: 10px;
}

.menu--burger.active div {
  background: #E9511C;
}

.menu--burger.active .line1 {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu--burger.active .line2 {
  opacity: 0;
}

.menu--burger.active .line3 {
  transform: rotate(-45deg) translate(5px, -6px);
}

.menu--burger {
  display: none;
}

.action--close {
  position: fixed;
  z-index: 100;
  top: 40px;
  right: 20px;
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(50px) translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
@media (max-width: 1500px) {
  .menu--container {
    padding: 20px calc(50/1680 * 100%);
  }
}
@media (max-width: 1320px) {
  .menu--header .menu__list {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    background: #fff;
    padding: 80px 40px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: right 0.5s ease-in;
    z-index: 99;
    overflow-y: scroll;
  }

  .menu__list a {
    color: #3D4543;
    text-align: center;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 400;
    margin-left: 0;
    margin-right: 0;
    padding: 0.6rem 1rem;
    border-radius: 6px;
  }
  .menu__list a:hover {
    background-color: #F0F0F0;
  }

  .menu--header .menu__list > li {
    display: block;
    text-align: right;
    padding-bottom: 0;
    margin-left: 0;
    width: 100%;
    margin-bottom: 1rem;
  }
  .menu--header .menu__list > li a {
    width: 100%;
    text-align: right;
  }
  .menu--header .menu__list > li.current-menu-item a {
    background-color: #F0F0F0;
    color: #E9511C;
  }
  .menu--header .menu__list > li.button, .menu--header .menu__list > li.button-shop {
    width: auto;
    margin-right: 0;
    margin-left: auto;
  }
  .menu--header .menu__list > li.button a, .menu--header .menu__list > li.button-shop a {
    background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
    color: white;
    padding: 0.6rem 2rem;
    margin-top: 0.5rem;
  }

  .menu--header .menu__list.active {
    right: 0;
    width: 80%;
    max-width: 450px;
  }

  .menu--burger {
    display: block;
  }
}
@media (max-width: 1024px) {
  .menu--logo {
    width: 120px;
  }
  .menu--logo a {
    display: block;
    width: 100%;
  }

  .burger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu--header {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .menu--container {
    padding: 20px calc(100/1680 * 100%);
  }

  .menu--logo {
    width: auto;
    height: 45px;
  }
  .menu--logo a {
    position: relative;
    height: 100%;
    width: 100%;
  }
  .menu--logo img {
    object-fit: contain;
    height: 100%;
  }

  .menu-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .menu--burger {
    margin-left: 1rem;
  }

  .menu--buttons {
    display: none;
  }
}
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact__illustration {
  position: relative;
  height: 20rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.contact__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* FORM */
.contact-form {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 6px;
}

/* CONTACT BLOCK */
.contact-block {
  background: #242625;
  padding: 5rem 4rem;
  border-radius: 6px;
}

.contact-block__text {
  text-align: center;
}
.contact-block__text .title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-block__text .desc {
  color: #fff;
  opacity: 0.6;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 25px;
}

.contact-block__bottom {
  margin-top: 2rem;
  text-align: center;
}
.contact-block__bottom .illustration {
  height: 6rem;
  width: 6rem;
  object-fit: cover;
  border-radius: 50%;
}
.contact-block__bottom .name {
  color: #E9511C;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.7px;
  line-height: 25px;
}
.contact-block__bottom .function {
  color: #fff;
  opacity: 0.6;
  font-size: 1.3rem;
  line-height: 15px;
}

@media (min-width: 1024px) {
  .contact__container {
    gap: 10rem;
  }

  .contact__illustration {
    height: 35rem;
  }

  .contact-block__text {
    text-align: left;
  }

  .contact-block__bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .contact-block__bottom .author {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 2rem;
  }
  .contact-block__bottom .author .text {
    margin-left: 2rem;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__illustration {
    display: none;
  }
}
/* INTRO */
.blog-intro__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-intro__cta {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .blog-intro__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
/* CONTAINER */
.post .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.post-left,
.post-right {
  width: 50%;
}

.post-left {
  padding-right: 5%;
}

.post-header__illustration {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  z-index: 2;
}
.post-header__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.post-header__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-right: 5%;
  padding-bottom: 4rem;
}

.post-header__title {
  max-width: 700px;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 2rem 0;
}

/* GALERIE */
.post-gallery__list {
  height: 30rem;
}

.post-gallery__item {
  position: relative;
  margin: 0 0.5rem;
}

.post-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.post-gallery {
  margin: 7rem 0;
}
.post-gallery .slick-prev {
  position: absolute;
  top: -2.5rem;
  right: 6rem;
}
.post-gallery .slick-next {
  position: absolute;
  top: -2.6rem;
  right: 0;
}
.post-gallery .slick-dots {
  bottom: -10%;
}

/* CONTENT */
.post__container {
  width: 100%;
}

.post-content {
  text-align: justify;
}
.post-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #E9511C;
  text-transform: uppercase;
}
.post-content h3 {
  font-size: 1.6rem;
  margin: 20px 0px 20px;
  font-weight: 500;
  line-height: 1.7;
}
.post-content h4,
.post-content h5 {
  color: #3D4543;
  font-size: 16px;
  font-weight: 600;
}
.post-content p {
  font-size: 14px;
  margin: 10px 0px 20px;
  line-height: 1.7;
  font-weight: 300;
}
.post-content ul {
  list-style: disc;
}
.post-content ol {
  margin-left: 30px;
  list-style: disc;
}
.post-content li {
  position: relative;
  margin: 10px 0px;
  padding-left: 1.5rem;
  display: block;
  font-size: 14px;
  line-height: 1.7;
}
.post-content li:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0.8rem;
  content: "";
  font-size: 14px;
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 50%;
}
.post-content li img {
  margin: 40px 0px;
}
.post-content strong {
  color: #242625;
}
.post-content img {
  max-width: 100%;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: 3rem 0;
}
.post-content .aligncenter,
.post-content .alignleft,
.post-content .alignright {
  display: block;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  object-fit: contain;
}
.post-content .aligncenter {
  float: none;
}
.post-content .alignright {
  float: right;
  margin: 1.5em 0 1em 1em !important;
}
.post-content .alignleft {
  float: left;
  margin: 2em 4em 2em 0 !important;
}

/* POST AUTHOR */
.post-author {
  position: sticky;
  top: 10rem;
  right: 0;
  background-color: #F0F0F0;
  max-width: 400px;
  margin-left: auto;
  padding: 2rem;
  border-radius: 6px;
}

.post-author__header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-author__header .text {
  padding-left: 1rem;
}
.post-author__header .text p {
  line-height: 1.3;
  font-size: 1.2rem;
}
.post-author__header .name {
  color: #E9511C;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.6rem !important;
}
.post-author__header .illustration img {
  position: relative;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.post-author__content {
  margin: 1rem 0 0 0;
}
.post-author__content p {
  font-size: 1.2rem;
}

.post-author__cta .btn {
  font-size: 1.2rem;
}
.post-author__cta .btn + .btn {
  margin-top: 1rem;
}

/* POST MORE */
.post-more__item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(1, 1, 1, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.post-more__item .date {
  font-size: 1.2rem;
}
.post-more__item .title {
  color: #242625;
  font-weight: 500;
  font-size: 2rem;
}
.post-more__item .link {
  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: 1px solid #E9511C;
  display: inline;
}
.post-more__item .link:hover {
  color: #242625;
  border-bottom: 1px solid #242625;
}

@media (max-width: 1024px) {
  .post-header {
    margin-top: 3rem;
    height: 40vh;
  }

  .post-header__content {
    padding-right: 0;
  }

  .post-content {
    width: 100%;
  }

  .post .container {
    flex-direction: column-reverse;
  }

  .post-left,
.post-right {
    width: 100%;
    padding-right: 0;
  }

  .post-right .post-header__illustration {
    display: none;
  }

  .post .mobile {
    display: block;
  }

  .post-header__illustration {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
  }

  .post-author {
    position: relative;
    max-width: 100%;
    left: auto;
    top: auto;
    margin-bottom: 3rem;
  }

  .post-gallery__list {
    height: 25rem;
  }
}
@media (max-width: 550px) {
  .post-header__title {
    font-size: 18px;
  }

  .post-content h2 {
    font-size: 18px;
    text-align: left;
  }
  .post-content h3,
.post-content h4 {
    text-align: left;
  }
  .post-content ol,
.post-content ul {
    margin-left: 10px;
  }
  .post-content p {
    text-align: justify;
  }
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services__item {
  background-color: #F0F0F0;
  border-radius: 6px;
  padding: 2rem;
}
.services__item img {
  height: 4rem;
  max-width: 5rem;
  object-fit: contain;
}

.services__title {
  margin: 0.6rem 0;
  color: #E9511C;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
}

.services__desc {
  display: block;
  font-size: 1.5rem;
  line-height: 25px;
  margin: 1rem 0;
}

.services__link {
  color: #E9511C;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid #E9511C;
  line-height: 19px;
}

/* SERVICES INTRO */
#services-intro .services__list {
  grid-template-columns: 1fr 1fr;
}
#services-intro .services__desc {
  display: none;
}
#services-intro .services__link {
  color: #3D4543;
  border-bottom: 1px solid #3D4543;
}

@media (min-width: 1024px) {
  .services__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
  }

  .services__header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .services__header .heading {
    width: 45%;
  }

  .heading__illustration {
    width: 50%;
    height: auto;
    min-height: 35rem;
  }

  #services-intro .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  #services-intro .heading {
    width: 30%;
  }

  #services-intro .services__list {
    width: 65%;
    grid-template-columns: repeat(4, 1fr);
  }

  #services-intro .services__item {
    padding: 4rem 2rem;
  }

  .services__cta {
    text-align: center;
  }
}
#product {
  padding-top: 70px;
}

.product-main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 2rem;
}

.product-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product__price {
  font-weight: 700;
  font-size: 2.6rem;
  font-weight: 500;
  color: #242625;
  margin-bottom: 0.5rem;
}

.product__tax {
  font-size: 1.2rem;
}

.product__rating {
  display: none;
  flex-wrap: wrap;
}
.product-buttons {
  display: none;
  margin: 2rem 0;
}
.product-buttons a {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 1.2rem 1.5rem;
}

.product__mark em {
  font-style: normal;
  font-weight: 700;
  color: #242625;
}

/* Galerie */
.product-gallery {
  position: relative;
  width: 30%;
}

.product-gallery__list {
  height: 35rem;
}

.product-gallery__item {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 6px;
}

.product-gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.product-gallery__arrows {
  text-align: right;
}

/* CONTENT */
.product-summary {
  width: 45%;
  padding: 0rem 4rem;
}

.product-perks__list {
  display: flex;
  flex-direction: column;
}

.product-perks__item {
  position: relative;
  padding-left: 2rem;
}
.product-perks__item p {
  font-weight: 400;
  color: #242625;
  font-size: 1.7rem;
}
.product-perks__item:last-child {
  margin-bottom: 0;
}

.product-perks__item img {
  position: absolute;
  top: 1.2rem;
  left: 0;
  transform: translateY(-50%);
  height: 1.2rem;
  width: 1.2rem;
  object-fit: contain;
}

.product-perks__info {
  font-style: italic;
  padding: 2rem 0;
  font-size: 1.7rem;
  line-height: 1.4;
}

/* DROPDOWN */
.product-dropdown {
  margin-top: 2rem;
}

.product-dropdown__item {
  border-bottom: 1px solid #E9511C;
}

.product-dropdown__title {
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* CONTACT */
.product-contact {
  width: 25%;
}
.product-contact .title {
  color: #3D4543;
  font-size: 1.7rem;
  font-weight: 700;
}
.product-contact .text {
  color: #3D4543;
  font-size: 1.7rem;
}

.product-contact__card {
  background-color: #F0F0F0;
  padding: 2.5rem;
  border-radius: 6px;
  text-align: center;
}
.product-contact__card .illustration {
  position: relative;
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.product-contact__card .name {
  text-transform: uppercase;
  color: #E9511C;
  font-size: 1.7rem;
}
.product-contact__card .buttons a {
  display: block;
  margin-top: 1rem;
  padding: 1.2rem 1.5rem;
}

@media (max-width: 1300px) {
  .product-gallery {
    width: 50%;
  }

  .products-gallery__list {
    position: sticky;
  }

  .product-summary {
    width: 50%;
  }

  .product-contact {
    width: calc(50% - 4rem);
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  .product-gallery {
    width: 100%;
  }

  .product-summary {
    width: 100%;
    padding: 0;
    margin: 4rem 0;
  }

  .product-contact {
    width: 100%;
  }

  .product-infos.mobile {
    margin-top: 2rem;
    display: block;
  }

  .product-buttons {
    display: block;
  }

  .product-gallery__list {
    height: 25rem;
  }

  .product-perks {
    margin: 1rem 0;
  }

  .product-perks__item p {
    font-size: 1.5rem;
  }

  .product-perks__info {
    font-size: 1.5rem;
  }
}
#service .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.service__icon {
  position: relative;
  height: 6.5rem;
  width: 6.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.service__icon img {
  position: relative;
  object-fit: contain;
}

.service__content {
  width: 50%;
  padding-right: 5%;
}

.service__text h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #E9511C;
  margin-bottom: 2rem;
}
.service__text p {
  margin-bottom: 2rem;
  color: #3D4543;
  line-height: 1.7;
  font-size: 1.6rem;
  margin-top: 1rem;
  font-weight: 400;
}

.service__illustration {
  position: relative;
  width: 50%;
  border-radius: 6px;
  height: 40rem;
}
.service__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@media (max-width: 768px) {
  .service__content {
    width: 100%;
  }

  .service__illustration {
    width: 100%;
    height: 25rem;
    margin-top: 4rem;
  }

  .content__text {
    width: 100%;
    padding-left: 0;
  }

  .content__illustration {
    width: 100%;
    margin-top: 4rem;
    height: 25rem;
  }

  #content-image + #content-image .content__text {
    width: 100%;
    padding-right: 0;
  }
}
#page-content {
  padding-top: 60px;
  padding-bottom: 100px;
}
#page-content .heading {
  background: linear-gradient(20deg, #E9511C 0%, #F3913B 100%);
  margin-bottom: 4rem;
  color: #fff;
  padding: 4rem 4rem;
  border-radius: 6px;
  width: 100%;
  max-width: 100%;
}
#page-content .heading__title {
  color: #fff;
}

#page-content .post-text {
  max-width: 1000px;
  margin-left: 4rem;
}
#page-content .post-text h2 {
  font-size: 28px;
  color: #E9511C;
  margin-top: 2rem;
}
#page-content .post-text p {
  font-size: 1.6rem;
  line-height: 2;
}

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