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

html {
  font-size: 62.5%;
}

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

a {
  text-decoration: none;
}

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

.title {
  font-size: 4.8rem;
  font-weight: 200;
}
@media (max-width: 991px) {
  .title {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 3.2rem;
  }
}
.title strong {
  font-weight: 600;
}

@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;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 0;
  transition: all 0.2s ease-in;
  position: relative;
  transform-style: preserve-3d;
}
.btn::before {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0.9) scaleY(0.9);
  visibility: inherit;
  opacity: 1;
  transform: translateZ(-1px);
  top: 0;
  left: 0;
}
.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 img {
  width: 2rem;
}
.btn--rounded {
  border-radius: 8px;
}
.btn--lg {
  padding: 2rem 2.8rem;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  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-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);
  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-blue {
  background-color: #2ea0b5;
}
.btn--bg-blue:hover {
  background-color: #1e6a78;
}
.btn--bg-green-whatsapp {
  background-color: #2eb58c;
}
.btn--bg-green-whatsapp:hover {
  background-color: #1e785d;
}

.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: 1px solid #c8c8c8;
  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;
}

.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: #2eb58c;
  z-index: -999;
  animation: scaleUpScaleDown 2s ease-in infinite both;
  transform: translateZ(-1px);
  filter: blur(1px);
}
.fixed-whatsapp:hover {
  transform: scale(1.2);
}

.product-item {
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.13);
  color: #353e52;
  margin: 0.4rem 0 1.4rem;
  transition: all 0.2s ease-in;
}
.product-item__thumb {
  position: relative;
}
.product-item__thumb img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-item__text {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 1.2rem;
  flex: 1;
}
.product-item__text-title {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 0;
}
.product-item__text-excerpt {
  font-size: 1.4rem;
  font-weight: 300;
  margin: auto 0;
}
.product-item__text-cta {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #2ea0b5;
}
.product-item__text-cta img {
  width: 2rem !important;
}
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.13);
}
.product-item:active {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.13);
}

.curiosity-item {
  border-radius: 6px;
  border: 1px solid #fff;
  padding: 2.4rem;
  height: 100%;
  min-height: 30rem;
  transition: all 0.2s ease-in;
}
.curiosity-item__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #4e7292;
  margin-bottom: 1.2rem;
}
.curiosity-item__icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.curiosity-item h3 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.curiosity-item:hover {
  background-color: #fff;
  color: #353e52;
}

.project-item {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.13);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.project-item__thumb {
  aspect-ratio: 1/0.8;
  position: relative;
}
.project-item__thumb img {
  aspect-ratio: 1/0.8;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-item__text {
  padding: 0.8rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex: 1;
}
.project-item__text h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #4e7292;
}
.project-item__text-cta {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #2ea0b5;
}
.project-item__text-cta img {
  width: 1.4rem !important;
}
.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.13);
}
.project-item:active {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.13);
}

.category-item {
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 767px) {
  .category-item {
    padding: 0;
  }
}
.category-item__carousel {
  aspect-ratio: 441/569;
  margin-bottom: 1rem;
}
.category-item__carousel .owl-stage, .category-item__carousel .owl-stage-outer, .category-item__carousel .owl-item {
  height: 100%;
}
.category-item__carousel .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1.6rem;
  overflow: hidden;
}
.category-item__carousel .owl-nav .owl-prev,
.category-item__carousel .owl-nav .owl-next {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  color: #fff !important;
  margin: 0 !important;
  position: relative;
}
.category-item__carousel .owl-nav .owl-prev:hover,
.category-item__carousel .owl-nav .owl-next:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
}
.category-item__carousel .owl-nav .owl-next::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.category-item__carousel img {
  border-radius: 3.8rem;
  object-fit: cover;
  height: 100% !important;
}
.category-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: #353e52;
  flex: 1;
}
.category-item__content p {
  margin-bottom: 0;
}
.category-item__content .category-item__title {
  font-weight: 800;
  font-size: 2.8rem;
}
.category-item__content .category-item__excerpt {
  line-height: 1.5;
  margin: auto 0;
}
.category-item__cta {
  background-color: #00249c;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
  padding: 1.2rem 2rem;
}
.category-item:first-child .category-item__cta {
  background-color: #00249c;
}
.category-item:nth-child(2) .category-item__cta {
  background-color: #1842d1;
}
.category-item:nth-child(3) .category-item__cta {
  background-color: #2a93d4;
}

