.authorized-section{
    background-color:#D9D9D9;
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}
    
    .authorized{
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 90vw;
    }

        .authorized-img{
            height: 50px;
        }

        .authorized-paragraph{
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: bold;
            color: #002C42;
        }


@media (max-width: 600px) {
    .authorized{
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .authorized-paragraph{
        text-align: center;
        font-size: 1rem;
    }
}