/**
* Author: Marketlogic
* Framework: Bootstrap
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Roboto Condensed', sans-serif;
  color: #444444;
  background: #000;
}

a {
  color: #47b2e4;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  left: 6px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #47b2e4;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

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

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

#header .logo img {
  max-height: 40px;
}
@media (max-width: 575px) {
  #header .logo img {
    max-height: 25px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #005eb8;
  background: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 100;
  display: inline-block;
}

.get-started-btn:hover {
  background: #005eb8;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #47b2e4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 600px;
  background: url("../img/header-bg.jpg") fixed bottom center;
  background-size: cover;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-transform: uppercase;
}

#hero h1 span{
  color: #0198d5;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  padding: 10px 0 8px 40px;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  position: relative;
}

#hero .btn-watch-video i {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  top: 7px;
  transition: 0.3s;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}
/*Commented by Gokul Pankajakshan*/
/*#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}*/

@media (max-width: 991px) {
  #hero {
    height: 600px;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
  #hero .btn-watch-video {
    font-size: 16px;
    padding: 10px 0 8px 40px;
    margin-left: 20px;
  }
  #hero .btn-watch-video i {
    font-size: 32px;
    top: 7px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

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

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: left;
  padding-bottom: 0px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #25a8ea;
}

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

.section-title-white {
  text-align: center;
  padding-bottom: 0px;
}

.section-title-white h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #fff;
}

.section-title-white h2 span{
  color: #25a8ea;
}

