* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #292929;
}
@media (max-width: 575px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main > div:first-child {
  position: relative;
  z-index: 1;
  flex: 1;
}

.page-padding {
  padding: 15rem 0 6rem 0;
}
@media (max-width: 991px) {
  .page-padding {
    padding: 6rem 0 6rem 0;
  }
}

.title {
  font-weight: 700;
  font-size: 3.6rem;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .title {
    font-size: 2.8rem;
  }
}
.title::after {
  content: "";
  position: absolute;
  width: 15rem;
  max-width: 80%;
  background-color: #f1c410;
  height: 0.5rem;
  left: 0;
  bottom: 0;
}
.title--upper {
  padding-top: 0.8rem;
}
.title--upper::after {
  bottom: unset;
  top: 0;
}

@keyframes scaleUpScaleDown {
  0% {
    transform: translateZ(-1px) scale(1);
  }
  80% {
    transform: translateZ(-1px) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translateZ(-1px) scale(1.5);
    opacity: 0;
  }
}
.font-bold {
  font-weight: 700;
}

.ml-auto {
  margin-left: auto;
}

.text-uppercase {
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 2rem;
  line-height: 1;
  border-radius: 0px;
  text-transform: uppercase;
  transition: all 0.2s;
  transform-style: preserve-3d;
}
.btn::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  transform: scaleX(0.9) scaleY(0.9);
  visibility: visible;
  opacity: 1;
  transform: translateZ(-1px);
}
.btn:hover {
  transform: scale(1.05);
}
.btn:hover::before {
  animation-name: buttonAnimation;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
@keyframes buttonAnimation {
  0% {
    transform: scaleX(0.9) scaleY(0.9) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
  50% {
    transform: scaleX(1.1) scaleY(1.2) translateZ(-1px);
    visibility: visible;
    opacity: 1;
  }
  100% {
    transform: scaleX(1.2) scaleY(1.4) translateZ(-1px);
    visibility: hidden;
    opacity: 0;
  }
}
.btn i {
  font-size: 2.4rem;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-yellow {
  background-color: #f1c410;
}
.btn--bg-yellow:hover {
  background-color: #dbb20d;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-light-blue {
  background-color: #73cbf3;
}
.btn--bg-light-blue:hover {
  background-color: #2db1ed;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.social__item {
  color: #fff;
}

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
  position: absolute;
  left: -9999px;
}
.form-group input:not([type=file], [type=checkbox], [type=submit]),
.form-group textarea {
  padding: 0.4rem 1.2rem;
  width: 100%;
  border: 1px solid #b8b8b8;
  color: #292929;
}
.form-group input:not([type=file], [type=checkbox], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: rgba(86, 86, 86, 0.56);
  font-weight: 400;
}
.form-group input:not([type=file], [type=checkbox], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border: 1px solid #f1c410;
}
.form-group--consent {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.form-group--consent input {
  width: auto;
}
.form-group--consent label {
  position: relative;
  left: 0;
  color: #787878;
  font-weight: 400;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
  text-transform: unset;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.fixed-whatsapp {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.fixed-whatsapp i {
  font-size: 2.8rem;
  color: #fff;
}
.fixed-whatsapp::after {
  content: "";
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background-color: #128c7e;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.products-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  transition: 0.2s ease-in;
}
.products-item__image {
  width: 100%;
  position: relative;
  aspect-ratio: 1/1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.products-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products-item__name {
  font-size: 1.4rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}
.products-item:hover {
  transform: translateY(-4px);
}

.faq-item {
  border: 1px solid #fff;
  padding: 2rem;
  height: max-content;
  color: #fff;
}
.faq-item:not(:last-child) {
  margin-bottom: 2rem;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.faq-item__question button {
  background-color: transparent;
  border: none;
  font-size: 2rem;
}
.faq-item__question button i {
  transition: all 0.2s ease-in;
  transform: rotate(45deg);
  color: #fff;
}
.faq-item__question button.collapsed i {
  transform: rotate(0deg);
}
.faq-item__answer p:first-child {
  margin-top: 2rem;
}

.footer {
  background-color: #fff;
  padding-top: 4rem;
}
.footer-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer-infos {
    align-items: center;
    text-align: center;
  }
}
.footer-logo img {
  width: 12rem;
}
.footer-title {
  display: block;
  color: #f1c410;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.footer-address address {
  color: #000;
  text-transform: uppercase;
}
.footer-address address:hover {
  text-decoration: underline;
}
.footer-contact__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-contact__items > span {
  text-decoration: underline;
}
.footer-contact__items > span > a {
  color: #000;
}
.footer-right-box {
  padding-left: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer-right-box {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer-links ul {
    text-align: center;
  }
}
.footer-links ul li a {
  display: inline-block;
  padding: 0.8rem 0;
  color: #000;
  text-transform: uppercase;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-social {
  align-items: center;
}
.footer-social__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-social__items .social-item {
  font-size: 2rem;
  color: #000;
  transition: all 0.2s ease-in;
}
.footer-social__items .social-item:hover {
  transform: scale(1.1);
}
.footer-copyright {
  background-color: #000;
  margin-top: 4rem;
  padding: 1.6rem 0;
}
.footer-copyright__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 1.2rem;
  gap: 2rem;
}
.footer-copyright__content span {
  color: #fff;
}
.footer-copyright__content a {
  color: #fff;
}
.footer-copyright__content a:hover {
  text-decoration: underline;
}

.header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-contact {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0.8rem 0;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .header-contact__content {
    gap: 2rem;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.4rem;
}
.header-contact__item span,
.header-contact__item address {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .header-contact__item span,
  .header-contact__item address {
    display: none;
  }
}
.header-contact__item span:hover,
.header-contact__item address:hover {
  text-decoration: underline;
}
.header-contact__item i {
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .header-contact__item i {
    font-size: 2.4rem;
  }
}
.header-contact__address {
  text-transform: uppercase;
  width: 30rem;
  font-size: 1.2rem;
  margin-right: auto;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .header-contact__address {
    width: auto;
  }
}
@media (max-width: 575px) {
  .header-contact__address {
    margin-right: unset;
  }
}
.header-contact__phones {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 575px) {
  .header-contact__phones {
    gap: 2rem;
  }
}
.header-contact__social {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-contact__social .social-item {
  font-size: 2.4rem;
  color: #fff;
  transition: all 0.2s ease-in;
}
.header-contact__social .social-item--circle {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
}
.header-contact__social .social-item:hover {
  transform: scale(1.1);
}
.header-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 0 8rem;
}
@media (max-width: 1399px) {
  .header-main {
    padding: 0 0.75rem;
  }
}
@media (max-width: 991px) {
  .header-main {
    padding: 0 0.75rem;
  }
}
@media (max-width: 575px) {
  .header-main {
    gap: 2rem;
  }
}
.header-main__content {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header-main__content {
    justify-content: space-between;
  }
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  width: 20rem;
  transition: all 0.2s;
}
@media (max-width: 575px) {
  .header-logo img {
    max-width: 100%;
    width: 10rem;
  }
}
.header-nav {
  z-index: 1;
  flex: 1;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
  }
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__wrapper {
    position: unset;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-left: 0;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.header-nav__list > li {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  position: relative;
}
@media (max-width: 1199px) {
  .header-nav__list > li {
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li {
    font-size: 1.4rem;
  }
}
.header-nav__list > li > span {
  position: relative;
  display: block;
}
.header-nav__list > li > span > a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.8rem;
  transition: all 0.2s ease-in;
  padding: 0.8rem 1.6rem;
  position: relative;
  z-index: 1;
}
.header-nav__list > li > span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 0;
  background-color: #f1c410;
  z-index: 0;
  transition: all 0.2s ease-in;
}
.header-nav__list > li > span:hover::after {
  height: 100%;
  top: auto;
  bottom: 0;
}
.header-nav__list > li.active > span::after {
  height: 100%;
  top: auto;
  bottom: 0;
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #000;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #000;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
}
.header-nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30rem;
  max-width: 90%;
  background-color: #fff;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(100%);
  transition: all 0.2s ease-in;
  z-index: 99999;
}
.header-nav__mobile.opened {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.header-nav__mobile .close-btn {
  border: none;
  background-color: transparent;
  padding: 2rem;
}
.header-nav__mobile ul {
  list-style: none;
  padding-left: 0.8rem;
}
.header-nav__mobile ul > li > span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-nav__mobile ul > li > span > a {
  flex: 1;
  color: #000;
  padding: 0.8rem;
}
.header-nav__mobile ul > li > span > button {
  background-color: transparent;
  border: none;
  padding: 0.8rem 2rem;
}
.header-nav__mobile ul > li > span > button i {
  color: #000;
  transform: rotate(90deg);
  transition: all 0.2s ease-in;
}
.header-nav__mobile ul > li > span > button.collapsed i {
  transform: rotate(0deg);
}
.header-megamenu {
  position: absolute;
  top: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: all 0.2s ease-in-out;
}
.header-megamenu__parent, .header-megamenu__children {
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.header-megamenu__parent > ul, .header-megamenu__children > ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.header-megamenu__parent > ul > li, .header-megamenu__children > ul > li {
  margin: 0 0.4rem;
}
.header-megamenu__parent > ul > li > a, .header-megamenu__children > ul > li > a {
  margin: 0.4rem 0;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 1.6rem;
  white-space: nowrap;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.header-megamenu__parent > ul > li:hover > a, .header-megamenu__children > ul > li:hover > a {
  color: #fff;
  border-radius: 1rem;
  background-color: #000;
}
.header-megamenu__parent > ul > li:hover > .header-megamenu__children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header-megamenu__children {
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-10px);
  height: 100%;
}
.header-megamenu__children > ul > li:hover > .header-megamenu__children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header-submenu {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.header-submenu > li {
  padding: 0.4rem 0.4rem;
}
.header-submenu > li > a {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 1.6rem;
  white-space: nowrap;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.header-submenu > li:hover > a {
  color: #fff;
  border-radius: 1rem;
  background-color: #000;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  z-index: 9999;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 19/7;
}
@media (max-width: 991px) {
  .banner {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .banner {
    aspect-ratio: unset;
  }
}
.banner-item {
  position: relative;
  aspect-ratio: 19/7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .banner-item {
    aspect-ratio: unset;
  }
}
.banner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner-item__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.banner-item__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .banner-item__content {
    text-align: center;
  }
}
.banner-item__text {
  color: #fff;
}
.banner-item__title {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .banner-item__title {
    font-size: 2.8rem;
  }
}
.banner-item p {
  font-size: 2rem;
}
.banner-item__cta {
  margin-top: 4rem;
}
.banner-item__cta .btn {
  font-size: 2rem;
  padding: 1.2rem 2.5rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner .owl-dots {
    bottom: 0;
  }
}
.banner .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.banner .owl-dots .owl-dot:hover span {
  background-color: #fff;
}
.banner .owl-dots .owl-dot.active span {
  background-color: #fff;
}
.banner .owl-prev,
.banner .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .owl-prev {
  left: 2%;
}
.banner .owl-next {
  right: 2%;
}
.banner .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #f1c410 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.banner .owl-nav [class*=owl-]:hover {
  background-color: #dbb20d !important;
  opacity: 1;
  color: #000;
  text-decoration: none;
}

.breadcrumb {
  margin: 4rem 0 6rem;
  color: #000;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #000;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #000;
}
.products-section__header {
  position: relative;
  margin-bottom: 3.2rem;
}
.products-section__header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  top: 50%;
  transform: translateY(-50%);
}
.products-section__title {
  display: block;
  width: 52rem;
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 3.2rem;
  color: #00a0e3;
  background-color: #fff;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 767px) {
  .products-section__title {
    font-size: 2.4rem;
  }
}
.products-section__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2.8rem;
}
@media (max-width: 575px) {
  .products-section__items {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }
}
@media (max-width: 370px) {
  .products-section__items {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
}

.contact-section {
  background-color: #63c3d1;
  color: #fff;
  padding: 6rem 0;
}
.contact-section__header {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}
.contact-section__title {
  display: block;
  max-width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 3.6rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.4rem;
}
@media (max-width: 991px) {
  .contact-section__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .contact-section__title {
    font-size: 2.4rem;
  }
}
.contact-section__title::after {
  content: "";
  position: absolute;
  width: 40rem;
  max-width: 90%;
  height: 2px;
  background-color: #fff;
  left: 50%;
  bottom: -2px;
  transform: translate(-50%);
}
.contact-section__subtitle {
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 1.2rem;
  font-size: 2.4rem;
}
@media (max-width: 991px) {
  .contact-section__subtitle {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .contact-section__subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .contact-section__form {
    margin-bottom: 4rem;
  }
}
.contact-section__form label {
  position: absolute;
  left: -9999px;
}
.contact-section__form input::placeholder,
.contact-section__form textarea::placeholder {
  font-weight: 300;
}
.contact-section__form textarea {
  min-height: 10rem;
}
.contact-section__form .form-check {
  padding: 0;
  margin-bottom: 1.5rem;
}
.contact-section__form .wpcf7-acceptance label {
  position: relative;
  left: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-section__form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0.75rem;
}
.contact-section__form .form-submit {
  text-align: left;
}
@media (max-width: 767px) {
  .contact-section__form .form-submit {
    text-align: center;
  }
}
.contact-section__form .form-submit .btn {
  color: #fff;
  background-color: #3b58e8;
  text-transform: uppercase;
}
.contact-section__form .form-submit .btn:disabled {
  background-color: transparent;
}
.contact-section__infos {
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .contact-section__infos {
    margin-left: 0;
  }
}
.contact-section__infos > *:not(:last-child) {
  margin-bottom: 1.6rem;
}
.contact-section__item > a {
  color: #fff;
  font-weight: 300;
  font-size: 3.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
}
@media (max-width: 767px) {
  .contact-section__item > a {
    justify-content: center;
    font-size: 2.4rem;
  }
}
.contact-section__item > a > i {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .contact-section__item > a > i {
    font-size: 2.4rem;
  }
}
.contact-section__item > a > span {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .contact-section__item > a > span {
    font-size: 3.6rem;
  }
}
.contact-section__item > a > address {
  font-weight: 500;
  font-size: 2.4rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact-section__item > a > address {
    font-size: 2rem;
    text-align: center;
  }
}
.contact-section__item--email > a {
  font-size: 2rem;
  font-weight: 700;
}

.map-iframe iframe {
  width: 100%;
  height: 40rem;
}

.google-reviews {
  margin: 6rem 0;
}
.google-reviews__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.google-reviews__header-stars img {
  display: block;
  margin: auto;
  width: 20rem;
}
.google-reviews__header-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
}

.faq {
  background-color: #3f3f3f;
  padding: 4rem 0;
}
.faq-content h2 {
  text-align: center;
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .faq-content h2 {
    font-size: 2.8rem;
  }
}
.faq-items {
  width: 90rem;
  max-width: 100%;
  margin: auto;
}
.faq-items:not(:last-child) {
  margin-bottom: 2rem;
}

.newsletter {
  padding: 4rem 0;
}
.newsletter-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .newsletter-box {
    margin-bottom: 2rem;
  }
}
.newsletter-box img {
  width: 10rem;
}
.newsletter-text h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
}
.newsletter-text p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.newsletter-form form .box {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.newsletter-form form .box .wpcf7-form-control-wrap {
  flex: 1;
}
.newsletter-form form .box input[type=email] {
  height: 5rem;
  border: 2px solid rgba(96, 96, 96, 0.54);
  border-right: none;
  padding: 0 1.6rem;
  width: 100%;
}
.newsletter-form form .box input[type=submit] {
  background-color: #f1c410;
  color: #fff;
  border: none;
  padding: 1.2rem 2.4rem;
  text-transform: uppercase;
  height: 5rem;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 400px) {
  .newsletter-form form .box input[type=submit] {
    font-size: 1.2rem;
  }
}
.newsletter-form form .box input[type=submit]:hover {
  background-color: #dbb20d;
}
.newsletter-form form .box .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
}

.home-about {
  padding: 6rem 0;
}
.home-about__content > *:not(:last-child) {
  margin-bottom: 2.4rem;
}
.home-services {
  position: relative;
  background-color: #000;
}
.home-services__text {
  padding: 6rem 0;
  background-color: #000;
  color: #fff;
  padding-right: 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .home-services__text {
    padding: 2.8rem 0;
  }
}
.home-services__text > *:not(:last-child) {
  margin-bottom: 2.4rem;
}
.home-services__text p {
  font-size: 1.8rem;
}
.home-services__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .home-services__image {
    position: relative;
    width: 100%;
  }
}
.home-brands {
  padding: 4rem 0;
}
.home-brands__items {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}
.home-brands__items img {
  width: 12rem;
  height: 6rem !important;
  object-fit: contain;
}
@media (max-width: 767px) {
  .home-brands__items img {
    width: 30%;
  }
}
@media (max-width: 575px) {
  .home-brands__items img {
    width: 25%;
  }
}
.home-specialized {
  padding: 6rem 0;
}
.home-specialized__text > *:not(:last-child) {
  margin-bottom: 2.4rem;
}
.home-specialized__text ul li {
  margin-bottom: 1rem;
}
.home-specialized__text .title {
  line-height: 1.2;
}
.home-specialized__text .btn {
  padding: 1.6rem 2.4rem;
}
.home-specialized__image img {
  width: 100%;
}

.about {
  padding-top: 6rem;
}
.about-text {
  padding-bottom: 6rem;
}
.about-text > *:not(:last-child) {
  margin-bottom: 2rem;
}
.about-text .btn {
  min-width: 20rem;
  margin-bottom: 4.8rem;
}
.about-mvv {
  margin: 4rem 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.about-mvv__item {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  flex-basis: 25rem;
}
@media (max-width: 400px) {
  .about-mvv__item {
    flex-direction: column;
    align-items: center;
  }
}
.about-mvv__item-icon {
  width: 7rem;
}
.about-mvv__item-text {
  margin-top: 0.8rem;
}
@media (max-width: 400px) {
  .about-mvv__item-text {
    text-align: center;
  }
}
.about-mvv__item-text h2 {
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .about-mvv__item-text h2 {
    font-size: 2.8rem;
  }
}
.about-images {
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
@media (max-width: 767px) {
  .about-images {
    gap: 2rem;
  }
}
.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-404 {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.page-404 .container {
  width: 80rem;
}
.page-404-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f1c410;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.page-404-main * {
  max-width: 100%;
}
.page-404-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.page-404-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.page-404-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.page-404-main p {
  color: #fff;
}
.page-404-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
  margin-bottom: 2rem;
}

.contact {
  padding: 6rem 0;
}
.contact-text {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .contact-text {
    padding-right: 0;
  }
}
.contact-form {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .contact-form {
    padding-right: 0;
  }
}
.contact-form .form-group label {
  left: 0;
  position: relative;
  font-weight: 400;
}
.contact-form .form-group input:not([type=file], [type=checkbox], [type=submit]),
.contact-form .form-group textarea,
.contact-form .form-group select {
  padding: 0.8rem 1.2rem;
  width: 100%;
  border: 1px solid #000;
  color: #000;
  border-radius: 0;
  min-height: 4rem;
  font-size: 1.6rem;
}
.contact-form .form-group input:not([type=file], [type=checkbox], [type=submit])::placeholder,
.contact-form .form-group textarea::placeholder,
.contact-form .form-group select::placeholder {
  color: rgba(86, 86, 86, 0.56);
  font-weight: 400;
}
.contact-form .form-group input:not([type=file], [type=checkbox], [type=submit]):focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #f1c410;
}
.contact-form .form-group--consent {
  justify-content: flex-start;
  color: #000;
}
.contact-form .form-group--consent .wpcf7-list-item {
  margin-left: 0;
}
.contact-form .form-group--consent span {
  font-weight: 300;
}
.contact-form .form-group--consent a {
  color: #000;
  text-decoration: underline;
}
.contact-form .form-submit {
  text-align: left;
}
.contact-map {
  padding-left: 2rem;
  height: 100%;
}
@media (max-width: 767px) {
  .contact-map {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.contact-map iframe {
  height: calc(100% - 10rem);
  min-height: 30rem;
}

.search-page {
  padding-top: 6rem;
}
.search-filter {
  grid-column: 1/2;
  grid-row: 1/3;
}
.search-filter-box {
  background-color: #f4f4f6;
  padding: 2rem 0.8rem;
}
.search-filter-box:not(:last-child) {
  margin-bottom: 2rem;
}
.search-filter-box > span {
  display: block;
  color: #00a0e3;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.search-checkbox {
  display: block;
  position: relative;
}
.search-checkbox:not(:last-child) {
  margin-bottom: 2rem;
}
.search-checkbox span {
  padding-left: 3rem;
  cursor: pointer;
}
.search-checkbox span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dddddf;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}
.search-checkbox span::after {
  position: absolute;
  content: "";
  left: 6px;
  top: 47%;
  transform: translateY(-50%) rotate(-45deg);
  background-color: #dddddf;
  height: 0.6rem;
  width: 1.2rem;
  border-bottom: 2px solid #9a9a9a;
  border-left: 2px solid #9a9a9a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.search-checkbox input {
  position: absolute;
  left: -99999px;
}
.search-checkbox input:checked ~ span::after {
  opacity: 1;
  visibility: visible;
}

.thanks {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f1c410;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.equips-text {
  padding-bottom: 6rem;
}
.equips-text h1 {
  margin-bottom: 3.2rem;
}
.equips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 0.5fr));
  gap: 2.8rem;
}
@media (max-width: 575px) {
  .equips-list {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 0.5fr));
  }
}
@media (max-width: 370px) {
  .equips-list {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 0.5fr));
  }
}
.equips-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.equips-item__image {
  aspect-ratio: 1/1;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.equips-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.equips-item__name {
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
}
.equips .products-section {
  padding-bottom: 6rem;
}

.product .breadcrumb {
  margin-bottom: 4rem;
}
.product-gallery {
  padding-right: 6rem;
}
@media (max-width: 767px) {
  .product-gallery {
    padding-right: 0;
    margin-bottom: 4rem;
  }
}
.product-gallery .ms-view {
  background-color: transparent;
}
.product-gallery .ms-slide-bgcont img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  margin-top: 0 !important;
}
.product-main h1 {
  font-weight: 700;
}
.product-quote {
  margin: 3.2rem 0;
}
.product-quote__item label {
  display: block;
}
.product-quote__item select,
.product-quote__item input {
  width: 100%;
  border: 1px solid #7d7d7d !important;
  padding: 0.4rem 2rem !important;
}
.product-infos {
  margin: 4rem 0;
}
.product .products-section {
  padding-bottom: 6rem;
}

main:has(.cart) .banner {
  flex: 0;
}

.cart {
  flex: 1;
}
.cart-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}
.cart-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  border-radius: 2.6rem;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }
}
.cart-item__image {
  aspect-ratio: 1;
}
.cart-item__image img {
  width: 14rem;
  height: 100%;
  object-fit: contain;
}
.cart-item__infos h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.cart-item__infos ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.cart-item__infos ul li span {
  font-weight: 700;
}
.cart-item__actions {
  margin-left: auto;
}
@media (max-width: 767px) {
  .cart-item__actions {
    margin-left: unset;
    display: flex;
    flex-direction: column-reverse;
  }
}
.cart-item__options {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cart-item__options button {
  border: none;
  background-color: transparent;
}
.cart-item__quantity {
  text-align: center;
  display: inline-block;
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .cart-item__quantity {
    margin-top: 0;
  }
}
.cart-item__quantity > span {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.cart-item__quantity-main {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cart-item__quantity-main {
    justify-content: center;
  }
}
.cart-item__quantity-main button {
  border: 1px solid #a8a8a8;
  background-color: transparent;
  height: 4rem;
  width: 4rem;
}
.cart-item__quantity-main input {
  border: 1px solid #a8a8a8;
  border-left: none;
  border-right: none;
  width: 8rem;
  text-align: center;
}
.cart-form {
  background-color: #63c3d1;
  padding: 4rem 0;
}
.cart-form > form {
  width: 90rem;
  max-width: 100%;
  margin: auto;
  color: #fff;
  padding: 0 0.75rem;
}
.cart-form > form > h2 {
  color: #fff;
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
.cart-form > form .form-group label {
  position: absolute;
  left: -9999px;
}
.cart-form > form .form-group input::placeholder,
.cart-form > form .form-group textarea::placeholder {
  font-weight: 300;
}
.cart-form > form .form-group textarea {
  min-height: 10rem;
}
.cart-form > form .form-submit button {
  background-color: #3b58e8;
  text-transform: uppercase;
  border: none;
}
.cart-form > form .form-submit button:hover:not(:disabled) {
  background-color: #1939d7;
}
.cart-form > form .form-submit button:disabled {
  opacity: 0.5;
}

.default {
  padding: 6rem 0;
}
.default .title {
  margin-bottom: 2rem;
}

.services {
  padding: 6rem 0;
}
.services-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}
@media (max-width: 450px) {
  .services-list {
    gap: 2rem;
  }
}
.services-item {
  width: calc(33.3333333333% - (2.6666666667rem));
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .services-item {
    width: calc(50% - (2rem));
  }
}
@media (max-width: 450px) {
  .services-item {
    width: calc(100% - (0rem));
  }
}
.services-item__thumb {
  position: relative;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.services-item__thumb img {
  width: 100%;
  height: auto !important;
  transition: all 0.2s;
}
.services-item__thumb-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease-in;
}
.services-item__thumb-overlay .btn {
  font-weight: 700;
}
.services-item__thumb-overlay .btn:hover {
  color: #000;
}
.services-item__title {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .services-item__title {
    font-size: 1.8rem;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .services-item__title {
    font-size: 1.6rem;
    padding: 0;
  }
}
.services-item:hover {
  transform: translateY(-3px);
}
.services-item:hover .services-item__thumb img {
  filter: brightness(0.6);
}
.services-item:hover .services-item__thumb-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.services-cta {
  text-align: center;
  margin-top: 4rem;
}
.services-cta .btn {
  background-color: #02d851;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}
.services-cta .btn i {
  font-size: 2.8rem;
}

.service {
  padding: 6rem 0;
}
.service-main {
  padding-bottom: 4rem;
}
.service-main .title {
  font-size: 3.2rem;
}
.service-gallery {
  padding-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease-in;
  overflow: hidden;
}
.service-gallery a {
  height: 35rem;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.service-gallery a:last-child {
  flex-grow: 10;
}
.service-gallery img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media (max-aspect-ratio: 1/1) {
  .service-gallery a {
    height: 30vh;
  }
}
@media (max-height: 480px) {
  .service-gallery a {
    height: 80vh;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  .service-gallery {
    flex-direction: row;
  }
  .service-gallery a {
    height: auto;
    width: 100%;
  }
  .service-gallery img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
.service-quote .title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
}

.brands {
  padding-top: 6rem;
}
.brands-list {
  width: 90rem;
  max-width: 100%;
  margin: auto;
  padding: 2rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 575px) {
  .brands-item {
    width: 40%;
  }
}

.container {
  max-width: 1170px;
}
.container-xl {
  max-width: 1400px;
}

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