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

html {
  font-size: 62.5%;
}

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

a {
  text-decoration: none;
}

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

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

.title {
  font-weight: 700;
  font-size: 4rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .title {
    font-size: 2.4rem;
  }
}

@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: 8px;
  transition: all 0.2s;
}
.btn i {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
.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-blue {
  background-color: #006699;
}
.btn--bg-blue:hover {
  background-color: #00334d;
}
.btn--bg-light-blue {
  background-color: #0099ff;
}
.btn--bg-light-blue:hover {
  background-color: #006bb3;
}
.btn--bg-light-orange {
  background-color: #fe8e1e;
}
.btn--bg-light-orange:hover {
  background-color: #cf6801;
}
.btn--bg-black {
  background-color: #191919;
}
.btn--bg-black:hover {
  background-color: #3f3f3f;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}

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

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

.cards-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  margin: 4rem 0;
}
@media (max-width: 991px) {
  .cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .cards-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cards-item {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.cards-item:hover {
  transform: translateY(-4px) scale(1.02);
}
.cards-item:hover .cards-item__text {
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.2);
}
.cards-item:active {
  transform: translateY(1px) scale(0.98);
}
.cards-item__thumb {
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.cards-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-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);
  border-radius: 0 0 2rem 2rem;
  transition: all 0.2s ease-in;
}
.cards-item__text h3 {
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
  color: #f23f22;
}
.cards-item__text p {
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #484848;
}
.cards-item__text .btn {
  padding: 0.8rem 2rem;
  color: #fff;
  font-weight: 800;
  margin-top: 2rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 0;
}

.projects-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projects-item__thumb {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}
.projects-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in;
  aspect-ratio: 16/9;
}
.projects-item__hover {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 102, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.projects-item__hover .btn {
  transform: translateY(10px);
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .projects-item__hover {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 102, 153, 0.3);
  }
  .projects-item__hover .btn {
    transform: translateY(0px);
  }
}
.projects-item__name {
  color: #006699;
  font-size: 2rem;
  text-align: center;
  margin-top: 1.2rem;
  font-weight: 700;
}
.projects-item__cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  background-color: #1db504;
  color: #fff;
  transition: all 0.2s ease-in;
  margin-top: 1.6rem;
}
.projects-item__cta:hover {
  background-color: #22eb03 !important;
}
@media (max-width: 767px) {
  .projects-item__cta {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    color: #fff;
  }
}
.projects-item:hover .projects-item__hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.projects-item:hover .projects-item__hover .btn {
  transform: translateY(0px);
}
.projects-item:hover .projects-item__cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  background-color: #1db504;
  color: #fff;
}

.footer {
  font-size: 1.6rem;
  background-color: #006699;
  position: relative;
  z-index: 2;
}
.footer-map {
  margin-bottom: -7px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 4rem 0;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .footer-col {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .footer-col--logo {
    width: 100%;
    flex-basis: 100%;
  }
  .footer-col--logo img {
    display: block;
    margin: auto;
    padding: 2rem 0;
  }
}
.footer-logo img {
  width: 25rem;
}
.footer-title {
  display: block;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
}
@media (max-width: 575px) {
  .footer-links {
    text-align: center;
  }
}
.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-links ul li a {
  color: #fff;
  font-weight: 500;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer-contact {
    text-align: center;
    align-items: center;
  }
}
.footer-contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.4rem;
}
.footer-contact__item:hover span,
.footer-contact__item:hover address {
  text-decoration: underline;
}
.footer-contact__item i {
  line-height: 0;
}
.footer-contact__item span,
.footer-contact__item address {
  margin-bottom: 0;
  font-weight: 500;
}
@media (max-width: 575px) {
  .footer-contact__item address {
    width: 30rem;
    max-width: 79%;
  }
}
.footer-contact__item span:hover {
  text-decoration: underline;
}
.footer-contact__item a {
  color: #fff;
}
.footer-contact__item a:hover {
  text-decoration: underline;
}
.footer-contact__item:hover .footer-contact__icon {
  background-color: #fff;
  color: #292929;
  border: 2px solid #fff;
}
.footer-contact__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
@media (max-width: 575px) {
  .footer-contact__row {
    flex-direction: column;
    align-items: center;
  }
}
.footer-social {
  justify-content: center;
}
.footer-social .social__item i {
  border: none;
  color: #fff;
  font-size: 2.4rem;
  transition: all 0.2s ease-in;
}
.footer-social .social__item i:hover {
  transform: scale(1.1);
}
.footer-copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  color: #fff;
}
.footer-copyright__policy {
  color: #fff;
  right: 0;
  text-transform: none !important;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-copyright__policy {
    position: relative;
    margin-left: 2rem;
  }
}

