.more-creditcards {
    margin-bottom: 80px;
}

@media (max-width: 460px) {
    .more-creditcards {
        display: none;
    }
}

.more-creditcards__title {
    margin: 0;
    padding-bottom: 24px;
}

.more-creditcards__wrapper {
    padding: 16px 0;
}

.more-creditcards__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.more-creditcards a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.more-creditcards a:hover {
    color: var(--orange);
}

.more-creditcards .more-creditcards__item {
    position: relative;
    border-radius: 25px;
    transition: box-shadow 0.4s ease;
}

.more-creditcards .more-creditcards__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    transition: filter 0.4s ease, transform 0.4s ease;
}

@media (max-width: 576px){
    .more-creditcards .more-creditcards__item img {
        height: auto;
    }
}

@media (max-width: 400px){
    .more-creditcards .more-creditcards__item img {
        height: 240px;
    }
}

.more-creditcards__img {
    max-width: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.more-creditcards .more-creditcards__item:hover img {
    filter: blur(5px);
    transform: scale(1.2);
}

.more-creditcards .more-creditcards__item:hover  {
    box-shadow: 0px 0px 15px 5px rgba(34, 60, 80, 0.35);
}

.more-creditcards .more-creditcards__img {
    position: relative;
    line-height: 0;
}

.more-creditcards .more-creditcards__img:after {
    background: rgba(0, 0, 0, 0.5);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    border-radius: 25px;
}

.more-creditcards__info {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;
    color: #fff;
    z-index: 2;
}

@media (max-width: 460px) {
    .more-creditcards__info {
        padding: 10px 12px;
    }
}

.more-creditcards__info-title {
    text-align: left;
    font-weight: bold;
    font-size: 32px;
    border-bottom: 1px solid #fff;
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .more-creditcards__info-title {
        font-size: 28px;
        margin-top: 5px;
    }
}

@media (max-width: 900px) {
    .more-creditcards__info-title {
        font-size: 24px;
        margin-top: 5px;
    }
}

@media (max-width: 469px) {
    .more-creditcards__info-title {
        font-size: 22px;
        margin-top: 2px;
    }
}

.more-creditcards__list {
    padding-left: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
}

@media (max-width: 720px) {
    .more-creditcards__list {
        padding-left: 4px;
        column-gap: 16px;
    }
}

@media (max-width: 720px) {
    .more-creditcards__list {
        padding-left: 4px;
        column-gap: 12px;
    }
}

.more-creditcards-list__item {
    font-size: 20px;
    margin-top: 8px;
}

@media (max-width: 1000px) {
    .more-creditcards-list__item {
        margin-top: 7px;
    }
}

@media (max-width: 900px) {
    .more-creditcards-list__item {
        font-size: 18px;
        margin-top: 5px;
    }
}

@media (max-width: 720px) {
    .more-creditcards-list__item {
        list-style-type: none;
        font-size: 18px;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .more-creditcards-list__item {
        font-size: 16px;
        margin-top: 5px;
    }
}

@media (max-width: 400px) {
    .more-creditcards-list__item {
        font-size: 15px;
        margin-top: 8px;
    }
}

