:root {
  --color-lightBlue: #00a0c5;
  --color-red: #e55151;
  --color-blue: #005371;
  --transition-All: all 0.3s ease;
}

body {
  font-family: "Rethink Sans", sans-serif;
  color: var(--color-blue);
  position: relative;
}
a {
  color: var(--color-red);
}
a:hover {
  text-decoration: none;
  color: #c54444;
}

* {
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

/* Utilitarias */
.light-blue {
  color: var(--color-lightBlue);
}

.blue {
  color: var(--color-blue);
}

.red {
  color: var(--color-red);
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.custom-list {
  font-size: 16px;
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  margin-bottom: 0.6rem;
  /*display: flex;*/
}

.custom-list li::before {
  content: "check_circle";
  font-family: "Material Symbols Outlined";
  color: var(--color-lightBlue);
  margin-right: 4px;
  font-weight: 500;
}
.custom-list-alt {
  font-size: 16px;
  padding-left: 0;
  list-style: none;
}

.custom-list-alt li {
  margin-bottom: 1.3rem;
  /*display: flex;*/
  padding-left: 35px;
}

.custom-list-alt li::before {
  content: "add";
  font-family: "Material Symbols Outlined";
  color: #fff;
  margin-right: 5px;
  margin-left: -25px;
  font-weight: 500;
}
.two-col {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.btn {
  border-radius: 50px;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 20px;
  transition: var(--transition-All);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  width: fit-content;
}

.btn span,
.btn svg {
  transition: var(--transition-All);
  margin-left: 4px;
}

.btn:not(.btn-nav):hover span {
  margin-left: 8px !important;
}

.btn:hover svg {
  padding-left: 8px !important;
}

.btn-primary {
  border: 1px solid #e55151;
  color: #fff;
  background-color: #e55151;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: #d33131;
  color: #fff;
  border: 1px solid #d33131;
  transition: var(--transition-All);
}

.btn-transparent {
  border: 1px solid transparent;
  color: #fff;
  background-color: transparent;
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-transparent:not(:disabled):not(.disabled).active,
.btn-transparent:not(:disabled):not(.disabled):active,
.show > .btn-transparent.dropdown-toggle {
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  transition: var(--transition-All);
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 80px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50px;
  font-size: 30px;
  box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.45);
  -webkit-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 10px 15px -7px rgba(0, 0, 0, 0.45);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wsp-float img {
  width: 32px;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}

.scrolled {
  bottom: 40px !important;
}

/* Scroll top */
#scrollToTopBtn {
  position: fixed;
  bottom: 110px;
  right: 23px;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  display: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

#scrollToTopBtn img {
  width: 48px;
  height: 48px;
}

#scrollToTopBtn.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

#scrollToTopBtn.hide {
  opacity: 0;
  transform: scale(0.9);
}

/*///////////////////////// HEADER /////////////////////////*/
.menu {
  -webkit-transition: background 0.3s 0s linear;
  -moz-transition: background 0.3s 0s linear;
  -o-transition: background 0.3s 0s linear;
  transition: background 0.3s 0s linear;
  background-color: white;
}

.header-logo {
  width: auto;
  height: 76px;
  filter: brightness(10) grayscale(1);
  transition: var(--transition-All);
}

.navbar {
  z-index: 10;
  width: 100%;
  padding: 0.8rem 2rem;
  background-color: transparent;
  top: 0;
}

.nav-link {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  position: relative;
  padding: 10px 0px !important;
  transition: var(--transition-All);
}

.nav-link:hover {
  color: var(--color-lightBlue) !important;
}

.nav-link.active {
  font-weight: 600;
  color: var(--color-lightBlue) !important;
}

.btn-nav {
  background-color: var(--color-lightBlue);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  border-radius: 35px;
  margin: 0 0.4rem;
  padding: 8px 16px;
  transition: var(--transition-All);
}

.btn-nav:hover {
  background-color: var(--color-blue);
  color: #ffffff;
}

.navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
  height: 65px;
  filter: none;
}

.navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .nav-link {
  color: var(--color-blue) !important;
}

.navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in {
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}

.navbar-toggler {
  right: 0px;
}

.bsnav-sticky.bsnav-sticky-fade.navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::before {
  background-color: #ffffff !important;
  transition: 0.3s;
}

.bsnav-sticky.bsnav-sticky-fade.sticked.in.navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade.sticked.in .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade.sticked.in .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-fade.sticked.in .navbar-toggler-icon::before {
  background-color: var(--color-blue) !important;
  transition: 0.3s;
}

.bsnav-sticky.bsnav-sticky-fade.sticked.in.navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade.sticked.in .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade.sticked.in .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-fade.sticked.in .navbar-toggler-icon::before {
  background-color: var(--color-blue) !important;
  transition: 0.3s;
}

.bsnav-sticky.bsnav-sticky-fade.sticked.in
  .navbar-toggler.toggler-spring.active
  .navbar-toggler-icon {
  background-color: white !important;
}

.navbar-toggler .navbar-toggler-icon::before {
  width: 25px;
  right: 0;
}

.navbar-toggler.active .navbar-toggler-icon::before {
  width: 32px;
  right: 0;
}

/* Bs nav para el menú mobile */
.bsnav-mobile .navbar {
  left: 0 !important;
  transform: translate3d(-300px, 0, 0) !important;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar {
  background: var(--color-blue) !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  border-bottom: 4px solid var(--color-lightBlue);
}

/* HERO */
.main-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0rem;
}

.main-section h1 {
  font-size: 54px;
}

.top-deco {
  background: rgb(0, 160, 197);
  background: linear-gradient(
    121deg,
    rgba(0, 160, 197, 0) 10%,
    rgba(0, 160, 197, 1) 50%,
    rgba(0, 160, 197, 0) 90%
  );
  padding: 0.4rem 4rem;
  width: fit-content;
  font-weight: 600;
  margin: 0 auto 1rem auto;
  border-radius: 50px;
}

.main-section .container-fluid {
  position: relative;
  z-index: 5;
}

.main-video {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -5;
  height: 100%;
  object-fit: cover;
}

.deco-hero {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

.top-overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 0) 84%
  );
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  opacity: 0.6;
  top: 0;
}

