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

html {
  font-size: 62.5%;
}

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

a {
  text-decoration: none;
}

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

.title {
  font-weight: 900;
  font-size: 3.6rem;
  color: #3955a2;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .title {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .title {
    font-size: 2.4rem;
  }
}
.title--white {
  color: #fff;
}
.title--blue-light {
  color: #4bc9ff;
}

@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: 600;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
  transition: all 0.2s;
}
.btn img {
  width: 2.4rem;
}
.btn--rounded {
  border-radius: 0.8rem;
}
.btn--white {
  color: #fff;
}
.btn--white img {
  filter: invert(1);
}
.btn--white:hover {
  color: #fff;
}
.btn--blue {
  color: #3955a2;
}
.btn--blue:hover {
  color: #3955a2;
}
.btn--blue-light {
  color: #369cc8;
}
.btn--blue-light:hover {
  color: #369cc8;
}
.btn--bg-white {
  background-color: #fff;
}
.btn--bg-white:hover {
  background-color: #d9d9d9;
}
.btn--bg-gray {
  background-color: #eeeeee;
}
.btn--bg-gray:hover {
  background-color: #c8c8c8;
}
.btn--bg-green {
  background-color: #00d24d;
}
.btn--bg-green:hover {
  background-color: #008631;
}
.btn--bg-blue {
  background-color: #3955a2;
}
.btn--bg-blue:hover {
  background-color: #2c417c;
}
.btn--bg-blue-80 {
  background-color: rgba(57, 85, 162, 0.8);
}
.btn--bg-blue-80:hover {
  background-color: rgba(44, 65, 124, 0.8);
}
.btn--bg-blue-dark {
  background-color: #02237d;
}
.btn--bg-blue-dark:hover {
  background-color: #0331af;
}
.btn--bg-blue-light {
  background-color: #369cc8;
}
.btn--bg-blue-light:hover {
  background-color: #2b7da0;
}
.btn--bg-blue-lightest {
  background-color: #4bc9ff;
}
.btn--bg-blue-lightest:hover {
  background-color: #18baff;
}

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

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

.form-group {
  margin-bottom: 1.6rem;
}
.form-group label {
  font-weight: 700;
}
.form-group input:not([type=file], [type=submit]),
.form-group textarea {
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 1px solid #c8c8c8;
  color: #292929;
}
.form-group input:not([type=file], [type=submit])::placeholder,
.form-group textarea::placeholder {
  color: #adafb0;
}
.form-group input:not([type=file], [type=submit]):focus,
.form-group textarea:focus {
  outline: 0;
}

.form-check {
  padding-left: 0;
}
.form-check a {
  color: #3955a2;
}
.form-check .wpcf7-list-item {
  margin: 0;
}

.form-submit {
  position: relative;
}
.form-submit .btn {
  min-width: 12rem;
}
.form-submit .btn:disabled {
  opacity: 0.5 !important;
}
.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

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