.fixed-sidebar {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}
@media (max-width: 575px) {
  .fixed-sidebar {
    right: 0.6rem;
    gap: 0.6rem;
  }
}
.fixed-sidebar__close {
  position: absolute;
  top: -3rem;
  left: 0;
  color: #fff;
  background-color: transparent;
  border: none;
  transition: all 0.2s ease-in;
}
.fixed-sidebar__item {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.2s ease-in;
}
@media (max-width: 575px) {
  .fixed-sidebar__item {
    gap: 0.8rem;
  }
}
.fixed-sidebar__item span {
  font-weight: 300;
  font-size: 1.2rem;
  color: #fff;
}
@media (max-width: 575px) {
  .fixed-sidebar__item span {
    display: none;
  }
}
.fixed-sidebar__item img {
  width: 4rem;
}
@media (max-width: 575px) {
  .fixed-sidebar__item img {
    width: 2.8rem;
  }
}
.fixed-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.5);
}
.fixed-sidebar.scrolled .fixed-sidebar__close {
  color: rgb(32, 43, 58);
}
.fixed-sidebar.scrolled .fixed-sidebar__item {
  background: rgba(32, 43, 58, 0.6);
}
.fixed-sidebar.scrolled .fixed-sidebar__item:hover {
  background: rgba(32, 43, 58, 0.8);
}