.header {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-contact {
  background-color: #2e37d4;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-contact {
    height: auto;
  }
}
.header-contact__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .header-contact__content {
    gap: 1.6rem;
  }
}
@media (max-width: 991px) {
  .header-contact__content {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .header-contact__content {
    gap: 1.6rem;
  }
}
@media (max-width: 575px) {
  .header-contact__content {
    justify-content: center;
    gap: 2rem;
  }
}
.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1199px) {
  .header-contact__item {
    font-size: 1.4rem;
  }
}
@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__item img {
  width: 3.2rem;
}
.header-contact__item:hover .header-contact__icon {
  background-color: #2e37d4;
  color: #fff;
  border: 2px solid #fff;
}
.header-contact__icon {
  background-color: #fff;
  color: #2e37d4;
  border: 2px solid #fff;
  transition: all 0.2s;
}
.header-contact__text-wrapped {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 575px) {
  .header-contact__text-wrapped {
    display: none;
  }
}
.header-contact__text-wrapped a:not(:last-child)::after {
  content: " | ";
}
.header-contact__social .icon {
  background-color: #3aac79;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.2s;
}
.header-contact__social .icon:hover {
  background-color: #fff;
  color: #3aac79;
  border: 2px solid #fff;
}
.header-main {
  position: relative;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header-main {
    padding: 0 1.2rem;
  }
}
.header-logo img {
  margin: auto;
  display: block;
  padding: 2rem 0;
  width: 30rem;
  max-width: 100%;
  transition: all 0.2s;
}
@media (max-width: 575px) {
  .header-logo img {
    width: 20rem;
  }
}
.header-nav {
  z-index: 1;
  flex: 1;
  align-items: center;
}
.header-nav:hover {
  z-index: 3;
}
@media (max-width: 991px) {
  .header-nav {
    background-color: #292929;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 34rem;
    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 .close-btn {
  background-color: transparent;
  font-size: 2rem;
  border: none;
  color: #fff;
  pad: 2rem;
  margin: 2rem;
}
.header-nav__wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__wrapper {
    position: unset;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
}
@media (max-width: 1199px) {
  .header-nav__list {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: #292929;
  }
}
.header-nav__list > li {
  text-align: center;
  position: relative;
}
@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 0;
    color: #fff;
    display: block;
    font-weight: 700;
  }
  .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: 0.8rem 0rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    font-size: 1.5rem;
  }
}
@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: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: #0099ff;
  transition: all 0.2s;
}
.header-nav__list > li > a:hover,
.header-nav__list > li span a:hover {
  color: #0099ff;
}
.header-nav__list > li > a:hover::after,
.header-nav__list > li span a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .header-nav__list > li > a:hover::after,
  .header-nav__list > li span a:hover::after {
    width: 0;
  }
}
.header-nav__list > li > a.highlighted,
.header-nav__list > li span a.highlighted {
  background-color: #0099ff;
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
@media (max-width: 991px) {
  .header-nav__list > li > a.highlighted,
  .header-nav__list > li span a.highlighted {
    border-radius: 0;
    padding: 1rem 1.6rem;
    background-color: transparent;
  }
}
.header-nav__list > li > a.highlighted:hover,
.header-nav__list > li span a.highlighted:hover {
  color: #fff;
  transform: scale(1.02);
  background-color: lighen(#0099ff, 10%);
}
.header-nav__list > li > a.highlighted:hover::after,
.header-nav__list > li span a.highlighted:hover::after {
  width: 0;
}
@media (max-width: 991px) {
  .header-nav__list > li.active > a,
  .header-nav__list > li.active > span > a {
    background-color: #0099ff;
  }
}
.header-nav__list > li.active > a::after,
.header-nav__list > li.active > span > a::after {
  width: 100%;
}
@media (max-width: 991px) {
  .header-nav__list > li.active > a::after,
  .header-nav__list > li.active > span > a::after {
    width: 0;
  }
}
.header-nav__list > li.active > a.highlighted,
.header-nav__list > li.active > span > a.highlighted {
  background-color: #fff;
  color: #0099ff;
}
.header-nav__list > li.active > a.highlighted::after,
.header-nav__list > li.active > span > a.highlighted::after {
  width: 0;
}
@media (max-width: 991px) {
  .header-nav__list > li.active > a.highlighted,
  .header-nav__list > li.active > span > a.highlighted {
    background-color: #0099ff;
    color: #fff;
  }
}
.header-nav__list > li:hover > a,
.header-nav__list > li:hover > span > a {
  color: #0099ff;
}
@media (max-width: 991px) {
  .header-nav__list > li:hover > a,
  .header-nav__list > li:hover > span > a {
    color: #fff;
  }
}
.header-nav__list > li:hover > a:after,
.header-nav__list > li:hover > span > a:after {
  width: 100%;
}
@media (max-width: 991px) {
  .header-nav__list > li:hover > a:after,
  .header-nav__list > li:hover > span > a:after {
    width: 0;
  }
}
.header-nav__list > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
@media (max-width: 991px) {
  .header-nav__list > li:hover .submenu {
    transform: translate(0, 0);
  }
}
.header-nav__btn {
  height: 6.7rem;
  position: relative;
  left: 0;
  color: #fff;
  cursor: pointer;
  width: max-content;
  display: none;
  gap: 0.2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .header-nav__btn {
    display: flex;
    height: 100%;
  }
}
.header-nav__btn > span {
  text-transform: uppercase;
  transition: all 0.2s;
}
.header-nav__icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}
.header-nav__icon-bar {
  position: absolute;
  width: 80%;
  height: 0.4rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.1s;
}
.header-nav__icon-bar--1 {
  top: 8px;
}
.header-nav__icon-bar--2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav__icon-bar--3 {
  bottom: 8px;
}
.header-nav__icon.opened + span {
  font-size: 1.6rem;
}
.header-nav__icon.opened .header-nav__icon-bar {
  height: 0.2rem;
}
.header-nav__icon.opened .header-nav__icon-bar--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.header-nav__icon.opened .header-nav__icon-bar--2 {
  opacity: 0;
  visibility: hidden;
}
.header-nav__icon.opened .header-nav__icon-bar--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
.header-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: all 0.2s ease-in;
  background-color: #0099ff;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .header-nav .submenu {
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
    width: 100%;
    background-color: transparent;
  }
}
.header-nav .submenu > ul {
  list-style: none;
  padding: 0;
}
.header-nav .submenu > ul > li > a {
  font-size: 1.8rem;
}
.header-nav .submenu > ul > li > ul {
  list-style: none;
  padding: 0;
  background-color: #33adff;
}
@media (max-width: 991px) {
  .header-nav .submenu > ul > li > ul {
    background-color: #434343;
  }
}
.header-nav .submenu > ul > li > ul > li > a {
  padding-left: 4rem;
}
.header-nav .submenu > ul li a {
  text-align: left;
  display: block;
  padding: 0.8rem 2rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.2s;
}
.header-nav .submenu > ul li a:hover {
  background-color: #008ae6;
}
.header-nav .submenu > ul li.active > a {
  background-color: #008ae6;
}
.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: #292929;
  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;
}
.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;
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 60vh;
  margin-top: -10.9rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background-color: #006699;
}
.banner-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.83;
  background: linear-gradient(to bottom, transparent, #2e37d4);
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item__text {
  max-width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.banner-item__text h2 {
  color: #fff;
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 100%;
  margin-bottom: 2rem;
  text-shadow: 0 -28px 1px rgba(255, 255, 255, 0.1), 0 28px 1px rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .banner-item__text h2 {
    font-size: 3.2rem;
    text-shadow: 0 -16px 1px rgba(255, 255, 255, 0.1), 0 16px 1px rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .banner-item__text h2 {
    font-size: 2.4rem;
    text-shadow: 0 -12px 1px rgba(255, 255, 255, 0.1), 0 12px 1px rgba(255, 255, 255, 0.1);
  }
}
.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;
}
.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: #0099ff !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: #007acc !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}
.banner .scroll-gif {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 4rem;
  height: 6rem;
  border: 1px solid #fff;
  border-radius: 2rem;
  z-index: 99;
  animation-name: scrollAnimate;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
.banner .scroll-gif__ball {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 999px;
  background-color: #fff;
  animation-name: scrollBallAnimate;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}

@keyframes scrollAnimate {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 5px);
    opacity: 0.5;
  }
}
@keyframes scrollBallAnimate {
  0% {
    top: 10%;
  }
  100% {
    top: 80%;
  }
}
.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;
}