.roof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.roof-item__thumb img {
  width: 100%;
}
.roof-item__text {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}
.roof-item__text strong {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .roof-item__text strong {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .roof-item__text strong {
    font-size: 2.4rem;
  }
}

.blog-section-item {
  display: block;
  transition: all 0.2s ease-in;
}
.blog-section-item--main {
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  position: sticky;
  top: 0;
}
.blog-section-item--main .blog-section-item__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.blog-section-item--main .blog-section-item__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.6rem;
  background: linear-gradient(to bottom, transparent, #183354);
}
.blog-section-item--main .blog-section-item__tag {
  background-color: #4bc9ff;
  color: #fff;
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.4rem;
}
.blog-section-item--main .blog-section-item__title {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  width: 45rem;
  max-width: 100%;
}
@media (max-width: 575px) {
  .blog-section-item--main .blog-section-item__title {
    font-size: 2.4rem;
  }
}
.blog-section-item--main .blog-section-item__date {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.blog-section-item--main:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.blog-section-item--main:hover .blog-section-item__thumb {
  transform: scale(1.05);
}
.blog-section-item--main:active {
  transform: translateY(1px);
}
.blog-section-item--secondary {
  display: flex;
  gap: 2rem;
}
.blog-section-item--secondary .blog-section-item__thumb {
  width: 25%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in;
}
@media (max-width: 575px) {
  .blog-section-item--secondary .blog-section-item__thumb {
    width: 33.3%;
  }
}
.blog-section-item--secondary .blog-section-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.blog-section-item--secondary .blog-section-item__tag {
  background-color: #4bc9ff;
  color: #fff;
  padding: 0.4rem 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  border-radius: 0.4rem;
}
@media (max-width: 575px) {
  .blog-section-item--secondary .blog-section-item__tag {
    font-size: 1.2rem;
  }
}
.blog-section-item--secondary .blog-section-item__title {
  font-weight: 700;
  color: #183354;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .blog-section-item--secondary .blog-section-item__title {
    font-size: 1.6rem;
  }
}
.blog-section-item--secondary .blog-section-item__date {
  color: #6d757f;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 575px) {
  .blog-section-item--secondary .blog-section-item__date {
    font-size: 1.2rem;
  }
}
.blog-section-item--secondary:hover {
  transform: translateY(-4px);
}
.blog-section-item--secondary:hover .blog-section-item__thumb {
  transform: scale(1.05);
}
.blog-section-item--secondary:active {
  transform: translateY(1px);
}

.services-item {
  background-color: #fff;
  padding: 3rem 3rem 2rem 3rem;
  border-radius: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.services-item__thumb {
  margin-bottom: 2rem;
}
.services-item__thumb img {
  border-radius: 2rem;
  aspect-ratio: 6/5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services-item__title {
  color: #02237d;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .services-item__title {
    font-size: 2rem;
  }
}
.services-item__excerpt {
  color: #3955a2;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  margin: auto;
}
.services-item .btn {
  font-weight: 900;
}
.services-item:hover {
  transform: translateY(-4px);
}
.services-item:active {
  transform: translateY(2px);
}

.projects-item {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
}
.projects-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, transparent 0%, rgba(0, 44, 75, 0.5) 45%, #3955a2);
  z-index: 1;
}
.projects-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in;
}
.projects-item__content {
  padding: 4rem;
  padding-right: 0rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
  color: #fff;
  transition: all 0.2s;
}
.projects-item__content h3 {
  font-weight: 700;
  font-size: 2.4rem;
  padding-right: 4rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .projects-item__content h3 {
    font-size: 2rem;
  }
}
.projects-item__content p {
  font-size: 1.8rem;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .projects-item__content p {
    font-size: 1.6rem;
  }
}
.projects-item__content .btn {
  align-self: flex-end;
  padding: 1.2rem 2rem;
  background-color: rgba(0, 107, 212, 0.86);
  font-weight: 500;
}
.projects-item__content .btn img {
  filter: invert(0);
}
.projects-item:hover .projects-item__image {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.footer {
  color: #3955a2;
  padding: 4rem 0;
  font-weight: 500;
}
.footer-logo {
  margin-bottom: 2rem;
}
.footer-logo img {
  width: 20rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .footer-logo img {
    display: block;
    margin: auto;
  }
}
.footer-title {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .footer-infos {
    margin-top: 2rem;
    text-align: center;
  }
}
.footer-infos__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .footer-infos__items {
    align-items: center;
  }
}
.footer-infos__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #3955a2;
}
.footer-infos__item i {
  color: #4bc9ff;
}
.footer-infos__item:hover span,
.footer-infos__item:hover address {
  text-decoration: underline;
}
.footer-address {
  color: #3955a2;
}
.footer-address:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-links {
    margin-top: 2rem;
    text-align: center;
  }
}
.footer-links__list {
  list-style: none;
  padding: 0;
}
.footer-links__list li a {
  color: #3955a2;
  text-transform: uppercase;
}
.footer-links__list li a:hover {
  text-decoration: underline;
}
.footer-social {
  text-align: center;
}
.footer-social__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.footer-social__items a {
  color: #3955a2;
  font-size: 2.4rem;
  transition: all 0.2s ease-in;
}
.footer-social__items a:hover {
  transform: scale(1.1);
}
.footer-copyright {
  background-color: #3955a2;
  color: #fff;
  padding: 0.4rem 0;
}
.footer-copyright__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-copyright__content a {
  color: #fff;
}
.footer-copyright__content a:hover {
  text-decoration: underline;
}

