body {
	font-family: 'Montserrat', sans-serif;
}

p {
  font-size: 16px;
  color: #343434;
  font-weight: 400;
  line-height: 24px;
}

video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}

video::-webkit-media-controls {
    display:none !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.5); /*dim the background*/
}

.primary-button a {
  display: inline-block;
  background-color: #93D500;
  color: #002554;
  font-size: 18px;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
}

.primary-button a:hover {
  background-color: #002554;
  border: 1px solid #93D500;
  color: #FFFFFF;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

.cd-hero {
  z-index: 2;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero-slider {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cd-hero-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-hero-slider li.selected {
  /* this is the visible slide */
  position: relative;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-hero-slider li.move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
  /* the is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}
@media only screen and (min-width: 768px) {
  .cd-hero-slider {
  }
}
@media only screen and (min-width: 1170px) {
  .cd-hero-slider {
  }
}

.cd-slider-nav {
  text-align: center;
}

.cd-slider-nav ul {
  padding: 0;
  margin: 0;
}

.cd-slider-nav ul li {
  display: inline-block;
  margin: 80px 30px;
  vertical-align: top;
}


.cd-slider-nav ul li a {
  text-decoration: none;
}

.cd-slider-nav ul li h6 {
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;  
  color: #fff;
  margin-top: 15px;
}

.cd-slider-nav ul .selected h6 {
  color: #93D500;
  text-decoration: none;
}

.cd-slider-nav .image-icon {
  margin: 0 auto;
  margin-bottom: 15px;
  display: block;
  width: 86px;
  height: 86px;
  line-height: 86px;
  border-radius: 20%;
  text-align: center;
  margin: 0px;
  padding: 0px;
  background-color: #269b00;
}

.cd-slider-nav .image-icon:hover {
  background-color: #66cc00;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

.content {
  margin-bottom: 100px;
  margin-top: -80px;
  background-color: #fff;
  border-top: 15px solid #0099ff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.espacio {
  height: 40px;
}


.dropbtn {
  background-color: #002554;
  color: white;
  padding: 2px;
  font-size: 12px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #002554;
  min-width: 120px;
  z-index: 1;
  line-height: 40px;  
}

.dropdown-content a {
  color: #FFFFFF;
  padding: 2px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #337AB7;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #337AB7;}


/*
=====================
----- MODAL ------
=====================
*/


.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity:0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalDialog:target {
  opacity:1;
  pointer-events: auto;
}
.modalDialog > div {
  width: 640px;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
  background: -moz-linear-gradient(#fff, #999);
  background: -webkit-linear-gradient(#fff, #999);
  background: -o-linear-gradient(#fff, #999);
  -webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
}

.modalDialog img {
  width: 99%;
}

.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  opacity: 0.75;
}
.close:hover { background: #00d9ff; }

/*
=====================
----- TOP PART ------
=====================
*/

.top-part img {
  width: 100%;
  background-size: cover;
  position: absolute;
  overflow: hidden;
  top:0;
  left: 0;
}


/*
=======================
----- FIRST SLIDE INICIO -----
=======================
*/


.first-content {
  padding: 0px;
}

.first-slide .center-promo-text p {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  padding: 80px;
  margin: 0;
  line-height: 2;
}

.first-slide .center-promo-text b {
  color: #002554;
}

.first-slide .event_data_box {
  margin: 0;
  padding: 40px 30px 30px 40px;
}

.first-slide .event_icon {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 10px;
  padding: 12px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #000099;
  line-height: 50px;
}

.first-slide .left-about-text {
  text-align: justify;
  margin-left: 40px;
  margin-right: 15px;
}

.first-slide .center-about-text {
  text-align: justify;
  margin-left: 40px;
  margin-right: 40px;
}

.first-slide .right-about-text {
  text-align: justify;
  margin-left: 15px;
  margin-right: 40px;
}



.first-slide {
  text-align: center;
}

.first-slide {
  background-color: #fff;
  width: 100%;
}

.heading {
  text-align: center;
  margin-bottom: 160px;
}

.heading h1 {
  margin-top: 30px;
  font-size: 38px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
}

.heading span {
  font-size: 16px;
  text-transform: uppercase;
  color: #93d500;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.first-content h4 {
  text-align: left;
  font-size: 20px;
  text-transform: uppercase;
  color: #121212;
  letter-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 30px;
}


.first-content .primary-button {
  text-align: center;
  margin-top: 30px;
}


.first-slide .data-text {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}

.first-slide .data-text p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.first-slide .data-text h5 {
  color: #4197CB;
  font-size: 16px;
  font-weight: 700;
}

.first-slide .center-about-text {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}

.first-slide .center-about-text p {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}

.first-slide .center-about-text h4 {
  font-size: 19px;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.first-slide img {
  width: 100%;
  overflow: hidden;
}

.first-slide .left-image {
  padding-right: 0px!important;
}

.first-slide .right-image {
  padding-left: 0px!important;
}

.first-slide .right-about-text h4 {
  font-size: 20px;
  color: #343434;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.first-slide .right-about-text .primary-button {
  margin-top: 25px;
}


.first-slide .coloredback {
  background-image: url("../img/bglogo.png");
  background-color: #002554;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 50px;
  color: #FFFFFF;
  font-size: 16px;
}

.first-slide .greenback {
  background-color: #00953B;
}
/*
.first-slide .coloredbackB {
  background-color: #00953B;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 50px;
  color: #FFFFFF;
  font-size: 16px;
}
*/
.first-slide .coloredback .left-about-text h4 {
   color: #FFFFFF;
}

.first-slide .coloredbackB .left-about-text h4 {
   color: #FFFFFF;
}

.first-slide .coloredback .left-about-text p {
   color: #FFFFFF;
}

.first-slide .left-about-text h4 {
  font-size: 20px;
  color: #343434;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.first-slide .left-about-text .primary-button {
  margin-top: 25px;
}

.first-slide ul li {
  position: relative;  
  list-style-type: square;
  margin: 0;
  padding: 0;
  transform: none;
  font-size: 16px;
}

/* TABLA */
.datagrid table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

.datagrid {
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: 40px 25px 40px 25px;
}

.datagrid table td, .datagrid table th {
  padding: 10px 10px;
}

.datagrid table th {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  background: #4197CB;
}

.datagrid table tbody td {
  background: #e6f2ff;
}


.datagrid table tbody .alt td {
  background: #cce2ff;
}

.datagrid table tbody td:first-child {
  border-left: none;
}

.datagrid table tbody tr:last-child td {
  border-bottom: none;
}

/*
.espacio {
  height: 40px;
}
*/
.espacioInd {
  background-color: #4197CB;
  height: 20px;
}

.espacioCom {
  background-color: #93D500;
  height: 20px;
}

.espacioTec {
  background-color: #002554;
  height: 20px;
}


/*
====================================
----- SECOND SLIDE EXPOSITORES -----
====================================
*/

.second-slide {
  text-align: center;
}

.second-slide {
  background-color: #fff;
  width: 100%;
}

.second-slide a {
  color: #93D500;
}

.second-slide h2 {
  color: #002554;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 35px;
  margin-bottom: 15px;
}

.second-slide h3 {
  color: #002554;  
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 30px;
  margin-bottom: 10px;
}

.second-slide h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.second-slide h5 {
  color: #4197CB;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.second-slide a {
  color: #4197CB;
  font-size: 16px;
  font-weight: 500;
}

.second-slide ul li {
  font-size: 16px;
  position: relative;
  list-style-type: square;
  margin: 0;
  padding: 0;
  transform: none;
}

.second-slide .left-about-text {
  text-align: justify;
  margin-left: 30px;
  margin-right: 15px;
}

.second-slide .center-about-text {
  text-align: justify;
  margin-left: 30px;
  margin-right: 30px;
}

.second-slide .right-about-text {
  text-align: justify;
  margin-left: 15px;
  margin-right: 30px;
}

.second-slide .center-promo-text p {
  color: #002554;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding: 60px;
  margin: 0;
  line-height: 2;
}

.second-slide .center-promo-text b {
  color: #002554;
}

.second-slide .coloredback {
  font-size: 14;
  background-color: #4197CB;
  overflow: hidden;
  padding: 10px 30px 40px 30px;
}

.second-slide .coloredback a {
  color: #93D500;
  font-size: 16px;
  font-weight: 500;
}

.second-slide .coloredback.greenbox {
  background-color: #00953B;
}

.second-slide .coloredback.greenbox a {
  color: #93D500;
}


.second-slide .coloredback.bluebox {
  background-color: #002554;
}

.second-slide .coloredback p {
  color: #FFFFFF;
}

.second-slide .coloredback h4 {
  color: #FFFFFF;
}

.second-slide .coloredback ul li {
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
  list-style-type: square;
  margin: 0;
  transform: none;
}


.second-slide img {
  width: 100%;
  overflow: hidden;
}

.second-slide .left-image {
  padding-right: 0px!important;
}

.second-slide .right-image {
  padding-left: 0px!important;
}

.second-slide .event_data_box {
  margin: 0;
  padding: 0px 40px 25px 40px;
}

.second-slide .event_data_proveedor {
  margin: 0;
  padding: 0px 40px 25px 40px;
}

.second-slide .event_data_proveedor p {
   font-size: 14px;
}

.second-slide .event_data_proveedor a {
   font-size: 14px;
}

.second-slide .event_icon {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 10px;
  padding: 12px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #002C66;
  line-height: 50px;
}


.second-slide .primary-button a {
  display: inline-block;
  background-color: #93D500;
  color: #002554;
  font-size: 22px;
  padding: 12px 80px 12px 80px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
}

.second-slide .primary-button a:hover {
  background-color: #002554;
  color: #FFFFFF;
  border: 1px solid #93D500;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

.green_image_border {
  border-bottom: 5px solid #93D500;
}

.blue_image_border {
  border-bottom: 5px solid #002554;
}

.blue-spacer {
  background-color: #002554;
  height: 20px;
}

.green-spacer {
  background-color: #93D500;
  height: 20px;
}

.gray-spacer {
  background-color: #f2f2f2;
  height: 20px;
}

.gray-bottom-spacer {
  background-color: #f2f2f2;
  height: 60px;
}


.pablinks {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 0px 10px 0px;
}

.pablinks a {
  color: #FFFFFF;
  text-decoration: none;
}

.pablinks a:hover {
  color: #93D500;
  text
}



/* TABLA */

.second-slide .datagrid.com table th {
  background: #00953B;
}

.second-slide .datagrid.com table tbody td {
  background: #e7ffb3;
  text-align: center;
}

.second-slide .datagrid.com table tbody .alt td {
  background: #cfff66;
}

.second-slide .datagrid.com td {
  text-align: center;
}

.second-slide .datagrid td {
  text-align: center;
}



/*
=======================
----- THIRD SLIDE VISITANTES -----
=======================
*/

.third-slide {
  text-align: center;
}

.third-slide {
  background-color: #fff;
  width: 100%;
}

.third-slide a {
  color: #93D500;
}

.third-slide h2 {
  color: #002554;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 35px;
  margin-bottom: 15px;
}

.third-slide h3 {
  color: #002554;  
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 30px;
  margin-bottom: 10px;
}

.third-slide h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.third-slide h5 {
  color: #4197CB;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.third-slide a {
  color: #4197CB;
  font-size: 16px;
  font-weight: 500;
}

.third-slide ul li {
  font-size: 16px;
  position: relative;
  list-style-type: square;
  margin: 0;
  padding: 0;
  transform: none;
}

.third-slide .left-about-text {
  text-align: justify;
  margin-left: 40px;
  margin-right: 15px;
}

.third-slide .center-about-text {
  text-align: justify;
  margin-left: 40px;
  margin-right: 40px;
}

.third-slide .right-about-text {
  text-align: justify;
  margin-left: 15px;
  margin-right: 40px;
}

.third-slide .center-promo-text p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 80px;
  margin: 0;
  line-height: 2;
}

.third-slide .center-promo-text b {
  color: #002554;
}

.third-slide .coloredback {
  font-size: 14;
  background-color: #4197CB;
  overflow: hidden;
  padding: 10px 30px 40px 30px;
}

.third-slide .coloredback.greenbox {
  background-color: #00953B;
}

.third-slide .coloredback.bluebox {
  background-color: #002554;
}

.third-slide .coloredback p {
  color: #FFFFFF;
}

.third-slide .coloredback h4 {
  color: #FFFFFF;
}

.third-slide .coloredback ul li {
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
  list-style-type: square;
  margin: 0;
  transform: none;
}

.third-slide img {
  width: 100%;
  overflow: hidden;
}

.third-slide .logo img {
  width: 50%;
  overflow: hidden;
}

.third-slide .left-image {
  padding-right: 0px!important;
}

.third-slide .right-image {
  padding-left: 0px!important;
}


.third-slide .event_data_box {
  margin: 0;
  padding: 40px 30px 30px 40px;
}


.mapa {
  border-bottom: 1px solid #4197CB;
  background-color: #4197CB;
  vertical-align: top;
}

.third-slide .primary-button a {
  display: inline-block;
  background-color: #93D500;
  color: #002554;
  font-size: 22px;
  padding: 12px 80px 12px 80px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
}

.third-slide .primary-button a:hover {
  background-color: #002554;
  color: #FFFFFF;
  border: 1px solid #93D500;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

.third-slide .secondary-button a {
  display: inline-block;
  background-color: #4197CB;
  color: #FFFFFF;
  font-size: 14px;
  padding: 12px 18px 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
}

.third-slide .secondary-button a:hover {
  background-color: #002554;
  color: #FFFFFF;
  border: 1px solid #4197CB;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

.third-slide #icon {
  vertical-align: middle;
  font-size: 30px;  
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 12px;
  width: 60px;
  height: 60px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #4197CB;
}

#icon-text {
  color: #002554;
  line-height: 50px;
  font-size: 30px;
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 15px;
}



/* TABLA */

.third-slide .datagrid table th {
  font-size: 18px;
  color: #343434;
  background: #4197CB;
}

.third-slide .datagrid.com table th {
  background: #93D500;
}

.third-slide .datagrid.indtec table th {
  background: #93D500;
}

.third-slide .datagrid.com table tbody td {
  background: #e7ffb3;
}

/*
===============================
----- FOURTH SLIDE EVENTO -----
===============================
*/

.fourth-slide {
  text-align: center;
}

.fourth-slide {
  background-color: #fff;
  width: 100%;
}

.fourth-slide h2 {
  color: #002554;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 40px;
  margin-bottom: 15px;
}

.fourth-slide h3 {
  color: #002554;  
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 30px;
  margin-bottom: 10px;
}

.fourth-slide h4 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.fourth-slide h5 {
  color: #4197CB;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.fourth-slide h6 {
  color: #343434;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.fourth-slide a {
  color: #4197CB;
  font-size: 16px;
  font-weight: 700;
}

.fourth-slide ul li {
  position: relative;
  list-style-type: square;
  margin: 0;
  padding: 0;
  transform: none;
  font-size: 16px;
  font-weight: 400;
}

.fourth-slide .left-about-text {
  text-align: justify;
  margin-left: 30px;
  margin-right: 15px;
}

.fourth-slide .center-about-text {
  text-align: justify;
  margin-left: 30px;
  margin-right: 30px;
}

.fourth-slide .right-about-text {
  text-align: justify;
  margin-left: 15px;
  margin-right: 30px;
}

.fourth-slide .center-promo-text p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 80px;
  margin: 0;
  line-height: 2;
}

.fourth-slide .center-promo-text b {
  color: #002554;
}

.fourth-slide .coloredback {
  background-color: #002554;
  overflow: hidden;
  padding: 10px 30px 40px 30px;
}

.fourth-slide .coloredback p {
  color: #FFFFFF;
}
.fourth-slide .coloredback h4 {
  color: #FFFFFF;
}

.fourth-slide .coloredback ul li {
  color: #FFFFFF;
  position: relative;
  list-style-type: square;
  margin: 0;
  transform: none;
}

.green_image_border {
  border-bottom: 5px solid #93D500;
}

.blue_image_border {
  border-bottom: 5px solid #002554;
}

.fourth-slide img {
  width: 100%;
  overflow: hidden;
}

.fourth-slide .left-image {
  padding-right: 0px!important;
}

.fourth-slide .center-image {
  text-align: center;
  padding: 0px 20px 0px 20px;
  vertical-align: middle;
  max-height: 80%;
}

.fourth-slide .right-image {
  padding-left: 0px!important;
}

.blue-spacer {
  background-color: #002554;
  height: 20px;
}

.green-spacer {
  background-color: #93D500;
  height: 20px;
}

.fourth-slide .event_data_box {
  margin: 0;
  padding: 40px 30px 30px 40px;
}

.fourth-slide .event_icon {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 10px;
  padding: 12px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #002C66;
  line-height: 50px;
}


/* TABLA */

.fourth-slide .datagrid table th {
  font-size: 18px;
  color: #FFFFFF;
  background: #002554;
}

.fourth-slide .datagrid.com table tbody td {
  background: #e7ffb3;
}


.fourth-slide .primary-button {
  text-align: center;
  margin-top: 30px;
}


.fourth-slide .primary-button a {
  display: inline-block;
  background-color: #93D500;
  color: #002554;
  font-size: 20px;
  padding: 12px 80px 12px 80px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid transparent;
}

.fourth-slide .primary-button a:hover {
  background-color: #002554;
  color: #FFFFFF;
  border: 1px solid #93D500;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}

/*
=======================
----- FIVTH SLIDE MEMORIA----
=======================
*/

.fivth-slide {
  text-align: center;
  background-color: #fff;
  width: 100%;
}

.fivth-slide .heading h1 {
  margin-top: 30px;
  font-size: 38px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
}

.fivth-slide .heading span {
  font-size: 16px;
  text-transform: uppercase;
  color: #ffbb05;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.fivth-content {
  padding: 15px 30px;
}

.fivth-content .project-item {
  margin: 15px 0px;
}

.fivth-content img {
  width: 100%;
  overflow: hidden;
}

.fivth-content .logos img {
  width: 160px;
  overflow: hidden;
}

/*
=========================
----- EIGHTH SLIDE CONTACTO ----
=========================
*/

.eighth-slide {
  text-align: center;
}

.eighth-slide {
  background-color: #fff;
  width: 100%;
}

.eighth-slide a {
  color: #93D500;
}

.eighth-slide h2 {
  color: #002554;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 35px;
  margin-bottom: 15px;
}

.eighth-slide h3 {
  color: #002554;  
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 30px;
  margin-bottom: 10px;
}

.eighth-slide h4 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.eighth-slide h5 {
  color: #4197CB;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.eighth-slide h6 {
  color: #4197CB;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.eighth-slide a {
  color: #4197CB;
  font-size: 16px;
  font-weight: 500;
}

.eighth-slide ul li {
  font-size: 16px;
  position: relative;
  list-style-type: square;
  margin: 0;
  padding: 0;
  transform: none;
}

.eighth-slide .right-about-text {
  text-align: justify;
  margin-left: 15px;
  margin-right: 30px;
  border-left: 2px solid #4197CB;
  padding-left: 30px;
}

.eighth-slide img {
  width: 100%;
  overflow: hidden;
}

.eighth-slide .left-image {
  padding-right: 0px!important;
}

.eighth-slide .right-image {
  padding-left: 0px!important;
}

.eighth-slide .event_data_box {
  margin: 0;
  padding: 10px 0px 30px 60px;
}


/*
=======================
---- FOOTER STYLE -----
=======================
*/

footer {
  background-color: #002554;
  position: relative;
  width: 100%;
  bottom: 0;
  z-index: 2;
  margin-top: -1px;
}

footer p {
  font-size: 13px;
  color: #FFFFFF;
  margin: 0px;
  padding: 25px 0px;
  text-align: center;
  font-weight: 400;
}

footer p em {
  font-style: normal;
  font-weight: 500;
}

footer a {
	color: #343434;
}

.pleca {
    background-color: #FFFFFF;
    margin: auto;
    width: 100%;
    height: 100%;
    display: -webkit-flex; /* Safari */
    /*-webkit-flex-direction: row-reverse; */ /* Safari 6.1+ */
    display: flex;
}

.pleca div {
    margin: 0 auto;
    display: block;
    padding: 0px;
    width: 200px;
    height: 100px;
    text-align: center;
}

/*
========================================
---------- RESPONSIVE STYLE ------------
========================================
*/

@media (max-width: 850px){
  .cd-slider-nav ul li h6 {
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    color: #fff;
    margin-top: 15px;
    display: none;
  }

  .cd-slider-nav .image-icon img {
    width: 25px;
  }

  .cd-slider-nav ul .selected img {
    border-bottom: 3px solid #fff;
    padding-bottom: 10px;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
  }

  .cd-slider-nav .image-icon {
    width: 0px;
    height: 0px;
    line-height: 40px;
    margin: 0 auto;
  }

  .cd-slider-nav {
    background-color: #002554;
    width: 100%;
    height: 80px;
    line-height: 80px;
    margin: 0 auto;
    text-align: center!important;
  }

  .cd-slider-nav ul {
    padding: 0;
    margin: 0;
    text-align: center!important;
  }

  .cd-slider-nav ul li {
    display: inline-block;
    margin-top: 0px;
    margin-left: 15px;
  }

  .heading h1 {
    margin-top: 60px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0px;
  }

  .heading span {
    font-size: 13px;
    letter-spacing: px;
  }

  .content {
    margin-bottom: 100px;
    margin-top: -100px;
    background-color: #fff;
    border-top: 15px solid #0099ff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  }

  .first-content h4 {
    margin-left: 15px;
    margin-right: 15px; 
  }

  .first-content p {
    margin: 0px 30px;
  }

  .second-slide .left-image {
    padding-right: 15px!important;
  }

  .second-slide .right-image {
    padding-left: 15px!important;
  }

  .second-slide .right-about-text {
    text-align: left;
    margin-left: 15px;
    margin-left: 30px;
  }

  .second-slide .left-about-text {
    text-align: left;
    margin-left: 0px;
    margin-left: 30px;
    margin-bottom: 30px;
  }

  .fivth-content .left-info .social-icons {
    margin-top: 30px;
    margin-bottom: 60px;
  }

}


/*
========================================
----------- LIGHT BOX STYLE ------------
========================================
*/

/* Preload images */
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  margin-top: 5%;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}