.lx-row {
    display: flex;
    gap: 4%;
    margin-bottom: 30px;
}

.lx-card {
    position: relative;
    border: 1px solid #33367e;
    border-radius: 15px;
    padding: 0;
    width: 48%;
    color: #33367e;
    display: flex;
    flex-direction: column;
}

.lc-header {
    color: #fff;
    background-color: #718AB6;
    border-radius: 14px 14px 0 0;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 25px;
}

.lc-header h5 {
    margin: 0;
}

.lc-body {
    padding: 10px 15px 30px 15px;
    height: 100%;
}

.lc-body p,
.lc-body span {
    line-height: 1.2;
}

.lc-body-text {
    margin-bottom: 25px;
}

.lc-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: end;
}

.lc-form > input,
.lc-form > textarea {
    width: 100%;
    border: 0.5px solid #33367e;
    border-radius: 12px;
    background-color: #eeeeee;
    padding: 6px 14px;
    resize: none;
}

.lc-body-form {
    padding-bottom: 10px !important;
}

.lc-form button {
    width: fit-content;
    padding: 5px 15px;
    background-color: #33367e;
    color: #fff;
    border-radius: 20px;
    border: none;
}

.lc-link {
    position: absolute;
    left: 15px;
    bottom: 10px;
    color: #33367e;
    text-decoration: underline;
}

.lc-subcard {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lc-subcard img {
    height: 4em;
    width: auto;
}
.lc-subcard p {
    text-align: center;
}

.lc-body-flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.lc-body-flex-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*padding-top: 30px;*/
    /*padding-bottom: 30px;*/
}


@media screen and (max-width: 768px) {
    .lx-row {
        flex-direction: column;
        gap: 30px;
    }
    .lx-card {
        width: 100%;
    }
}