/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: 'Nunito Sans', sans-serif;
}

/* Colors */
:root {
  --color-default: #38F8AC;
  --color-primary: #060B3E;
  --color-secondary: #02ADFE;
  --background-color: #ffffff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-default);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

p {
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-default);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header h3 {
  font-size: 27px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-header h3 strong {
  font-weight: 600;
}

.section-header p {
  margin-bottom: 0;
}


.section-header-left {
  text-align: justify;
  padding-bottom: 50px;
}

.section-header-left h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-header-left h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-default);
  left: 0;
  right: auto;
  bottom: 0;
  margin: auto;
}

.section-header-left h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-header-left h3 strong {
  font-weight: 600;
}

.section-header-left p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-default);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 16px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 0px 0;
  }
}

.header.sticked {
  background: #fff;
  padding: 0px 0;
  height: 46px;
  box-shadow: 0px 0 30px rgb(15, 23, 31, 100%);
}

.header .logo img {
  max-height: 38px;
  z-index: 99999;
  margin-right: 6px;
}

.header-subpages {
  background: var(--background-color);
  padding: 0px 0;
  height: 46px;
  box-shadow: 0px 0 30px rgb(15, 23, 31, 100%);
}

.header-subpages .logo img {
  max-height: 38px;
  z-index: 99999;
  margin-right: 6px;
}

.logo-img {
  visibility: hidden;
}


