/* Home BG */
.img-background {
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 0;
}

.img-background video,
.img-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.content {
    position: relative;
    width: 70%;
    z-index: 1;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content h1 {
    font-weight: var(--fw-xl);
    color: var(--main);
}

.content h6 {
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 0.2px;
    line-height: 30px;
    font-weight: var(--fw-sm);
    width: 70%;
    margin: auto;
}

@media screen and (min-width: 1098px) {

    /* Home BG */
    .content h1 {
        font-size: 60px;
    }

    .content h6 {
        font-size: 18px;
        line-height: 30px;
        width: 70%;
    }

}

@media screen and (min-width: 767px) and (max-width: 1098px) {

    /* Home BG */
    .content h1 {
        font-size: 40px;
    }

    .content h6 {
        font-size: 14px;
        line-height: 25px;
        width: 95%;
    }

}

@media screen and (max-width: 767px) {

    /* Home BG */
    .content {
        width: 100%;
    }

    .content h1 {
        font-size: 35px;
    }

    .content h6 {
        font-size: 14px;
        line-height: 25px;
        width: 95%;
    }

}