/*Mobile-------------------------------------*/
@media only screen and (max-width: 799px) {
  .section-2 > h1 {
    color: white;
    font-size: 1.6em;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 2em;
    text-align: center;
  }
  .section-2 {
    padding: 5em 1.75em;
    background: 
    /* top, transparent red, faked with gradient */ 
    linear-gradient(
      rgba(4,76,108, 1),  
      rgba(4,76,108, 0.25) 
    ),
    /* bottom, image */
   
    url(/public/assets/q3-min.jpeg);
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
  } 
  
  .benefits-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: white;
  }
  .basic-card {
    max-width: 360px;
    margin-bottom: 2em;
    padding: 0.25em;
    border-radius: 10px;
  
    background-image: url(/public/assets/q3-min.jpeg);
  
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: white;
    z-index: 1;
    transition: 0.5s;
    backdrop-filter: blur(5px);
  }
  .card-title {
    font-size: 1.45em;
    font-family: 'Montserrat', sans-serif;
  }
}
 
/*Tablet-------------------------------------*/
@media only screen and (min-width: 800px) and (max-width: 1099px) {
  .section-2 > h1 {
    color: white;
    font-size: 1.7em;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 2em;
  }
  .section-2 {
    padding: 5em 1.75em;
    background: 
    /* top, transparent red, faked with gradient */ 
    linear-gradient(
      rgba(4,76,108, 1),  
      rgba(4,76,108, 0.25) 
    ),
    /* bottom, image */
   
    url(/public/assets/q3-min.jpeg);
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
  } 

  .benefits-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: white;
  }
  .basic-card {
    max-width: 350px;
    max-height: 300px;
    margin: 1em;
    border-radius: 10px;
  
    background-image: url(/public/assets/q3-min.jpeg);
  
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: white;
    z-index: 1;
    transition: 0.5s;
    backdrop-filter: blur(5px);
  }
  .card-title {
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
  }
}

/*Desktop-------------------------------------*/
@media only screen and (min-width: 1100px) {
  .section-2 > h1 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    padding: 2em 3em;
  }
  .section-2 {
    padding-bottom: 10em;
    background: 
    /* top, transparent red, faked with gradient */ 
    linear-gradient(
      rgba(4,76,108, 1),  
      rgba(4,76,108, 0.25) 
    ),
    /* bottom, image */
   
    url(/public/assets/q3-min.jpeg);
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
  } 

  .benefits-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    color: white;
  }
  .basic-card {
    max-width: 350px;
    height: 310px;
    margin: 1em;
    border-radius: 10px;
  
    background-image: url(/public/assets/q3-min.jpeg);
  
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: white;
    z-index: 1;
    transition: 0.5s;
    backdrop-filter: blur(5px);
  }
  .card-title {
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
  }
}
 

.basic-card .card-content {
  padding: 2em;
  text-align: center; 
}

.card-content > img {
  max-width: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.basic-card .card-text {
  line-height: 1.6;
  padding-top: 1em;
  
}
.card-border {
  border-top: 1px solid white;
  padding-bottom: 1em;
}













