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

a {
  border: 0;
}

a,
.primay_color {
  color: #bf0529;
  text-decoration: none;
}

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

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

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

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
.cl_00,
.cl_00:hover {
  color: #fff;
}

.cl_01,
.cl_01:hover {
  color: #006d8a;
}

.cl_02,
.cl_02:hover {
  color: #d49400;
}

.cl_03,
.cl_03:hover {
  color: #16978c;
}

.cl_04,
.cl_04:hover {
  color: #567200;
}

.mt-60{
  margin-top: 60px;
}

.max-1020{
  max-width: 1020px;
}

@media (max-width: 768px) {
  .mt-60{
    margin-top: 0px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #bf0529;
  border-top-color: #e2eefd;
  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;
  right: 15px;
  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: 4px;
  background: #bf0529;
  color: #fff;
  transition: all 0.4s;
}

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

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 130px;
  font-size: 14px;
  transition: all 0.5s;
  color: #333;
}

#topbar.topbar-scrolled {
  top: -130px;
}

.topbar_mb {
  display: none;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
}

#topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

.container-header {
  max-width: 1130px;
  width: 100%;
}

#topbar .social-links a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .topbar_mb {
    display: block;
    background-color: #ffffff;
    padding: 0 0 10px;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  top: 130px;
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

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

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

@media (max-width: 992px) {
  #header {
    padding: 25px;
    top: 0;
    margin: 95px 0 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */


.nav-menu{
  max-width: 1090px;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

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

.nav-menu a {
  display: block;
  position: relative;
  color: #C01F2B;
  font-size: 15px;
  font-weight: 400;
  padding: 0 2px;
  font-family: 'Roboto', sans-serif, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.item-active {
  border-bottom: 4px solid #C01F2B;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  background-color: #ffffff;
  color: #C01F2B !important;
  border-bottom: 4px solid #C01F2B;
}

.size_i_home {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 5px 0 !important;
}

@media (max-width: 1190px) {
  .nav-menu > ul > li {
    padding: 10px 0;
  }
  .nav-menu a {
    font-size: 13px;
  }
}

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

.nav-menu .drop-down ul li a:hover,
.nav-menu .drop-down ul li:hover {
  border-bottom: 0px white;
}

.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: 400;
  line-height: 16px;
  text-transform: none;
  color: #fff;
  white-space: normal;
  width: 300px;
}

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

.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";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 110px;
  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: #bf0529;
}

.mobile-nav {
  position: fixed;
  top: 190px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #bf0529;
  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: #ffffff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-transform: uppercase;
  font-size: 15px;
}

.mobile-nav li:hover > a {
  color: #bf0529;
  background-color: #ffffff;
  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: 0 10px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 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;
}

@media (max-width: 768px) {
  .size_i_home {
    border-radius: 0;
    width: auto;
    height: auto;
    text-align: left;
    padding: 5px !important;
  }
  .mobile-nav * {
    padding-top: 5px;
  }
  .bx-home {
    padding-left: 15px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
}
#myVideo {
  min-width: 100%;
  min-height: 100%;
}

#hero .container {
  position: relative;
  padding: 0;
  margin: 0;
}

.container_hero {
  height: 100%;
  background-color: #C01F2B;

}

.container_hero img{
  max-width: 1066px;
  margin: 50px;

}


.hero_line_divide {
  border-bottom: 30px solid #bf0529;
  position: absolute;
  bottom: 0;
  width: 50%;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.section_video_mob {
  display: none;
}

@media (max-width: 992px) {
  #hero .container {
    top: 50px;
  }
  .section_video {
    padding: 55px 0 95 !important;
  }
}

@media (max-width: 768px) {

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
  .hero_line_divide {
    display: none;
  }
  .container_hero {
    height: 100%;
    background-color: white;
  }
  .container_hero img{
    max-width: 1066px;
    margin: 10px;
  
  }
}
@media (max-width: 480px) {
  .section_video {
    display: none;
  }
  .section_video_mob {
    display: block;
  }
  #hero {
    height: fit-content;
  }
  section#hero {
    padding: 0px 0 20px !important;
  }

}

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

.section_banner {
  padding: 20px 0 0px;
  margin-top: 178px;
}

.section-bg-sec {
  background-color: white;
}

.section-title {
  padding-bottom: 30px;
}

.section-title .sub-span {
  font-size: 18px;
  color: #333333;
  text-transform: uppercase;
  font-weight: 300;
}

.section-title h3 {

  font-size: 40px;
  font-weight: 300;
  color: #bf0529;
  text-align: left;
}

