@media (min-width: 768px) {
    .d__title {
        margin-bottom: 1rem;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        background: #014593;
        padding: 1rem 2rem;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

}


.list__box {
    display: flex;
 flex-wrap: wrap;
    gap: 20px;
    margin: 40px;
    justify-content: center;
}

@media (max-width: 480px) {
    .list__box-d {
        background: #f3f3f7;
        border-radius: 5px;
        padding: 50px 15Px 10px;
        position: relative;
        width: calc(100% - 20px) !important;
    }

    .list__box {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px !important;
    }
}


@media (max-width: 320px){
    .d__phone {
        flex-direction: column;
        text-align: center;
    }

    .d__email {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px){
    .list__box-d{
        background: #f3f3f7;
        border-radius: 5px;
        padding: 50px 15Px 10px;
        position: relative;
        width: calc(50% - 20px);
    }

    .list__box {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-left: 20px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1200px){
    .list__box-d{
        background: #f3f3f7;
        border-radius: 5px;
        padding: 50px 15Px 10px;
        position: relative;
        width: calc(50% - 20px);
    }
}


@media (min-width: 1201px){
    .list__box-d{
        background: #f3f3f7;
        border-radius: 5px;
        padding: 50px 15Px 10px;
        position: relative;
        width: calc(25% - 20px);
    }
}