#o-sec-1{
    background-image:linear-gradient(rgba(0, 255, 255, 0.582),rgba(0, 25, 136, 0.685)), url("./assets/images/projects.jpg");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 6rem;
}
#o-sec-1 h2{
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 55.4052px;
    line-height: 96%;
    padding: 5rem 0px;
    color: white !important;
}


  
  .my-card {
    width: 100%;
    height: 360px;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease-out;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5); }
    .my-card:hover {
      transform: translateY(2px);
    }
      .my-card:hover:before {
        opacity: 1; }
      .my-card:hover .info {
        opacity: 1;
        transform: translateY(0px); }
    .my-card:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      background: rgba(0, 0, 0, 0.911) !important;
      z-index: 2;
      transition: 0.5s;
      opacity: 0; }
    .my-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 15px; }
    .my-card .info {
      position: relative;
      z-index: 3;
      color: white;
      opacity: 0;
      transform: translateY(30px);
      transition: 0.5s; }
      .my-card .info h1 {
        margin: 0px; }
      .my-card .info p {
        letter-spacing: 1px;
        font-size: 15px;
        margin-top: 8px; }
      .my-card .info button {
        padding: 0.6rem;
        outline: none;
        border: none;
        border-radius: 3px;
        color: rgb(255, 255, 255);
        font-weight: bold;
        cursor: pointer;
        transition: 0.4s ease;
        background: rgba(0, 50, 100, 0);
        border: 0.5px solid white;
    }
        .my-card .info button:hover {
          background: dodgerblue;
          color: white; }