.footer {
  background: linear-gradient(to top, #131724, rgba(0, 31, 133, 0.89));
  padding-top: 4rem;
  color: #fff;
}
.footer-infos {
  max-width: 100%;
}
@media (max-width: 767px) {
  .footer-infos {
    text-align: center;
  }
}
.footer-logo img {
  width: 25rem;
  max-width: 100%;
  margin-bottom: 2rem;
}
.footer-title {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-address address {
  color: #191919;
  text-transform: uppercase;
}
.footer-address address:hover {
  text-decoration: underline;
}
.footer-social {
  align-items: center;
}
.footer-social__items {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .footer-social__items {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.footer-social__items .social-item {
  font-size: 2.4rem;
  color: #fff;
  transition: all 0.2s ease-in;
}
.footer-social__items .social-item:hover {
  transform: scale(1.1);
}
.footer-right-box {
  padding-left: 2rem;
  display: flex;
  justify-content: space-around;
  gap: 4rem;
}
@media (max-width: 767px) {
  .footer-right-box {
    padding-left: 0;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .footer-links ul {
    text-align: center;
  }
}
.footer-links ul li a {
  display: inline-block;
  padding: 0.8rem 0;
  color: #fff;
  font-weight: 400;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40rem;
  max-width: 100%;
}
.footer-contact__item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer-contact__item-icon {
  width: 6rem;
  height: 6rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #232d69;
}
.footer-contact__item-text {
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 6.5rem);
  flex: 1;
}
.footer-contact__item-text span {
  font-weight: 600;
}
.footer-contact__item-text a {
  color: #fff;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-contact__item-text a:hover {
  text-decoration: underline;
}
.footer-copyright {
  padding: 1.6rem 0;
}
.footer-copyright__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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 {
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 11;
  }
}
.header-contact {
  background-color: #4e7292;
}
@media (max-width: 767px) {
  .header-contact {
    display: none;
  }
}
.header-contact__content {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__content > div {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.header-contact__item i {
  color: #53dcf4;
  font-size: 1.6rem;
}
.header-contact__item span,
.header-contact__item address {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 44rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .header-contact__item span,
  .header-contact__item address {
    display: none;
  }
}
.header-contact__social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header-contact__social .social-item {
  font-size: 2rem;
  color: #fff;
}
.header-contact__social .social-item.whatsapp {
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  background-color: #2eb58c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 1.6rem;
  background: rgba(32, 43, 58, 0.84);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  width: 100%;
  left: 0;
  transition: all 0.2s ease-in;
}
.header-main:has(.header-nav li:hover > .header-submenu) {
  border-radius: 0;
}
@media (max-width: 767px) {
  .header-main {
    padding: 0.8rem;
  }
}
@media (max-width: 991px) {
  .header-main {
    gap: 2rem;
  }
}
@media (max-width: 1199px) {
  .header-main {
    width: 98%;
    left: 50%;
    transform: translate(-50%);
  }
}
.header-logo img {
  width: 24rem;
}
@media (max-width: 991px) {
  .header-logo img {
    width: 20rem;
  }
}
.header-nav {
  flex: 1;
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30rem;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    background-color: #2ea0b5;
    overflow: auto;
    transition: all 0.2s ease-in;
    display: none;
  }
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 999999;
  }
  .header-nav .close-btn {
    background-color: transparent;
    border: none;
    padding: 2rem;
    color: #fff;
  }
}
.header-nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30rem;
  max-width: 90%;
  background: #202b3a;
  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;
  color: #fff;
}
.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: #fff;
  padding: 1.2rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.6rem;
}
.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: #fff;
  transform: rotate(90deg);
  transition: all 0.2s ease-in;
}
.header-nav__mobile ul > li > span > button.collapsed i {
  transform: rotate(0deg);
}
.header-nav__mobile ul > li.active > span > a,
.header-nav__mobile ul > li.active > span i {
  color: #53dcf4 !important;
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    align-items: flex-start;
  }
}
.header-nav__list > li {
  padding: 3rem 0;
  text-align: center;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    padding: 0rem 2rem;
  }
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 0.8rem 0rem;
  font-weight: 500;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem 0;
    color: #fff;
  }
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  height: 2px;
  background-color: #53dcf4;
  width: 0;
  transition: all 0.2s;
}
.header-nav__list > li:hover > a,
.header-nav__list > li:hover span a, .header-nav__list > li.active > a,
.header-nav__list > li.active span a {
  color: #53dcf4;
}
.header-nav__list > li.active > a {
  font-weight: 700;
}
.header-nav__list > li:hover > a::after,
.header-nav__list > li:hover > span > a::after {
  width: 100%;
}
.header-nav__list > li:hover .header-submenu {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.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: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.2rem;
  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 .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;
}
.header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2.8rem 4rem;
  background: rgba(0, 36, 156, 0.87);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.9px);
  -webkit-backdrop-filter: blur(6.9px);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.2s ease-in;
}
.header-submenu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.header-submenu__box {
  text-align: left;
  min-height: 12rem;
}
.header-submenu__box-cat {
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  padding-left: 0.6rem;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}
.header-submenu__box-cat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #53dcf4;
}
.header-submenu__box-cat:hover {
  color: #53dcf4;
}
.header-submenu__box-products {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.header-submenu__box-products li a {
  color: #fff;
}
.header-submenu__box-products li a:hover {
  color: #53dcf4;
}
.header-submenu .btn {
  background-color: #1842d1;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.header-submenu .btn:hover {
  background-color: #153bba;
}

.back-to-top {
  width: 5rem;
  height: 5rem;
  border: none;
  border-radius: 50%;
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  background-color: #2ea0b5;
  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: #46bbd0;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  min-height: 70rem;
  height: calc(100vh - 3.4rem);
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 10rem 0;
  min-height: calc(100vh - 3.4rem);
}
@media (max-width: 686px) {
  .banner-item {
    padding-bottom: 14rem;
  }
}
@media (max-width: 418px) {
  .banner-item {
    padding-bottom: 20rem;
  }
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: bottom;
  z-index: -1;
}
.banner-item__content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .banner-item__content {
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .banner-item__content {
    padding: 2rem 0;
  }
}
.banner-item__title {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  width: 70rem;
  max-width: 100%;
}
.banner-item__title strong {
  color: #53dcf4;
  font-weight: 700;
}
@media (max-width: 767px) {
  .banner-item__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 400px) {
  .banner-item__title {
    font-size: 2.6rem;
  }
}
.banner-item__text {
  width: 70rem;
  max-width: 100%;
}
.banner-item__text-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.banner-item__text-item img {
  width: 3rem !important;
  height: auto !important;
}
.banner-item__text-item p {
  font-weight: 700;
  color: #fff;
}
.banner-item .btn {
  padding: 1.6rem 8rem;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .banner-item .btn {
    padding: 1.6rem 2rem;
    width: 100%;
  }
}
.banner-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 0;
  background-color: rgba(6, 13, 25, 0.87);
  z-index: 1;
}
@media (max-width: 767px) {
  .banner-track {
    padding: 2rem 0;
  }
}
.banner-track__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .banner-track__content {
    justify-content: center;
    gap: 2rem;
  }
}
.banner-track__item {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}
.banner-track__item-number {
  font-size: 8rem;
  line-height: 1;
}
@media (max-width: 991px) {
  .banner-track__item-number {
    font-size: 4rem;
  }
}
.banner-track__item-text {
  font-size: 1.8rem;
  width: 10rem;
  line-height: 1;
}
@media (max-width: 991px) {
  .banner-track__item-text {
    font-size: 1.6rem;
  }
}
.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: #292929 !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: #434343 !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}

