body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../img/loader.gif") 50% 50% no-repeat rgb(255,255,255);
    opacity: .9;
}
a {
  color: #093788;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #093788;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #082A66;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}
@media (max-width: 360px){
    .back-to-top {
  width: 34px;
  height: 34px;
}
    .back-to-top i {
  padding-top: 7px;
}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 40px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 30px 0;
  height: 72px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 24px;
  margin: 0px  0px 0px 40px;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}
#header #logo h1 a {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid rgba(255,255,255,.5);
}
#header #logo h1 a:hover{
    color: #999;
}
#header #logo img {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1440px){
    #header #logo {
    margin-left: 20px;
        margin-top: -5px;
  }
    #header #logo h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
    #header #logo {
    margin-left: 0px;
    margin-top: -5px;
  }
  #header #logo h1 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 425px) {
    #header #logo {
    margin-left: -20px;
    margin-top: -5px;
  }
  #header #logo h1 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 360px) {
  #header #logo h1 {
    margin-top: 0px;
    margin-left: 35px;
    font-size: 21px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}
#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
@media (min-height: 1366px){
    #intro {
  display: table;
  width: 100%;
  height: 1030px;
  background: #000;
}
#intro .carousel-item {
  width: 100%;
  height: 1030px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
}
@media screen and (max-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}
#intro .carousel-container {
    padding: 0;
    margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 200px;
  left: 0;
  right: 0;
}

#intro .carousel-content2 {
    height: 150px;
  text-align: center;
}
#intro .carousel-container2 {
    padding: 0;
    margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: -330px;
  left: 20px;
  right: 0;
}

#intro .carousel-content {
    height: 150px;
  text-align: center;
}
#intro img{
    width: 500px;
    height: 300px;
}
@media screen and (max-width: 375px){
#intro .carousel-container2{
    margin-top: 40px;
}
#intro img{
    width: 430px;
    height: 250px;
}
}
#intro h2 {
    text-shadow: 2px 5px #000;
    margin-top: 20px;
  color: #fff;
  margin-bottom: 23px;
  font-size: 32px;
  font-weight: 500;
    padding: 0px 10px 0px 10px;
}
@media screen and (max-width: 425px){
    #intro h2 {
  font-size: 25px;
}
}
@media screen and (max-width: 375px){
    #intro h2 {
  font-size: 25px;
}
}
@media screen and (max-width: 320px){
    #intro h2 {
    text-shadow: 2px 5px #000;
    margin-top: 20px;
  color: #fff;
  margin-bottom: 23px;
  font-size: 20px;
  font-weight: 500;
}
}

#intro .carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}


#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: rgba(255,255,255,0.3);
}

#intro .btn-get-started:hover {
  background: #1B1C1C;
  color: #fff;
}
#todown {
    position: absolute;
    left: 49%;
    right: 50%;
    font-size: 30px;
    bottom: 70px;
    cursor: pointer;
    animation-name: todown;
    transition:all .3s ease;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
}
#todown .icondown{
    color: rgba(255,255,255,0.3);
}
#todown .icondown:hover{
    color: #fff;
}
@keyframes todown{
0% {
    bottom: 110px;
}
50% {
    bottom: 65px;
}
100% {
    bottom: 110px;
}
}