.logo-img.active {
  visibility: visible;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {

  .navbar ul {
    margin: 10px 0px 0px 0px;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    border-radius: 7px;
    background: rgb(255 255 255 / 70%);
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 6px 16px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: solid;
    border-bottom-width: 1.6px;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    -inset: 0;
    padding: 70px 0 10px 0;
    margin: 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    top: 0px;
    right: 0px;
    left: 0px;
    box-shadow: 25px 0 30px rgb(15, 23, 31, 85%);
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
    text-decoration: underline;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    font-size: 31px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    background: #fff;
    border-radius: 7px;
    padding: 1px;
    margin-top: 4px;
    opacity: 58%;
  }

  .mobile-nav-hide {
    color: var(--color-primary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 10px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  /*.mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }*/
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.webp") top center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  -border-radius: 0px 0px 94px 94px;
}

.hero:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 82%;
  top: 0;
  bottom: 0;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 48%;
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgb(19 40 75 / 64%);
  inset: 0;
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero img {
  height: 94px;
  margin-bottom: 40px;
}

.hero h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 34px;
  color: #fff;
  font-family: var(--font-primary);
}

.hero h2 strong {
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
}

.hero p {
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
  font-family: var(--font-primary);
}

.hero p strong {
  font-weight: 600;
}

.hero blockquote {
  color: #fff;
  font-size: 15px;
  font-family: var(--font-default);
  margin: 13px 0px 50px 0px;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 5px 20px;
  transition: 0.5s;
  color: var(--color-primary);
  background: rgb(255 255 255 / 70%);
  margin-right: 16px;
  border-radius: 6px;
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: #fff;
}

.hero .btn-get-started i {
  padding-right: 2px;

}


@media (max-width: 1080px) {
  .hero h2 {
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 28px;
    line-height: 30px;
  }

  .hero h2 strong {
    font-size: 28px;
    line-height: 34px;
  }

  .hero p {
    font-size: 16px;
    line-height: 22px;
  }


  .hero img {
    height: 76px;
  }
}


/*--------------------------------------------------------------
# about-us Call To Action Section
--------------------------------------------------------------*/
.about-us-call-to-action {
  background: linear-gradient(rgb(19 40 75 / 85%), rgb(19 40 75 / 85%)), url(../img/banner-bg.webp) center center;
  background-size: cover;
  padding: 40px 6px;
  box-shadow: 0px 0 30px rgb(15, 23, 31, 52%);
  margin-bottom: 85px;
}

@media (min-width: 1365px) {
  .about-us-call-to-action {
    background-attachment: fixed;
  }
}

.about-us-call-to-action h3 {
  color: #fff;
  font-size: 35px;
  margin-bottom: 70px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.about-us-call-to-action h3 strong {
  color: #fff;
  font-size: 52px;
  margin-bottom: 25px;
  font-weight: 700;
  font-family: var(--font-primary);
  text-decoration: underline;
}

.about-us-call-to-action h4 {
  color: #fff;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 52px;
  font-weight: 300;
  font-family: var(--font-primary);
}

.about-us-call-to-action h4 strong {
  font-weight: 700;
}

.about-us-call-to-action p {
  color: #fff;
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 28px;
  font-family: var(--font-primary);
  font-weight: 300;
}

.about-us-call-to-action p strong {
  color: #fff;
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.about-us-call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 12px;
  transition: 0.5s;
  margin: 10px;
  color: var(--color-primary);
  background: #fff;
  opacity: 70%;
}

.about-us-call-to-action .cta-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border: 2px #fff;
}

@media (max-width: 580px) {
  .about-us-call-to-action h4 {
    font-size: 25px;
    line-height: 32px;
    padding: 0px 20px;
  }

  .about-us-call-to-action h4 strong {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 130px 0px 60px 0px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 35px;
  color: var(--color-secondary);
}

.about .content h2 {
  font-weight: 700;
  font-size: 28px;
  color: var(--color-secondary);
  box-shadow: 0px 0 30px rgb(0 64 121 / 25%);
  width: fit-content;
  padding: 10px 20px 10px 20px;
  border-radius: 7px;
}

.about .content h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.about .content p {
  margin: 0px 20px 16px 0px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  color: var(--color-primary);
  font-family: var(--font-primary);
  text-align: justify;
}

.about .content p strong {
  font-size: 20px;
  font-weight: 700;
}

.about img {
  margin-top: -22px;
  position: relative;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 2px 34px;
  position: relative;
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin-left: 34px;
}

.about .content ul i {
  position: absolute;
  font-size: 28px;
  left: 0;
  top: -4px;
  color: var(--color-secondary);
}

.about .content .read-more {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list {
  padding: 130px 0px 40px 0px;
}

.services-list .section-header h3 {
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 70px;
}

.services-list .section-header h3 strong {
  font-weight: 600;
}

.services-list .service-item {
  position: relative;
}


.services-list .service-item .box {
  text-align: center;
  padding: 20px 14px 20px 14px;
  -box-shadow: 0px 0 30px rgb(180 185 180 / 70%);
  border-radius: 25px;
}

.services-list .service-item .box:hover {
  transform: translateY(-10px);
}

.services-list .service-item .icon i {
  font-size: 52px;
  line-height: 0;
  -margin-right: 20px;
  color: var(--color-primary);
}

.services-list .service-item .icon img {
  height: 142px;
  padding: 27px;
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  border-radius: 20px;
  margin-bottom: 8px;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 25px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}



.services-list .service-item p {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
}

.services-list .service-item .description {
  line-height: 20px;
  font-size: 15px;
  color: var(--color-default);
}


.services-info .icon-box {
  padding: 20px;
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  border-radius: 25px;
  transition: all 0.3s ease-out 0s;
}

.services-info .icon-box img {
  width: auto;
  height: 85px;
  padding: 13px;
  transition: all 0.4s ease-out 0s;
}

.services-info .icon-box i {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}

.services-info .icon-box h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-info .icon-box p {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 20px;
}

.services-info .content h3 {
  font-weight: 700;
  font-size: 35px;
  color: var(--color-secondary);
}

.services-info .content h2 {
  font-weight: 700;
  font-size: 28px;
  color: var(--color-secondary);
  box-shadow: 0px 0 30px rgb(0 64 121 / 25%);
  width: fit-content;
  padding: 10px 20px 10px 20px;
  border-radius: 7px;
}

.services-info .content h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  width: fit-content;
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  padding: 16px 20px;
  border-radius: 14px;
}

.services-info .content p {
  margin: 0px 20px 0px 0px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  color: var(--color-primary);
  font-family: var(--font-primary);
  text-align: justify;
}

.services-info .content p strong {
  font-size: 20px;
  font-weight: 700;
}

.services-info img {
  position: relative;
}

.services-info .content ul {
  list-style: none;
  padding: 0;
}

.services-info .content ul li {
  padding: 0 0 2px 34px;
  position: relative;
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin-left: 34px;
}

.services-info .content ul i {
  position: absolute;
  font-size: 28px;
  left: 0;
  top: -4px;
  color: var(--color-secondary);
}

.services-info .content .read-more {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-info .separacion {
  margin-bottom: 100px;
}

.services-info .info-box {
  background-color: var(--color-primary);
  padding: 20px;
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  border-radius: 25px;
  transition: all 0.3s ease-out 0s;
}

.services-info .info-box h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 13px;
  color: var(--background-color);
}

.services-info .info-box p {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 20px;
  color: var(--background-color);
  font-weight: 300;
}

.services-info .material-box {
  padding: 20px;
  transition: all 0.3s ease-out 0s;
}

.services-info .material-box h3 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 13px;
  color: var(--color-primary);
}

.services-info .material-box p {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-primary);
  font-weight: 300;
}

.services-info .material-box img {
  height: 166px;
  width: 166px;
  margin-bottom: 30px;
  border-radius: 24px;
  border: 4px solid var(--background-color);
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
}

@media (max-width: 420px) {

  .services-info .icon-box h3 {
    font-size: 16px;
    line-height: 20px;
  }

}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features .extra-services {
  background: #fff;
  padding: 25px;
  margin-bottom: 130px;
}

.features .extra-services .box {
  padding: 40px 20px 0px 40px;
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  border-radius: 34px;
}

.features h2 {
  color: var(--color-primary);
  font-size: 23px;
  line-height: 29px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: justify;
}

.features h2 strong {
  font-weight: 700;
}

.features h4 {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: justify;
  margin-right: 30px;
}

.features h4 strong {
  font-weight: 600;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 34px;
  font-weight: 700;
  text-align: left;
}

.features .box-services {
  -padding: 18px;
  -box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  -border-radius: 10px;
  margin-bottom: 20px;
}

.features .box-claves {
  padding: 22px 22px;
  box-shadow: 0px 0 30px rgb(6 11 62 / 31%);
  border-radius: 22px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.features .box-claves img {
  height: 50px;
  margin-right: 12px;
}

.features .box-claves span {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.features .box-claves p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.features .text-list {
  margin-bottom: 40px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 36px;
  line-height: 1.2;
  color: var(--color-primary);
}

.features .icon-list img {
  height: 61px;
  margin-right: 18px;
  box-shadow: 0px 0 30px rgb(0 64 121 / 25%);
  padding: 7px;
  border-radius: 7px;
}

.features .icon-list span {
  font-weight: 600;
  font-size: 23px;
  color: var(--color-secondary);
  margin-right: 16px;
  font-family: var(--font-primary);
}

.features .icon-list span strong {
  font-weight: 700;
  font-size: 30px;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

.features .phone-wrap img {
  margin-top: -22px;
  position: relative;
}

.features .phone-wrap-services {
  position: absolute;
  right: 0;
}

.features .phone-wrap-services img {
  border-radius: 13px;
}

@media (max-width: 1080px) {
  .features .icon-list span {
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
  }

  .features .icon-list img {
    height: 52px;
    margin-right: 16px;
  }
}

@media (max-width: 580px) {
  .features .icon-list span {
    font-size: 20px;
    line-height: 23px;
    font-weight: 600;
  }

  .features .icon-list img {
    margin-right: 13px;
  }

  .features .phone-wrap {
    position: relative;
  }


  .features .phone-wrap-services {
    position: relative;
  }

  .features .phone-wrap-services img {
    border-radius: 13px;
  }

  .features .extra-services .box {
    padding: 34px 20px 0px 20px;
    border-radius: 40px;
  }

  .features h4 {
    font-size: 22px;
  }


}

.features .details {
  margin-top: 0px;
  padding: 43px 0px 48px 0px;
  background: linear-gradient(rgb(19 40 75 / 85%), rgb(19 40 75 / 85%)), url(../img/banner-bg.webp) center center;
  box-shadow: 0px 0 30px rgb(0 64 121 / 25%);
  -border-radius: 52px 0px 0px 52px;
  background-size: cover;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  font-family: var(--font-primary);
  margin-bottom: 48px;
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  text-align: justify;
  font-weight: 300;
  -padding: 0px 20px 0px 20px;
}

.features .details p strong {
  font-weight: 700;
}

.features .details .cta .cta-contact {
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 27px;
  color: var(--color-primary);
  text-align: left;
  font-weight: 400;
}


.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 12px;
  transition: 0.5s;
  background-color: #fff;
  color: var(--color-primary);
  opacity: 70%;
}

.features .details .btn-get-started:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 992px) {
  .features .phone-wrap-services img {
    margin: 40px 0px;
  }

  .features h2 {
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
    padding: 10px;
  }

  .features .details p {
    font-size: 24px;
    line-height: 28px;
  }

}

@media (max-width: 580px) {
  .features .details {
    padding: 30px 0px 40px 0px;
    -border-radius: 0px 0px 0px 70px;
  }

  .features h2 {
    font-size: 22px;
    text-align: justify;
    margin-bottom: 30px;
    padding: 10px 16px 10px 16px;
    line-height: 29px;
  }

  .features .details p {
    text-align: justify;
    padding: 0px 8px 0px 8px;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 34px;
  }

}


/*--------------------------------------------------------------
# Alianzas comerciales
--------------------------------------------------------------*/
.alianzas-comerciales {
  padding-bottom: 100px;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
  border-radius: 25px;
}

.testimonials .testimonial-item .testimonial-img {
  height: 52px;
  width: auto;
  margin-bottom: 22px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-primary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--color-secondary);
  margin: 0;
}


.testimonials .testimonial-item p {
  font-style: italic;
  margin: 34px auto 15px auto;
  color: var(--color-primary);
  text-align: justify;
}

.testimonials .testimonial-item .fechaTestimonio {
  font-weight: 700;
  text-align: right;
  color: var(--color-primary);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-default);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 120px;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 22px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-secondary);
}