.breadcrumb {
  margin-top: 5rem;
  color: #898989;
  font-size: 1.4rem;
}
.breadcrumb-item a {
  color: #898989;
}
.breadcrumb-item a:hover {
  color: #616161;
}
.breadcrumb-item.active {
  font-weight: 500;
  color: #898989;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #454545;
}

.contact-section {
  background: rgba(78, 114, 146, 0.68) url("../images/contact-section-bg.jpg");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 4rem 0;
}
.contact-section__header {
  position: relative;
  margin-bottom: 4rem;
}
.contact-section__header h3 {
  font-weight: 600;
  font-size: 1.6rem;
}
.contact-section__header p {
  font-weight: 300;
}
.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,
.contact-section__form textarea {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  border: none !important;
  color: #fff !important;
  transition: all 0.2s ease-in;
}
.contact-section__form input::placeholder,
.contact-section__form textarea::placeholder {
  font-weight: 300;
  color: #fff !important;
  opacity: 0.6;
}
.contact-section__form input:focus,
.contact-section__form textarea:focus {
  backdrop-filter: blur(1.2rem);
}
.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: #4e7292 !important;
  background-color: #fff;
  font-weight: 800;
  width: 100%;
  padding: 1.6rem 2rem;
  border-radius: 0;
}
.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;
}

.solutions {
  padding: 6rem 0;
  background: linear-gradient(to bottom, rgba(8, 111, 202, 0.18), transparent 60%);
}
.solutions-header {
  text-align: center;
  width: 80rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 4rem;
}
.solutions-carousel .owl-stage {
  display: flex;
}
.solutions-carousel .owl-item {
  align-self: stretch;
}
.solutions-carousel .owl-nav {
  width: 18rem;
  margin: auto;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solutions-carousel .owl-nav > button {
  width: 5rem;
  height: 5rem;
  font-size: 1.4rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95959f !important;
  border: 1px solid #95959f !important;
  border-radius: 50% !important;
  transition: all 0.2s ease-in;
}
.solutions-carousel .owl-nav > button:hover {
  background-color: #95959f !important;
  color: #fff !important;
}
.solutions-carousel .product-item {
  height: calc(100% - 1.4rem);
}

.testimonial {
  padding-bottom: 6rem;
  max-width: 100%;
  overflow: hidden;
}
.testimonial-header {
  margin-bottom: 3.2rem;
}

.home-about {
  padding: 6rem 0;
}
.home-about__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .home-about__text {
    margin-bottom: 4rem;
    padding-right: 0;
  }
}
.home-about__text .title strong {
  display: block;
}
.home-about__text p {
  font-weight: 300;
  text-align: justify;
}
.home-about__text .btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  gap: 1.2rem;
  margin-top: 2rem;
}
.home-about__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}
.home-about__images-image {
  overflow: hidden;
  --image-border-radius-size: 99px;
}
.home-about__images-image img {
  width: 100%;
  aspect-ratio: 393/268;
  object-fit: cover;
}
@media (max-width: 991px) {
  .home-about__images-image {
    --image-border-radius-size: 50px;
  }
}
@media (max-width: 767px) {
  .home-about__images-image {
    --image-border-radius-size: 50px;
  }
}
.home-about__images-image:nth-child(1) {
  border-radius: 0 0 var(--image-border-radius-size) 0;
}
.home-about__images-image:nth-child(2) {
  border-radius: 0 0 0 var(--image-border-radius-size);
}
.home-about__images-image:nth-child(3) {
  border-radius: 0 var(--image-border-radius-size) 0 0;
}
.home-about__images-image:nth-child(4) {
  border-radius: var(--image-border-radius-size) 0 0 0;
}
.home-about__images-ca {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 30rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.58);
}
@media (max-width: 991px) {
  .home-about__images-ca {
    font-size: 25rem;
  }
}
@media (max-width: 575px) {
  .home-about__images-ca {
    font-size: 15rem;
  }
}
.home-curiosities {
  padding: 6rem 0;
  background-color: #4e7292;
  color: #fff;
}
.home-curiosities__header {
  text-align: center;
  width: 75rem;
  max-width: 100%;
  margin: auto;
  margin-bottom: 4rem;
}
.home-curiosities__header-title {
  text-align: center;
}
.home-curiosities__header-title span {
  display: block;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .home-curiosities__header-title span {
    font-size: 1.6rem;
  }
}
.home-curiosities__header-title h2 {
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .home-curiosities__header-title h2 {
    font-size: 3.2rem;
  }
}
.home-curiosities__header p {
  font-weight: 300;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .home-curiosities__header p {
    font-size: 1.6rem;
  }
}
.home-curiosities__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6rem;
  row-gap: 3rem;
}
@media (max-width: 991px) {
  .home-curiosities__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
}
@media (max-width: 500px) {
  .home-curiosities__list {
    grid-template-columns: 1fr;
  }
}
.home-projects {
  padding: 6rem 0;
}
.home-projects__header {
  text-align: center;
  margin-bottom: 4rem;
}
.home-projects__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .home-projects__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .home-projects__list {
    grid-template-columns: 1fr;
  }
}
.home-projects__cta {
  text-align: center;
}
.home-projects__cta .btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
}

