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

html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  color: #191919;
}
@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;
  flex: 1;
}

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

.title {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.title--white {
  color: #fff;
  margin-bottom: 2rem;
}
.title__secondary {
  font-weight: 200;
  font-size: 2rem;
}
.title__primary {
  font-weight: 500;
  font-size: 4rem;
}
.title__primary strong {
  color: #006bd4;
}
.title--uppercase {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 4.8rem;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .title--uppercase {
    font-size: 3.6rem;
  }
}

.subtitle {
  margin: 2rem 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;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  line-height: 1;
  border-radius: 0;
  transition: all 0.2s;
}
.btn img {
  width: 4rem;
}
.btn--white {
  color: #fff;
}
.btn--white:hover {
  color: #fff;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-orange {
  background-color: #ea733d;
}
.btn--bg-orange:hover {
  background-color: #c54c15;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-black {
  background-color: #191919;
}
.btn--bg-black:hover {
  background-color: #3f3f3f;
}
.btn--bg-blue {
  background-color: #005fd1;
}
.btn--bg-blue:hover {
  background-color: #003c85;
}
.btn--bg-green-whatsapp {
  background-color: #25d366;
}
.btn--bg-green-whatsapp:hover {
  background-color: #1a9247;
}

.icon {
  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: 400;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 1px solid #25292b;
  color: #262626;
}
.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: 1px solid #006bd4;
}

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

.form-check {
  padding: 0;
  margin-bottom: 2rem;
}
.form-check .wpcf7-list-item {
  margin: 0;
  margin-left: 7px;
}
.form-check strong {
  font-weight: 400;
}
.form-check a {
  color: #191919;
}

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