@media (max-width: 375px){
    #todown {
    position: absolute;
    left: 46%;
    right: 46%;
    font-size: 30px;
}
    @keyframes todown{
0% {
    bottom: 50px;
}
50% {
    bottom: 25px;
}
100% {
    bottom: 50px;
}
}
}
@media (min-width: 411px){
    #todown {
    position: absolute;
    left: 47%;
    right: 47%;
    font-size: 30px;
}
    @keyframes todown{
0% {
    bottom: 120px;
}
50% {
    bottom: 60px;
}
100% {
    bottom: 120px;
}
}  
}
@media (min-width: 425px){
     #todown {
    position: absolute;
    left: 46%;
    right: 46%;
    font-size: 30px;
}
    @keyframes todown{
0% {
    bottom: 50px;
}
50% {
    bottom: 25px;
}
100% {
    bottom: 50px;
}
}
}
@media (min-width: 768px){
    #todown {
    position: absolute;
    left: 48%;
    right: 48%;
    font-size: 30px;
}
}
@media (min-width: 1024px){
    #todown {
    position: absolute;
    left: 49%;
    right: 49%;
    font-size: 30px;
}
    @keyframes todown{
0% {
    bottom: 100px;
}
50% {
    bottom: 50px;
}
100% {
    bottom: 100px;
}
}
}
@media (min-width: 1440px){
    #todown {
    position: absolute;
    left: 49%;
    right: 49%;
    font-size: 30px;
}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
    padding-right: 40px;
  float: right;
}
@media (max-width: 1024px) {
  #nav-menu-container {
    padding-right: 25px;
  }
}
@media (max-width: 1000px) {
  #nav-menu-container {
    display: none;
  }
}
/* Nav Meu Styling */
.nav-menu a {
    text-align: center;
  padding: 4px 10px 10px 8px;
    margin-top: -2px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 550;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu>li>a:hover:after, nav-menu>li.active>a:after {
        width: 100%;
    }
 .nav-menu>li>a:after {
        content: "";
        display: block;
        background-color: #082A66;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.6s width;
        transition: 0.6s width;
    }

@media only screen and (max-width: 1024px){
    .nav-menu a {
  padding: 4px 2px 0px 8px;
  font-size: 10.5px;
}
}
.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: rgba(255,255,255,.7);
}

.nav-menu > li {
  margin-left: 5px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: rgba(255,255,255,.5);
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}
@media (max-width: 1000px) {
  #mobile-nav-toggle {
      margin: 15px 20px 0px 0px;
      font-size: 30px;
    display: inline;
  }
}
@media (max-width: 768px) {
  #mobile-nav-toggle {
     margin: 10px 35px 0px 0px;
      font-size: 34px;
  }
}
@media (max-width: 425px) {
  #mobile-nav-toggle {
     margin: 15px 35px 0px 0px;
      font-size: 30px;
  }
}
@media (max-width: 414px) {
  #mobile-nav-toggle {
     margin: 11px 35px 0px 0px;
      font-size: 30px;
  }
}
@media (max-width: 360px) {
  #mobile-nav-toggle {
      margin-top: 11px;
      margin-right: 20px;
      font-size: 30px;
  }
}
@media (max-width: 320px) {
  #mobile-nav-toggle {
      margin-top: 15px;
      font-size: 26px;
  }
}
/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
left: -100%;
  width: 100%;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}
#mobile-nav ul li a {
    top: 50px;
    text-align: center;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
    padding-top: 45px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
    }

#mobile-nav ul li a:hover { 
      color: rgba(255,255,255,.4);
}
#mobile-nav ul li a:hover:after, #mobile-nav ul li a:after {
        width: 100%;
    }
#mobile-nav ul li a:after {
        content: "";
        display: block;
        background-color: #082A66;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.6s width;
        transition: 0.6s width;
    }
#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: rgba(255,255,255,.5);
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: rgba(255,255,255,.5);
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

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

