/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
    background-image: url(/assets/mntr_fondo.png);
    border-radius: 0px 0px 0px 0px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12.5rem 0; /* 12.5rem es equivalente a 200px si el tamaño de fuente raíz es 16px */
  }
  
  .main-banner .caption h1 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;    
    font-size: 5em;
  }

  .main-banner .caption p {
    color: #fff;
    /*margin-bottom: 70px;*/
    font-size: 1.8em;
  }

 
  
  
  .main-banner .caption h2 {
    font-size: 48px;
    color: #fff;
    margin-top: 20px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 40px;
  }
  
  .main-banner .caption h2:after {
    position: absolute;
    background-image: url(../images/caption-dec.png);
    width: 202px;
    height: 12px;
    content: '';
    left: 125px;
    bottom: 0;
  }
  
  
  

  



  /* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.features {
    margin-top: -120px;
  }
  
  .features .item {
    padding: 0px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    background-color: #fff;
    text-align: center;
  }
  
  .features .item h4 {
    font-size: 1.2em;
    color: #008A9A;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .features .item .image {
    width: 100%;
    height: auto;
    display: inline-block;
    text-align: center;
    line-height: 90px;
    background-color: #717275;
    /*border-radius: 50%;*/
    transition: all .3s;
  }

  .img-services-top{
    width: 100%;
    min-height: 12em;
    max-height: 12em;
  }
  
  .features .item:hover .image {
    background-color: #008A9A;
  }
  