.header {
  box-shadow: 0 2px 5px rgba(25, 25, 25, 0.05);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 2;
  }
}
.header-contact {
  background: linear-gradient(to right, #3955a2, #4bc9ff);
  font-size: 1.2rem;
  padding: 0.4rem 0;
}
.header-contact__content {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.header-contact__phones {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-contact__item {
  color: #fff;
  text-transform: uppercase;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.header-contact__item i {
  font-size: 1.8rem;
}
.header-contact__item span,
.header-contact__item address {
  margin-bottom: 0;
  line-height: 1.25;
}
@media (max-width: 575px) {
  .header-contact__item span,
  .header-contact__item address {
    display: none;
  }
}
.header-contact__item:hover span,
.header-contact__item:hover address {
  text-decoration: underline;
}
.header-main {
  padding: 2rem 0;
}
.header-main__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-logo img {
  width: 20rem;
}
@media (max-width: 767px) {
  .header-logo img {
    width: 14rem;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    width: 35rem;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    overflow: auto;
    transition: all 0.2s;
    z-index: 99999;
  }
}
@media (max-width: 991px) {
  .header-nav.opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1199px) {
  .header-nav__list {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .header-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.header-nav__list > li {
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .header-nav__list > li {
    width: 100%;
    text-align: center;
    text-align: left;
  }
  .header-nav__list > li > span {
    display: flex;
    justify-content: space-between;
  }
  .header-nav__list > li > span > a {
    display: block;
    font-weight: 700;
  }
  .header-nav__list > li > span > button {
    border: none;
    background-color: transparent;
    color: #3955a2;
    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 span {
  display: flex;
}
.header-nav__list > li > a,
.header-nav__list > li span a {
  position: relative;
  width: 100%;
  display: inline-block;
  color: #02237d;
  text-transform: uppercase;
  padding: 0.8rem 0rem;
  font-weight: 500;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-nav__list > li > a,
  .header-nav__list > li span a {
    width: 100%;
    padding: 1rem;
  }
  .header-nav__list > li > a:hover,
  .header-nav__list > li span a:hover {
    transform: scale(1) !important;
  }
}
.header-nav__list > li > a::after,
.header-nav__list > li span a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  transition: all 0.2s;
}
.header-nav__list > li > a:hover,
.header-nav__list > li span a:hover {
  transform: scale(1.1);
}
.header-nav__list > li.active > a {
  font-weight: 900;
}
.header-nav__list > li:hover .header-submenu {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}
.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: #3955a2;
  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: #3955a2;
}
.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: #3955a2;
}
.header-nav .close-btn {
  background-color: transparent;
  border: none;
  padding: 1rem;
  color: #3955a2;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 575px) {
  .header-social {
    gap: 1rem;
  }
}
.header-social__item {
  font-size: 2.4rem;
  color: #3955a2;
  transition: all 0.2s ease-in;
}
.header-social__item:hover {
  transform: scale(1.1);
}
.header-social__item.instagram {
  font-size: 1.8rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background-color: #3955a2;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(25, 25, 25, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.header .overlay.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.header-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  min-width: max-content;
  padding: 2.8rem 4rem;
  background: #4bc9ff;
  opacity: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transition: all 0.2s ease-in;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
@media (max-width: 991px) {
  .header-submenu {
    position: relative;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
  }
}
.header-submenu li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  padding: 0.4rem 1.6rem;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .header-submenu li a {
    font-size: 1.4rem;
    padding: 0.2rem 2rem;
    color: #3955a2;
  }
}
.header-submenu li a:hover {
  background-color: #3955a2;
}
@media (max-width: 991px) {
  .header-submenu li a:hover {
    background-color: #fff;
  }
}

.banner {
  width: 100%;
  position: relative;
  z-index: 0;
  aspect-ratio: 1920/450;
  min-height: 50rem;
}
.banner-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.banner-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.banner-item__content {
  color: #fff;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 4rem 0;
}
.banner-item__title {
  font-weight: 900;
  font-size: 3.6rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .banner-item__title {
    font-size: 2.8rem;
  }
}
.banner-item__subtitle {
  text-transform: uppercase;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .banner-item__subtitle {
    font-size: 1.6rem;
  }
}
.banner-item__cta {
  padding: 1.4rem 2rem;
}
.banner .owl-carousel {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.banner .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.banner .owl-dots {
  position: absolute;
  left: 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;
  border-radius: 50%;
  border: 2px solid #fff !important;
  background-color: #3955a2 !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: #4d6cc1 !important;
  opacity: 1;
  color: #191919;
  text-decoration: none;
}

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

.map-section iframe {
  aspect-ratio: 1900/300;
}
@media (max-width: 767px) {
  .map-section iframe {
    aspect-ratio: 16/5;
  }
}

.page-banner {
  position: relative;
}
.page-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, transparent, #00113f);
}
.page-banner__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.page-banner__content {
  padding: 6rem 0;
  color: #fff;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page-banner__content {
    align-items: center;
  }
}
.page-banner__content-title {
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .page-banner__content-title {
    font-size: 2.8rem;
    text-align: center;
  }
}
.page-banner__content-subtitle {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .page-banner__content-subtitle {
    font-size: 1.6rem;
    text-align: center;
  }
}
.page-banner__content .btn {
  margin-top: 2rem;
}

.blog-section {
  padding: 4rem 0;
}
.blog-section__header {
  margin-bottom: 4rem;
  text-align: center;
}
.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 767px) {
  .blog-section__grid {
    grid-template-columns: 1fr;
  }
}
.blog-section__grid--unique {
  width: 60rem;
  max-width: 100%;
  grid-template-columns: 1fr;
  margin: auto;
}
.blog-section__items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .blog-section__items {
    gap: 3rem;
  }
}
.blog-section__cta {
  margin-top: 4rem;
}

.testimonial {
  padding: 4rem 0;
}
.testimonial__header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.home-roof {
  padding: 4rem 0;
}
.home-roof__header {
  margin-bottom: 2.8rem;
}
.home-roof__header .title {
  margin-bottom: 2rem;
}
.home-roof__header p {
  font-weight: 500;
}
.home-roof__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8rem;
}
@media (max-width: 767px) {
  .home-roof__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
@media (max-width: 575px) {
  .home-roof__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.home-about {
  padding: 4rem;
  color: #fff;
  background: url("../images/home-about-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .home-about {
    padding: 4rem 0;
  }
}
.home-about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 500;
}
.home-projects {
  padding: 4rem 0;
}
.home-projects__header {
  margin-bottom: 2.4rem;
}
.home-projects__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .home-projects__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-projects__item {
  position: relative;
}
.home-projects__item img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-projects__item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: linear-gradient(to top, transparent, #02237d);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.home-projects__item-hover h3 {
  text-align: center;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .home-projects__item-hover h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .home-projects__item-hover .btn {
    font-size: 1.4rem;
  }
}
.home-projects__item:hover .home-projects__item-hover {
  opacity: 1;
  visibility: visible;
}

.about {
  color: #3955a2;
}
.about-main {
  padding: 4rem 0;
  font-weight: 500;
}
.about-main .home-roof__items {
  margin: 2rem 0;
}
.about-main h3 {
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.about-main p {
  margin-bottom: 1.4rem;
}
.about-main__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 2rem 0 4rem;
}
@media (max-width: 767px) {
  .about-main__images {
    grid-template-columns: 1fr;
  }
}
.about-main__images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-mvv {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 767px) {
  .about-mvv {
    gap: 2rem;
  }
}
.about-mvv-item {
  flex: 1 0 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.about-mvv-item__icon {
  height: 7rem;
  width: auto;
}
.about-mvv-item__name {
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}
.about-mvv-item__desc {
  text-align: center;
}

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

.contact {
  padding: 4rem 0 8rem;
}
.contact-infos__items {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 2rem 0;
}
.contact-infos__item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #191919;
}
.contact-infos__item:hover {
  text-decoration: underline;
}
.contact-infos__item address {
  margin: 0;
}
.contact-infos__social {
  text-align: center;
}
.contact-infos__social-title {
  font-size: 2.4rem;
  font-weight: 500;
}
.contact-infos__social-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.contact-infos__social-items a {
  color: #3955a2;
  font-size: 2.4rem;
  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 {
  margin-top: 2rem;
}
.contact-form .form-submit .btn {
  background-color: #3955a2;
  color: #fff;
}
.contact-form .form-submit .btn:disabled {
  opacity: 0.8;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}
.thanks .container {
  width: 80rem;
}
.thanks-main {
  padding: 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #3955a2;
  padding: 4rem 2rem;
  border-radius: 40px;
  width: 80rem;
  max-width: 100%;
  margin: auto;
}
.thanks-main * {
  max-width: 100%;
}
.thanks-main h1 {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}
.thanks-main h1 span {
  font-size: 8rem;
  display: block;
  color: #292929;
}
.thanks-main h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  margin-top: 3.2rem;
  color: #fff;
}
.thanks-main p {
  color: #fff;
}
.thanks-main a {
  display: block;
  margin: auto;
  width: 35rem;
  max-width: 100%;
  text-decoration: underline;
}
.thanks-main a:hover {
  transform: scale(1.05);
}

.default {
  padding: 4rem 0;
}

.services-main {
  background-color: #3955a2;
  color: #fff;
  padding: 4rem 0;
}
.services-main__header {
  font-weight: 500;
  margin-bottom: 4rem;
}
.services-main__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
@media (max-width: 991px) {
  .services-main__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services-main__list {
    gap: 2rem;
  }
}
@media (max-width: 500px) {
  .services-main__list {
    grid-template-columns: 1fr;
  }
}
.services-quote {
  padding: 4rem 0;
  font-weight: 500;
}
.services-quote__header {
  margin-bottom: 4rem;
}
.services-quote__header .title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.services-quote__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}
@media (max-width: 991px) {
  .services-quote__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .services-quote__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .services-quote__list {
    grid-template-columns: 1fr;
  }
}
.services-quote__item {
  position: relative;
  aspect-ratio: 1/1;
}
.services-quote__item-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-quote__item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 93, 200, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.services-quote__item-content p {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.services-quote__item-content .btn {
  font-size: 1.2rem;
  font-weight: 600;
}
.services-quote__item-content .btn i {
  font-size: 2rem;
}
.services-quote__item:hover .services-quote__item-content {
  opacity: 1;
  visibility: visible;
}

.service {
  font-weight: 500;
}
.service-content {
  padding: 4rem 0;
}
.service-content__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2.4rem 0;
}
@media (max-width: 991px) {
  .service-content__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .service-content__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-content__gallery a {
  display: block;
}
.service-content__gallery a img {
  aspect-ratio: 5/4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}
@media (max-width: 575px) {
  .service-content__cta {
    gap: 2rem;
  }
}
.service-content__cta .btn {
  font-weight: 900;
}
@media (max-width: 575px) {
  .service-content__cta .btn {
    width: 100%;
  }
}

.projects {
  font-weight: 500;
}
.projects-heading {
  margin-bottom: 2rem;
}
.projects-filter {
  width: 100%;
  padding: 2rem;
  margin-bottom: 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: #369cc8;
  color: #fff;
}
.projects-filter__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.projects-filter__item label {
  padding-left: 0.4rem;
}
.projects-filter__item select {
  border: 1px solid #95959f;
  border-radius: 0.4rem;
  padding: 0.2rem 1.2rem;
}
.projects-filter__actions {
  align-self: flex-end;
  display: flex;
  gap: 2rem;
}
.projects-filter__actions .btn {
  font-size: 1.4rem;
}
.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: #369cc8;
  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 {
  padding: 4rem 0;
}
.single-project-main {
  padding-bottom: 4rem;
}
.single-project-main img {
  max-width: 100% !important;
  height: auto !important;
  padding: 2rem 0;
}
.single-project-benefits {
  background-color: #369cc8;
  color: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.single-project-benefits > h2 {
  font-weight: 700;
  font-size: 2.4rem;
}
.single-project-benefits .owl-carousel {
  margin-top: 2rem;
}
.single-project-benefits .owl-carousel .owl-dot span {
  background-color: transparent;
  border: 2px solid #fff;
}
.single-project-benefits .owl-carousel .owl-dot:hover span {
  background-color: #fff;
}
.single-project-benefits .owl-carousel .owl-dot.active span {
  background-color: #fff;
}
.single-project-gallery {
  margin-top: 4rem;
}
.single-project-gallery .nav {
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.single-project-gallery .nav-link {
  padding: 1.2rem 2.4rem;
  font-weight: 700;
  font-size: 2rem;
  color: #191919;
}
.single-project-gallery .nav-link:hover {
  background-color: #f7f7f7;
}
.single-project-gallery .nav-link.active {
  color: #fff;
  background-color: #369cc8;
}
.single-project-gallery .nav-link.active:hover {
  background-color: #369cc8;
}
.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: 25rem;
  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%;
  height: 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;
}

main .blog {
  padding: 4rem 0;
}
main .blog-header {
  margin-bottom: 2.4rem;
  text-align: center;
}
main .blog-header .title {
  margin-bottom: 2rem;
}
main .blog-header p {
  font-weight: 500;
}
main .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8rem;
  row-gap: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  main .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  main .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  main .blog-list {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}
main .blog-list .blog-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.2s ease-in;
}
main .blog-list .blog-item__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.2s ease-in;
}
main .blog-list .blog-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .blog-list .blog-item__text {
  color: #3955a2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
main .blog-list .blog-item__text h3 {
  font-size: 1.8rem;
  font-weight: 600;
}
main .blog-list .blog-item__text p {
  font-size: 1.4rem;
  line-height: 1.4;
}
main .blog-list .blog-item__text button {
  background-color: transparent;
  color: #3955a2;
  display: flex;
  font-weight: 400;
  gap: 0.8rem;
  align-items: center;
  border: none;
}
main .blog-list .blog-item__text button i {
  font-size: 1.4rem;
}
main .blog-list .blog-item:hover {
  transform: translateY(-4px);
}
main .blog-list .blog-item:hover .blog-item__thumb {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

main .single-blog {
  padding: 4rem 0 8rem;
}
main .single-blog .container {
  width: 90rem;
  max-width: 100%;
}
main .single-blog-content > *:not(:last-child) {
  margin-bottom: 1.2rem;
}
main .single-blog-content img {
  max-width: 100%;
}

.quote {
  padding: 4rem 0 8rem;
}
.quote .title {
  margin-bottom: 2rem;
}
.quote-form .row {
  --bs-gutter-x: 1.8rem !important;
}
.quote-form .form-group label {
  position: absolute;
  left: -9999px;
}
.quote-form .form-check {
  text-align: center;
  color: #565656;
}
.quote-form .form-check a {
  color: #565656;
}
.quote-form .form-check strong {
  font-weight: 400;
}
.quote-form .form-submit {
  text-align: center;
  margin-top: 2rem;
}
.quote-form .form-submit .btn {
  border: 2px solid #3955a2;
  color: #3955a2;
  border-radius: 0.8rem;
}
@media (max-width: 767px) {
  .quote-infos {
    margin-top: 2rem;
  }
}
.quote-infos__title {
  font-weight: 800;
  text-transform: uppercase;
}
.quote-infos__items {
  display: flex;
  flex-direction: column;
}
.quote-infos__item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #3955a2;
  font-weight: 500;
}
.quote-infos__item i {
  color: #4bc9ff;
}
.quote-infos__item.whatsapp i {
  color: #25d366;
}
.quote-infos__item address {
  margin: 0;
  margin: 2rem 0;
}
.quote-infos__item:hover {
  text-decoration: underline;
}
.quote-infos__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-infos__social-title {
  font-weight: 800;
  text-transform: uppercase;
}
.quote-infos__social-items {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-infos__social-items a {
  color: #3955a2;
  font-size: 2.4rem;
  transition: all 0.2s ease-in;
}
.quote-infos__social-items a:hover {
  transform: scale(1.1);
}

.container {
  max-width: 1280px;
}

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

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

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