#hero-with-cards {
  padding-bottom:40px;
}

.hero-with-cards__container {
  position: relative;
}

.hero-with-cards__cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-top: -30px;
  margin-bottom: 40px;


  .hero-with-cards__card {
    display:flex;
    flex-direction: column;
    gap:16px;
    border-radius: 8px;
    background: #172537;
    padding: 32px 24px;
    min-height: 154px;

    img {
      width: 40px;
      height: auto;
    }

    h2 {
      color: #F9F6F1;
      font-family: Montserrat;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }
  }f
}

.hero-with-cards__items_container{
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #1D2F47;
  padding: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 2;

  h2 {
    color: #c4a575;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    
    img {
      width:32px;
      height: auto;
    }
  }

  p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .hero-with-cards__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;

    .hero-with-cards__item {
      display: flex;
      flex-direction: column;
      gap:16px;
      border-radius: 8px;
      background: #172537;
      padding: 16px;

      img {
        width: 40px;
        height: auto;
      }

      h3{
        color: #C1A575;
        font-family: "Open Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
      }
    }
  }
}

.mobile-container{
  display: none;
}

.hero-with-cards__items_container-button {
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:40px;
}

@media screen and (max-width: 992px) {
  #hero-with-cards{
    margin-bottom: 40px;
  }

  .desktop-container {
    display: none;
  }

  .mobile-container {
    display: block;
    margin-top: -350px;
  }

  .hero-with-cards__cards-container {
    grid-template-columns: 1fr;
    margin-top: 0;

    .hero-with-cards__card {
      min-height: unset;
    }
  }

  .hero-with-cards__items_container {
    margin-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  
  .hero-with-cards__cards-container {
    margin-top:20px;
  }
  .hero-with-cards__items {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .hero-with-cards__item {
    grid-column: 1 / -1 !important;
  }

  .mobile-container {
    margin-top: -200px;
  }
  
  .hero-with-cards__items_container-button {
    .button {
      width:100%;
    }
  }
}