.faq-item {
  border: 1px solid #191919;
  padding: 2rem;
  height: max-content;
}
.faq-item:not(:last-child) {
  margin-bottom: 2rem;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.faq-item__question button {
  background-color: transparent;
  border: none;
  font-size: 2rem;
}
.faq-item__question button i {
  transition: all 0.2s ease-in;
  transform: rotate(45deg);
  color: #191919;
}
.faq-item__question button.collapsed i {
  transform: rotate(0deg);
}
.footer {
  font-size: 1.4rem;
  background: url("../images/footer-bg-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 5, 56, 0.5), rgba(4, 7, 47, 0.52), rgb(0, 4, 66));
  transform: translateZ(0px);
}
.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-color: rgba(255, 255, 255, 0.36);
  border: none !important;
  color: #fff;
}
.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: #4e7292;
  background-color: #fff;
  width: 100%;
  padding: 1.2rem 2rem;
}
.footer-form .form-submit .btn:hover {
  transform: translateY(-3px);
  color: #005fd1;
}
.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: #18d3ff;
  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: #18d3ff;
  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-links {
  list-style: none;
  padding: 0;
  width: 30rem;
  max-width: 100%;
}
@media (max-width: 575px) {
  .footer-links {
    text-align: center;
  }
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links li a {
  color: #fff;
  font-weight: 600;
}
.footer-links li a:hover {
  text-decoration: underline;
}
.footer-copyright {
  padding: 1rem 0;
  color: #fff;
  border-top: 1px solid #18d3ff;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
@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__policy {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 575px) {
  .footer-copyright__policy {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.footer-copyright__policy a {
  color: #fff;
  right: 0;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-copyright__policy a {
    position: relative;
    margin-left: 2rem;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.05);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
}
@media (max-width: 991px) {
  .header {
    padding: 2rem;
  }
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  width: 30rem;
  max-width: 100%;
  transition: all 0.2s;
}
@media (max-width: 1150px) {
  .header-logo img {
    width: 20rem;
  }
}
@media (max-width: 991px) {
  .header-logo img {
    width: 30rem;
  }
}
.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;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  z-index: 9999;
}
.header-nav {
  z-index: 1;
}
.header-nav .close-btn {
  background-color: transparent;
  font-size: 2rem;
  border: none;
  color: #fff;
  pad: 2rem;
  margin: 2rem;
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav {
    background-color: #262626;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 30rem;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translate(100%);
    transition: all 0.2s;
    overflow: auto;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    z-index: 9999;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 1.6rem 4.6rem;
  width: 100%;
  background-color: #262626;
  border-radius: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  transition: all 0.2s;
}
@media (max-width: 1450px) {
  .header-nav__list {
    padding: 1.6rem 3.2rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list {
    border-radius: 0;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.header-nav__list:has(li:hover .header-nav-submenu) {
  border-radius: 3.2rem 3.2rem 0 0;
}
@media (max-width: 991px) {
  .header-nav__list:has(li:hover .header-nav-submenu) {
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: #262626;
    border-radius: 0;
    padding: 0;
  }
}
.header-nav__list > li {
  text-align: center;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    text-align: left;
    padding: 0;
  }
  .header-nav__list > li > span {
    display: flex;
    justify-content: space-between;
  }
  .header-nav__list > li > span > a {
    padding: 1rem 1.6rem;
    color: #fff;
    display: block;
    font-weight: 600;
  }
  .header-nav__list > li > span > button {
    border: none;
    background-color: transparent;
    color: #fff;
    padding: 0 2rem;
  }
  .header-nav__list > li > span > button i {
    transition: all 0.2s ease-in;
  }
  .header-nav__list > li > span > button.collapsed i {
    transform: rotate(-90deg);
  }
  .header-nav__list > li ul li:last-child {
    border: none;
  }
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.2s;
  padding: 1rem;
  font-weight: 600;
  transform-style: preserve-3d;
  z-index: 1;
}
.header-nav__list > li > a i,
.header-nav__list > li span a i {
  margin-left: 8px;
  font-size: 1.2rem;
}
@media (max-width: 1450px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    font-size: 1.6rem;
  }
}
@media (max-width: 1150px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    font-size: 1.4rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem 1.6rem;
    color: #fff;
    font-size: 1.8rem;
  }
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #005fd1;
  transform: translateZ(-1px);
  transition: all 0.2s;
}
.header-nav__list > li > a:hover:after,
.header-nav__list > li span a:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 991px) {
  .header-nav__list > li > a:hover:after,
  .header-nav__list > li span a:hover:after {
    width: 0;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li > a:hover,
  .header-nav__list > li span a:hover {
    background-color: #005fd1;
  }
}
.header-nav__list > li:hover > a:after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 991px) {
  .header-nav__list > li:hover > a:after {
    width: 0;
  }
}
@media (max-width: 991px) {
  .header-nav__list > li:hover > a {
    background-color: #005fd1;
  }
}
.header-nav__list > li .header-nav-submenu {
  position: absolute;
  top: calc(100% - 2rem);
  left: 50%;
  background-color: #262626;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: all 0.2s ease-in;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem;
  border-radius: 0 0 3.2rem 3.2rem;
}
@media (max-width: 991px) {
  .header-nav__list > li .header-nav-submenu {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    gap: 2rem;
    padding: 0;
    display: block;
  }
}
.header-nav__list > li .header-nav-submenu.collapse:not(.show) {
  display: none;
}
.header-nav__list > li .header-nav-submenu__box {
  text-align: left;
}
@media (max-width: 991px) {
  .header-nav__list > li .header-nav-submenu__box {
    padding: 1rem 2rem;
  }
}
.header-nav__list > li .header-nav-submenu__category {
  color: #fff;
  padding: 0;
  font-weight: 700;
  font-size: 1.8rem;
}
.header-nav__list > li .header-nav-submenu__category:hover {
  text-decoration: underline;
}
.header-nav__list > li .header-nav-submenu__list {
  padding: 0;
  list-style: none;
}
.header-nav__list > li .header-nav-submenu__list > li {
  position: relative;
  padding-left: 2rem;
}
.header-nav__list > li .header-nav-submenu__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-color: #005fd1;
  transition: all 0.4s ease-in;
}
.header-nav__list > li .header-nav-submenu__list > li > a {
  color: #fff;
  display: block;
  padding: 0.4rem 0;
}
.header-nav__list > li .header-nav-submenu__list > li > a:hover {
  text-decoration: underline;
}
.header-nav__list > li .header-nav-submenu__list > li:hover::before {
  transform: translateY(-50%) rotate(225deg);
}
.header-nav__list > li.active > a,
.header-nav__list > li.active > span > a {
  color: #18d3ff;
}
@media (min-width: 992px) {
  .header-nav__list > li:hover .header-nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
  }
}
.header-nav__list > li.nav-quote-item a i {
  font-size: 2.4rem;
  margin: 0 !important;
}
.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-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 1450px) {
  .header-contact {
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
    gap: 4rem;
  }
}
@media (max-width: 575px) {
  .header-contact {
    order: 0;
    gap: 1rem;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
.header-contact__item span {
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .header-contact__item span {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-contact__item span {
    display: inline-block;
  }
}
@media (max-width: 575px) {
  .header-contact__item span {
    display: none;
  }
}
.header-contact__item span:hover {
  text-decoration: underline;
}
.header-contact__item a {
  color: #fff;
}
.header-contact__item a:hover {
  text-decoration: underline;
}
.header-contact__icon {
  font-size: 3.2rem;
}
@media (max-width: 575px) {
  .header-contact__icon {
    font-size: 2rem;
  }
}
.header-contact img {
  width: 4rem;
}
@media (max-width: 575px) {
  .header-contact img {
    width: 2.8rem;
  }
}
.header-contact__social .social__icon {
  font-size: 3.2rem;
}
.header-contact__social .social__icon:hover {
  transform: scale(1.05);
}
@media (max-width: 575px) {
  .header-contact__social .social__icon {
    font-size: 2.4rem;
  }
}
.header-search__btn {
  background-color: #ea733d;
  color: #fff;
  border: none;
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__btn:hover {
  background-color: #dc5518;
}
.header-search__form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #262626;
  gap: 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease-in;
}
.header-search__form.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-search__form input {
  flex: 1;
  border: 1px solid #ececec;
  height: 3.2rem;
  padding: 0 1.2rem;
  transition: all 0.2s;
}
.header-search__form input:focus {
  outline: none;
  box-shadow: 0 0 2px #3aac79;
}
.header-search__form button {
  border: none;
  background-color: #ea733d;
  color: #fff;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search__form button:hover {
  background-color: #dc5518;
}

.banner {
  min-height: 100vh;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  transform-style: preserve-3d;
  padding-top: 17.9rem;
  padding-bottom: 8rem;
}
@media (max-width: 991px) {
  .banner-item {
    padding-top: 10rem;
  }
}
@media (max-width: 575px) {
  .banner-item {
    padding-top: 14rem;
    justify-content: center;
  }
}
.banner-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, #002c4b, transparent);
  transform: translateZ(0px);
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}
.banner-item__content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100rem;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
.banner-item__content h2 {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 6rem;
}
.banner-item__content h2 strong {
  font-weight: 700;
  color: #18d3ff;
}
@media (max-width: 991px) {
  .banner-item__content h2 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .banner-item__content h2 {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .banner-item__content h2 {
    font-size: 4rem;
  }
}
.banner-item .btn {
  background-color: rgba(0, 95, 209, 0.8);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 2rem;
  padding: 1.6rem 2.4rem;
}
@media (max-width: 991px) {
  .banner-item .btn {
    width: 95%;
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .banner-item .btn {
    font-size: 1.6rem;
    letter-spacing: 0px;
    padding: 1.6rem 1.2rem !important;
  }
}
.banner-item .btn img {
  width: 2.8rem;
}
.banner-item .btn:hover {
  background-color: #005fd1;
  transform: scale(1.1);
}
.banner-item__text {
  width: 40rem;
  max-width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 25rem;
  z-index: 1;
}
@media (max-width: 991px) {
  .banner-item__text {
    padding-bottom: 20%;
  }
}
.banner-item__text h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 2rem;
}
.banner-item__text p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .banner-item__text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .banner-item__text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .banner-item__text p {
    font-size: 1rem;
  }
}
.banner-item__text .btn {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .banner-item__text .btn {
    font-size: 1.6rem;
  }
}
.banner-carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .banner-carousel .owl-dots {
    bottom: 0;
  }
}
.banner-carousel .owl-dots .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
  transition: all 0.2s ease-in;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.4rem;
}
.banner-carousel .owl-dots .owl-dot:hover span, .banner-carousel .owl-dots .owl-dot.active span {
  background-color: #005fd1;
  border: 2px solid #005fd1;
}
.banner-carousel .owl-prev,
.banner-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner-carousel .owl-prev i,
.banner-carousel .owl-next i {
  position: relative;
  top: -2px;
}
.banner-carousel .owl-prev {
  left: 2%;
}
.banner-carousel .owl-next {
  right: 2%;
}
.banner-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.banner-carousel .owl-nav [class*=owl-] {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2) !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-carousel .owl-nav [class*=owl-]:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}
.banner-carousel .owl-nav [class*=owl-] i {
  height: 1rem;
}

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

