.block-screens-desktop {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.block-screens-desktop__screen {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-screens-desktop__device {
    position: relative;
    border: 8px solid #000;
    border-radius: 14px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition-duration: .2s;
    margin-left: 7%;
    margin-right: 7%;
}

.block-screens-desktop__device-base-notch {
    width: 10%;
    position: absolute;
    left: 50%;
    margin-left: -5%;
    height: 5px;
    background-color: #bbb;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    top: 0;
}
.block-screens-desktop__device-base-1 {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #ddd;
    height: 8px;
    margin-top: -2px;
}
.block-screens-desktop__device-base-2 {
    width: 100%;
    background-color: #ccc;
    height: 15px;
    border-bottom-right-radius: 40%;
    border-bottom-left-radius: 40%;
    margin-top: -8px;
    box-shadow: var(--box-shadow);
}


.block-screens-desktop__device img {
    overflow: hidden;
}
.block-screens-desktop__screen span {
    display: block;
    font-size: 13px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
    font-style: italic;
    color: var( --color-brand );
    font-weight: 700;
}

@media ( max-width: 720px )  {
    .block-screens-desktop__device {
        
        border: 6px solid #000;
        border-radius: 10px;
    }
    
    .block-screens-desktop__device-base-notch {
        height: 4px;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }
    .block-screens-desktop__device-base-1 {
        height: 8px;
        margin-top: -1px;
    }
    .block-screens-desktop__device-base-2 {
        height: 8px;
        margin-top: -4px;
    }
}