.overlay {
  background: #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
}

.bottom-overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 84%);
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  opacity: 0.6;
  bottom: 0;
}

/* Card de CTA */
.action-blocks {
  padding: 4rem 0;
  background-color: white;
}

.action-card {
  padding: 4rem 1.4rem;
  min-height: 420px;
  position: relative;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-All);
}

.action-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.action-card:hover .action-card-img-bg {
  transform: scale(1.05);
  opacity: 0.1;
}

.action-card-content {
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.action-card-icon {
  height: 37px;
  width: auto;
  margin-bottom: 1rem;
}

.action-card-img-bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  opacity: 0.2;
  transition: var(--transition-All);
}

.action-card-bg-blue {
  background-color: #005371;
}

.action-card-bg-white {
  background-color: #ffffff;
}

.action-card-bg-lightblue {
  background-color: #00a0c5;
}

/* Bloque con contadores */
.about {
  padding: 4rem 0;
  background-color: white;
}

.counter-column {
  width: 90%;
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
}

.counter-blocks-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.counter-blocks {
  background-color: #def3f8;
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  width: 200px;
  text-align: center;
}

.counter-blocks img {
  height: 38px;
  width: auto;
  margin-bottom: 0.4rem;
}

.counter-number {
  margin-bottom: 0rem;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.counter-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  width: 85%;
  height: 100%;
  object-fit: cover;
}

/* Servicios */
.services {
  padding: 4rem 0;
  background-color: #e8f6f9;
}

.services:hover a {
  text-decoration: none;
}

#servicesCarousel .f-carousel__slide {
  width: 33.3%;
  padding: 1rem;
}

