@charset "UTF-8";

/* CSS Document */
.request-flex {
    display: flex;
    align-items: center;
    gap: 30px;

    .request-flex-child {
        flex: 5;
    }

    p {
        line-height: 24px;
    }

    img {
        margin: 20px 0;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 12px;
        color: #62C4E6;
        text-align: center;
    }

    ul {
        line-height: 36px;
    }
}

.request-flex-image {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    overflow: hidden;

    img {
        width: 100%;
        height: auto;
        display: block;
    }
}

.request-list {
    li {
        background: #62c4e636;
        padding: 6px 10px;
        margin-bottom: 10px;
        border-radius: 3px;
    }

    .check {
        margin: 14px 16px 14px 8px;
        background: #62C4E6;
        padding: 4px 10px;
        color: white;
        border-radius: 50%;
    }

    .border-left {
        border-left: 1px solid #62C4E6;
        padding-left: 16px;
    }

}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: white;
    background: #62c4e6;
    font-size: 10px !important;
    padding: 10px 13px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #62c4e6 !important;
}

.form-link {
    display: none;
}

@media (max-width: 768px) {
    .request-flex {
        flex-direction: column;
    }

    .request-flex-child {
        flex: none;
        width: 100%;
    }

    .form-link {
        display: block;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 5px;
        border: 1px solid #35bada;
        color: #fff !important;
        background: #35bada !important;
    }
}