/*precios del streaming*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300');

body {
    justify-content: center;
    font-family: 'Roboto', sans-serif !important;    
  }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 50px;
    align-items: stretch;
    width: 100%;
    margin: auto 0;
  }
  
  @media (min-width: 576px) and (max-width: 767.98px) {
    .grid {
      width: 540px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991.98px) {
    .grid {
      width: 720px;
    }
  }
  
  @media (min-width: 992px)
  {
    .grid {
      width: 960px;
    }
  }
  
  @media (min-width: 1200px)
  {
    .grid {
      width: 1140px;
    }
  }
  
  .mycard {
    text-align: center;
    position: relative;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: .5s;
    overflow: hidden;
  }
  
  .mycard:hover {
    transform: scale(1.05);
  }
  
  .basic,
  .basic .title .fa {
    background: linear-gradient(-45deg, #fd5d01, #8d0000);
  }
  
  .standard,
  .standard .title .fa{
    background: linear-gradient(-45deg, #f36e21, #f3a600);
  }
  
  .premium,
  .premium .title .fa {
    background: linear-gradient(-45deg, darkred, #f36e21);
  }
  
  .mycard::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: skewY(-5deg) scale(1.5);
  }
  
  .title .fa {
    color: #fff;
    font-size: 60px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.20);
  }
  
  .title h2 {
    position: relative;
    margin: 20px 0 0;
    color: #fff;
    font-size: 28px;
    z-index: 2;
  }
  
  .price {
    position: relative;
    z-index: 2;
  }
  
  /*.price h4 {
    margin: 0;
    padding: 20px 0;
    color: #fff;
    font-size: 60px;
  }*//*precios de los paquetes*/
  
  .option {
    position: relative;
    z-index: 2;
  }
  
  .option ul {
    margin: 0;
    padding: 0;
  }
  
  .option ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 16px;    
    text-align: center;
  }
  
  .mycard a {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    margin: 30px auto 8px;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.20);
    font-weight: bold;
  }
  