
.myopia_block{
    width: 95%;
    margin: 0 auto;
    display: block;
    border-bottom: 1px solid #333;
        .title {
        display: flex;
        align-items: center;
        text-align: center;
        font-size: 30px;
        margin-bottom: 0.5em;
        }

        .title::before,
        .title::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #333;
        }

        .title::before {
        margin-right: 8px;
        }

        .title::after {
        margin-left: 8px;
        }
}

.myopia_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    .full-width{
    grid-column: 1 / -1; 
    }
    .w-lead{
        margin-bottom: 38px;
    }
    .rounded{
        img{
            border-radius: 10px;
            width: 100%;
        }
    }
    .sec-title{
            margin-top: -3px;
            left: 38px;
    }
    p.desc{
        padding: 0 18px 1.5em 18px;
        box-sizing: border-box;
    }
}


@media (max-width: 750px) {
    .myopia_block{
        padding-bottom: 30px;
        .title {
            font-size: 20px;
        }
    }
    .myopia_wrap{
        grid-template-columns: 1fr;
        p.desc{
            padding: 0 18px;
        }
        .w-lead{
            margin-bottom: 20px;
        }
    }
}