/*--------------------------------------------------------------
  # how-it-work Section
  --------------------------------------------------------------*/
.how-it-work {
    background-color: #f3f5f8;
}
.how-it-work .section-title h2 {
    display: inline-block;
}
.how-it-work .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.how-it-work .how-it-work-container .how-it-work-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 30px 20px;
    margin-bottom: 25px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 15px;
}

.how-it-work .how-it-work-container .how-it-work-item:last-child {
    margin-bottom: 0;
}

.how-it-work .how-it-work-container .how-it-work-item h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    margin: 0 30px 0 50px;
    transition: 0.3s;
    color: #0d0d0d;
}

.how-it-work .how-it-work-container .how-it-work-item .how-it-work-content {
    display: grid;
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 15px;
    margin: 0 30px 0 50px;
}
.how-it-work .how-it-work-container .how-it-work-item .how-it-work-content p {
    margin-bottom: 0;
}

.how-it-work .how-it-work-container .how-it-work-item .how-it-work-icon {
    position: absolute;
    top: 27px;
    left: 20px;
    font-size: 32px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}
.how-it-work img {
    border-radius: 15px;
}