.testimonial {
  background: linear-gradient(to bottom, transparent, 0%, transparent, 80%, #006699);
  padding-bottom: 4rem;
}
.testimonial .title {
  color: #353e52;
  font-weight: 300;
  font-size: 4rem;
}
@media (max-width: 575px) {
  .testimonial .title {
    font-size: 2.4rem;
  }
}
.testimonial .title strong {
  font-weight: 700;
}
.testimonial-carousel {
  margin-top: 4rem;
}
.testimonial-carousel.owl-carousel .owl-stage {
  display: flex;
}
.testimonial-carousel.owl-carousel .owl-item {
  padding: 0.6rem;
}
.testimonial-carousel.owl-carousel .owl-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
.testimonial-carousel.owl-carousel .owl-nav.disabled {
  display: none;
}
.testimonial-carousel.owl-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #efede6 !important;
  color: #9aa4a9 !important;
  border: 1px solid #9aa4a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.8;
  transition: all 0.2s;
}
.testimonial-carousel.owl-carousel .owl-nav [class*=owl-]:hover {
  opacity: 1;
}
.testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-item__blockquote {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  flex: 1;
}
.testimonial-item__blockquote > img {
  width: 8rem !important;
}
.testimonial-item__blockquote blockquote {
  line-height: 1.25;
  font-size: 1.4rem;
  padding: 2rem 0;
}
.testimonial-item__author {
  margin-top: 1.6rem;
  display: block;
  text-align: right;
}
.testimonial-item__info {
  display: flex;
  margin-top: 4rem;
  padding-left: 0.8rem;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-item__info-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-item__info-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.home-about {
  padding: 6rem 0;
}
.home-about__heading {
  position: relative;
  padding: 5rem 0;
}
.home-about__heading img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 8rem;
  max-width: 100%;
}
.home-about__heading h1,
.home-about__heading h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
  padding-right: 10rem;
}
.home-about__text {
  font-weight: 400;
}
.home-about__text h3 {
  font-weight: 700;
  margin-top: 2rem;
}
.home-about__cta {
  text-align: center;
}
.home-differentials {
  padding: 3rem 0 6rem 0;
  background: url("../images/differentials-bg.svg") #006699;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
.home-differentials__heading {
  color: #fff;
  text-align: center;
}
.home-differentials__heading > span {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
}
.home-differentials__heading > h1,
.home-differentials__heading > h2 {
  font-weight: 700;
  font-size: 3.2rem;
}
.home-differentials__heading > p {
  width: 85rem;
  max-width: 100%;
  margin: auto;
  font-weight: 300;
  font-size: 2rem;
}
.home-differentials__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8rem;
  row-gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .home-differentials__items {
    column-gap: 4rem;
    row-gap: 4rem;
  }
}
@media (max-width: 767px) {
  .home-differentials__items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 4rem;
  }
}
@media (max-width: 575px) {
  .home-differentials__items {
    column-gap: 2rem;
    row-gap: 2rem;
  }
}
@media (max-width: 450px) {
  .home-differentials__items {
    grid-template-columns: 1fr;
  }
}
.home-differentials__items .differentials-item {
  padding: 6rem 2rem;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0.6rem;
  transition: all 0.2s ease-in;
}
.home-differentials__items .differentials-item__title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.home-differentials__items .differentials-item__text {
  font-weight: 300;
}
.home-differentials__items .differentials-item:hover {
  background-color: #fff;
  color: #006699;
}
.home-clients {
  padding-top: 6rem;
}
.home-clients h2 {
  text-align: center;
  color: #006699;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 4rem;
}
.home-clients .clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.home-clients .clients-item img {
  width: 12rem !important;
  height: 12rem !important;
  object-fit: contain !important;
}
.home-clients .clients-carousel .owl-prev,
.home-clients .clients-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-clients .clients-carousel .owl-prev {
  left: -4rem;
}
@media (max-width: 1199px) {
  .home-clients .clients-carousel .owl-prev {
    left: 0;
  }
}
.home-clients .clients-carousel .owl-next {
  right: -4rem;
}
@media (max-width: 1199px) {
  .home-clients .clients-carousel .owl-next {
    right: 0;
  }
}
.home-clients .clients-carousel .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.home-clients .clients-carousel .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: transparent !important;
  color: #9aa4a9 !important;
  border-radius: 50%;
  border: 1px solid #9aa4a9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.home-clients .clients-carousel .owl-nav [class*=owl-]:hover {
  background-color: #9aa4a9, 10% !important;
  opacity: 1;
  color: #fff;
  text-decoration: none;
}
.home-projects {
  padding: 6rem 0;
}
.home-projects__heading {
  text-align: center;
  color: #006699;
  margin-bottom: 4rem;
}
.home-projects__heading h2 {
  font-weight: 700;
  font-size: 4rem;
}
.home-projects__heading p {
  font-weight: 300;
  font-size: 2rem;
}
.home-projects__track {
  background: linear-gradient(to right, #fe8e1e, #f23f22);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.home-projects__track-item {
  display: flex;
  gap: 0.8rem;
  color: #fff;
  align-items: center;
}
.home-projects__track-item strong {
  font-size: 7.2rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .home-projects__track-item strong {
    font-size: 6rem;
  }
}
.home-projects__track-item span {
  width: 10rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media (max-width: 575px) {
  .home-projects__track-item span {
    font-size: 1.4rem;
  }
}
.home-projects__cta {
  text-align: center;
}
.home-projects__cta .btn {
  background: linear-gradient(to right, #fe8e1e, #f23f22);
  padding: 0.8rem 2rem;
  color: #fff;
  font-weight: 800;
  margin-top: 2rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 1rem;
}
.home-projects__cta .btn:hover {
  transform: translateY(-4px);
}

.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);
    row-gap: 2rem;
  }
}
@media (max-width: 450px) {
  .blog-list {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.blog-item {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.blog-item:hover {
  transform: translateY(-4px) scale(1.02);
}
.blog-item:active {
  transform: translateY(1px) scale(0.98);
}
.blog-item__thumb {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.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: flex-start;
  padding: 2rem 0;
  transition: all 0.2s ease-in;
}
.blog-item__text h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #006699;
  margin-bottom: 1.6rem;
}
.blog-item__text p {
  line-height: 1.2;
  font-size: 1.6rem;
  color: #191919;
}
.blog-item__text .btn {
  padding: 0;
  color: #191919;
  font-weight: 400;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  display: flex;
  gap: 0.8rem;
}
.blog-item__text .btn i {
  color: #006699;
}
.blog-item__text .btn:hover {
  font-weight: 700;
}

main .single-blog {
  padding: 6rem 0;
}
main .single-blog .container {
  width: 100rem;
}
main .single-blog__content h1 {
  color: #006699;
  margin-bottom: 2rem;
}

.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: #006699;
  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;
  padding: 6rem 0;
  color: #191919;
}
@media (max-width: 991px) {
  .contact {
    padding: 2rem 0;
  }
}
.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: #e74901;
  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%;
  padding-right: 6rem;
}
@media (max-width: 575px) {
  .contact-infos {
    padding-right: 0;
  }
}
.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: #006699;
  transition: all 0.2s ease-in;
}
.contact-infos__social-items a:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .contact-form {
    margin-top: 2rem;
  }
}
.contact-form .form-submit {
  text-align: left;
}
.contact-form .form-submit .btn {
  border-radius: 0;
  border: none;
  background-color: #0099ff;
  color: #fff;
  font-weight: 400;
  padding: 2rem !important;
}
@media (max-width: 767px) {
  .contact-form .form-submit .btn {
    padding: 1.2rem 2rem !important;
  }
}
.contact-form .form-submit .btn:hover {
  background-color: #006699;
}
.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;
}