#servicesCarousel .f-carousel__nav {
  display: flex;
  justify-content: end;
  flex-direction: row-reverse;
}

#servicesCarousel .f-carousel__nav .f-button.is-prev,
#servicesCarousel .f-carousel__nav .f-button.is-next {
  position: relative;
  z-index: 1;
  transform: none;
  margin: 1rem;
  background-color: #005371;
  border-radius: 50%;
  color: white;
}

#servicesCarousel .f-carousel__nav button:hover {
  background-color: var(--color-lightBlue) !important;
}

.service-card {
  min-height: 520px;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #00537129;
  padding: 0.6rem;
  transition: var(--transition-All);
}

.service-card:hover {
  border: 1px solid #0053715a;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.service-card:hover .service-card-img-container img {
  transform: scale(1.05);
}

.service-card:hover .service-icon-container {
  background-color: #00a0c5;
}

.service-card:hover .service-icon-container img {
  filter: brightness(10) saturate(0) contrast(10);
}

.service-card-img-container {
  height: 265px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.service-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-All);
}

.service-card-content {
  padding: 0.6rem;
  position: relative;
}

.service-icon-container {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #def3f8;
  border-radius: 5px;
  transition: var(--transition-All);
  right: 0.6rem;
  top: -4rem;
}

.service-icon-container img {
  height: 36px;
  width: auto;
}

.service-card-subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-link {
  margin-bottom: 0;
  color: var(--color-red);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.2rem;
  width: fit-content;
  overflow: hidden;
}

.text-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-red);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-200px);
  transition: var(--transition-All);
}

.text-link:hover::after {
  transform: translateX(0);
}

/* Bloque decorativo */
.deco {
  margin: 1.8rem 0;
  display: flex;
  align-items: center;
}

.deco img {
  width: 100%;
}

.deco-counter {
  position: absolute;
  z-index: 5;
  width: 275px;
  height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  padding: 2rem;
  user-select: none;
  transition: var(--transition-All);
}

.deco-counter-number {
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
}

.deco-counter:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Testimonios */
.testimonials {
  padding: 6rem 0;
  background-color: #f7fcfd;
}

.testimonials-photos {
  height: 52px;
  width: auto;
  margin-bottom: 1.4rem;
}

.testimonial-container {
  display: flex;
  align-items: center;
}

.testimonial-container img {
  width: 95px;
  height: 95px;
  margin-right: 1rem;
}

.testimonial-container p {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 0;
}

#testimonialsCarousel .f-carousel__dots {
  bottom: -2.6rem;
}

.f-carousel__dot {
  background-color: var(--color-blue);
}

/* Bloque carga CV */
.cv-block {
  padding: 4rem 0;
  background-image: url(../images/bg-cv.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pulse-image {
  animation: pulse 2s infinite;
  border-radius: 50%;
  border: 1px solid #005371;
  width: 420px;
  height: 420px;
}

.cv-block-img {
  width: 400px;
  height: auto;
  display: block;
  margin: auto;
  transform: translateY(-40px) translateX(30px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 122, 168, 0.4);
  }

  5% {
    transform: scale(1.01);
  }

  15% {
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 50px rgba(168, 63, 57, 0);
  }

  100% {
    box-shadow: 0 0 0 100px rgba(168, 63, 57, 0);
  }
}

/* Carousel de logos */
.carousel-logos {
  padding: 4rem 0 3rem 0;
}

.logos {
  background: white;
  white-space: nowrap;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos-slide {
  display: inline-block;
  animation: 45s sliders infinite linear;
}

@keyframes sliders {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-85%);
  }
}

.logos-slide img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0px 3rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}

.logos-slide img:hover {
  filter: none;
  opacity: 1;
}

