.header-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e8eb;
}

.header-icon-line {
    width: 1240px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header-icon-wrapper img {
     margin-right: 14px;
     width: 56px;
     height: auto;
}

.header-icon-wrapper span {
    font-size: 22px;
    font-weight: 500;
}

@media (max-width: 1200px) and (min-width: 840px) { 
    .header-icon-line {
        width: 770px;  
    }
}

@media (max-width: 839px) { 
    .header-icon-line {
        width: 100%;  
        padding-left: 16px;
        padding-right: 16px;
        justify-content: center;
    }

    .header-icon-wrapper img {
        width: 48px;
    }

    .header-icon-wrapper span {
        font-size: 18px;
    }
}