.advantages__items {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 575px) {
  .advantages__items {
    margin-bottom: 4rem;
  }
}
.advantages-item {
  flex: 1;
  position: relative;
}
.advantages-item__icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 14rem;
}
.advantages-item__text {
  position: relative;
  z-index: 1;
  min-width: 20rem;
  padding: 3rem 0 0 8rem;
}
.advantages-item__text h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.advantages-item__text p {
  font-weight: 300;
}

.pages-banner {
  background: url("../images/parallax.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.pages-banner__text {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(to bottom, rgba(2, 5, 56, 0.5), rgba(4, 7, 47, 0.52), rgba(0, 4, 66, 0.7));
}
.pages-banner__text h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  max-width: 100%;
  font-size: 6.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .pages-banner__text h2 {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .pages-banner__text h2 {
    font-size: 3.2rem;
  }
}
.pages-banner__text p {
  color: #fff;
  width: 83rem;
  max-width: 100%;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .pages-banner__text p {
    font-size: 2rem;
  }
}
.pages-banner__text .btn {
  background-color: rgba(0, 95, 209, 0.8);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 2rem;
  padding: 1.6rem 2.4rem;
}
@media (max-width: 991px) {
  .pages-banner__text .btn {
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .pages-banner__text .btn {
    font-size: 1.6rem;
    letter-spacing: 0px;
    padding: 1.6rem 1.2rem !important;
  }
}
.pages-banner__text .btn:hover {
  background-color: #005fd1;
  transform: scale(1.1);
}

.faq {
  padding: 4rem 0;
}
.faq .title {
  text-align: center;
}
.faq__items [class^=col-]:not(:last-child) {
  margin-bottom: 2rem;
}
.faq__cta {
  text-align: center;
  margin-top: 4rem;
}
.faq__cta p {
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.faq__cta .btn {
  font-weight: 600;
  border-radius: 0.8rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.reviews {
  padding: 6rem 0;
}

.home {
  position: relative;
  z-index: 1;
}
.home-about {
  padding-bottom: 6rem;
}
.home-about-mvv {
  background: linear-gradient(to bottom, transparent, #deedf9);
  padding: 6rem 0;
}
.home-about__text {
  margin-top: 6rem;
}
@media (max-width: 991px) {
  .home-about__text {
    margin-bottom: 4rem;
  }
}
.home-about__text p {
  font-weight: 300;
}
.home-about__text .btn {
  padding: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.8rem;
  padding: 1.2rem 0;
}
@media (max-width: 991px) {
  .home-about__text .btn {
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .home-about__text .btn {
    font-size: 1.6rem;
    padding: 1.6rem 1.2rem !important;
  }
}
.home-about__text .btn img {
  width: 2.8rem;
  transition: all 0.2s ease-in-out;
}
.home-about__text .btn:hover {
  background-color: #005fd1;
  padding: 1.2rem 1.6rem;
  color: #fff;
}
.home-about__text .btn:hover img {
  filter: invert(1);
}
.home-about__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6rem;
  row-gap: 4.6rem;
}
@media (max-width: 991px) {
  .home-about__items {
    column-gap: 2rem;
    row-gap: 2rem;
  }
}
@media (max-width: 470px) {
  .home-about__items {
    grid-template-columns: 1fr;
  }
}
.home-about__item {
  background-color: rgba(0, 126, 216, 0.15);
  padding: 2rem;
  border-radius: 3rem;
}
.home-about__item-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.home-about__item-number {
  display: block;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 1;
}
@media (max-width: 991px) {
  .home-about__item-number {
    font-size: 4rem;
  }
}
.home-about__item-title {
  font-weight: 500;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.home-about__item-text p {
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 300;
}
.home-parallax {
  width: 100%;
  aspect-ratio: 16/4;
  background: url("../images/home-parallax.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .home-parallax {
    aspect-ratio: 16/9;
  }
}
@media (hover: none) {
  .home-parallax {
    background-attachment: initial;
  }
}
.home-gallery {
  padding-top: 6rem;
}
.home-gallery__wrapper {
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .home-gallery__wrapper {
    padding: 0;
    margin-bottom: 4rem;
  }
}
.home-gallery__main img {
  width: 100%;
  transition: all 0.2s;
}
.home-gallery__main img:hover {
  filter: brightness(1.5);
}
.home-gallery__thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  gap: 1.2rem;
}
.home-gallery__thumbs > a {
  display: block;
  aspect-ratio: 4/3;
  width: 8rem;
}
.home-gallery__thumbs > a img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 0.2s;
}
.home-gallery__thumbs > a img:hover {
  filter: brightness(1.5);
}
.home-gallery__text {
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .home-gallery__text {
    padding: 0;
  }
}
.home-gallery__text h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.home-gallery__text p {
  font-weight: 300;
}
.home-gallery__text .btn {
  background-color: rgba(0, 95, 209, 0.81);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.8rem;
  padding: 1.2rem 2.4rem;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .home-gallery__text .btn {
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .home-gallery__text .btn {
    font-size: 1.6rem;
    padding: 1.6rem 1.2rem !important;
  }
}
.home-gallery__text .btn img {
  width: 2.8rem;
}
.home-gallery__text .btn:hover {
  background-color: #005fd1;
  transform: translateY(-3px);
}
.home .reviews {
  padding-bottom: 0;
}

.about {
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.about-mvv {
  margin-top: 4rem;
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .about-mvv {
    flex-direction: column;
  }
}
.about-mvv-item {
  flex: 1;
}
.about-mvv-item__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}
.about-mvv-item__header img {
  width: 5rem;
}
.about-mvv-item__header h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.about-mvv-item__body {
  letter-spacing: 1px;
}
.about-numbers {
  display: flex;
  margin-top: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.about-numbers > * {
  flex: 1;
}
.about-products {
  padding: 6rem 0;
  background-color: #f3f3f3;
}
.about-products__text {
  margin-bottom: 4rem;
}
.about-products__text .title {
  text-align: left;
  font-weight: 700;
  font-size: 3.6rem;
}
.about-products__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-products .btn {
  padding: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.8rem;
  padding: 1.2rem 0;
}
@media (max-width: 991px) {
  .about-products .btn {
    width: 95%;
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .about-products .btn {
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 1.6rem 1.2rem !important;
  }
}
.about-products .btn img {
  width: 2.8rem;
  transition: all 0.2s ease-in-out;
}
.about-products .btn:hover {
  background-color: #005fd1;
  padding: 1.2rem 1.6rem;
  color: #fff;
}
.about-products .btn:hover img {
  filter: invert(1);
}

.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: #005fd1;
  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 {
  position: relative;
  z-index: 1;
}
.contact-title {
  margin-bottom: 2.8rem;
}
.contact-title .title__primary {
  font-weight: 700;
  font-size: 3.6rem;
  text-transform: uppercase;
}
.contact-title .title__secondary {
  color: #006bd4;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 500;
}
.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}
.contact-infos__item {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #191919;
}
.contact-infos__item span,
.contact-infos__item address {
  margin-bottom: 0;
}
.contact-infos__item:hover span,
.contact-infos__item:hover address {
  text-decoration: underline;
}
.contact-infos__social {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .contact-infos__social {
    margin-bottom: 4rem;
  }
}
.contact-infos__social > span {
  font-size: 2.8rem;
}
.contact-infos__social-items {
  display: flex;
  gap: 2rem;
}
.contact-infos__social-items a {
  font-size: 2.8rem;
  color: #006bd4;
  transition: all 0.2s ease-in;
}
.contact-infos__social-items a:hover {
  transform: scale(1.1);
}
.contact-form .form-submit {
  text-align: left;
}
.contact-form .form-submit .btn {
  border-radius: 0;
  border: none;
  background-color: rgba(0, 107, 212, 0.86);
  color: #fff;
  font-weight: 400;
  padding: 1.2rem 2rem;
}
.contact-form .form-submit .btn:hover {
  background-color: #006bd4;
}
.contact-map {
  margin-bottom: -7px;
}

.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: #3aac79;
  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 {
  position: relative;
  z-index: 1;
}
.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: #eeeeee;
  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: #262626;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #262626;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #262626;
}
.thanks-main p {
  color: #262626;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.products {
  position: relative;
  z-index: 1;
}
.products-cards {
  display: flex;
  gap: 2rem;
  padding-bottom: 6rem;
  flex-wrap: wrap;
}
.products-card {
  flex: 1;
  padding: 2rem;
  background: linear-gradient(to bottom, #006bd4, #0dc1eb);
  border-radius: 1rem;
  transition: all 0.2s ease-in;
}
.products-card__title {
  color: #fff;
}
.products-card__title h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
}
.products-card__title h3 strong {
  display: block;
  font-size: 4rem;
  font-weight: 800;
}
@media (max-width: 575px) {
  .products-card__title h3 strong {
    font-size: 3.2rem;
  }
}
@media (max-width: 350px) {
  .products-card__title h3 strong {
    font-size: 2.8rem;
  }
}
.products-card__description {
  color: #fff;
  font-weight: 300;
  font-size: 1.4rem;
}
.products-card:hover {
  transform: scale(1.05);
}
.products-main__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 6rem;
}
@media (max-width: 575px) {
  .products-main__list {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.products-main__list .products-item__image {
  width: 40%;
}
@media (max-width: 767px) {
  .products-main__list .products-item__image {
    width: 100%;
  }
}
.products-main__list .products-item__image img {
  aspect-ratio: 1/1;
}
.products-projects {
  padding: 4rem 0 6rem 0;
  background: linear-gradient(to bottom, rgba(24, 211, 255, 0.3), #fff);
}
.products-projects__header {
  text-align: center;
  margin-bottom: 4rem;
}
.products-projects__header h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-size: 3.2rem;
}
.products-projects__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .products-projects__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-projects-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.products-projects-item__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.products-projects-item__hover {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: rgba(24, 211, 255, 0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-projects-item__hover span {
  color: #fff;
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}
@media (max-width: 991px) {
  .products-projects-item__hover {
    position: relative;
    bottom: 0;
    padding: 1.2rem;
    height: auto;
  }
}
.products-projects-item:hover .products-projects-item__hover {
  bottom: 0;
  height: 100%;
}
@media (max-width: 991px) {
  .products-projects-item:hover .products-projects-item__hover {
    bottom: 0;
    height: auto;
  }
}
.products-item {
  display: flex;
  gap: 1.2rem;
  transition: all 0.2s ease-in;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .products-item {
    flex-direction: column;
  }
}
.products-item:hover {
  transform: scale(1.05);
  background-color: #d9d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.products-item:active {
  transform: scale(0.98);
  background-color: #d9d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.products-item__image {
  aspect-ratio: 1;
  width: 25%;
}
@media (max-width: 767px) {
  .products-item__image {
    display: flex;
    gap: 2rem;
    aspect-ratio: unset;
    align-items: center;
    width: 100%;
  }
}
.products-item__image img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .products-item__image img {
    aspect-ratio: unset;
    width: 40%;
  }
}
.products-item__image-mobile {
  display: flex;
  flex-direction: column;
  color: #2e313a;
}
.products-item__image-mobile > * {
  font-size: 2.4rem;
}
.products-item__content {
  color: #2e313a;
  border-top: 4px solid #d9d9d9;
  padding: 2rem 1.2rem;
  flex: 1;
}
.products-item__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.products-item__name {
  font-size: 2rem;
}
.products-item__text p {
  font-size: 1.6rem;
  font-weight: 400;
}
.products-item__cta {
  font-weight: 700;
  font-size: 2rem;
  color: #2e313a;
}

.product {
  position: relative;
  z-index: 1;
}
.product-gallery {
  margin-top: 4rem;
  width: 145rem;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .product-gallery {
    padding-left: 0rem;
  }
}
.product-gallery #sync1 img {
  aspect-ratio: 4/3;
  height: auto !important;
  object-fit: contain;
}
.product-gallery #sync2 {
  margin-top: 1.2rem;
}
.product-gallery #sync2 .current img {
  opacity: 0.5;
}
.product-gallery #sync2 img {
  aspect-ratio: 4/3;
  object-fit: cover;
  height: auto !important;
}
.product-gallery .owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}
.product-gallery .owl-theme .owl-nav [class*=owl-] {
  transition: all 0.3s ease;
}
.product-gallery .owl-theme .owl-nav [class*=owl-].disabled:hover {
  background-color: #d6d6d6;
}
.product-gallery #sync1.owl-theme {
  position: relative;
}
.product-gallery #sync1.owl-theme .owl-next,
.product-gallery #sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
}
.product-gallery #sync1.owl-theme .owl-next:hover,
.product-gallery #sync1.owl-theme .owl-prev:hover {
  background-color: #005fd1;
}
.product-gallery #sync1.owl-theme .owl-prev {
  left: 10px;
}
.product-gallery #sync1.owl-theme .owl-next {
  right: 10px;
}
.product-description {
  padding: 0 4rem;
  padding-top: 4rem;
  width: 145rem;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 1199px) {
  .product-description {
    padding: 0 2rem;
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .product-description {
    padding: 0rem;
  }
}
.product-description h1 {
  text-transform: uppercase;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.product-description .btn {
  margin-top: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  width: 40rem;
  max-width: 100%;
  justify-content: space-between;
  background-color: rgba(0, 95, 209, 0.81);
  padding: 1.2rem 2.4rem;
}
.product-description .btn:hover {
  background-color: #005fd1;
  transform: scale(1.05);
}
.product-description .btn img {
  width: 2.8rem;
}
.product .advantages__items {
  margin: 6rem 0 0 0;
}
.product-medias {
  padding: 4rem;
  width: 145rem;
  max-width: 100%;
  margin: auto;
}
.product-medias .nav {
  margin-bottom: 2rem;
  justify-content: flex-end;
}
.product-medias .nav-link {
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  font-size: 2rem;
  color: #191919;
}
.product-medias .nav-link:hover {
  background-color: #f7f7f7;
}
.product-medias .nav-link.active {
  color: #fff;
  background-color: #005fd1;
}
.product-medias .nav-link.active:hover {
  background-color: #005fd1;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.1rem;
}
@media (max-width: 1199px) {
  .product-gallery {
    padding: 0;
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.product-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .product-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .product-videos__grid {
    grid-template-columns: 1fr;
  }
}
.product-videos__grid iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.projects {
  position: relative;
  z-index: 1;
}
.projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 575px) {
  .projects-list {
    grid-template-columns: 1fr;
  }
}
.projects-item {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.4s ease-in;
}
@media (max-width: 1199px) {
  .projects-item {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 767px) {
  .projects-item {
    aspect-ratio: 3/4;
  }
}
@media (max-width: 575px) {
  .projects-item {
    aspect-ratio: unset;
  }
}
.projects-item__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in;
}
.projects-item__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #002c4b, transparent);
}
@media (max-width: 575px) {
  .projects-item__content {
    padding: 2rem 0;
  }
}
.projects-item__title {
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 4rem 0 3.2rem;
}
@media (max-width: 991px) {
  .projects-item__title {
    font-size: 2.8rem;
  }
}
.projects-item__description {
  font-size: 2rem;
  padding: 0 4rem 0 3.2rem;
}
@media (max-width: 991px) {
  .projects-item__description {
    font-size: 1.6rem;
  }
}
.projects-item .btn {
  align-self: flex-end;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: rgba(0, 107, 212, 0.86);
  padding: 1.2rem 2rem;
}
@media (max-width: 991px) {
  .projects-item .btn {
    letter-spacing: 1px;
  }
}
@media (max-width: 575px) {
  .projects-item .btn {
    font-size: 1.6rem;
    letter-spacing: 0px;
    padding: 1.6rem 1.2rem !important;
  }
}
.projects-item .btn:hover {
  background-color: #006bd4;
}
.projects-item:hover {
  transform: scale(1.02);
}
.projects-item:hover .projects-item__bg {
  transform: scale(1.1);
}

.project {
  position: relative;
  z-index: 1;
}
.project-gallery {
  margin-top: 4rem;
}
.project-gallery .nav {
  margin-bottom: 2rem;
  justify-content: flex-end;
}
.project-gallery .nav-link {
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  font-size: 2rem;
  color: #191919;
}
.project-gallery .nav-link:hover {
  background-color: #f7f7f7;
}
.project-gallery .nav-link.active {
  color: #fff;
  background-color: #005fd1;
}
.project-gallery .nav-link.active:hover {
  background-color: #005fd1;
}
.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;
}
.project-pictures__grid a {
  height: 35rem;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.project-pictures__grid a:last-child {
  flex-grow: 10;
}
.project-pictures__grid img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media (max-aspect-ratio: 1/1) {
  .project-pictures__grid a {
    height: 30vh;
  }
}
@media (max-height: 480px) {
  .project-pictures__grid a {
    height: 80vh;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
  .project-pictures__grid {
    flex-direction: row;
  }
  .project-pictures__grid a {
    height: auto;
    width: 100%;
  }
  .project-pictures__grid img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
.project-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .project-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .project-videos__grid {
    grid-template-columns: 1fr;
  }
}
.project-videos__grid iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.blog {
  position: relative;
  z-index: 1;
}
.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}
.blog-header h1 {
  font-size: 3.2rem;
}
.blog-header p {
  font-weight: 300;
  font-size: 1.8rem;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6rem;
  row-gap: 6rem;
}
@media (max-width: 767px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.8rem;
    row-gap: 2.8rem;
  }
}
@media (max-width: 450px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}
.blog-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.2s ease-in;
}
.blog-item__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  height: auto !important;
}
.blog-item__title {
  color: #191919;
  font-weight: 600;
}
.blog-item__description {
  color: #191919;
}
.blog-item .btn {
  padding: 0;
  font-weight: 400;
}
.blog-item .btn i {
  color: #006bd4;
  font-size: 1.4rem;
}
.blog-item:hover {
  transform: translateY(-3px);
}

.single-blog {
  position: relative;
  z-index: 1;
}
.single-blog-content {
  margin-top: 4rem;
}
.single-blog-content img {
  max-width: 100%;
}

.quote {
  min-height: 60vh;
  position: relative;
  z-index: 1;
}
.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: #005fd1;
  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: #005fd1;
  border: 1px solid #005fd1;
  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-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: #005fd1;
}

.container {
  max-width: 1170px;
}
.container--xl {
  max-width: 1600px;
}
.container--radius {
  background-color: #fff;
  padding: 4rem;
  border-radius: 5rem 5rem 0 0;
  margin-top: -6rem;
}
@media (max-width: 991px) {
  .container--radius {
    padding: 2rem;
    border-radius: 2.4rem 2.4rem 0 0;
  }
}

.lightbox {
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.lightbox .lb-image {
  border: 0 !important;
  border-radius: 0 !important;
}

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