.services {
  padding: 6rem 0;
}
.services .title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3.2rem;
  font-size: 4rem;
}
.services-list {
  width: 140rem;
  max-width: 100%;
  margin: auto;
  padding: 0 2rem;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}
.services .cards-item {
  flex: 1;
}
.services-text {
  padding: 6rem 0;
}

.service {
  padding: 6rem 0;
}
.service-images__main img {
  width: 100%;
  height: auto;
}
.service-images__gallery {
  margin-top: 2.4rem;
}
.service-images__gallery-item {
  aspect-ratio: 4/3;
}
.service-images__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-images__gallery .owl-stage {
  display: flex;
}
.service-images__gallery .owl-item {
  align-self: stretch;
}
.service-images__gallery .owl-prev,
.service-images__gallery .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.service-images__gallery .owl-prev {
  left: 2%;
}
.service-images__gallery .owl-next {
  right: 2%;
}
.service-images__gallery .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.service-images__gallery .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #0099ff !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.service-images__gallery .owl-nav [class*=owl-]:hover {
  background-color: #007acc !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}
.service-description h1 {
  color: #006699;
  font-weight: 700;
  margin-bottom: 2rem;
}
.service-quote .btn {
  border-radius: 0px;
  text-transform: uppercase;
  color: #fff;
  background-color: #0099ff;
  letter-spacing: 2px;
}
.service-quote .btn:hover {
  background-color: #007acc;
}
.service-cta {
  width: 60rem;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 4rem;
}
.service-cta span {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #191919;
}
.service-cta .btn {
  color: #fff;
  background-color: #25d366;
  padding: 0.8rem 2.4rem;
  text-transform: uppercase;
}
.service-cta .btn:hover {
  background-color: #1da851;
}

