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

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", 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;
  }
}

@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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.4rem 2rem;
  line-height: 1;
  border-radius: 0px;
  transition: all 0.2s;
}
.btn i {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.btn--glassed {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.26);
  border-radius: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 300;
  padding: 0.8rem 2rem;
  display: inline-block;
  transition: all 0.2s ease-in;
}
.btn--glassed:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}
.btn--rounded {
  border-radius: 1.2rem;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.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;
}
.btn--bg-green-whatsapp {
  background-color: #0cac24;
  text-transform: uppercase;
  font-weight: 600;
}
.btn--bg-green-whatsapp:hover {
  background-color: #076415;
}

.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;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: none;
  color: #292929;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
  border-bottom: 1px solid #00a0e3;
}

.form-submit {
  position: relative;
  text-align: center;
}
.form-submit .btn {
  min-width: 12rem;
}
.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;
}
.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: #191919;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

.footer {
  font-size: 1.4rem;
  background: url("../images/footer-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}
.footer-form {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 6rem 0;
}
.footer-form p {
  font-weight: 300;
}
.footer-form h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2rem 0;
}
.footer-form .form-group label {
  position: absolute;
  left: -99999px;
}
.footer-form .form-group input,
.footer-form .form-group textarea {
  background: rgba(255, 255, 255, 0.26);
  border-radius: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
  border: none !important;
  color: #fff;
  font-size: 1.6rem;
}
.footer-form .form-group input::placeholder,
.footer-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.49);
}
.footer-form .form-submit .btn {
  color: #01106a;
  background-color: #fff;
  width: 100%;
  padding: 1.2rem 2rem;
}
.footer-form .form-submit .btn:hover {
  transform: translateY(-3px);
  color: #010837;
}
.footer-main {
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}
.footer-main__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 575px) {
  .footer-main__content {
    flex-direction: column;
    align-items: center;
  }
}
.footer-logo img {
  width: 30rem;
  max-width: 100%;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 575px) {
  .footer-contact {
    align-items: center;
  }
}
.footer-contact__item {
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media (max-width: 575px) {
  .footer-contact__item {
    align-items: center;
  }
}
.footer-contact__item-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-contact__item-link {
  color: #fff;
}
.footer-contact__item-link.underlined {
  text-decoration: underline;
}
.footer-contact__item-link:hover {
  text-decoration: underline;
}
.footer-contact__item-link:not(:last-child) {
  margin-bottom: 0.2rem;
}
.footer-contact__item-link address {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .footer-contact__item-link address {
    text-align: center;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .footer-social {
    font-size: 2rem;
  }
}
.footer-social a i {
  color: #fff;
  font-size: 2rem;
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .footer-social a i {
    font-size: 3.2rem;
  }
}
.footer-social a:hover i {
  transform: scale(1.1);
  color: #fff;
}
.footer-whatsapp {
  color: #fff;
  width: 35rem;
  padding: 0 2rem;
  text-align: center;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer-copyright {
  background-color: #01106a;
  padding: 1rem 0;
  color: #fff;
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 575px) {
  .footer-copyright {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .footer-copyright span {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.footer-copyright a {
  color: #fff;
}

.header {
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.05);
  position: relative;
  z-index: 2;
  background-color: #010101;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  width: 14rem;
  transition: all 0.2s;
}
@media (max-width: 575px) {
  .header-logo img {
    max-width: 100%;
    width: 10rem;
  }
}
.header-infos {
  flex: 1;
  padding-top: 2.8rem;
}
@media (max-width: 991px) {
  .header-infos {
    padding-top: 0;
  }
}
.header-infos__box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0;
  gap: 3.2rem;
}
@media (max-width: 991px) {
  .header-infos__box {
    justify-content: space-around;
  }
}
@media (max-width: 575px) {
  .header-infos__box {
    gap: 2rem;
  }
}
.header-nav {
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30rem;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background-color: #010101;
    transition: all 0.2s;
  }
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99999;
  }
}
.header-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.4rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .header-nav > ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .header-nav > ul > li {
    padding: 0.8rem 2rem;
  }
}
.header-nav > ul > li > a {
  color: #fff;
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 991px) {
  .header-nav > ul > li > a {
    display: block;
    font-size: 2rem;
  }
}
.header-nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #fff;
  width: 0;
  transition: all 0.2s ease-in;
}
.header-nav > ul > li > a:hover::after {
  width: 100%;
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  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: #fff;
  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: #fff;
}
.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: #fff;
}
.header-nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30rem;
  max-width: 90%;
  background-color: #fff;
  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: #191919;
  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: #191919;
  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: #191919;
  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: #fff;
}
.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: #191919;
  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: #fff;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(25, 25, 25, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.back-to-top {
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 50%;
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  background-color: #01106a;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform-style: preserve-3d;
  transition: all 0.2s;
}
.back-to-top i {
  font-size: 2rem;
  color: #fff;
}
.back-to-top:hover {
  background: #01189d;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
}
@media (max-width: 1350px) {
  .banner {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .banner {
    margin-top: 0;
  }
}
.banner-item {
  position: relative;
  aspect-ratio: 1920/362;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.banner-item__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-item__content {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .banner-item__content {
    text-align: center;
  }
}
.banner-item__title {
  color: #fff;
  font-size: 6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 991px) {
  .banner-item__title {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .banner-item__title {
    text-align: center;
  }
}
.banner-item__title strong {
  color: #005bff;
  display: block;
}
.banner-item__cta {
  margin-top: 2rem;
  transition: all 0.2s ease-in;
}
@media (max-width: 991px) {
  .banner-item__cta {
    font-size: 2.4rem;
  }
}
@media (max-width: 400px) {
  .banner-item__cta {
    font-weight: 2rem;
  }
}
.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: 66.67%;
  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: #00a0e3 !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: #007cb0 !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}

.breadcrumb {
  margin: 4rem 0 6rem;
  color: #191919;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #191919;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #191919;
}
.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;
}

.about {
  padding: 6rem 0;
}
.about-text h2 {
  text-transform: uppercase;
  color: #01106a;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.8rem;
}
.about-mvv {
  display: flex;
  margin: 60px 0 60px 0;
  gap: 2rem;
  justify-content: space-around;
}
@media (max-width: 575px) {
  .about-mvv {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about-mvv-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 25rem;
  max-width: 100%;
}
@media (max-width: 575px) {
  .about-mvv-item {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 400px) {
  .about-mvv-item {
    width: 100%;
  }
}
.about-mvv-item img {
  height: 80px;
  width: auto;
}
.about-mvv-item__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0;
}
.about-mvv-item__paragraph {
  text-align: center;
  font-size: 1.8rem;
}

.quote {
  background-image: url("../images/quote-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12rem 0 6rem 0;
  position: relative;
}
.quote:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.quote-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-content__title {
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.37);
}
@media (max-width: 991px) {
  .quote-content__title {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .quote-content__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .quote-content__title {
    font-size: 2.8rem;
  }
}
.quote-content__title strong {
  color: #fff;
  display: block;
  font-weight: 700;
}
.quote-content__cta {
  margin-top: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 767px) {
  .quote-content__cta {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .quote-content__cta {
    font-size: 2rem;
  }
}

.services {
  padding: 4rem 0;
}
.services-header {
  text-align: center;
  margin-bottom: 3.6rem;
}
.services-header h2 {
  color: #01106a;
  font-size: 3.6rem;
  text-transform: uppercase;
  font-weight: 700;
}
.services-header p {
  color: #353e52;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;
}
@media (max-width: 991px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 350px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}
.services-item {
  background-color: #01106a;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
}
.services-item__thumb {
  margin-top: 0.3rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.services-item__thumb img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.services-item__title {
  text-align: center;
  align-self: center;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
}

.projects {
  background-color: #0c1442;
  padding: 4rem 0;
  margin: 4rem 0;
}
.projects-header {
  text-align: center;
  margin-bottom: 3.6rem;
  color: #fff;
}
.projects-header h2 {
  font-size: 3.6rem;
  text-transform: uppercase;
  font-weight: 700;
}
.projects-carousel .owl-prev,
.projects-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.projects-carousel .owl-prev {
  left: -6rem;
}
@media (max-width: 1270px) {
  .projects-carousel .owl-prev {
    left: 0;
  }
}
.projects-carousel .owl-next {
  right: -6rem;
}
@media (max-width: 1270px) {
  .projects-carousel .owl-next {
    right: 0;
  }
}
.projects-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.projects-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.projects-carousel .owl-nav [class*=owl-]:hover {
  background-color: #fff !important;
  color: #0c1442 !important;
  opacity: 1;
  text-decoration: none;
}
.projects-item {
  border-radius: 0.8rem;
  display: block;
  overflow: hidden;
}
.projects-item__thumb img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.projects-item__title {
  background-color: #0051bf;
  color: #fff;
  text-align: center;
  padding: 0.8rem 2rem;
  margin: 0;
}

.testimonial {
  margin-bottom: 4rem;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 3.6rem;
}
.testimonial-header h2 {
  color: #01106a;
  font-size: 3.6rem;
  text-transform: uppercase;
  font-weight: 700;
}
.testimonial-header p {
  color: #353e52;
}
.testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 2rem;
}
.testimonial-item__blockquote {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  flex: 1;
}
.testimonial-item__blockquote > img {
  width: 8rem !important;
}
.testimonial-item__blockquote blockquote {
  line-height: 1.25;
  font-size: 1.4rem;
  padding-top: 2rem;
}
.testimonial-item__info {
  display: flex;
  margin-top: 4rem;
  padding-left: 0.8rem;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-item__info-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-item__info-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-carousel .owl-stage {
  display: flex;
}
.testimonial-carousel .owl-stage .owl-item {
  align-self: stretch;
  margin-bottom: 1rem;
}

.map {
  margin-bottom: -7px;
}

.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: #0c1442;
  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: #fff;
}
.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-bottom: 6rem;
}
.contact .breadcrumb {
  margin-bottom: 4rem;
}
.contact-title {
  text-align: center;
  font-weight: 700;
  color: #00a0e3;
  font-size: 2rem;
  margin-bottom: 4rem;
}
.contact-form {
  padding-right: 4rem;
}
.contact-form .form-group {
  margin-bottom: 2rem;
}
.contact-form .form-group label {
  position: absolute;
  left: -9999px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  border: 1px solid #00a0e3;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  font-weight: 300;
}
.contact-form .form-group textarea {
  min-height: 10rem;
}
.contact-form .form-check {
  padding: 0;
  margin-bottom: 1.5rem;
}
.contact-form .wpcf7-acceptance label {
  position: relative;
  left: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0.75rem;
}
.contact-form .form-submit {
  text-align: left;
}
.contact-form .form-submit .btn {
  color: #fff;
  background-color: #3b58e8;
  text-transform: uppercase;
}
.contact-form .form-submit .btn:disabled {
  background-color: transparent;
  color: #191919;
}
.contact-infos {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-infos__item {
  color: #00a0e3;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-infos__item--phone {
  font-size: 2.4rem;
}
.contact-infos__item--phone i {
  font-size: 3.2rem;
}
.contact-infos__social {
  color: #00a0e3;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 2rem;
}
.contact-infos__social-item {
  font-size: 4rem;
  transition: all 0.2s ease-in-out;
}
.contact-infos__social-item:hover {
  transform: scale(1.1);
}
.contact-infos__social-item--instagram i {
  background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: transparent;
  background-clip: text;
}
.contact-infos__social-item--facebook i {
  color: #3b5998;
}

.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: #00a0e3;
  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, 1fr));
  gap: 2.8rem;
}
@media (max-width: 575px) {
  .equips-list {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  }
}
@media (max-width: 370px) {
  .equips-list {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
}
.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-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;
}

.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;
}

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

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