/*@import url("fonts-inria-space_grotesk.css");*/

/* Inria Sans */
/* @import url('https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300;400;700&display=swap'); */

/* Space Grotesk */
/* @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap'); */

/* Inria Sans LOCAL */
@import url("font-inria-sans.css");

/* Space Grotesk LOCAL */
@import url("font-space-grotesk.css");

:root {
  --primary: #3a518d;
  --secondary: #3d977b;
  --tertiary: #f9b926;
  --light: #f5f5f5;
  --dark: #161616;
}

.text-primary {
  color: var(--primary) !important;
}

.text-white {
  color: var(--light);
}

.text-yellow {
  color: #fdc830;
}

.text-orange {
  color: #f37335;
}

.text-black {
  color: var(--dark);
}

.text-light-black {
  color: var(--light-dark);
}

.bg-gray {
  background-color: var(--light);
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
}

.btn-primary:hover {
  background-color: var(--secondary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-light-dark {
  background-color: var(--light-dark) !important;
}

.bg-secondary {
  background-color: var(--light-dark) !important;
}

.bg-tertiary {
  background-color: var(--tertiary) !important;
}

.btn.btn-light {
  color: var(--primary) !important;
}

.btn.btn-light:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--light) !important;
}

.btn-secondary {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--light);
}

html,
body {
  position: relative;
  overflow-x: hidden;
}

body {
  font-family: "Inria Sans", sans-serif;
  font-weight: normal;
  color: #6e7684;
  background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--dark);
}

h1 {
  font-weight: 800 !important;
}

p {
  font-family: "Inria Sans", sans-serif;
  color: var(--default-color);
}

a {
  text-decoration: none;
}

.top-bar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar .nav-item .dropdown-menu {
  min-width: 240px;
}

.dropdown-item {
  padding: 10px 15px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary) !important;
}

