.vc-fda-regulations {
    margin-top: 33px;
    margin-bottom: 83px;
    align-content: center;
    display: grid;
    grid-template-columns: 37% 63%;
    grid-template-rows: auto auto;
    grid-template-areas: 
        'image title'
        'image text';
}

.vc-fda-regulations > div {
    align-items: center;
}

.vc-fda-regulations > div.image {
    grid-area: image;
    max-height: 100%;
    padding-top: 37px;
    width: fit-content;
}

.vc-fda-regulations > div.title {
    grid-area: title;
}

.vc-fda-regulations > div.text {
    grid-area: text;
    padding-top: 8px;
}


.vc-fda-regulations > div.image::after {
    content: "";
    display: block;
    width: 280px;
    height: 37px;
    background-image: url('../../images/fda-mocra-regulations-bg.png');
    position: absolute;
    margin-top: 240px;
    margin-left: 80px;
    z-index: -1;
}

.vc-fda-regulations > div.image .wrap::before,
.vc-fda-regulations > div.image .wrap::after {
    content: "";
    display: block;
    width: 120px;
    height: 13px;
    background-color: #F54F45;
    position: relative;
    left: 0;
}

.vc-fda-regulations > div.image .wrap::after {
    background-color: #0081FF;
    left: calc(100% - 76px);
    width: 76px;
}

.vc-fda-regulations > div.title h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: bold;
    color: #003873;
    margin-bottom: 30px;
    margin-top: 12px;
}

.vc-fda-regulations > div.text p,
.vc-fda-regulations > div.text ul li {
    color: #003873;
    font-size: 18px;
    line-height: 28px;
}

.vc-fda-regulations > div.image {
    padding-right: 100px;
}

@media (max-width:991px) {
    .vc-fda-regulations {
        height: auto;
        width: 100%;
        margin-top: -11px;
        margin-bottom: 25px;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto;
        grid-template-areas: 
            'title'
            'image'
            'text';
    }

    .vc-fda-regulations > div {
        width: 100%;
    }

    .vc-fda-regulations > div.image::after {
        display: none;
    }

    .vc-fda-regulations > div.title {
        text-align: center;
        height: auto;
        margin: 0 auto;
        width: auto;
    }
    
    .vc-fda-regulations > div.image {
        width: 100%;
        margin: 0 auto;
        padding-top: 0;
    }

    .vc-fda-regulations > div.text {
        margin-top: 7px;
        height: auto;
    }

    .vc-fda-regulations > div.title h2 {
        font-size: 16px !important;
        line-height: 26px !important;
        margin-bottom: 32px;
        text-wrap: balance;
    }

    .vc-fda-regulations > div.image {
        margin: 0 auto;
        padding-right: 0;
        width: 200px;
        margin-bottom: 20px;
    }

    .vc-fda-regulations > div.image .wrap::before,
    .vc-fda-regulations > div.image .wrap::after {
        width: 66px;
        height: 7px;
        left: 0;
    }

    .vc-fda-regulations > div.image .wrap::after {
        width: 42px;
        left: calc(100% - 42px);
    }

    .vc-fda-regulations > div.text ul {
        padding-left: 24px;
    }

    .vc-fda-regulations > div.text p,
    .vc-fda-regulations > div.text ul li {
        font-size: 14px !important;
        line-height: 23px !important;
        font-weight: bold;
        margin-bottom: 26px;
    }

    .vc-fda-regulations > div.text ul li:last-child {
        margin-bottom: 0;
    }

    .vc-fda-regulations > div.title,
    .vc-fda-regulations > div.text {
        padding-right: 0px;
    }
}