.about-text {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .about-gallery {
    gap: 1.2rem;
  }
}
.about-gallery__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .about-gallery__row {
    gap: 1.2rem;
  }
}
@media (max-width: 575px) {
  .about-gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-gallery__row.odd .about-gallery__image:nth-child(1), .about-gallery__row.odd .about-gallery__image:nth-child(3) {
  border-radius: 0 0 var(--image-border-radius-size) 0;
}
.about-gallery__row.odd .about-gallery__image:nth-child(2), .about-gallery__row.odd .about-gallery__image:nth-child(4) {
  border-radius: 0 0 0 var(--image-border-radius-size);
}
.about-gallery__row.even .about-gallery__image:nth-child(1), .about-gallery__row.even .about-gallery__image:nth-child(3) {
  border-radius: 0 var(--image-border-radius-size) 0 0;
}
.about-gallery__row.even .about-gallery__image:nth-child(2), .about-gallery__row.even .about-gallery__image:nth-child(4) {
  border-radius: var(--image-border-radius-size) 0 0 0;
}
.about-gallery__row .about-gallery__image {
  overflow: hidden;
  --image-border-radius-size: 99px;
}
.about-gallery__row .about-gallery__image img {
  width: 100%;
  aspect-ratio: 393/268;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-gallery__row .about-gallery__image {
    --image-border-radius-size: 50px;
  }
}
@media (max-width: 767px) {
  .about-gallery__row .about-gallery__image {
    --image-border-radius-size: 50px;
  }
}
@media (max-width: 575px) {
  .about-gallery__row .about-gallery__image {
    border-radius: 0;
  }
  .about-gallery__row .about-gallery__image:nth-child(1) {
    border-radius: 0 0 var(--image-border-radius-size) 0 !important;
  }
  .about-gallery__row .about-gallery__image:nth-child(2) {
    border-radius: 0 0 0 var(--image-border-radius-size) !important;
  }
  .about-gallery__row .about-gallery__image:nth-child(3) {
    border-radius: 0 var(--image-border-radius-size) 0 0 !important;
  }
  .about-gallery__row .about-gallery__image:nth-child(4) {
    border-radius: var(--image-border-radius-size) 0 0 0 !important;
  }
}
.about-cta {
  margin-bottom: 6rem;
  text-align: center;
  margin-top: 2rem;
}
.about-cta .btn {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
}
.about-cta .btn img {
  width: 2.8rem;
}

.page-404 {
  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: #292929;
  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: 4rem 0;
}
.contact-header h1 {
  color: #4e7292;
  font-weight: 800;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contact-form {
    padding-right: 0;
  }
}
.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 #4e7292;
  color: #191919;
  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: 0;
  border: 1px solid #2ea0b5;
  box-shadow: none;
}
.contact-form .form-group textarea {
  min-height: 16rem;
}
.contact-form .form-group--consent p {
  font-size: 1.4rem;
  color: #a8a8a8;
  font-weight: 300;
}
.contact-form .form-submit {
  text-align: left;
}
.contact-form .form-submit .btn {
  text-transform: uppercase;
}
.contact-image {
  padding: 0 2rem;
}
.contact-image img {
  width: 100%;
}
.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40rem;
  max-width: 100%;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .contact-infos {
    margin-top: 3rem;
    width: 100%;
    padding-left: 0;
  }
}
.contact-infos__social {
  margin-bottom: 2.4rem;
  width: max-content;
}
.contact-infos__social > span {
  font-weight: 800;
  color: #4e7292;
  font-size: 2rem;
}
.contact-infos__social-items {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
}
.contact-infos__social-items a {
  font-size: 3.2rem;
  transition: all 0.2s ease-in;
}
.contact-infos__social-items a:hover {
  transform: scale(1.05);
}
.contact-infos__social-items .instagram {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  background-clip: text;
  -webkit-background-clip: text;
}
.contact-infos__social-items .facebook {
  color: #3b5998;
}
.contact-infos__social-items .linkedin {
  color: #0077b5;
}
.contact-infos__social-items .youtube {
  color: #ff0000;
}
.contact-infos__item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.contact-infos__item-icon {
  width: 6rem;
  height: 6rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #416686;
}
.contact-infos__item-text {
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 6.5rem);
  flex: 1;
}
.contact-infos__item-text span {
  font-weight: 600;
  color: #4e7292;
}
.contact-infos__item-text a {
  color: #4e7292;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-infos__item-text a:hover {
  text-decoration: underline;
}

