.uc-page-content-1{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16%;
}
.uc-page-content-1 .nb-text-editor{
    max-width: 575px;
}
.uc-page-content-1 .nb-img{
    height: 100vh;
}
.uc-page-content-1 .nb-custom-text-with-icon-1{
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: var(--nb-bg-secondary);
    padding: 16px;
    width: 85%;
}
.uc-page-content-1 .nb-custom-text-with-icon-1 .custom-text{
    font-size: var(--nb-paragraph-l);
    font-weight: var(--nb-font-regular);
}
.uc-page-content-1 .nb-custom-text-with-icon-1 .nb-icon {
    color: var(--nb-color-info-dark);
    font-size: 32px;
}
@media screen and (max-width: 992px) {
    .uc-page-content-1{
        margin-left: 6%;
    }
    .uc-page-content-1 .nb-custom-text-with-icon-1{
        bottom: 25px;
    }
}
@media screen and (max-width: 768px) {
    .uc-page-content-1{
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
    }
    .uc-page-content-1 .nb-img{
        height: auto;
    }
    .uc-page-content-1 .nb-text-editor{
        max-width: 100%;
        text-align: center;
    }
    .uc-page-content-1 .nb-custom-text-with-icon-1{
        position: static;
        width: 100%;
    }

}