  .sec-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: white;
  }

  .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
  }

  .container .card {
    position: relative;
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    margin: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    padding: 30px;

  }

  .container .card .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s;
  }

  .container .card:hover .content {
    transform: translateY(-20px);
  }

  .container .card .content .contentBx h3 {
    color: #d75a5a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 10px;
    line-height: 1.1em;
    font-weight: bold;
  }
  .text-p{
    color: black;
    font-family: serif;
}

.services-image {
  /* background-image: url("../../images/services-image/Cloud-COE-Card-1330x1270_Small.jpg"); */
  height: 200px;
  width: 200px;
 }


@media screen and (max-width: 600px) {
  .card-container {
      flex-direction: column;
  }

  .course-logo .fullstack-image{
      width: 67px;
      height: 67px;
  }

  .services-card{
    width: auto;
  }
}