.thanks {
  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: #4e7292;
  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: #4e7292;
}
.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;
}

.default {
  padding: 4rem 0;
}
.default-main > * {
  margin-bottom: 1rem;
}
.default-main a {
  color: #4e7292;
}
.default-main a:hover {
  text-decoration: underline;
}
.default .title {
  font-weight: 600;
}

.products {
  padding: 4rem 0;
}
.products-text {
  margin-bottom: 2.4rem;
}
.products-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .products-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .products-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .products-categories {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 6rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .products-list {
    grid-template-columns: 1fr;
  }
}

.product {
  padding: 4rem 0;
}
.product .slider-container {
  position: relative;
  display: block;
}
.product .slider-container .slider .content img {
  aspect-ratio: 1;
  width: 100%;
  height: auto !important;
  object-fit: cover;
}
.product .slider-container .slider-controls a {
  position: absolute;
  top: 40%;
  z-index: 100;
  color: #fff;
  background-color: #202b3a;
  width: 3rem;
  height: 3rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s ease-in;
}
.product .slider-container .slider-controls a:hover {
  opacity: 1;
}
.product .slider-container .slider-controls a.slider-left {
  left: 0.8rem;
}
.product .slider-container .slider-controls a.slider-right {
  right: 0.8rem;
}
.product .thumbnail-slider-container {
  margin-top: 5px;
}
.product .thumbnail-slider-container .content {
  padding: 2px;
}
.product .thumbnail-slider-container .content img {
  aspect-ratio: 1;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.product .thumbnail-slider .owl-item {
  opacity: 0.6;
  transition: all 0.2s ease-in;
  cursor: pointer;
}
.product .thumbnail-slider .owl-item.active.center, .product .thumbnail-slider .owl-item.active.highlighted {
  opacity: 1;
}
@media (max-width: 767px) {
  .product .thumbnail-slider .owl-dots {
    display: none;
  }
}
.product-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .product-main {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.product-title {
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}
.product-description .btn {
  background-color: #1842d1;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 2px;
  padding: 1.2rem 2.4rem;
  margin: 1.6rem 0;
}
@media (max-width: 575px) {
  .product-description .btn {
    width: 100%;
  }
}
.product-description .btn:hover {
  background-color: #153bba;
}
.product-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .product-cta {
    margin-top: 2rem;
  }
}
@media (max-width: 575px) {
  .product-cta {
    justify-content: center;
  }
}
.product-cta span {
  font-weight: 800;
  font-size: 2rem;
}
.product-cta .btn {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
}
.product-cta .btn img {
  width: 2.4rem;
}
.product-others {
  padding: 6rem 0;
}
.product-others > .title {
  margin-bottom: 2rem;
}
.product-others-carousel .owl-stage {
  display: flex;
}
.product-others-carousel .owl-item {
  align-self: stretch;
}
.product-others-carousel .owl-nav {
  width: 18rem;
  margin: auto;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-others-carousel .owl-nav > button {
  width: 5rem;
  height: 5rem;
  font-size: 1.4rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95959f !important;
  border: 1px solid #95959f !important;
  border-radius: 50% !important;
  transition: all 0.2s ease-in;
}
.product-others-carousel .owl-nav > button:hover {
  background-color: #95959f !important;
  color: #fff !important;
}
.product-others-carousel .product-item {
  height: calc(100% - 1.4rem);
}

.projects {
  padding: 4rem 0;
}
.projects-heading {
  margin-bottom: 4rem;
}
.projects-filter {
  width: 100%;
  padding: 2rem;
  margin-bottom: 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: #4e7292;
}
.projects-filter__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.projects-filter__item label {
  padding-left: 0.4rem;
  color: #fff;
}
.projects-filter__item select {
  border: 1px solid #f7f7f7;
  border-radius: 0.4rem;
  padding: 0.2rem 1.2rem;
}
.projects-filter__actions {
  align-self: flex-end;
}
.projects-filter .btn--filter {
  border: 1px solid #fff;
  color: #2ea0b5;
  background-color: #fff;
}
.projects-filter .btn--filter:hover {
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
}
.projects-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}
@media (max-width: 767px) {
  .projects-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .projects-list {
    grid-template-columns: 1fr;
  }
}
.projects-tabs {
  display: flex;
  margin-bottom: 3.2rem;
}
.projects-tabs a {
  flex: 1;
  text-align: center;
  background-color: #f3f3f3;
  padding: 1.2rem 2rem;
  position: relative;
  font-size: 1.8rem;
}
.projects-tabs a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #2ea0b5;
  transition: all 0.2s;
}
.projects-tabs a.active {
  background-color: #ededed;
  font-weight: 500;
}
.projects-tabs a.active:after {
  height: 2px;
}
.projects-tabs a:hover {
  background-color: #ededed;
}
.projects-grid {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 3.2rem;
}
@media (max-width: 575px) {
  .projects-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.single-project {
  padding: 6rem 0;
}
.single-project-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-project-benefits {
  background-color: #2ea0b5;
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.single-project-benefits > h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.single-project-benefits .owl-carousel {
  margin-top: 2rem;
}
.single-project-benefits .owl-carousel .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.single-project-benefits .owl-carousel .owl-dot:hover span {
  background-color: #fff;
}
.single-project-benefits .owl-carousel .owl-dot.active span {
  background-color: #fff;
}
.single-project-gallery {
  margin-top: 4rem;
}
.single-project-gallery .nav {
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.single-project-gallery .nav-link {
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  font-size: 2rem;
  color: #191919;
}
.single-project-gallery .nav-link:hover {
  background-color: #f7f7f7;
}
.single-project-gallery .nav-link.active {
  color: #fff;
  background-color: #2ea0b5;
}
.single-project-gallery .nav-link.active:hover {
  background-color: #2ea0b5;
}
.single-project-pictures__grid {
  padding-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease-in;
  overflow: hidden;
}
.single-project-pictures__grid a {
  height: 35rem;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.single-project-pictures__grid a:last-child {
  flex-grow: 10;
}
.single-project-pictures__grid img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media (max-aspect-ratio: 1/1) {
  .single-project-pictures__grid a {
    height: 30vh;
  }
}
@media (max-height: 480px) {
  .single-project-pictures__grid a {
    height: 80vh;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  .single-project-pictures__grid {
    flex-direction: row;
  }
  .single-project-pictures__grid a {
    height: auto;
    width: 100%;
  }
  .single-project-pictures__grid img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
.single-project-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .single-project-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .single-project-videos__grid {
    grid-template-columns: 1fr;
  }
}
.single-project-videos__grid iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.blog-main {
  padding: 6rem 0;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 6rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}
.blog-item {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.blog-item:hover {
  transform: translateY(-4px) scale(1.02);
}
.blog-item:hover .blog-item__text {
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.2);
}
.blog-item:active {
  transform: translateY(1px) scale(0.98);
}
.blog-item__thumb {
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-item__text {
  background-color: #fff;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.1);
  color: #4e7292;
  border-radius: 0 0 2rem 2rem;
  transition: all 0.2s ease-in;
}
.blog-item__text h3 {
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
.blog-item__text p {
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
}
.blog-item__text .btn {
  padding: 0.8rem 2rem;
  color: #fff;
  font-weight: 800;
  margin-top: 2rem;
  font-size: 1.6rem;
}

.single-blog-main {
  padding: 4rem 0;
}
.single-blog-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-blog-main > * {
  margin-bottom: 1rem;
}

.quote {
  min-height: 60vh;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.quote .contact-title {
  text-align: left;
}
.quote-form {
  margin-top: 4rem;
}
.quote-form .form-group {
  margin-bottom: 2rem;
}
.quote-form .form-group input,
.quote-form .form-group textarea {
  padding: 0.8rem 1.6rem;
}
.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
  color: #787878;
}
.quote-form .form-group textarea {
  height: 15rem;
}
.quote-form .form-group label {
  position: absolute;
  left: -9999px;
}
.quote-form .form-group--consent {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
}
.quote-form .form-group--consent a {
  color: #4e7292;
  text-decoration: underline;
}
.quote-form .form-group--consent input {
  width: auto;
}
.quote-form .form-group--consent label {
  position: relative;
  left: 0;
  color: #787878;
}
.quote-form .form-group--box {
  border: 1px solid #d4d4d4;
  padding: 1.2rem;
}
.quote-form .form-group--box > span {
  display: block;
  color: #787878;
  margin-bottom: 1rem;
  text-align: left;
}
.quote-form .form-group__options {
  list-style: none;
  padding: 0;
  text-align: left;
}
.quote-form .form-group__options li > label {
  position: relative;
  left: 0;
  padding-left: 2rem;
}
.quote-form .form-group__options li > label > input[type=radio] {
  position: absolute;
  left: -9999px;
}
.quote-form .form-group__options li > label > input[type=radio]:checked ~ .checkmark::before {
  opacity: 1;
  visibility: visible;
}
.quote-form .form-group__options li > label > .checkmark::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #989898;
  border-radius: 50%;
}
.quote-form .form-group__options li > label > .checkmark::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #4e7292;
  border: 1px solid #4e7292;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.quote-form .form-group__options li > label > span {
  display: block;
}
.quote-form .form-group__options li > label > span > span {
  display: inline-block;
  font-size: 1.2rem;
}
.quote-form input,
.quote-form textarea {
  border: 1px solid #d4d4d4 !important;
}
.quote-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
}
.quote-form .form-submit .btn:disabled {
  color: #191919;
  border: 1px solid #191919;
}
.quote-form .form-table {
  border: 1px solid #d4d4d4;
  display: block;
  margin-bottom: 2rem;
}
.quote-form .form-table thead tr {
  border-bottom: 1px solid #d4d4d4;
}
.quote-form .form-table thead th {
  padding: 0.8rem 1.6rem;
}
.quote-form .form-table thead th:first-child {
  width: 100%;
  border-right: 1px solid #d4d4d4;
}
.quote-form .form-table tbody tr {
  transition: all 0.2s ease-in;
}
.quote-form .form-table tbody tr:hover {
  background-color: #f7f7f7;
}
.quote-form .form-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #d4d4d4;
}
.quote-form .form-table tbody td {
  padding: 0.8rem 1.6rem;
}
.quote-form .form-table tbody td:first-child {
  border-right: 1px solid #d4d4d4;
}
.quote-form .form-product {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 450px) {
  .quote-form .form-product {
    flex-direction: column;
  }
}
.quote-form .form-product__image img {
  width: 10rem;
  height: auto;
}
.quote-form .form-product__name {
  flex: 1;
  font-weight: 500;
}
.quote-form .form-product__name p {
  margin: 0;
}
.quote-form .form-product__qty {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-form .form-product__qty label {
  font-size: 1.6rem;
}
.quote-form .form-product__qty input {
  width: 8rem;
  text-align: center;
  font-size: 1.6rem;
}
.quote-form .form-trash {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-form .form-trash button {
  border: none;
  background: transparent;
  cursor: pointer;
}
.quote-form .form-trash button i {
  color: #ff514d;
}
.quote-form .form-trash button i:hover {
  color: #ff0601;
}
.quote-empty {
  font-size: 2rem;
  margin-top: 4rem;
  display: none;
}
.quote-empty a {
  color: #4e7292;
}

.container {
  max-width: 1280px;
}

.container,
.row {
  --bs-gutter-x: 3.6rem !important;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0 !important;
}

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