.infographic-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 70px 0;
}

.infographic-head__title {
    font-size: 30px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00264D;
    margin: 0;
}

.infographic-head__more {
    font-weight: 600;
    text-decoration: underline;
    color: #0050D1;
    transition: 0.2s ease;
}

.infographic-head__more:hover {
    color: #00264D;
}

.infographic-container {
    padding: 20px 50px;
    display: flex;
    gap: 5px;
    width: 100%;
    overflow: auto;
}

.infographic-item {
    border-radius: 15px;
    background-color: #F7F7FB;
    padding: 5px;
    width: calc(100% / 5);
    font-weight: 500;
    min-width: 300px;
}

.infographic-item__head {
    background-color: #fff;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 10px 15px;
    gap: 5px;
    color: #00264D;
    border-radius: 10px;
}

.infographic-item__head .title {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    flex: 1;
    border-inline-end: 1px solid #E3E3E3;
}

.infographic-item__head .application {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    flex: 1;
}

.infographic-item__head .application h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.infographic-item__body {
    background-color: #fff;
    border-radius: 10px;
    gap: 10px;
    display: flex;
    align-items: center;
    color: #022BA0;
    margin-bottom: 5px;
}

.infographic-item__body .logo {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.infographic-item__body .text {
    font-size: 14px;
}

.infographic-item__body .text h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.infographic-item__footer {
    display: flex;
    gap: 5px;
    color: #022BA0;
}

.infographic-item__footer-right,
.infographic-item__footer-left {
    border-radius: 10px;
    background-color: #fff;
    padding: 15px 10px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.infographic-item__footer .logo {
    display: flex;
    justify-content: center;
    height: 56px;
}

.infographic-item__footer .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.infographic-item__footer .text h3 {
    font-weight: 700;
    margin: 0;
}

.infographic-item__footer .text p {
    margin: 0;
}

.infographic-item__footer .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: auto;
}

.infographic-item__footer .info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.infographic-item__footer .info h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .infographic-head {
        padding: 20px 20px 5px;
    }

    .infographic-head__title {
        font-size: 18px;
    }

    .infographic-head__more {
        font-size: 13px;
    }

    .infographic-container {
        padding: 20px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
}

@media screen and (max-width: 767px) {
    .infographic-head {
        padding: 0 0 5px;
    }

    .infographic-container {
        padding: 20px 15px;
    }

    .infographic-head__more {
        font-size: 12px;
    }

    .infographic-head__title {
        line-height: 1;
    }

    .infographic-item__head .title,
    .infographic-item__head .application,
    .infographic-item__body .text,
    .infographic-item__footer .text,
    .infographic-item__footer .info h5 {
        font-size: 13px;
    }

    .infographic-item__footer .text h3 {
        font-size: 14px;
    }
}