.contact .info-item .enlaces {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-secondary);
}

.contact .info-item .enlaces:hover {
  color: var(--color-default);
}

.enviarmensaje-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 8px;
  transition: 0.5s;
  margin: 10px 0px 20px 0px;
  color: #fff;
  background: var(--color-primary);
}

.enviarmensaje-btn:hover {
  color: #fff;
  padding: 12px 42px;
}

.contact .info-box {
  color: #444444;
  padding: 30px;
  text-align: center;
}



.contact .enviar-correo h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-primary);
  margin-top: 30px;
  text-align: center;
}

.contact .email-form {
  border-radius: 22px;
  box-shadow: 0px 0 30px rgb(129 129 129 / 58%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 13px;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 13px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 15px;
  border: solid;
  border-color: #fff;
  color: var(--color-primary);
  border-bottom: solid;
  border-bottom-width: 1.3px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 8px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-primary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.titulo-mapas-sucursales {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 34px;
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 600px) {
  .contact .info-item .enlaces {
    font-size: 15px;
  }

  .contact .info-item h4 {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-content {
  background-color: #fff;
  background-size: contain;
  padding: 60px 0 30px 0;
  box-shadow: 0px 0 30px rgb(15, 23, 31, 13%);
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
  max-height: 76px;
  margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.footer .footer-content .footer-info p {
  font-size: 16px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-default);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: var(--color-primary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-default);
}

.footer .footer-content .footer-contact p {
  line-height: 26px;
  color: var(--color-primary);
}

.footer .footer-legal {
  background: #fff;
  padding: 30px 0;
  box-shadow: 0px 0 30px rgb(180 185 180 / 70%);
}

.footer .footer-legal .copyright {
  text-align: center;
  color: var(--color-primary);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-secondary);
}


/*--------------------------------------------------------------
# Captcha
--------------------------------------------------------------*/
#captchaBackground {
  background-color: #fff;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#titulocaptcha {
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 40px;
}

#captcha {
  text-shadow: 4px 4px 5px rgba(150, 150, 150, 1);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 7px 7px 25px 7px;
  display: block;
  user-select: none;
  cursor: help;
  border: solid;
  border-width: 0.4px;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}


#refreshButton {
  background-color: #fff;
  color: var(--color-primary);
  border: 0px;
  font-weight: bold;
  font-size: 18px;
}

#refreshButton i {
  font-size: 22px;
  margin-right: 4px;
}

#textBox {
  height: 25px;
}