.display-7 {
  font-size: 20px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

input::placeholder {
  color: #888888;
}

input::-webkit-input-placeholder {
  color: #888888;
}

input:-moz-placeholder {
  color: #888888;
  opacity: 1;
}

input::-moz-placeholder {
  color: #888888;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #888888;
}

.subscribe-form .form-control {
  color: var(--light);
}

.subscribe-form .form-control::placeholder {
  color: var(--light);
  opacity: 1;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar-right {
  position: relative;
  background: var(--primary);
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: var(--primary);
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  width: 80%;
  height: 99px;
  display: flex;
  align-items: center;
  background: var(--primary);
}

@media (min-width: 576px) {
  .navbar .navbar-brand {
    width: auto;
  }
}

.navbar .navbar-brand::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  top: 0;
  right: -35px;
  transform: skewX(-30deg);
  background-color: var(--primary);
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 20px 0;
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  /*background: linear-gradient(to right, rgba(0, 255, 255, 0.2) 0%, rgba(2, 36, 91, 0) 100%);*/
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

@media (min-width: 430px) and (max-width: 932px) {
  .carousel-caption h1 {
    font-size: 25px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .carousel-control-next,
  .carousel-control-prev {
    top: 60%;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background:
    linear-gradient(
      to right,
      rgba(0, 255, 255, 0.2) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../images/banner_internos/interior-exterior-painting.webp) center center
      no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Facts ***/
.facts {
  position: relative;
  margin: 6rem 0;
  background: #3a518d;
}
.facts h1 {
  color: #f9b926 !important;
}

.facts .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/*** Features ***/
.btn-play {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px;
  background: var(--tertiary);
  z-index: 999;
  cursor: pointer;
}

@media (max-width: 992px) {
  .btn-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--tertiary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--tertiary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  padding: 12px;
  width: 215px;
  height: 215px;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}
.service-item .service-img img {
  width: 215px;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
}

.service-item .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: rgba(2, 36, 91, 0.7);
  transition: 0.5s;
}

.service-item .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #ffffff;
  transition: 0.5s;
}

.service-item .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 130px;
  height: 50px;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #ffffff;
  border: none;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}
.service-title-new {
  top: 120px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.service-title-new h3 {
  color: #fff;
  font-size: 24px;
}

/*** Project ***/
.project-carousel {
  position: relative;
  background: var(--dark);
}

.project-item {
  position: relative;
  display: block;
}

.project-item img {
  transition: 0.5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
  margin-top: -60px;
}

.project-item .project-title {
  position: absolute;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  bottom: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
  bottom: -60px;
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -12px;
  left: 0;
  transform: skewY(-5deg);
  background: var(--dark);
  transition: 0.5s;
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  align-items: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item:hover .team-social {
  left: 0;
}

.team-item .social-box {
  width: 90px;
  height: 90px;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img,
.page-reviews .testimonial-img img {
  /*width: 100px;
    height: 100px;*/
  padding: 10px;
}

.testimonial-carousel .testimonial-img .btn-square,
.page-reviews .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text,
.page-reviews .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text,
.page-reviews .testimonial-text {
  transform: scale(1);
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer a.btn.btn-link {
  text-decoration: none;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: #b0b9ae;
}

.widget-aside {
  display: block;
  border: 1px solid #cbcbcb;
  padding: 20px 25px;
  border-radius: 12px;
}

.widget-aside h4 {
  margin-bottom: 2rem;
}

.widget-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.widget-list li {
  padding: 10px 15px;
  color: var(--primary);
}

.widget-list li.active {
  background-color: var(--primary);
  color: #fff;
  border-radius: 22px;
}

.widget-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary);
  border-bottom: 2px solid transparent;
  transition: 0.3s ease-in-out;
}

.widget-list li.active a {
  color: #fff;
}

.widget-list li a:hover {
  border-color: var(--primary);
}

.widget-list li a i {
  background-color: #3d977b;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.widget-list li.active a i {
  background-color: #fff;
  color: var(--primary);
}

.widget-list li:not(.active) a:hover i {
  border-radius: 12px 12px 0 0;
}

.widget-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
}

.icon-call {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-reviews-img {
  margin-bottom: -35px;
  background-color: var(--light);
}

.page-reviews-img img {
  /*width: 80px !important;
    height: 80px !important;*/
  padding: 10px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.page-reviews-img + .testimonial-text {
  padding-top: 50px !important;
}

.page-reviews-img + .testimonial-text p {
  height: 215px;
  overflow: auto;
}
.content_ser_details {
  margin-top: 25px;
  margin-bottom: 25px;
}
a.tel_ser {
  color: #3d6dba;
}
ul.list_ser_details {
  list-style: none;
  padding-left: 0px;
}
ul.list_ser_details li strong {
  color: #000;
}
ul.list_ser_details li {
  margin-bottom: 10px;
}
.icon_contact {
  color: #f9b926 !important;
}
i.icon_ser {
  background-color: #f9b926;
  color: #fff;
  padding: 10px;
  border-radius: 100%;
  font-size: 12px;
  margin-right: 10px;
}
.banner_interno {
  position: relative;
}
.banner_interno:before {
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 47%);
  position: absolute;
  z-index: 1;
}
.banner_interno .container.py-5 {
  position: relative;
  z-index: 9;
}
.text_top_anima {
  color: #fff !important;
}
.title_anima,
.text_top_anima {
  text-shadow: 4px 4px 4px #404040;
}
.contenedor {
  height: 100px;
  width: 100%;
  margin-top: 0px;
  overflow: auto;
  box-sizing: border-box;
  text-align: left;
  padding-right: 5px;
  margin-bottom: 40px;
}

/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

.contenedor::-webkit-scrollbar {
  -webkit-appearance: none;
}

.contenedor::-webkit-scrollbar:vertical {
  width: 10px;
}

.contenedor::-webkit-scrollbar-button:increment,
.contenedor::-webkit-scrollbar-button {
  display: none;
}

.contenedor::-webkit-scrollbar:horizontal {
  height: 10px;
  scrollbar-height: 10px;
}

.contenedor::-webkit-scrollbar-thumb {
  background-color: #797979;
  border-radius: 20px;
  border: 2px solid #f1f2f3;
  height: 50px;
}

.contenedor::-webkit-scrollbar-track {
  border-radius: 10px;
}
img.logo_ssl {
  border-radius: 100%;
  width: 115px;
}
.ssl {
  margin-top: 15px;
}
.bg-turque {
  background-color: #3d977b !important;
}
.bg-yellow {
  background-color: #f9b926 !important;
}
/*.testimonial-icon i {
    color: #f39c12 !important;
}*/
.navbar-light .navbar-nav .nav-link.active {
  color: #f9b926 !important;
}
img.img_ser_details {
  width: 100%;
}
.stars-container i.text-warning {
  color: #ffc107 !important;
}
img.img_reviews_home {
  width: 80px !important;
}
.h-100-lg {
  height: 100% !important;
}
.service-item:hover .service-rotate {
  animation: rotateIn 0.8s ease-in-out;
}
img.logo_proyectos {
  width: 160px !important;
  position: absolute;
  top: 100px;
  object-fit: contain !important;
  right: 0;
  bottom: 0;
  /*opacity: 0.7;*/
}

@media (max-width: 360px) {
  .navbar .navbar-brand {
    width: 75% !important;
  }
}

@media (max-width: 576px) {
  .content_welcome_expe {
    display: block !important;
  }
  .content_welcome_expe .ms-4 {
    margin-top: 20px;
  }
  .content_welcome_expe .bg-tertiary {
    text-align: center;
  }
  nav#mainNavbar {
    padding-left: 0px !important;
  }
  h5.title-blog {
    font-size: 16px;
  }
  .navbar .navbar-brand {
    width: 80% !important;
  }
  nav#mainNavbar {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 15px !important;
  }
}

@media (max-width: 991px) {
  .quick ~ .back-to-top {
    bottom: 95px;
  }
  h5.title-blog {
    font-size: 17px;
  }
  nav#mainNavbar {
    flex-direction: row-reverse !important;
  }
  a.navbar-brand img {
    display: none !important;
  }
  .galerias_content {
    margin-left: 15px;
    margin-right: 15px;
  }
  .navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    width: 90%;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
  }
  .navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -50px;
    transform: none;
    background-color: var(--primary);
  }
  .team-item img {
    width: 100%;
  }
  button.navbar-toggler.me-0.collapsed,
  button.navbar-toggler.me-0 {
    left: 20px;
    position: relative;
  }
  nav#mainNavbar {
    padding-right: 0px !important;
    background: #3a518d !important;
  }
  nav#mainNavbar {
    justify-content: center;
  }
  nav#mainNavbar {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0px;
  }
  .collapse.show {
    /*background-color: #fff;*/
  }
  .navbar-toggler {
    color: #fff !important;
    border: 1px solid #fff !important;
  }
  .navbar-toggler-icon {
    background-image: url(../images/lineas.svg);
  }
  .navbar .navbar-nav .nav-link {
    color: #fff;
  }
  .service-item .service-img {
    width: 115px;
    height: 115px;
  }
  .service-item .service-img img {
    width: 115px;
  }
  .service-title-new {
    top: 95px;
  }
  .service-title-new h3 {
    font-size: 20px;
  }
  .service-text p {
    margin-top: 50px;
  }
  .h-100-lg {
    height: auto !important;
  }
}

