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

.block-screens-mobile__screen {
    width: 30%;
}

.block-screens-mobile__device {
    position: relative;
    border: 8px solid #111;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition-duration: .2s;
}

.block-screens-mobile__device-notch {
    position: absolute;
    width: 40%;
    height: 16px;
    border-radius: 10px;
    background-color: #111;
    top: -10px;
    left: 50%;
    margin-left: -20%;
}

.block-screens-mobile__device:hover {
    transform: scale(1.1);
}

.block-screens-mobile__device img {
    overflow: hidden;
}
.block-screens-mobile__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-mobile {
        justify-content: center;
    }
    .block-screens-mobile__screen {
        width: 80%;
        max-width: 200px;
    }
}