main {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    background-image: url(images/1.png);
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    main .content {
        margin: 0px 144px;
        width: 75%;
    }
}
main .content {
    z-index: 1;
}
main .main-title {
    color: white;
}
.main-title {
    font-size: clamp(35px, 4vw + 0.5rem, 65px);
    font-family: "Mitr";
    font-weight: bold;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 20px;
}

main::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.65;
    z-index: 0;
}
