/**
* Template Name: Sailor
* Updated: Jul 27 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/sailor-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Hind', sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #d9232d;
}

a:hover {
  color: #e24d55;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #05AA6C;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background:#438BCB;
  color: #fff;
}

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

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

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #556270;
}

#header .logo img {
  max-height:50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}


.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #428bca;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #438BCB;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border-radius: 50px;
  color: #fff;
  border: 2px solid #fff;
  background: #05AA6C;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #428bca;
  border-color: #428bca;
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

.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.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.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: #d9232d;
}

.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;
}
.navbar>ul>li {
  white-space: nowrap;
  padding: 8px 12px;
}

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #438BCB;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #d9232d;
}

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

/*--------------------------------------------------------------
# servicios Section
--------------------------------------------------------------*/
#servicios {
  width: 100%;
  height: 100vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#servicios .carousel,
#servicios .carousel-inner,
#servicios .carousel-item,
#servicios .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#servicios .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#servicios .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.6);
}

#servicios .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
  padding: 0% 1%;
}

#servicios .container {
  text-align: center;
}

#servicios h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  width: 60%;
}

#servicios p {
  animation-delay: 0.4s;
  margin: 0 0 60px 0;
  color: #fff;
  text-align: left;
  width: 60%;
}
}

#servicios .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#servicios .carousel-inner .carousel-item,
#servicios .carousel-inner .active.carousel-item-start,
#servicios .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#servicios .carousel-inner .active,
#servicios .carousel-inner .carousel-item-next.carousel-item-start,
#servicios .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#servicios .carousel-inner .carousel-item-next,
#servicios .carousel-inner .carousel-item-prev,
#servicios .carousel-inner .active.carousel-item-start,
#servicios .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#servicios .carousel-control-next-icon,
#servicios .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#servicios .carousel-control-next-icon:hover,
#servicios .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#servicios .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#servicios .carousel-indicators li.active {
  opacity: 1;
  background: #05AA6C;
}

#servicios .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #05AA6C;
  float: left;
  border-radius: 50px;
}

#servicios .btn-get-started:hover {
  background: #438BCB;
}

@media (max-width: 992px) {
  #servicios {
    height: 100vh;
  }

  #servicios .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #servicios h2 {
    font-size: 28px;
    text-align: center;
  }
  #servicios h2 { width: 100%;}
  #servicios p { width: 100%;  text-align: center;}
}

@media (min-width: 1024px) {

  #servicios .carousel-control-prev,
  #servicios .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #servicios {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 110px 0;
  overflow: hidden;
}

.section-bg,
.services .icon-box {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #000;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #428bca;
    bottom: 0;
    left: 0;
}

.section-title p {
    margin-bottom: 0;
    color: #777777;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: #f8f9fa;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6b7b8d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# EQUIPO
--------------------------------------------------------------*/
.equipo{
  background: url(../../assets/img/bg_bottom.png) no-repeat;
  background-position: center bottom;
  background-size: contain;
  padding-bottom:180px;
}
.equipo .content h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 10px;
}
.equipo .content .foto {
  text-align: center;

}
.equipo .content .foto img {
  width: 60%;
}

.equipo .content h3 {
  font-weight: 700;
  line-height:42px;
  font-size: 37px;
  color: #000;
}
.equipo .content p {
  font-weight: 500;
  line-height:22px;
  font-size: 16px;
  color: #444;
  text-align: justify;
  padding:16px 0px;
}

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

.equipo .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.equipo .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #d9232d;
}

.equipo .content p:last-child {
  margin-bottom: 0;
}

.equipo .icon-box {
  margin-top: 40px;

}

.equipo .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: 0.5s;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.24);
-moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.24);
box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.24);
}

/*.equipo .icon-box .icon i {
  color: #428bca;
  font-size: 32px;
}
*/
.equipo .icon-box .icon img {
  display: block;
  float: left;
  width:50%; 
  height: auto;
}

.equipo .icon-box:hover .icon {
  background: #efefef;
  border-color: #fff;
}

.equipo .icon-box:hover .icon i {
}

