
* {
  transition: all 0.3s ease-out;
}

.containerD {
  width: 1000px !important;
  max-width: 100%;
  padding: 0 !important;
  margin-right: auto;
  margin-left: auto;
}
  


.info-cardsD {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 30px;
  @media screen and (max-width: 991px) {
    grid-template-columns: 1fr;
  }
}

.container-titleD {
  text-align: center;
  padding: 0 !important;
  margin-bottom: 25px;
}

.cardD {
  display: block;
  top: 0px;
  position: relative;
  max-width: 550px;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  margin: 12px;
  text-decoration: underline solid #fff !important;
  z-index: 0;
  overflow: hidden;
  

  &:hover {
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    transition: all 0.2s ease-out;
    top: -4px;
    background-color: white;
    text-decoration: underline solid #fff !important;
    
  }

  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(2);
    transform-origin: 50% 50%;
    transition: transform 0.15s ease-out;
  }

  &:hover:before {
    transform: scale(2.15);
  }
}
 

.container-cardD {
  position: relative;
  border-radius: 15px;
  background: white;
  background-clip: padding-box;
  border-radius: 15px;
  padding-right: 40px;
  padding-left: 40px;
  height: inherit !important;
/*   border: 1px solid #e9e9e9; */
   }
}

 

.card-titleD {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
}

.card-descriptionD {
/*   font-weight: 600; */
  line-height: 32px;
/*   font-size: 16px; */
  max-width: 470px;
}


/* Media Queries */
@media screen and (max-width: 991px) {
  .info-cardsD {
    grid-template-columns: 1fr;
    justify-items: center !important;
  }
}

@media screen and (max-width: 768px) {
  .containerD {
    padding: 0 10px;
  }

  .container-cardD {
    padding: 20px;
  }

  .card-titleD {
    font-size: 24px;
  }

  .card-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 576px) {
  .container-cardD {
    padding: 15px;
  }

  .card-titleD {
    font-size: 20px;
  }

  .card-text {
    font-size: 12px;
  }
}