/* Equipo */
.team {
  min-height: 700px;
  padding: 6rem 0;
  background-image: url(../images/bg-team.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.deco-team {
  position: absolute;
  transition: transform 0.1s ease-out;
}

.deco-team1 {
  left: 22%;
  top: 0%;
}

.deco-team2 {
  left: 0%;
  top: 10%;
}

.deco-team3 {
  left: 18%;
  top: 85%;
}

.deco-team4 {
  right: 15%;
  top: 5%;
}

.deco-team5 {
  right: 0%;
  top: 25%;
}

.deco-team6 {
  right: 15%;
  top: 80%;
}

/* Footer */
footer {
  background-image: url(../images/bg-footer.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem 0 0 0;
  color: white;
}

.logo-footer {
  width: 100%;
  max-width: 300px;
}

footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 21px;
}

footer ul {
  padding-left: 0rem;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

footer ul li a {
  color: white;
  transition: var(--transition-All);
}

footer ul li a:hover {
  color: var(--color-lightBlue);
}

footer ul li span {
  color: var(--color-lightBlue);
  margin-right: 0.4rem;
}

footer .rrss {
  display: flex;
  align-items: center;
}

footer .rrss a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 0.6rem;
  background-color: rgba(255, 255, 255, 0.414);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-All);
}

footer .rrss a:hover {
  background-color: var(--color-lightBlue);
  transform: scale(1.1);
}
footer .rrss a.btn-fb:hover {
  background-color: #1877f2;
}
footer .rrss a.btn-ig:hover {
  background-color: #e1306c;
}
footer .rrss a.btn-in:hover {
  background-color: #0a66c2;
}

.copyright {
  background-color: #04435a;
  z-index: 1;
  bottom: 0;
  margin-top: 4rem;
  padding: 0.8rem 0;
}

.copyright p {
  font-size: 14px;
  margin-bottom: 0;
  color: #ffffffc3;
}

/*////////////////// INTERNAS - Generales //////////////////*/
.internal-header .navbar {
  background-color: white;
}

.internal-header .header-logo {
  filter: none;
}

.internal-header .nav-link {
  color: var(--color-blue) !important;
}

.internal-header .nav-link:hover {
  color: var(--color-lightBlue) !important;
}

.internal-header .btn-nav {
  background-color: #e55151;
}

.internal-header .btn-nav:hover {
  background-color: #d33131;
}

.bsnav-sticky.bsnav-sticky-fade.navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-fade .navbar-toggler-icon::before {
  background-color: var(--color-blue) !important;
  transition: 0.3s;
}

.section-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-top: 85px;
}

.section-header h2.h1 {
  font-size: 52px;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  align-items: center;
  justify-content: center;
}

.breadcrumb a,
.breadcrumb p {
  text-transform: uppercase;
  font-size: 18px;
  color: white;
}

.breadcrumb span {
  color: var(--color-lightBlue);
}

.section-header.clients-header {
  background-image: url(../images/bg-clientes.jpg);
}
.clients-section img {
  width: 170px;
  object-fit: contain;
  margin: 1.5rem 2rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.3s;
}

.clients-section img:hover {
  filter: none;
  opacity: 1;
}
/*////////////////// INTERNAS - QUIENES SOMOS //////////////////*/
.section-header.about-us-header {
  background-image: url(../images/bg-sobre-nosotros.jpg);
}

.about-video {
  padding: 5rem 0;
}