.equipo .icon-box .title{
  margin-left: 85px;
  margin-top: 10px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
}
.equipo .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.equipo .icon-box .title a:hover {
  color: #428bca;
}
.equipo .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.equipo .content .btn-learn-more {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #05AA6C;
  background: #05AA6C;
  margin-top:60px;
}

.equipo .content .btn-learn-more:hover {
  background: #438BCB;
  color: #fff;
  text-decoration: none;
  border: 2px solid #438BCB;

}

/*--------------------------------------------------------------
# Verticales
--------------------------------------------------------------*/
.verticales{
  background: #F8F9FD;
}
.verticales .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
  position: relative;
}

.verticales .icon-box .icon {
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
  float: left;
  text-align: center;
  padding-top: 10px;
  overflow: hidden;
  position: relative;
}

.verticales .icon-box .icon img {
  font-size: 28px;
  width:70%;
  position: absolute;
  top: 8px;
  left: 8px;
}
.verticales .icon-box .icon img:hover{
  color: #fff;
}

.verticales .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #000;
  float: left;
  width: 72%;
  padding-left: 7%;
}

/*.verticales .icon-box h4 a {
  color: #428bca;
  transition: ease-in-out 0.3s;
}*/

.verticales .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  width: 100%;
  color: #444;
  float: left;
  text-align: justify;
  font-weight: 500;
  padding-bottom:40px;
}

.verticales .icon-box .icon_b {
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
  float: right;
  text-align: center;
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  right: 26px;
}

.verticales .icon-box .icon_b img {
  font-size: 28px;
  width:70%;
}

.verticales .icon-box:hover {
  transform: translateY(-2px);
  border-color: #428bca;
  /*background-color: #1C9AEA;*/
}

.verticales .icon-box:hover h4 {
  color: #fff;
}
.verticales .icon-box:hover p {
  color: #fff;
}
.verticales .icon-box:hover .icon img {
  position: absolute;
  top: -55px;
}


.bg01:hover{
  background: url(../../assets/img/verticales_01.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.bg02:hover{
  background: url(../../assets/img/verticales_02.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.bg03:hover{
  background: url(../../assets/img/verticales_03.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.bg04:hover{
  background: url(../../assets/img/verticales_04.png) no-repeat;
  background-size: cover;
  background-position: center;
}



/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner-bottom{
  background: url(../../assets/img/banner-bottom.png) no-repeat;
  background-size: cover;
  background-position: center;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #428bca;
  float: left;
  line-height: 1;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #282828;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #5b5b5b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

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

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

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

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

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

.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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #428bca;
}

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type=submit] {
  background: #05AA6C;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #438BCB;
}

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

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

.gracias{ text-align:center; padding:30px 0px;}
.gracias h1{ text-align:center; font-size: 32px; padding-bottom:20px; font-weight: bold; color: #000;}
.gracias h2{ text-align:center; color: #777777; font-size: 18px;}
.gracias h3{ text-align:center; color: #777777; font-size: 18px; text-align:center;}
.gracias a{ color: #438BCB;}
.gracias a:hover{ color: #05AA6C;}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0f0f0f;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  background: url(../../assets/img/bg_footer.png) no-repeat;
  background-size: cover;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer h3 img {
  width: 8%;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #428bca;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .credits a {
  color: #00b371;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #009961;
}

@media only screen and (max-width: 600px) {
  #servicios .btn-get-started { float:none; }
  section { padding: 90px 0;}
  .equipo { padding-bottom: 87px;}
  .verticales .icon-box { margin-bottom:30px;}
  .equipo .content h2 {text-align: center;}
  .section-title h2::after {left: 50%;  margin-left: -25px;}
  .equipo .content .foto img { width: 40%;}
  .section-title { padding-bottom: 0px;}
  .equipo .content h3 { font-size: 24px; text-align: center;}
  .equipo .content p { font-size: 14px; padding: 16px 30px;}
  .section-title h2 { text-align: center; }
  .verticales .icon-box h4 { font-size: 22px;}
  .banner-bottom {padding: 0px!important;}
  .verticales { padding:40px 0px!important;}
}