body{
    font-size: 19px;
}

button {
    border-radius: 20px;
}
.learn-more{
    width: 11rem;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    margin-bottom: 200px;
}
.services .service-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 40px;
    text-align: center;
    border-radius: 5px;
}

.services .service-box p {
    text-align: justify;
    line-height: 30px;
}

.services .service-box .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    color: #fbb03b;

}
.read-more{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    color: #fbb03b;
    cursor: pointer;
}

.service-box {
    position: relative;
  }

  .service-box .content {
    overflow: hidden;
    height: 140px; /* Adjust the height as needed */
  }

  .service-box .read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 10px;
    transition: all 0.3s;
  }

  .service-box .read-more span {
    display: inline-block;
    transform: translateY(-100%);
    height: 1rem;
  }

  .service-box .collapsed .content {
    height: auto;
  }

  .service-box .collapsed .read-more span {
    transform: translateY(0);
  }

/* .card-box{
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border:none;
} */



@media (max-width: 767px) {
    .services {
        margin-bottom: 50px;
    }
}