.section-title h5 {
  font-size: 20px;
}

.section-title h3 span {
  font-weight: 700;
  font-size: 60px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  line-height: .9;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .counts {
    padding: 25px 0 !important;
    
  }

.section-title{
  padding: 0 30px;
}

  .section-title h3 span {

    font-size: 60px;
   
   
  }
}

@media (max-width: 768px) {
  .counts {
    padding: 25px 0 !important;
    
  }

.section-title{
  padding: 8px;
}

  .section-title h3 span {

    font-size: 40px;
   
   
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding-top: 0;
}

.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .title {
  font-weight: 400;
  margin-bottom: 15px;
  margin-right: 10px;
  color: #fff;
  line-height: 1.5;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 300;
}
.featured-services .description b {
  font-weight: 500;
}

.featured-services .description a {
  color: white;
  text-decoration: underline;
}

.separator-section {
  background-color: #bf0529;
  height: 15px;
}

.featured-title h3 {
  color: #bf0529;
  font-size: 40px;
  font-weight: 700;
  margin-top: 25px;
  line-height: 0.9;
}

.featured-title h4 {
  color: #bf0529;
  font-size: 27px;
  font-weight: 300;
  line-height: 0.9;
}

.featured-title p {
  color: black;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
}

.justify-around {
  justify-content: space-around;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .icon-box h3 {
  color: #ffffff;
  font-size: 23px;
  margin: 0 0 15px 0;
  margin-top: 20px;
}

.workshops h3 {
  color: #bf0529 !important;
  padding-top: 23px;
}

.workshops p {
  color: #333333 !important;
}

.read-more-workshop {
  color: #333333;
  text-decoration: underline;
  line-height: 3;
  font-size: 16px;
  margin-top: auto;
}
.texto-gris-link {
  color: #333333;
  text-decoration: underline;
  line-height: 18px;
  font-size: 16px;
  margin-top: auto;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .icon-box p {
  font-size: 18px;
  color: #bf0529;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
}

.about .content ul p {
  font-size: 15px;
}

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

.height-min {
  min-height: 380px;
}

.collaborative-number{
  color: #C01F2B;
  font-size: 65px;
  font-family: 'Playfair', serif;

  font-weight: bold;

}

@media (max-width: 1199.99px) {
  .height-min {
    min-height: 383px;
  }
}

@media (max-width: 767.99px) {
  .height-min {
    min-height: 0px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

#counts {
  width: 100%;
  height: fit-content;
  background: url("../img/map-bg.jpg") center center;
  position: relative;
  background-repeat: no-repeat;
}

#counts:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #counts {
    background-attachment: fixed;
  }
}

.counts {
  padding: 50px 0;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.linea-baja {
  background-color: #bf0529;
  height: 10px;
  width: 60px;
  margin-left: 22px;
  margin-bottom: 20px;
}

.counts .count-box span {
  font-size: 60px;
  display: block;
  font-weight: 900;
  color: #bf0529;
  font-family: "Work Sans", sans-serif;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif, sans-serif;
  font-size: 17px;
  line-height: 20px;
  color: #333333;
  text-align: left;
}

@media (max-width: 1024px) {
  #counts {
    height: fit-content;
    background: url(../img/map-bg.jpg) center;
    background-size: initial;
    background-repeat: no-repeat;
  }
}
@media (max-width: 768px) {
  #counts {
    height: auto;
  }
}

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

.clients_line {
  border-top: 1px solid #999999;
  justify-content: center;
}

.clients img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients_colab {
  width: 25%;
}

.clients_colab-2 {
  width: 13%;
  margin: 0 5px;
}


@media (max-width: 768px) {
  .clients_colab {
    width: 50%;
  }

  .clients_colab-2 {
    width: 45%;
  
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.triangulo {
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin: 10px -25px 0 0px;
  z-index: 999;
}
.triangulo_mobile,
.btn_readm {
  display: none;
}

.services .icon-box,
.about .icon-box {
  text-align: left;
  padding: 0;
  transition: all ease-in-out 0.3s;
  width: 95%;
}

.services_bk_00 {
  background-color: #474747;
}

.services_bk_11 {

 padding: 15px 0px; 
}

.services_bk_01 {
  background-image: url("../img/programas-png/ppa.png");
  position: relative;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.services_bk_02 {
  background-image: url("../img/programas-png/amr.png");
  position: relative;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.services_bk_03 {
  background-image: url("../img/programas-png/emr.png");
  position: relative;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.services_bk_04 {
  background-image: url("../img/programas-png/edu.png");
  position: relative;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.services_bk_05 {
  background-image: url("../img/programas-png/FL.png");
  position: relative;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  max-height: 350px;
}

.services_bk_06 {
  background-image: url("../img/programas-png/SS.png");
  position: relative;
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  max-height: 350px;
}

.info-projects {
  background-color: #bf0529;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 50px 5px 25px;
  width: 127px;
}

.info-projects-2 {
  background-color: #666666;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 0px 5px 20px;
  width: 200px;
}

.tri_color_01 {
  border-left: 10px solid #006d8a;
}

.tri_color_02 {
  border-left: 10px solid #d49400;
}

.tri_color_03 {
  border-left: 10px solid #16978c;
}

.tri_color_04 {
  border-left: 10px solid #567200;
}

.tri_color_05 {
  border-left: 10px solid #fff;
}

.services .icon-box h1 {
  color: #fff;
  font-size: 70px;
}

.services .icon-box h3 {
  font-size: 27px;
  margin: 0 0 19px;
}

.services .icon-box h3 span {
  font-size: 20px;
  font-weight: 300;
}

.services .icon-box h4 {
  color: #fff;
  font-size: 20px;
  background-color: #6b1326;
  width: 65px;
  padding: 3px 10px 0;
  height: 30px;
}

.services .icon-box h5 {
  color: #fff;
  font-weight: 400;
  height: 90px;
  font-size: 1.3rem;
}

.services .icon-box p {
  opacity: 0.6;
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
}

.services .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  transition: all 0.2s ease-in-out;
}

.about .btn-wrap {
  margin: 5px -20px -20px 0;
  padding: 20px 15px;
  text-align: right;
  display: flex;
  justify-content: flex-start;
  transition: all 0.2s ease-in-out;
}

.services .btn-wrap:hover,
.about .btn-wrap:hover {
  transform: scale(1.05);
}

.services .btn-buy,
.about .btn-buy {
  background: #fff;
  display: inline-block;
  padding: 5px 35px 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.about .btn-buy {
  background-color: #bf0529;
}

@media only screen and (max-width: 1199.99px) {
  .services .icon-box h3 {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 769px) {
  .services_bk_05 {
    min-height: 350px;
  }

  .services_bk_06 {
    min-height: 350px;
  }

  .content-serv {
    min-height: 235px;
  }
}

@media only screen and (max-width: 768px) {
  .triangulo_mobile {
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-top: 10px solid #fff;
    border-right: 5px solid transparent;
    z-index: 999;
    position: absolute;
    bottom: 15px;
    right: 25px;
  }

  .btn_readm {
    display: block;
    color: #ffffff;
    font-size: 15px;
  }
  .btn_readm a,
  .btn_readm:hover {
    color: #fff;
  }
  .accordion {
    border-left: 5px solid transparent;
    border-top: 10px solid #fff;
    border-right: 5px solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 35px;
  }

  .panel {
    padding: 0;

    overflow: hidden;
  }
  .panel span {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .panel span:hover {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .panel-title {
    font-size: 14px;
  }

  .inventada {
    display: block !important;
  }
  .btn-wrap_mob {
    margin: 0 -20px -20px -20px;
    padding: 20px 15px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    transition: all 0.2s ease-in-out;
  }
  .height_space {
    display: none;
  }
}
.inventada {
  display: none;
}
.height_space {
  height: 30px;
}
.height_space2 {
  height: 20px;
}
.credits {
  margin: 0px;
  font-size: 13px;
  color: #fff;
  font-weight: 300;
  line-height: 14px;
  text-align: left;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.date-block {
  background-color: #e5e5e5;
  padding: 0 40px;
}

.event-block {
  background-color: #bf0529;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-left: 3%;
  width: 25%;
}

.event-block h3 {
  color: white;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.txt-events h3 {
  color: #bf0529;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.txt-events p {
  font-size: 15px;
  font-weight: 400;
}

.number-date {
  color: #bf0529;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.6;
}

.month-date {
  font-size: 40px;
  font-weight: 300;
  color: #666666;
}

.clock span {
  color: #666666;
  font-size: 14px;
  padding-left: 5px;
}

.clock-block {
  display: flex;
  flex-direction: column;
}

.evento-img {
  position: relative;
  width: 50%;
  background: url("../img/evento.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 100%;
}

.triangulo-2 {
  width: 0;
  height: 0;
  border-left: 20px solid #e5e5e5;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  top: 50%;
  z-index: 999;
  position: absolute;
}

.triangulo-3 {
  width: 0;
  height: 0;
  border-left: 15px solid #006d8a;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 15px;
  z-index: 999;
  position: absolute;
}
.triangulo-4 {
  width: 0;
  height: 0;
  border-left: 15px solid #d39400;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 15px;
  z-index: 999;
  position: absolute;
}
.triangulo-5 {
  width: 0;
  height: 0;
  border-left: 15px solid #c01f2b;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 23px;
  z-index: 999;
  position: absolute;
}
.triangulo-6 {
  width: 0;
  height: 0;
  border-left: 15px solid #567200;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 15px;
  z-index: 999;
  position: absolute;
}
.triangulo-7 {
  width: 0;
  height: 0;
  border-left: 15px solid #16978c;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 15px;
  z-index: 999;
  position: absolute;
}

.ppa-aply {
  position: relative;
  width: 120px;
}
.amr-aply {
  position: relative;
  width: 120px;
}
.erm-aply {
  position: relative;
  width: 120px;
}
.edu-aply {
  position: relative;
  width: 120px;
}
.hc-aply {
  position: relative;
  width: 120px;
}

.ppa-aply span {
  margin-left: 20px;
  color: #006d8a;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
 
}

.amr-aply span {
  margin-left: 20px;
  color: #d39400;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
}

.erm-aply span {
  margin-left: 20px;
  color: #16978c;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
}

.edu-aply span {
  margin-left: 20px;
  color: #567200;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
}

.hc-aply span {
  margin-left: 20px;
  color: #c01f2b;
  font-weight: 500;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 15px;
}
.action-event {
  text-decoration: underline;
}

@media only screen and (max-width: 992px) {
  .evento-img {
    min-height: 230px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .clock-block {
    display: flex;
    flex-direction: row;
  }

  .clock {
    padding: 0 15px 30px 15px;
  }

  .event-block {
    margin-left: 0;
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100%;
  margin: 0;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
  outline: none;
}

.testimonials .owl-dot.active {
  background-color: #bf0529 !important;
}

.testimonials .btn-wrap {
  margin: 15px auto 0;
  width: 200px;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  background-color: #bf0529;
}

.testimonials .btn-wrap a {
  color: white;
}

.testimonials .tri_color_01 {
  border-left: 10px solid white;
}

.testimonials .btn-wrap .triangulo {
  margin: 5px 10px 0 0;
}

.testimonials .btn-wrap:hover {
  transform: scale(1.05);
}

.testimonials .test {
  width: 20%;
}

.testimonials .group-test{
  width: 40%;
}

.border-test{
  border: 10px solid white;
}

.bg-testimonials {
  background-color: #bf0529;
}

.bg-testimonials-2 {
  background-color: #e5e5e5;
}


.testimonials .test{
margin-bottom: 107px;

}

.testimonials .test-7{
  width: 50%;
  margin-top: 60px;
}

.testimonials .test-8{
  width: 50%;
  justify-content: center;

}

.bg-testimonials-2 p {
  color: #bf0529;
  text-align: left;
  font-size: 26px;
  font-weight: 800;
  padding: 0.8rem;
  font-family: "Work Sans", sans-serif;
  line-height: 1.1;
  padding-top: 30px;
}
.bg-testimonials p {
  color: white;
  text-align: left;
  font-size: 26px;
  font-weight: 800;
  padding: 0.8rem;
  font-family: "Work Sans", sans-serif;
  line-height: 1.1;
  padding-top: 30px;
}
.author {
  color: black;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  padding: 0 60px;
}
.author-2 {
  color: #666;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  padding: 0 60px;
}

.img-responsive {
  width: 100%;
  max-width: fit-content;
  height: auto;
  max-height: 100%;
}

.img-responsive-2 {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.img-responsive-3 {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

@media only screen and (min-width: 1700px) {
  .bg-testimonials-2 p {
    font-size: 25px;
  }

  .author {
    font-size: 20px;
  }
  .author-2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1300px) {


  .author {
    font-size: 14px;
  }
  .author-2 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {


  .testimonials .group-test{
    width: 50%;
  }
  .author {
    font-size: 16px;
  }
  .author-2 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 985px) {
  

  .testimonials .group-test{
    width: 100%;
  }

  .author {
    font-size: 12px;
  }
  .author-2 {
    font-size: 12px;
  }

  .test-6 img{
    margin-bottom: -110px !important;
  }
}

@media only screen and (max-width: 575px) {
  
  .testimonials .group-test{
    width: 100%;
    flex-direction: column;
  }

  .testimonials .test-7, .testimonials .test-8{
    width: 100%;
  }

  .test-6 img{
    margin-bottom: 0px !important;
  }
  
  .testimonials .test-7{
    margin-top: 0px;
  }

}


@media only screen and (max-width: 480px) {
  .testimonials .testimonial-item {
    display: block;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0;
  color: #444444;
  font-size: 14px;
  padding-top: 40px;
}

#footer .footer-top {
  padding: 40px 0;
  background: #bf0529;
}

#footer .footer-top .footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif, sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  color: white;
  position: relative;
  margin: 0;
  font-family: 'Roboto', sans-serif, sans-serif;
  font-weight: 400;
  margin-right: 10px;
}

#footer .footer-top .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .foot_bk {
    width: 33.333333% !important;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.section-banner {
  background-color: white;
  margin-top: 180px;
  min-height: 150px;
  padding-bottom: 0;
}

.container_banner {
  background-image: url("/images/img-about.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  width: 100%;
  background-position: center;
}

.contenido-about {
  max-width: 900px;
  padding-bottom: 0;
}
.contenido-about p {
  line-height: 20px;
}

.cuadro-about {
  border: 1px solid #bf0529;
  margin-top: 50px;
}

.titulo-cuadro {
  color: #bf0529;
  font-size: 23px;
  font-weight: 500;
  padding: 20px 0 0 0;
  font-weight: 500;
  margin-left: 10px;
}

.numero-tabla {
  color: #bf0529;
  font-size: 40px;
  font-weight: 300;
}

.p-tabla {
  color: #5c5c5c;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
}

.p-tabla span {
  font-weight: 300;
  line-height: 0.9;
}

.border-r {
  border-right: 1px solid #5c5c5c;
}

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

.p-lista {
  padding-left: 10px;
  margin-bottom: 0;
  text-align: left !important;
}

.contenedor-mapa {
  background-color: #dadada;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.max-900 {
  max-width: 890px;
}

@media (max-width: 991.98px) {
  .section_banner {
    padding: 20px 0 0px;
    margin-top: 135px;
    padding-bottom: 35px;

  }
}

@media (max-width: 767.98px) {
  .section-banner {
    background-color: white;
    margin-top: 140px;
    min-height: 150px;
    padding-bottom: 0;
  }
  
  .subtitulo-rojo-play {
    text-align: center;
  }

  .contenido-about {
    max-width: 520px;
  }

  .titulo-cuadro {
    text-align: center;
  }

  .border-r {
    border: 0;
  }
}

@media (max-width: 574.98px) {
  .padding-res {
    padding: 0 50px;
  }

  .contenido-about {
    padding: 0 50px !important;
  }
}

/*--------------------------------------------------------------
# PROGRAM
--------------------------------------------------------------*/
.titulo-ppa {
  color: #006d8a;
  font-family: 'Roboto', sans-serif;
}

.titulo-ppa .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-ppa .span2 {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  text-decoration: none;
  font-weight: 600;
}

.col-titulo-program {
  display: flex;

  justify-content: center;
}

.sidebar-program li {
  background-color: #ebebeb;
  height: 35px;
  list-style: none;
  margin: 15px 0;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 7px;
  white-space: nowrap;
  width: 100%;
}

.sidebar-program li a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #666666;
  text-decoration: none;
  line-height: 14px;
  font-weight: 400;
  text-align: center;
}

.sidebar-program li a:hover {
  color: #3a6d88;
}

.hover-2 li a:hover {
  color: #16978c !important;
}

.hover-3 li a:hover {
  color: #5f7118 !important;
}

.hover-4 li a:hover {
  color: #a0021c !important;
}

.hover-5 li a:hover {
  color: #d49400 !important;
}

.sidebar-program .li-active {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #3a6d88;
  text-decoration: none;
  line-height: 14px;
  font-weight: bold;
}

.sidebar-program .li-active-amr {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #d49400;
  text-decoration: none;
  line-height: 14px;
  font-weight: bold;
}

.sidebar-program .li-active-edu {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #5f7118;
  text-decoration: none;
  line-height: 14px;
  font-weight: bold;
}

.sidebar-program .li-active-hc {
  font-family: "Roboto";
  font-size: 14px;
  color: #a0021c;
  text-decoration: none;
  line-height: 14px;
  font-weight: bold;
}

.col-sidebar .sidebar-program {
  display: flex;
}

.titulo-contenido-program {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: #006d8a;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.titulo-contenido-program-amr {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: #d49400;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.titulo-contenido-program-faciling {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: #a0021c;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.titulo-contenido-program-hc {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: #BF0529;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}


.parrafo-program {
  padding: 10px 0px;
}

.tarjetas-orador {
  padding: 15px 30px 10px 0px;
  min-height: 100px;
  margin: 5px 0;
  max-width: 700px;
  border-bottom: 1px solid gray;
}

.parrafo-foot {
  max-width: 700px;
}

.tarjeta-fecha {
  max-width: 750px;
  background-color: #ebebeb;
  padding: 0;
  margin-top: 40px;
}
.contenedor-parrafo {
  margin-top: 30px;
  max-width: 750px;
  margin-bottom: 70px;
}

@media (max-width: 991.98px) {
  .img-tarjeta {
    display: flex;
    justify-content: center;
  }
  .parrafo-tarjeta {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .img-header {
    width: 100%;
  }
  .col-sidebar {
    padding-right: 0;
    justify-content: center;
    padding-left: 0;
  }

  .parrafo-program {
    padding-right: 0;
  }
  .sidebar-program {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .sidebar-program li {
    width: 100%;
    justify-content: center;
    justify-content: left;
  }

  .sidebar-program li a {
    margin-left: 10px;
  }

  .li-active {
    padding-left: 10px;
  }

  .col-titulo-program {
    padding-right: 0;
  }
  .sidebar-program li {
    margin: 4px 0;
  }
}

@media (max-width: 564.98px) {
  .titulo-ppa, .titulo-edu {
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: space-evenly;
  
    flex-direction: column;
    align-items: flex-start;
  }
  .sidebar-program .li-active {
    padding-left: 15px;
  }

  .sidebar-program .li-active-amr {
    padding-left: 15px;
  }

  .sidebar-program .li-active-edu {
    padding-left: 15px;
  }

  .sidebar-program .li-active-faciling {
    padding-left: 15px;
  }

  
}

/*--------------------------------------------------------------
# PPA
--------------------------------------------------------------*/
.font-size-s {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
  line-height: 1.1;
}

.titulo-ppa {
  color: #006d8a;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  margin: 0 15px;
}

.titulo-ppa .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-ppa .span2 {
  display: block;
  font-size: 28px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 600;
  border-top: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  margin-top: 16px;
  padding: 20px 0;
  line-height: 1.1;
}

.titulo-amr {
  color: #d49400;
  font-family: 'Roboto', sans-serif;
  
}

.titulo-amr .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-amr .span2 {
  display: block;
  font-size: 28px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 600;
  border-top: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  margin-top: 16px;
  padding: 20px 0;
  line-height: 1.1;
}


.titulo-hc {
  color: #BF0529;
  font-family: 'Roboto', sans-serif;
}

.titulo-hc .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-hc .span2 {
  display: block;
  font-size: 28px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 600;
  border-top: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  margin-top: 16px;
  padding: 20px 0;
  line-height: 1.1;
}
.titulo-hc .span3 {
  display: block;
  font-size: 25px;
  line-height: 27px;
  text-decoration: none;
  font-weight: 400;
}
.pr-70 {
  padding-right: 70px;
}

.sidebar-program .li-active-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #16978c;
  text-decoration: none;
  line-height: 14px;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .parrafo-responsive {
    padding: 0 30px;
  }
  .pr-70 {
    padding-right: 0;
    padding: 0 20px;
  }
}

.button-aply-ppa {
  background-color: #006d8a;
  border: none;
  width: 130px;
  height: 40px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.button-aply-ppa a {
  color: white;
  font-size: 16px;
}

.button-aply-erm {
  background-color: #16978c;
  border: none;
  width: 130px;
  height: 40px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.button-aply-erm a {
  color: white;
  font-size: 16px;
}

.button-aply-amr {
  background-color: #d49400;
  border: none;
  width: 130px;
  height: 40px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.button-aply-amr a {
  color: white;
  font-size: 16px;
}

.button-aply-edu {
  background-color: #567200;
  border: none;
  width: 130px;
  height: 40px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.button-aply-edu a {
  color: white;
  font-size: 16px;
}
.button-aply-hc {
  background-color: #bf0529;
  border: none;
  width: 130px;
  height: 40px;
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.button-aply-hc a {
  color: white;
  font-size: 16px;
}

.button-readings {
  background-color: #ebebeb;
  color: #006d8a;
  border: none;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 40px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
}

.button-readings a{
  color: #006d8a;
  font-size: 14px;
  font-weight: 600;
}

.button-readings-m {
  background-color: #ebebeb;
  color: #d49400;
  border: none;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 40px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
}

.button-readings-a{
  color: #567200 !important;
  font-size: 14px;
  font-weight: 600;
}
.button-readings-a-edu{
  color: #d49400 !important;
  font-size: 14px;
  font-weight: 600;
}

.button-readings-edu {
  background-color: #ebebeb;
  color: #567200;
  border: none;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 40px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
}
.button-readings-a-edu{
  color: #d49400 !important;
  font-size: 14px;
  font-weight: 600;
}

.button-readings-hc {
  background-color: #ebebeb;
  color: #bf0529;
  border: none;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 40px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
}
.button-readings-a-hc{
  color: #bf0529 !important;
  font-size: 14px;
  font-weight: 600;
}
/*--------------------------------------------------------------
# ERM
--------------------------------------------------------------*/
.titulo-amr {
  color: #d49400;
  font-family: 'Roboto', sans-serif;
}

.col-titulo-program-2 {
  display: flex;

  justify-content: center;
}

.seminario1-play-m-amr {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: #d49400;
  text-decoration: none;
  font-weight: bold;
}

/*--------------------------------------------------------------
# EDU
--------------------------------------------------------------*/
.titulo-edu {
  color: #567200;
  font-family: 'Roboto', sans-serif;
}

.titulo-edu .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 70px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-edu .span2 {
  display: block;
  font-size: 28px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 600;
  border-top: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
  margin-top: 16px;
  padding: 20px 0;
  line-height: 1.1;
}

/*--------------------------------------------------------------
# FACILING
--------------------------------------------------------------*/
.titulo-faciling {
  color: #a0021c;
  font-family: 'Roboto', sans-serif;
}

.titulo-faciling .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-faciling .span2 {
  display: block;
  font-size: 30px;
  line-height: 32px;
  text-decoration: none;
  font-weight: 400;
}

.col-faciling {
  padding-right: 0;
}
@media (max-width: 1190.98px) {
  #footer .footer-top .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 967.98px) {
  .titulo-faciling .span2 {
    font-size: 25px;
  }
}

@media (max-width: 767.98px) {
  .titulo-faciling {
    padding: 20px 0;
    text-align: center;
  }

  .titulo-faciling .span2 {
    display: inline-block;
    text-align: center;
    padding-top: 20px;
  }

  .col-faciling {
    justify-content: center;
  }
  .content-project {
    height: 100% !important;
  }
  .counts .count-box {
    align-items: center;
  }
  .carousel {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-control-prev {
    left: -50px !important;
  }
  .carousel-control-next {
    right: -50px !important;
  }
}

.credit-course {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  color: #4c4b4b;
  max-width: 700px;
  margin: 30px 0;
}

.p-leadership {
  padding-right: 52px;
}

.titulo-sociability {
  color: #a0021c;
  font-family: 'Roboto', sans-serif;
  padding-right: 60px;
}

.titulo-sociability .span1 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 76px;
  text-decoration: none;
  font-weight: 700;
}
.titulo-sociability .span2 {
  display: block;
  font-size: 30px;
  line-height: 32px;
  text-decoration: none;
  font-weight: 400;
}

/*--------------------------------------------------------------
# PROJECTS
--------------------------------------------------------------*/

.project-parraf {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 22px;
  color: #bf0529;
  text-decoration: none;
  font-weight: 400;
  margin-top: 20px;
}

.bg-testimonials-3 {
  background-color: #dadada;
}

.panel {
  border: 1px solid #d7d7d7 !important;
}

.border-bottom-gray {
  border-bottom: 0.8px solid #4c4b4b;
}

/*--------------------------------------------------------------
# ADVISOR
--------------------------------------------------------------*/

.col-advisor {
  width: 50%;
}

@media (max-width: 564.98px) {
  .col-advisor {
    width: 100%;
  }
}

.info-projects-home {
  color: #333333;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  
}

.title-projects-home{
  color: #C01F2B;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}

.p-projects-home {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  padding: 10px 0px;
  font-weight: 300;
}

.program-apply {
  width: 100%;
}

.program-apply h2 {
  font-size: 64px;
  font-weight: bolder;
  margin: 0;
}

.program-apply p {
  font-size: 20px;
  line-height: 1.2;
}

.container-services {
  max-width: 1066px;
  padding: 0;
}

.p-date {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.p-date {
  color: #666666;
}

.ppa h2 {
  color: #166d8a;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;

}

.ppa p {
  color: #166d8a;
}

.amr h2 {
  color: #d39400;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
}

.amr p {
  color: #d39400;
}

.hc h2 {
  color: #c01f2b;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
}

.hc p {
  color: #c01f2b;
}

.edu h2 {
  color: #567200;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
}

.edu p {
  color: #567200;
}

.erm h2 {
  color: #16978c;
  font-weight: 800;
  font-family: "Work Sans", sans-serif;
}

.erm p {
  color: #16978c;
  font-weight: 400;
}



.separador-gray {
  border-bottom: 2px solid #cccccc;
  margin: 10px 0;
  padding-bottom: 20px;
}

.container-projects {
  max-width: 1066px;
}

.borde-separador {
  background-color: #cccccc;
  height: 2px;
  width: 100%;
}

.max-w {
  max-width: 1066px;
  display: flex;
  justify-content: left;
  padding-left: 135px;
}

.p-experience {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
}

.container-esperiences {
  max-width: 1066px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
}

.min-h-300 {
  min-height: 300px;
}

.mascara-1 {
  border-radius: 0 0 0 100%;
  height: 100%;
}

.mascara-2 {
  border-radius: 100% 0 0 0;
  height: 100%;
}

.mascara-3 {
  border-radius: 0 0 100% 0;
  height: 100%;
}

.content-project {
  height: 400px;
  display: flex;
  flex-direction: column;
}

.bg-gray {
  background-color: #dddddd;
}

.date-event {
  width: 75px;
  text-align: center;
  height: 85px;
  justify-content: center;
  border-top: solid 10px #bf0529;
}

.border-punteado {
  border-top: gray 1px dotted;
  border-bottom: gray 1px dotted;
}

.font-size-19 {
  font-size: 19px !important;
}
.font-size-24 {
  font-size: 24px !important;
}

.titulo-separador-participants {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
}

.texto-universidades {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.border-separador {
  height: 2px;
  background-color: #cccbcb;
  width: 100%;
  margin-top: 35px;
}

.carousel {
  background-color: #ebebeb;
  min-height: 300px !important;
}

.carousel-control-prev-icon {
  background-image: url(/images/flechas-left.png);
  width: 40px;
}
.carousel-control-next-icon {
  background-image: url(/images/flechas-left.png);
  width: 40px;
  transform: rotate(180deg);
}

.carousel-control-prev {
  left: -100px;
}
.carousel-control-next {
  right: -100px;
}

.p-testimoniales {
  color: #166d8a;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 25px 0 25px;
}
.p-testimoniales-amr {
  color: #dc8e07;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 25px 0 25px;
}
.p-testimoniales-edu {
  color: #567434;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 25px 0 25px;
}

.span-testimoniales {
  color: #333333;
  font-size: 16px;
  padding: 0px 25px 25px 25px;
}

body {
  overflow-x: hidden;
}

.w-600 {
  min-width: 650px;
}

.mail-enlace {
  font-size: 12px;
  text-decoration: underline;
  color: #333333;
}

.ml-40 {
  margin-left: 40px;
}

@media (max-width: 1189.98px) {
  .container-esperiences{
    padding: 0 30px;
  }
  
}
@media (max-width: 767.98px) {
  .txt-resp {
    text-align: center;
  }
  .ml-40 {
    margin-left: 0px;
  }
  .container-services {
    padding: 0 30px;
  }

  .separador-gray {
   flex-direction: column;
  }

  .p-date{
    justify-content: left;
    width: 100%;
  }

  .title-projects-home{
    font-size: 40px;
  }
  
}
@media (max-width: 574.98px) {
  .txt-resp {
    text-align: center;
  }

}

.input-form input {
  width: 100%;
}

.button-apply {
  margin-top: 20px;
}

.texto-projects {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  line-height: 18px;
  font-weight: 300;
}

.titulo-texto-projects {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  line-height: 18px;
  font-weight: 300;
}

.event-alumni{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tarjeta-events{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.panel-title{
background: white;
font-size: 15px !important;
}

.bg-image{
background-image: url("/images/img-speakers.jpg");
  background-size: contain;
  background-position-x: center;
  background-repeat: no-repeat;
  background-position-y: 40%;
}

.a-general-information a{
  font-size: 16px;
}


.img-portada-1{
  background-image: url(../../images/testimonial1.png);
  background-position: 0px 0px;
  background-size: 160%;
  background-repeat: no-repeat;
}

.img-portada-2{
  background-image: url(../../images/testimonial2.png);
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-portada-3{
  background-image: url(../../images/testimonial4.jpg);
  background-position: -91px -10px;
  background-size: 140%;
  background-repeat: no-repeat;
}

.comillas-1 img{
  position: absolute;
  left: 25px;
  top: 10px;
}

.comillas-3 img{
  position: absolute;
  left: 25px;
  top: 30px;
}

.comillas-2 img{
  position: absolute;
  left: 25px;
  top: 18px;
}

.comillas-4 img{
  position: absolute;
  right: 25px;
  top: 10px;
}


