section.credit-lines-sections {
    padding: 0;
    margin: 40px 0 40px;
}

section.credit-lines-sections .credit-line {
    background-color: #fda6a6;
    padding: 50px 40px;
    border-radius: 16px;
    overflow: hidden;
}

section.credit-lines-sections .credit-line.dark {
    background-color: #eee;
}

section.credit-lines-sections .credit-line .line-icon {
    background-color: #fff;
    display: table;
    padding: 12px;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
}

section.credit-lines-sections .credit-line .line-title {
    font-weight: 600;
}

section.credit-lines-sections .credit-line .button {
    width: fit-content;
}

section.credit-lines-sections .credit-line .button i {
    position: relative;
    top: 0px;
    margin-left: 16px;
    font-size: 22px;
    line-height: 16px;
}

section.credit-lines-sections .credit-line .line-img {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
}

section.credit-lines-sections .credit-line .line-img img {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -50px
}

@media only screen and (max-width: 900px) {
    section.credit-lines-sections .credit-line .line-img{
        margin-bottom: 24px;
    }

    section.credit-lines-sections .credit-line .line-img img {
        position: relative;
        bottom: inherit;
    }
}

@media only screen and (max-width: 767px) {
    section.credit-lines-sections .credit-line {
        margin: 0 8px;
        padding: 24px 8px;
    }
}