@media(max-width: 1150px) {
   #mobile-nav {
  top: 0;
  padding: 0;
}
#mobile-nav ul {
    margin-top: 130px;
  padding: 0;
}
 #mobile-nav ul li a { 
     top: 0;
  font-size: 27px;
     padding: 50px;
     margin: 0;
}
}
@media(max-width: 1024px) {
   #mobile-nav {
  top: 0;
  padding: 0;
}
#mobile-nav ul {
    margin-top: 130px;
  padding: 0;
}
 #mobile-nav ul li a { 
     top: 0;
  font-size: 32px;
     padding: 80px;
     margin: 0;
}
}
@media(max-width: 900px) {
   #mobile-nav {
  top: 0;
  padding: 0;
}
#mobile-nav ul {
    margin-top: 130px;
  padding: 0;
}
 #mobile-nav ul li a { 
     top: 0;
  font-size: 27px;
     padding: 50px;
     margin: 0;
}
}
@media(max-width: 768px) {
   #mobile-nav {
  top: 0;
  padding: 0;
}
#mobile-nav ul {
    margin-top: 130px;
  padding: 0;
}
 #mobile-nav ul li a { 
     top: 0;
  font-size: 27px;
     padding: 50px;
     margin: 0;
}
}
@media(max-width: 480px){
    #mobile-nav ul {
    margin-top: 80px;
  padding: 0;
}
#mobile-nav ul li a {
    top: 0;
  font-size: 18px;
     padding: 30px;
    }
}
@media(max-width: 414px){
    #mobile-nav ul {
    margin-top: 80px;
  padding: 0;
}
#mobile-nav ul li a {
    top: 0;
  font-size: 18px;
     padding: 30px;
    }
}
@media(max-width: 411px){
#mobile-nav ul li a {
    top: 0;
  font-size: 18px;
     padding: 30px;
    }
}
@media(max-width: 375px){
    #mobile-nav ul {
    margin-top: 70px;
  padding: 0;
}
#mobile-nav ul li a {
    top: 0;
  font-size: 16px;
     padding: 30px;
    }
}
@media(max-width: 360px){
    #mobile-nav {
  top: 0;
  padding: 0;
}
#mobile-nav ul {
    margin-top: 80px;
  padding: 0;
}
#mobile-nav ul li a {
    top: 0;
  font-size: 15px;
     padding: 30px;
    }
}
@media(max-width: 320px){
    #mobile-nav ul {
    margin-top: 70px;
  padding: 0;
}
#mobile-nav ul li a {
    top: 0;
  font-size: 13px;
     padding: 25px;
    }
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
#bienvenidos {
    padding: 4% 0 0 0;
    position: relative;
}
.gridcontainer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 87.36%;
    padding-left: 1.82%;
    padding-right: 1.82%;
}
#bienvenidos .titulob {
    color: #1b2b56;
    letter-spacing: 5px;
    font-size: 34px;
    line-height: 45px;
    text-align: center;
}
#bienvenidos h1 {
    display: block;
    font-size: 2em;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    font-weight: bold;
}
#bievenidos2{
    margin-top: 50px;
}
.imgbienv{
    text-align: center;
}
.imgbienvimg{
    text-align: center;
}
#imgtxtbien{
    position: relative;
    height: 100%;
    z-index: 2;
}
.txtbienv{
    text-align: center;
}
.txtbienv p{
    text-align: left;
    position:relative; 
    float: left;
    color: #343434;
    font-size: 17px;
    line-height: 25px;
}
.capitalletter {
    float: left;
    position: relative;
    font-size: 55px;
    line-height: 45px;
    font-weight: 900;
    margin-right: 5px;
    color: #1b2b56;
}
#btn_ver_mas {
    position: relative;
    text-align: center;
    font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
 color: #1b2b56;
  background: #fff;
    border: 1px solid #ccc;
    z-index: 2;
}
#btn_ver_mas:hover {
    border: 1px solid #1b2b56;
    background: #1b2b56;
    color: #fff;
}
@media only screen and (min-width: 320px){
.txtbienv p{
    margin: 20px 10px 10px 10px;
}
.imgbienvimg{
    padding: 0;
}
}
/*------------------------------------------------------------
Planeacion de Proyectos
--------------------------------------------------------------*/
#section-padding{
	padding: 0;
}
#section-padding .section-title p{
    padding: 30px 0px;
    margin: 0px 120px;
    color: black;
}
.service-v1 h3{
    text-align: center;
    color: black;
    font-weight: 500;
    font-size: 22px;
}
.service-v1 p{
    text-align: left;
}
.margin-bottom-50{
    margin-bottom: 50px;
}
@media (min-width: 320px){
    #section-padding{
	margin: 95px 20px 55px 20px;
}
#section-padding .section-title p{
    padding: 20px 0px;
    margin: 0px 0px;
    color: black;
}    
}
/*--------------------------------------------
cuadro medio
-------------------*/
#cuadro {
    text-align: center;
    margin-left: 7%;
    margin-right: 7%;
    position: relative;
    background: url(../img/home/excelente2.jpg) center / cover;
   z-index: 2;
}
#cuadro .cuadrom{
    text-align: center;
    position: relative;
    padding: 0;
    margin: 0;

}
#cuadro h1{
    position: relative;
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    margin: 0;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 7%;
    padding-bottom: 5%;
}
@media only screen and (max-width: 360px){
#cuadro h1{
    padding-left: 2%;
    padding-right: 2%;
}
}
@media (min-width: 320px){
#cuadro h1{
    font-size: 33px;
}
}
@media only screen and (min-width: 320px){
#cuadro {
    position: relative;
    top: 90px;
}
}
/*--------------------------------------------------------------
# razones
--------------------------------------------------------------*/
#razones{
    padding: 35px 90px 0;
    background: #eff1f6;
}
#razones .principal h1{
    position: relative;
    line-height: 1.1;
    text-align: center;
    font-family: Raleway, sans-serif;
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 30px;
    color: black;
    z-index: 1;
}

