/*HERO*/
#hero {
    width: 100%;
    position: relative;
    padding: 91px 0 0 0;
    bottom: 0px;
    background-color: #1f2029;
  }
  
  /*EDITED NERAM*/
  #hero:before {
    content: "";
    /*background: rgba(2, 5, 161, 0.91);*/
    background-image: linear-gradient(111.37738709038058deg, rgb(43, 45, 78) 1.557291666666667%, /*rgba(225, 20, 139, 1)*/#0077ff 101.34895833333333%);
    background: linear-gradient(to bottom, #0077ff65 , #0077ffb4), url("https://images.unsplash.com/photo-1503945438517-f65904a52ce6?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    display: inherit;
    align-items: center;
    /*added*/
    position: absolute;
    bottom: 30px;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: #1f2029;*/
  }
  
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
  }
  
  #hero h1 span {
    color: #fff;
    border-bottom: 3px solid #00b7fa;
  }
  
  #hero h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 1rem;
    text-align: left;
    line-height: 23px;
  }
  
  #hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1acc8d;
  }
  
  #hero .btn-get-started:hover {
    background: #17b57d;
  }
  
  #hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
        /*background-color: aqua;*/
    }
  }
  
  @media (max-width: 991px) {
  
  
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
  
    #hero .hero-img {
        text-align: center;
    }
  
    #hero .hero-img img {
        max-width: 45%;
    }
  
    #hero h1 {
        font-size: 1rem;
        line-height: 30px;
        margin-bottom: 10px;
    }
  
    #hero h2 {
        font-size: 0.9rem;
        line-height: 24px;
        margin-bottom: 30px;
    }
  }
  
  @media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
  
    100% {
        transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
        transform: translateY(10px);
    }
  
    100% {
        transform: translateY(-10px);
    }
  }
  
  .hero-waves {
    display: block;
    margin-top: 70px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
    top: -29px;
  }
  
  
  @media (max-width:767px) {
    #hero {
        padding-top: 70px;
    
    }
  }
    .wave1 use {
      -webkit-animation: move-forever1 10s linear infinite;
      animation: move-forever1 10s linear infinite;
      -webkit-animation-delay: -2s;
      animation-delay: -2s;
    }
    
    .wave2 use {
      -webkit-animation: move-forever2 8s linear infinite;
      animation: move-forever2 8s linear infinite;
      -webkit-animation-delay: -2s;
      animation-delay: -2s;
    }
    
    .wave3 use {
      -webkit-animation: move-forever3 6s linear infinite;
      animation: move-forever3 6s linear infinite;
      -webkit-animation-delay: -2s;
      animation-delay: -2s;
    }
    
    @-webkit-keyframes move-forever1 {
      0% {
          transform: translate(85px, 0%);
      }
    
      100% {
          transform: translate(-90px, 0%);
      }
    }
    
    @keyframes move-forever1 {
      0% {
          transform: translate(85px, 0%);
      }
    
      100% {
          transform: translate(-90px, 0%);
      }
    }
    
    @-webkit-keyframes move-forever2 {
      0% {
          transform: translate(-90px, 0%);
      }
    
      100% {
          transform: translate(85px, 0%);
      }
    }
    
    @keyframes move-forever2 {
      0% {
          transform: translate(-90px, 0%);
      }
    
      100% {
          transform: translate(85px, 0%);
      }
    }
    
    @-webkit-keyframes move-forever3 {
      0% {
          transform: translate(-90px, 0%);
      }
    
      100% {
          transform: translate(85px, 0%);
      }
    }
    
    @keyframes move-forever3 {
      0% {
          transform: translate(-90px, 0%);
      }
    
      100% {
          transform: translate(85px, 0%);
      }
    }

    
    /* CARDS */

    .cards-list {
        z-index: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
      }
      
      .card {
        margin: 30px auto;
        width: 300px;
        height: 300px;
        border-radius: 40px;
      box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
        cursor: pointer;
        transition: 0.4s;
        border: none;
        background-color: #1f2029;
      }
      
      .card .card_image {
        width: inherit;
        height: inherit;
        border-radius: 40px;
      }
      
      .card .card_image img {
        width: inherit;
        height: inherit;
        border-radius: 40px;
        object-fit: cover;

      }
      
      .card .card_title {
        text-align: center;
        border-radius: 0px 0px 40px 40px;
        font-family: sans-serif;
        font-weight: bold;
        font-size: 30px;
        margin-top: -80px;
        height: 40px;
      }
      
      .card:hover {
        transform: scale(0.9, 0.9);
        box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
          -5px -5px 30px 15px rgba(0,0,0,0.22);
      }
      
      .title-white {
        color: white;
      }
      
      .title-black {
        color: black;
      }
      
      @media all and (max-width: 500px) {
        .card-list {
          /* On small screens, we are no longer using row direction but column */
          flex-direction: column;
        }
      }
      
      
      /*
      .card {
        margin: 30px auto;
        width: 300px;
        height: 300px;
        border-radius: 40px;
        background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-repeat: no-repeat;
      box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
        transition: 0.4s;
      }
      */