.section-sg {
    position: relative;
    background-color: #ffffff;
    background: url('../images/bg/mplsg-s7-bg-sm.webp') center;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
    min-height: calc(100vh - 50px);
}

.btn-custom {
    background-color: var(--color2);
    color: white;
    border-radius: 0;
    border: none !important;
    padding: 10px 15px;
    position: relative;
    margin-left: 12px;
    min-width: 150px;
    font-weight: 600;
    text-transform: initial;
}
/* .btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 5px;
    height: 100%;
    background-color: var(--color1);
} */
.btn-custom:hover {
    background-color: var(--color1);
    color: white;
}
.btn-custom-outline {
    background-color: var(--color1);
    color: var(--color2);
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--color2) !important;
    padding: 10px 15px;
}
.btn-custom-outline:hover {
    opacity: 0.7;
}

.text-coming-soon {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.text-coming-soon span {
    color: var(--color2);
}

/* sm: phone - landscape */
@media (min-width: 576px) {
}

/* md: tablet */
@media (min-width: 768px) {
}

/* lg: desktop */
@media (min-width: 992px) {
    .text-coming-soon {
        font-size: 3rem;
    }
}

/* xl: wide */
@media (min-width: 1200px) {
}

/* super wide */
@media (min-width: 1440px) {
}