﻿@charset "utf-8";

body {
      font: 400 15px Lato, sans-serif;
      line-height: 1.8;
      color: #101010;
      background: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet)
  }
  h2 {
      font-size: 24px;
      text-transform: uppercase;
      color: #303030;
      font-weight: 600;
      margin-bottom: 30px;
  }
  h4 {
      font-size: 19px;
      line-height: 1.375em;
      color: #101010;
      font-weight: 400;
      margin-bottom: 30px;
  }
  .img-responsive {
      display: inline;
  }
  footer {
      margin-top: 5px;
  }
  .jumbotron {
      background: linear-gradient(to top right, #668888 0%, #eeeeee 100%);
      color: #fff;/* Color del texto */
      padding: 60px 15px;
      font-family: Montserrat, sans-serif;
      margin-bottom: 5px;
      text-shadow: 5px 5px 5px #666666;
  }
  .container-fluid {
      padding: 60px 50px;
  }
  .footer-container-fluid {
      padding: 20px 50px;
  }
  .bg-green {
      background: linear-gradient(to bottom left, #eeeeee 70%, #007000 100%);
  }
  .bg-green-down {
      background: linear-gradient(to top right, #eeeeee 70%, #007000 100%);
  }
  .bg-grey {
      background: linear-gradient(to top right, #669999 0%, #eeeeee 100%);
  }
  .thumbnail {
      padding: 0 0 15px 0;
      border: none;
      border-radius: 0;
  }
  .thumbnail img {
      width: 100%;
      height: 100%;
      margin-bottom: 10px;
  }
  .carousel-control.right, .carousel-control.left {
      background-image: none;
      color: #007700;
  }
  .carousel-indicators li {
      border-color: #007700;
  }
  .carousel-indicators li.active {
      background-color: #007700;
  }
  .item h4 {
      font-size: 19px;
      line-height: 1.375em;
      font-weight: 400;
      font-style: italic;
      margin: 70px 0;
  }
  .item span {
      font-style: normal;
  }
  .navbar {
      margin-bottom: 0;
      background-color: #007700;
      z-index: 9999;
      border: 0;
      font-size: 12px !important;
      line-height: 1.42857143 !important;
      letter-spacing: 4px;
      border-radius: 0;
      font-family: Montserrat, sans-serif;
      font-weight: bold
  }
  .navbar li a, .navbar .navbar-brand {
      color: #fff !important;
  }
  .navbar-nav li a:hover, .navbar-nav li.active a {
      color: #dd0000 !important;
      background-color: #fff !important;
  }
  .navbar-default .navbar-toggle {
      border-color: transparent;
      color: #fff !important;
  }
  .container-fluid .glyphicon {
      font-size: 20px;
      margin-bottom: 20px;
      color: #007700;
  }
  footer .glyphicon {
      font-size: 20px;
      margin-bottom: 20px;
      color: #007700;
  }
  .slideanim {visibility:hidden;}
  .slide {
      animation-name: slide;
      -webkit-animation-name: slide;
      animation-duration: 1s;
      -webkit-animation-duration: 1s;
      visibility: visible;
  }
  @keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      -webkit-transform: translateY(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateY(0%);
    }
  }
  @media screen and (max-width: 768px) {
    .col-sm-4 {
      text-align: center;
      margin: 25px 0;
    }
    .btn-lg {
        width: 100%;
        margin-bottom: 35px;
    }
  }
  @media screen and (max-width: 480px) {
    .logo {
        font-size: 150px;
    }
  }
.embed-container { 
 position: relative;
        padding-bottom: 56.25%;
        padding-top: 25px;
        height: 0;
}
.embed-container iframe, .embed-container object, .embed-container embed { 
position: absolute; 
top: 0; 
left: 0; 
width: 100%; 
height: 100%; 
}