.video-container {
  height: 575px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-container-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #eb2055; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 19px solid var(--color-lightBlue);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  top: 10px;
  left: 5px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.lectus-numbers {
  padding: 4rem 0;
}

.counter-blocks-lectus-numbers {
  background-color: white;
  border-radius: 15px;
  border: 1px solid #00537152;
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: row;
  text-align: left;
  line-height: 1.2;
  padding: 1rem;
}

.counter-blocks-lectus-numbers .counter-number{
 font-weight: 700;
}

.counter-blocks-lectus-numbers img {
  width: 90px;
  height: 90px;
  margin-right: 0.8rem;
  margin-bottom: 0 !important;
}

.counter-blocks-lectus-numbers span {
  font-weight: 700;
  font-size: 22px;
  margin-left: 0.4rem;
}

.counter-blocks-lectus-deco {
  padding: 1rem 0;
  border: 0;
  background-color: white;
  width: 100%;
  flex-direction: row;
  text-align: left;
  line-height: 1;
  align-items: center;
}

.deco-lectus-numbers {
  height: 50px !important;
  width: auto !important;
  margin-right: 0.8rem;
  margin-bottom: .2rem !important;
  margin-top: .2rem !important;
}

.counter-number-lg {
  font-size: 42px;
  font-weight: 800;
}

.why-us {
  padding: 6rem 0;
  background-image: url(../images/bg-por-que-nosotros.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-us-card {
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #00537139;
  padding: 2rem 1.4rem;
  text-align: center;
  line-height: 1.1;
  min-height: 290px;
}

.why-us-card img {
  margin-bottom: 1rem;
  width: 120px;
  height: 120px;
}

.value {
  padding: 4rem 0;
  position: relative;
}

.value img {
  width: 100%;
}

.value-items-container {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.value-item {
  background-color: #def3f8;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
}

.value-item p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

/*////////////////// INTERNAS - SERVICIOS/QUE HACEMOS //////////////////*/
.section-header.services-section-header {
  background-image: url(../images/bg-servicios.jpg);
}

.services-section {
  padding: 4rem 0;
  background-color: #f7fcfd;
}

.services-section-card {
  min-height: 330px;
  background-color: white;
  border-radius: 15px;
  border: 1px solid #00a1c541;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-All);
  text-align: center;
}

.services-section-card img {
  margin-bottom: 1.4rem;
  width: 90px;
  height: 90px;
}

.services-section-card:hover {
  border: 1px solid #0053715a;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

/*////////////////// INTERNAS - SERVICIOS (detalle) //////////////////*/
.section-header.services-header {
  background-image: url(../images/bg-que-hacemos.jpg);
}

.btn-service {
  background-color: #def3f8;
  font-size: 16px;
  font-weight: 400;
  color: #005371ab;
  border-radius: 35px;
  padding: 10px 16px;
  transition: var(--transition-All);
  line-height: 1;
  min-height: 54px;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-service:hover {
  background-color: #00a0c5;
  color: #ffffff;
}

.btn-service-active {
  background-color: #00a0c5;
  color: white;
  font-weight: 600;
}

.text-block {
  padding: 4rem 0;
}

.text-block-deco {
  width: 100%;
  /*height: 550px;*/
  object-fit: cover;
}

.text-block-icon {
  width: 63px;
  height: 63px;
  margin-bottom: 1rem;
}

.contact-block {
  padding: 4rem 0;
}

.contact-block img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

form label {
  color: #005371c8;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

form .form-control {
  border: 1px solid #00537157;
  border-radius: 4px;
}

form .form-control:focus,
form .form-control:active {
  border: 1px solid #005371;
  box-shadow: 0 0 2px 0.08rem rgba(0, 54, 112, 0.15);
}
.relative {
  position: relative;
}

#response {
  background: #2ec770;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 25px 10px;
  position: absolute;
  top: 0px;
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #ffffffb3 url(../images/loading.gif) center no-repeat;
}

.loading {
  display: none;
}
/*////////////////// INTERNAS - CONTACTO //////////////////*/
.section-header.contact-header {
  background-image: url(../images/bg-contacto.jpg);
}

.contact-cards {
  background-color: #eaf4f6;
  padding: 0 0 4rem 0;
  overflow: visible;
}

.contact-card-container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.4rem;
  text-align: center;
  min-height: 290px;
  margin-top: -4rem;
}

.deco-contact-cards {
  min-height: 290px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-top: -4rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.contact-card-container img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.contact-card-container a {
  color: var(--color-blue);
  transition: var(--transition-All);
}

.contact-card-container a:hover {
  color: var(--color-lightBlue);
  transform: scale(1.1);
}
footer .rrss a.btn-fb:hover {
  background-color: #1877f2;
}
footer .rrss a.btn-ig:hover {
  background-color: #e1306c;
}
footer .rrss a.btn-in:hover {
  background-color: #0a66c2;
}

.social-media-contact img {
  width: 38px;
  height: 38px;
  transition: var(--transition-All);
}

.social-media-contact img:hover {
  transform: scale(1.08);
}

/* RESPONSIVE */

/* XL */
@media (max-width: 1360px) {
  .header-logo,
  .navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
    width: auto;
    height: 65px;
  }

  .nav-link {
    font-size: 18px;
    margin-right: 0.8rem !important;
    margin-left: 0.8rem !important;
  }

  .btn-nav {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .header-logo,
  .navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
    width: auto;
    height: 62px;
  }

  .nav-link,
  .btn-nav {
    font-size: 16px;
  }

  .action-card {
    min-height: 435px;
  }

  .value-items-container {
    bottom: 20px;
  }
}

@media (max-width: 1140px) {
  .header-logo,
  .navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
    width: auto;
    height: 58px;
  }

  .nav-link {
    margin-right: 0.6rem !important;
    margin-left: 0.6rem !important;
  }
}

@media (max-width: 1024px) {
  .header-logo,
  .navbar.bsnav-sticky.bsnav-sticky-fade.sticked.in .header-logo {
    width: auto;
    height: 54px;
  }

  .section-header {
    padding: 3rem 0;
    min-height: 320px;
  }
}

/* MD */
@media (max-width: 768px) {
  .action-card {
    min-height: auto;
  }

  .counter-column {
    width: 100%;
  }

  .two-col {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }

  #servicesCarousel .f-carousel__slide {
    width: 50%;
  }

  .deco-counter-number {
    font-size: 60px;
  }

  .deco-team {
  }

  .section-header {
    min-height: 240px;
    margin-top: 75px;
  }

  .video-container {
    height: 420px;
  }

  .value-items-container {
    position: relative;
  }

  .value-item {
    padding: 0.8rem 1rem;
  }
  .contact-card-container {
    padding: 1.4rem;
    min-height: 300px;
    margin-top: -3rem;
    margin-bottom: 3rem;
  }

  .contact-cards {
    padding: 0 0 1rem 0;
  }
}

/* Sm */
@media (max-width: 576px) {
  .main-section h1 {
    font-size: 48px;
  }

  .action-card-icon {
    display: none;
  }

  .counter-bg {
    width: 95%;
  }

  #servicesCarousel .f-carousel__slide {
    width: 90%;
  }

  .service-card {
    min-height: 440px;
  }

  .service-card-img-container {
    height: 200px;
  }

  .testimonial-container {
    flex-direction: column;
    align-items: start;
  }

  .testimonial-container img {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .pulse-image {
    width: 320px;
    height: 320px;
    margin: auto;
  }

  .cv-block-img {
    width: 300px;
    transform: translateY(-30px) translateX(25px);
  }

  .deco-team {
    display: none;
  }

  .video-container {
    height: 370px;
  }

  .why-us-card {
    min-height: 265px;
    padding: 1.4rem 1rem;
  }

  .why-us-card img {
    width: 90px;

    height: 90px;
  }

  .value img {
    width: 95%;
    margin-bottom: 1.4rem;
  }

  .value-item {
    margin: 0.6rem 0;
  }

  .section-header h2.h1 {
    font-size: 40px;
  }

  .text-block-deco {
    height: 320px;
    margin-bottom: 1rem;
  }

  .btn-service {
    font-size: 15px;
    padding: 8px 12px;
  }

  .contact-card-container {
    padding: 1.2rem;
    min-height: 265px;
  }

  .contact-card-container img:not(.contact-card-container img) {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
  }

  .services-section-card {
    min-height: auto;
    padding: 1.4rem;
  }

  .services-section-card img {
    width: 75px;
    height: 75px;
    margin-bottom: 1rem;
  }

  .order-btn-sm {
    flex-direction: column-reverse;
  }

  .counter-blocks-lectus-deco {
  flex-wrap: wrap;
  justify-content: center;
}
}