@media (max-width: 991px) {
  .section-title {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .section-title h2, .section-title-white h2{
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# Formulario
--------------------------------------------------------------*/

.formulario{
  background: #343434;
  position: absolute;
  width: 400px;
  min-height: 600px;
  top: 80px;
  right: 70px;
  padding: 30px;
  z-index: 996;
}

.formulario .title-form {
  text-align: center;
  padding-bottom: 10px;
  width: 100%;
}

.formulario .title-form h3{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.formulario .title-form p{
  font-size: 15px;
  color: #fff;
  font-weight: 100;
  text-align: center;
  padding: 10px 4px;
}

.formulario .embed-form{
  width: 100%;
}

.formulario .embed-form .iframe-form{
  height: 1250px;
  width: 100%;
}

@media (min-width: 1747px) {
  .formulario{
    right: 120px;
    width: 480px;
  }
}
@media (max-width: 1400px) {
  .formulario{
    right: 0;
    width: 380px;
  }
  .formulario .embed-form .iframe-form{
    height: 1300px;
  }
}

@media (max-width: 1065px) {
  .formulario{
    width: 350px;
  }
  .formulario .embed-form .iframe-form{
    height: 1300px;
  }
}

@media (max-width: 991px) {
  .formulario{
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
  }
  .formulario .title-form p{
    font-size: 17px;
  }
  .formulario .embed-form .iframe-form{
    height: 1000px;
  }
}

@media (max-width: 768px) {
  .formulario .embed-form .iframe-form{
    height: 1030px;
  }
}

@media (max-width: 575px) {
  .formulario .embed-form .iframe-form{
    height: 1200px;
  }
}
@media (max-width: 375px) {
  .formulario .embed-form .iframe-form{
    height: 1300px;
  }
}

/*--------------------------------------------------------------
# First Step
--------------------------------------------------------------*/
.first-step {
  padding: 40px 0;
  background: #000;
}

.first-step h4 {
  color: #fff;
}
.first-step img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.first-step img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .first-step {
    text-align: center;
  }
  .first-step h4 {
    font-size: 20px;
  }
  .first-step img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Video Box
--------------------------------------------------------------*/
.video-box {
  background: url("../img/video-bg.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.video-box .play-btn {
  width: 120px;
  height: 120px;
  border:5px solid #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 60px);
  overflow: hidden;
  transition: ease-in-out 0.2s;
}

.video-box .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video-box .play-btn::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(245, 117, 33, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.video-box .play-btn:hover {
  border: 5px solid #0198d5;
}

.video-box .play-btn:hover::after {
  border-left: 15px solid #005eb8;
  transform: scale(20);
}

.video-box .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.video-box img {
  min-height: 250px;
}

@media (min-width: 1747px) {
  .video-box img{
    min-height: 300px;
  }
}
@media (max-width: 1400px) {
  .video-box img{
    min-height: 100%;
  }
}

@media (max-width: 768px) {
  .video-box {
    min-height: 300px;
  }
  .video-box img{
    min-height: auto;
    width: 100%;
  }
}

@media (max-width: 552px) {
  .video-box {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Alerta Section
--------------------------------------------------------------*/
.alerta {
  background: url("../img/a-section-bg.jpg") fixed center center;
  background-size: cover;
  margin: 20px 0px; 
  padding: 60px 0px;
}

.alerta .content p {
  padding: 10px 0px;
  font-weight: 100;
  font-size: 18px;
  color: #fff;
}

.alerta .content p strong{
  font-weight: 700;
}

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

.alerta .content ul li {
  padding-left: 28px;
  position: relative;
  color: #fff;
  font-weight: 100;
}

.alerta .content h4 {
  font-size: 22px;
  font-weight: 100;
  color: #fff;
}

.alerta .content h4 strong{
  font-weight: 700;
}

.alerta .content ul li + li {
  margin-top: 10px;
}

.alerta .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0198d5;
  line-height: 1;
}

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

.alerta .content .btn-learn-more {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #005eb8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #fff;
  border: 2px solid #fff;
  line-height: 20px;
  width: 100%;
}

.alerta .content .btn-learn-more:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.alerta .content .btn-learn-more-b {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #fff;
  line-height: 20px;
  width: 100%;
}

.alerta .content .btn-learn-more-b:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.alerta .content .btn-asesoria {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #005eb8;
  border: 2px solid #005eb8;
  line-height: 20px;
  text-align: center;
}

.alerta .content .btn-asesoria:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #005eb8;
  text-decoration: none;
}

@media (max-width: 1469px) {
  .alerta .content .btn-learn-more-b {
    font-size: 15px;
  }
  .alerta .content .btn-learn-more {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .alerta .content p {
    text-align: center;
  }
  .alerta .content .letra-icon img{
    width: 60%;
  }
  .alerta .content .step-icon img{
    width: 25%;
  }
  .alerta .content .btn-learn-more, .alerta .content .btn-learn-more-b {
    font-size: 15px;
    width: 80%;
  }
}
@media (max-width: 768px) {
  .alerta .content .btn-asesoria {
    font-size: 19px;
    line-height: 23px;
    padding: 12px 32px;
  }
}

/*--------------------------------------------------------------
# Busqueda Section
--------------------------------------------------------------*/
.busqueda {
  background: url("../img/b-section-bg.jpg") fixed center center;
  background-size: cover;
  margin: 20px 0px; 
  padding: 60px 0px;
}

.busqueda .content p {
  padding: 10px 0px;
  font-weight: 100;
  font-size: 18px;
  color: #fff;
}

.busqueda .content p strong{
  font-weight: 700;
}

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

.busqueda .content ul li {
  padding-left: 28px;
  position: relative;
  color: #fff;
  font-weight: 100;
}

.busqueda .content h4 {
  font-size: 22px;
  font-weight: 100;
  color: #fff;
}

.busqueda .content h4 strong{
  font-weight: 700;
}

.busqueda .content ul li + li {
  margin-top: 10px;
}

.busqueda .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0198d5;
  line-height: 1;
}

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

.busqueda .content .btn-learn-more {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #005eb8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #fff;
  border: 2px solid #fff;
  line-height: 20px;
  width: 100%;
}
.busqueda .content .btn-learn-more span{
  display: block;
}

.busqueda .content .btn-learn-more:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.busqueda .content .btn-learn-more-b {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #fff;
  line-height: 20px;
  width: 100%;
}

.busqueda .content .btn-learn-more-b:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.busqueda .content .btn-asesoria {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #005eb8;
  border: 2px solid #005eb8;
  line-height: 20px;
  text-align: center;
}

.busqueda .content .btn-asesoria:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #005eb8;
  text-decoration: none;
}

@media (max-width: 991px) {
  .busqueda .content p {
    text-align: center;
  }
  .busqueda .content .letra-icon img{
    width: 60%;
  }
  .busqueda .content .step-icon img{
    width: 25%;
  }
  .busqueda .content .btn-learn-more, .busqueda .content .btn-learn-more-b {
    font-size: 15px;
    width: 80%;
  }
  .busqueda .content .btn-learn-more span{
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .busqueda .content .btn-asesoria {
    font-size: 19px;
    line-height: 23px;
    padding: 12px 32px;
  }
}

/*--------------------------------------------------------------
# Coordinacion Section
--------------------------------------------------------------*/
.coordinacion {
  background: url("../img/c-section-bg.jpg") fixed center center;
  background-size: cover;
  margin: 20px 0px; 
  padding: 60px 0px;
}

.coordinacion .content p {
  padding: 10px 0px;
  font-weight: 100;
  font-size: 18px;
  color: #fff;
}

.coordinacion .content p strong{
  font-weight: 700;
}

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

.coordinacion .content ul li {
  padding-left: 28px;
  position: relative;
  color: #fff;
  font-weight: 100;
}

.coordinacion .content h4 {
  font-size: 22px;
  font-weight: 100;
  color: #fff;
}

.coordinacion .content h4 strong{
  font-weight: 700;
}

.coordinacion .content ul li + li {
  margin-top: 10px;
}

.coordinacion .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0198d5;
  line-height: 1;
}

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

.coordinacion .content .btn-learn-more {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #005eb8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #fff;
  border: 2px solid #fff;
  line-height: 20px;
  width: 100%;
}

.coordinacion .content .btn-learn-more:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.coordinacion .content .btn-learn-more-b {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #fff;
  line-height: 20px;
  width: 100%;
}

.coordinacion .content .btn-learn-more-b:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.coordinacion .content .btn-asesoria {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #005eb8;
  border: 2px solid #005eb8;
  line-height: 20px;
  text-align: center;
}

.coordinacion .content .btn-asesoria:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #005eb8;
  text-decoration: none;
}

@media (max-width: 991px) {
  .coordinacion .content p {
    text-align: center;
  }
  .coordinacion .content .letra-icon img{
    width: 60%;
  }
  .coordinacion .content .step-icon img{
    width: 25%;
  }
  .coordinacion .content .btn-learn-more, .coordinacion .content .btn-learn-more-b {
    font-size: 15px;
    width: 80%;
  }
}
@media (max-width: 768px) {
  .coordinacion .content .btn-asesoria {
    font-size: 19px;
    line-height: 23px;
    padding: 12px 32px;
  }
}

/*--------------------------------------------------------------
# Dependencias Section
--------------------------------------------------------------*/
.dependencias {
  background: #000;
  margin: 20px 0px; 
  padding: 60px 0px 0px;
}

.dependencias .content p {
  padding: 10px 0px;
  font-weight: 100;
  font-size: 19px;
  color: #fff;
}

.dependencias .content p strong{
  font-weight: 700;
  color: #0198d5;
}

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

.dependencias .content ul li {
  padding-left: 28px;
  position: relative;
  color: #fff;
  font-weight: 100;
}

.dependencias .content h4 {
  font-size: 22px;
  font-weight: 100;
  color: #fff;
}

.dependencias .content h4 strong{
  font-weight: 700;
}

.dependencias .content .btn-learn-more {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #005eb8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 26px;
  background: #fff;
  border: 2px solid #fff;
  line-height: 20px;
  width: auto;
  text-align: center;
}

.dependencias .content .btn-learn-more:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.dependencias .content .btn-asesoria {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #005eb8;
  border: 2px solid #005eb8;
  line-height: 20px;
  text-align: center;
}

.dependencias .content .btn-asesoria:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #005eb8;
  text-decoration: none;
}

.dependencias .content .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  .dependencias .content p {
    text-align: center;
  }
  .dependencias .content img{
    width: 80%;
  }

  .dependencias .content .btn-learn-more {
    font-size: 15px;
    width: 80%;
  }
  .dependencias .content .btn-learn-more {
    display: block;
    width: 80%;
    margin: 26px auto;
  }
}
@media (max-width: 768px) {
  .dependencias .content .btn-asesoria {
    font-size: 19px;
    line-height: 23px;
    padding: 12px 32px;
  }
  .dependencias .content h4 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Beneficios Section
--------------------------------------------------------------*/
.beneficios {
  background: url("../img/beneficios-bg.jpg") fixed top center;
  background-size: cover;
  margin: 0px; 
  padding: 60px 0px;
}

.beneficios .content p {
  padding: 10px 0px;
  font-weight: 100;
  font-size: 19px;
  color: #fff;
}

.beneficios .content a {
  text-decoration: underline;
  font-weight: 400;
}

.beneficios .info {
  padding: 20px;
  width: 100%;
}

.beneficios .info .info-icon {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  display: flex;
  align-items: center;
}

.beneficios .info .title h2{
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.beneficios h3{
  color: #fff;
  font-size: 23px;
  font-weight: 100;
}

.beneficios h3 strong{
  font-weight: 700;
}

.beneficios .info img {
  float: left;
  width: 80px;
  height: 80px;
}

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

.beneficios .info .info-icon p {
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #fff;
  display: inline-block;
}

.beneficios .info .info-icon:hover{
  transform: translateX(-10px);
}

@media (max-width: 768px) {
  .beneficios .info .info-icon {
    padding-left: 10px;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #000;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta .cta-btn {
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #005eb8;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #005eb8;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (max-width: 768px) {
  .cta h3 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# Casos Section
--------------------------------------------------------------*/
.casos {
  background: url("../img/comment-bg.jpg") fixed bottom center;
  background-size: cover;
  padding: 120px 0px;
}

.casos .content img{
  width: 50%;
}

.casos .content p {
  padding: 10px 0px;
  font-weight: 100;
  font-size: 19px;
  color: #fff;
}

.casos .content p strong{
  font-weight: 700;
  display: block;
  font-size: 22px;
}

.casos .content .person-name h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  color: #0198d5;
}
.casos .content .person-name h6 {
  font-size: 18px;
  font-weight: 100;
  color: #0198d5;
}

.casos .content .btn-learn-more {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #005eb8;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 26px;
  background: #fff;
  border: 2px solid #fff;
  line-height: 20px;
  width: auto;
  text-align: center;
}

.casos .content .btn-learn-more:hover {
  background: #005eb8;
  border: 2px solid #005eb8;
  color: #fff;
  text-decoration: none;
}

.casos .content .btn-asesoria {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  background: #005eb8;
  border: 2px solid #005eb8;
  line-height: 20px;
  text-align: center;
}

.casos .content .btn-asesoria:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #005eb8;
  text-decoration: none;
}

.casos .content .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  .casos .content p {
    text-align: center;
  }
  .casos .content img{
    width: 40%;
  }

  .casos .content .btn-learn-more {
    font-size: 15px;
    width: 80%;
  }
  .casos .content .btn-learn-more {
    display: block;
    width: 80%;
    margin: 26px auto;
  }
  .casos .content .person-name h6, .casos .content .person-name h4{
    text-align: center;
  }
}
@media (max-width: 768px) {
  .casos .content .btn-asesoria {
    font-size: 19px;
    line-height: 23px;
    padding: 12px 32px;
  }
  .casos .content h4 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #1a1c20;
}

#footer .footer-top {
  padding: 30px 0 0 0;
  background: #1a1c20;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  text-align: left;
}

#footer .footer-top .footer-contact .logo img {
  max-height: 40px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  text-align: right;
}


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

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

#footer .footer-bottom {
  padding-top: 0px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
}

#footer .copyright hr{
  border-top: 1px solid #37393b;
}

#footer .copyright p {
  font-size:11px;
  font-weight: 100;
  color: #888;
}

#footer .copyright a {
  transition: 0.3s;
  color: #888;
  text-decoration: underline;
}
#footer .copyright a:hover {
  transition: 0.3s;
  color: #0063be;
  text-decoration: none;
}

@media (max-width: 768px) {
  #footer .footer-top .footer-contact {
    text-align: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .footer-links {
    text-align: center;
  }
}
