.header-image {
    position: relative;
    width: 100%;
    background-color: black;
}

.header-image img {
    opacity: 0.5;
    width: 100%;
    height: 550px;
    object-position: center;
    object-fit: cover;
}

.header-image .title {
    position: absolute;
    bottom: 50px;
    left: 30px;
    color: white;
    font-weight: bold;
}

.header-image .title h2 {
    font-size: 24px;
}

.content {
    padding: 50px;
}

.content h2 {
    font-size: 18px;
    margin-bottom: 25px;
}
.ql-align-center {
    text-align: center;
}

.ql-align-left {
    text-align: left;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}

p img {
    max-width: 95%;
    margin: 5px 10px;
}

/* FOR LAPTOP SMALL SIZE */
@media screen and (max-width: 1320px) and (min-width: 1024px) {
}

/* FOR TABLET DEVICE */
@media screen and (max-width: 1023px) and (min-width: 600px) {
    .header-image .title {
        left: 20px;
    }

    .content {
        padding: 20px;
    }
}

/* FOR MOBILE DEVICE */
@media screen and (max-width: 600px) {
    .header-image .title {
        left: 10px;
    }

    .content {
        padding: 10px;
    }
}