.products .title {
  margin-bottom: 2rem;
}
.products-taxonomy {
  padding-bottom: 6rem;
}
.products-taxonomy .cards-item__thumb {
  aspect-ratio: 16/7;
}
.products-taxonomy:first-child {
  padding-top: 6rem;
}
.products-taxonomy__text {
  margin-top: 4rem;
}
.products-taxonomy--blue .title {
  color: #0099ff;
}
.products-taxonomy--blue .products-list {
  width: 140rem;
  max-width: 100%;
  padding: 0 2rem;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media (max-width: 991px) {
  .products-taxonomy--blue .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 430px) {
  .products-taxonomy--blue .products-list {
    grid-template-columns: 1fr;
  }
}
.products-taxonomy--blue .cards-item__name {
  color: #006699;
}
.products-taxonomy--blue .cards-item .btn {
  background-color: #0099ff;
}
.products-taxonomy--orange .title {
  color: #ea733d;
}
.products-taxonomy--orange .products-list {
  width: 100rem;
  max-width: 100%;
  padding: 0 2rem;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 430px) {
  .products-taxonomy--orange .products-list {
    grid-template-columns: 1fr;
  }
}
.products-taxonomy--orange .cards-item__name {
  color: #fe8e1e;
}
.products-taxonomy--orange .cards-item .btn {
  background-color: #ea733d;
}
.products-taxonomy--orange .cards-item .btn:hover {
  background-color: #fe8e1e;
}

.product {
  padding: 6rem 0;
}
.product-images {
  position: sticky;
  top: 1rem;
}
.product-images__main img {
  width: 100%;
  height: auto !important;
}
.product-images__gallery {
  margin-top: 2.4rem;
}
.product-images__gallery-item {
  aspect-ratio: 4/3;
}
.product-images__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-images__gallery .owl-stage {
  display: flex;
}
.product-images__gallery .owl-item {
  align-self: stretch;
}
.product-images__gallery .owl-prev,
.product-images__gallery .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.product-images__gallery .owl-prev {
  left: 2%;
}
.product-images__gallery .owl-next {
  right: 2%;
}
.product-images__gallery .owl-nav {
  height: 0 !important;
  margin: 0 !important;
}
.product-images__gallery .owl-nav [class*=owl-] {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #0099ff !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  opacity: 0.5;
  transition: all 0.2s;
}
.product-images__gallery .owl-nav [class*=owl-]:hover {
  background-color: #007acc !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}
.product-description h1 {
  color: #006699;
  font-weight: 700;
  margin-bottom: 2rem;
}
.product-quote .btn {
  border-radius: 0px;
  text-transform: uppercase;
  color: #fff;
  background-color: #0099ff;
  letter-spacing: 2px;
}
.product-quote .btn:hover {
  background-color: #007acc;
}
.product-cta {
  width: 60rem;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 4rem;
}
.product-cta span {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #191919;
}
.product-cta .btn {
  color: #fff;
  background-color: #25d366;
  padding: 0.8rem 2.4rem;
  text-transform: uppercase;
}
.product-cta .btn:hover {
  background-color: #1da851;
}
.product--orange .product-description h1 {
  color: #eb0303;
  font-size: 3.2rem;
}
.product--orange .product-quote .btn {
  background-color: #fe8e1e;
}
.product--orange .product-quote .btn:hover {
  background-color: #e87501;
}
.product-telas {
  margin-top: 4rem;
}
.product-telas h2 {
  color: #eb0303;
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
.product-telas__colors {
  height: 15rem;
  width: 90rem;
  max-width: 100%;
  display: block;
  margin: auto;
  margin-bottom: 2rem;
  object-fit: contain;
}
.product-telas__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4rem 0;
  gap: 2rem;
}
.product-telas__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.2rem;
  width: 20rem;
}
.product-telas__item img {
  height: 7rem;
  width: auto;
}
.product-telas__item p {
  text-align: center;
  color: #191919;
}

.quote {
  min-height: 60vh;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}
.quote .contact-title {
  text-align: left;
}
.quote .contact-title .title__primary {
  text-transform: none;
  color: #191919;
}
.quote .contact-title .title__secondary {
  color: #0099ff;
}
.quote-form {
  margin-top: 4rem;
}
.quote-form .form-group {
  margin-bottom: 2rem;
}
.quote-form .form-group input,
.quote-form .form-group textarea,
.quote-form .form-group select {
  padding: 0.8rem 1.6rem;
  border: 1px solid #d4d4d4 !important;
}
.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder,
.quote-form .form-group select::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 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;
  margin-bottom: 0;
}
.quote-form .form-group__options li > label {
  position: relative;
  left: 0;
  padding-left: 2rem;
}
.quote-form .form-group__options li > label > input[type=radio],
.quote-form .form-group__options li > label > input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.quote-form .form-group__options li > label > input[type=radio]:checked ~ .checkmark::before,
.quote-form .form-group__options li > label > input[type=checkbox]:checked ~ .checkmark::before {
  opacity: 1;
  visibility: visible;
}
.quote-form .form-group__options li > label > .checkmark {
  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: #0099ff;
  border: 1px solid #0099ff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.quote-form .form-group__options li > label > input[type=checkbox] ~ .checkmark {
  border-radius: 0;
}
.quote-form .form-group__options li > label > input[type=checkbox] ~ .checkmark::before {
  border-radius: 0;
}
.quote-form .form-group__options li > label > input[type=checkbox] ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.quote-form .form-group__options li > label > input[type=checkbox]:checked ~ .checkmark::after {
  opacity: 1;
  visibility: visible;
}
.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 .form-group__options--horizontal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.quote-form .form-group__collapse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  background-color: transparent;
  border: none;
}
.quote-form .form-group__collapse-btn i {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: 1px solid #565656;
  border-radius: 50%;
}
.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: auto;
  height: 7.3rem;
}
.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: #006699;
}

.thanks {
  background-image: url(../images/404-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #191919;
}
.thanks-main p {
  color: #191919;
  font-size: 1.8rem;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}

.projects-filter {
  width: 100%;
  padding: 2rem;
  margin-bottom: 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: #006699;
}
.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 #95959f;
  border-radius: 0.4rem;
  padding: 0.2rem 1.2rem;
}
.projects-filter__actions {
  align-self: flex-end;
}
.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: #ea733d;
  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 {
  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-main {
  padding-bottom: 6rem;
}
.single-project-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-project .title {
  font-size: 3.2rem;
}
.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: #ea733d;
}
.single-project-gallery .nav-link.active:hover {
  background-color: #ea733d;
}
.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;
}

.container {
  max-width: 1170px;
}

.lightbox .lb-image {
  border: none;
}

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