#razones .razon, #razones .razon1, #razones .razon2, #razones .razon3, #razones .razon4, #razones .razon5{
    text-align: center;
   padding: 20px;
    color: black;
    z-index: 1;
}
#razones .razon:hover, #razones .razon1:hover, #razones .razon2:hover, #razones .razon3:hover, #razones .razon4:hover, #razones .razon5:hover{
    text-align: center;
   padding: 20px;
    background: white;
    z-index: 1;
}
#razones p{
    padding-top: 20px;
}
.razon img, .razon1 img, .razon2 img, .razon3 img, .razon4 img, .razon5 img{
    height: 50%;
    width: 28%;
}
@media only screen and (max-width: 1024px){
.razon img, .razon1 img, .razon2 img, .razon3 img, .razon4 img, .razon5 img{
    height: 50%;
    width: 40%;
}
}
@media (min-width: 320px){
#razones{
    padding: 110px 20px 20px 20px;
}
    #razones .principal h1{
    margin-top: 50px;
    margin-bottom: 40px;
}
}

/*----------------------------------------------------------
ventajas Competitivas
---------------------------*/
#about{
    margin-top: 100px;
    margin-bottom: 40px;
}
.timeline {
    margin: 60px 0;
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: '';
  background-color: #e9ecef;
}

.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
  display: table;
  content: ' ';
}

.timeline > li:after {
  clear: both;
}

.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 10px 0 100px;
  text-align: left;
}

.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 90px;
  height: 90px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: transparent;
}
.timeline-image .img-fluid {
    max-width: 100%;
    height: 100%;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4 {
    margin-top: 0;
    font-family: sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgb(33, 37, 41);
}

.timeline .timeline-heading h4.subheading {
  text-transform: none;
}

.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 320px){
    .timeline .timeline-heading h4 {
    margin-top: 0;
    font-family: sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: rgb(33, 37, 41);
}
}
@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
    .timeline .timeline-heading h4 {
    font-size: 36px;
}
  .timeline > li {
    min-height: 200px;
  }
  .timeline > li .timeline-panel {
    padding: 30px 20px 0px 30px;
  }
  .timeline > li .timeline-image {
    width: 220px;
    height: 215px;
    margin-left: -110px;
  }
   
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 30px 100px 20px 20px;
  }
}

/*----- Clients Section-software de diseño
--------------------------------*/
#clients {
  padding: 0 0px 40px;
}
#clients .container{
    margin-left: 5%;
    margin-right: 5%;
}
.clients-carousel{
    margin-top: 70px;
}
@media only screen and (max-width: 360px){
 #clients .container{
    margin-left: 5px;
    margin-right: 5px;
}
}
#clients img {
  opacity: 0.5;
  transition: 0.1s;
  padding: 20px 0px;
}

#clients img:hover {
  opacity: 1;
}
#clients .cimagen3, #clients .cimagen4, #clients .cimagen5, #clients .cimagen6{
    text-align: center;
    padding: 0px 0px;
}
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #082A66;
  bottom: 0;
  left: calc(50% - 20px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 20px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 30px 10px 10px;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #093788;
}
.footer-info h3{
    color: #fff;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

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

#footer .footer-top .social-links a:hover {
  background: #093788;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #093788;
  width: 60px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

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

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #093788;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
#footer .credits a{
    color: #093788;
}
#footer .credits a:hover{
    color: #333;
}
@media (min-width: 320px){
    #footer .footer-top h4 {
  padding-top: 12px;
}
}
@media (min-width: 768px){
    #footer .footer-top .footer-info h3 {
  font-size: 27px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  border-left: 4px solid #093788;
}
}

/*----Modal---*/
.modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  padding-top: 14%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}
/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 100%;
}

.modal-header {
  background-color:  #093788;
  color: white;
}

.modal-body {
    color: black;
    text-align: center;
    padding: 25px 10px 10px 10px;
}
.modal-body p{
    font-size: 18px;
}
.modal-footer {
  padding: 15px 0px 0px 0px;
  background-color: #093788;
  color: white;
  justify-content: center;
}
.modal-footer h4{
    font-size: 14px;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}