@media (min-width: 992px) {
  nav#mainNavbar img {
    width: 215px;
  }
  .navbar .navbar-brand {
    width: 30% !important;
  }
  .navbar .navbar-brand::after {
    width: 65px !important;
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 25px;
  }
  .service-title-new {
    top: 100px;
  }
  .service-title-new h3 {
    color: #fff;
    font-size: 18px;
  }
  .service-text p {
    margin-top: 70px;
    /*font-size: 15px;*/
  }
  .h-100-lg {
    height: auto !important;
  }
  .sombra-call {
    display: none !important;
  }
  h5.title-blog {
    font-size: 16px;
  }
  .service-item .service-img {
    width: 150px;
    height: 150px;
  }
  .service-item .service-img img {
    width: 150px;
  }
}

@media (min-width: 1200px) {
  nav#mainNavbar img {
    /*width: 100% !important;*/
    padding: 35px;
  }
  .sombra-call {
    display: block !important;
  }
  .h-100-lg {
    height: 100%;
  }
  .service-title-new {
    top: 110px;
  }
  .service-title-new h3 {
    color: #fff;
    font-size: 24px;
  }
  .service-text p {
    margin-top: 40px;
  }
}

@media (min-width: 1400px) {
  nav#mainNavbar img,
  .navbar .navbar-brand {
    width: auto !important;
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 35px;
  }
  .sombra-call {
    display: block !important;
  }
  h5.title-blog {
    font-size: 1.25rem;
  }
  .h-100-lg {
    height: 100% !important;
  }
  .service-title-new h3 {
    color: #fff;
    font-size: 30px;
  }
}

/* .img-aspect-ratio {
  width: 100%;
  height: auto;
  aspect-ratio: var(--ratio);
} */

.aspect-box {
  width: 100%;
  aspect-ratio: var(--ratio);
  overflow: hidden;
}

.aspect-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
