.single-hero {
    position: relative;
    text-align: center;
    background-color: #07212ce6;
}
.single-hero::before{
    position: absolute;
    content: "";
    background: url(../../../library/images/moon-circle.svg) no-repeat center / contain;
    width: 156px;
    height: 156px;
    margin: 0 auto;
    top: 20px;
    left: 0;
    right: 0;
}
.single-hero .bg-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.single-hero .bg-img.mobile{
    display: none;
}
.single-hero .single-cnt {
    min-height: 344px;
    padding: 46px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.single-hero .single-cnt::before {
    position: absolute;
    content: "";
    background: url(../../../library/images/wolf-family.svg) no-repeat center / contain;
    bottom: -5px;
    left: 0;
    width: 262px;
    height: 258px;
}
.single-hero .single-cnt::after {
    position: absolute;
    content: "";
    background: url(../../../library/images/wolf-family.svg) no-repeat center / contain;
    bottom: -5px;
    right: 0;
    width: 262px;
    height: 258px;
    transform: rotateY(180deg);
}
.single-hero .single-cnt .cnt-in {
    max-width: 611px;
    margin: 0 auto;
}
.single-hero h4.sub-title {
    line-height: 60px;
    color: var(--yellow);
    margin-bottom: 4px;
}
.single-hero h1 {
    color: var(--white);
    margin: 0;
}
.single-hero .btn-blue {
    margin-top: 24px;
}


@media (max-width: 1199px) {
    .single-hero .single-cnt::before , .single-hero .single-cnt::after {
        width: 230px;
        height: 228px;
    }
}

@media (max-width: 992px) {
    .single-hero .single-cnt::before , .single-hero .single-cnt::after {
        width: 190px;
        height: 188px;
    }
}

@media (max-width: 767px) {
    .single-hero .single-cnt {
        min-height: 574px;
        padding: 180px 0;
        justify-content: flex-start;
    }
    .single-hero::before {
        width: 117.32px;
        height: 117.32px;
        top: 94px;
    }
    .single-hero .single-cnt::before, .single-hero .single-cnt::after {
        width: 182.84px;
        height: 180px;
        bottom: 0;
    }
    .single-hero .single-cnt::before {
        left: -15px;
    }
    .single-hero .single-cnt::after {
        right: -15px;
    }
    .single-hero h4.sub-title {
        line-height: 50px;
        margin-bottom: 0;
    }
    .single-hero h1 {
        font-size: 38px;
    }
    .single-hero .bg-img.mobile{
        display: block;
    }
    .single-hero .bg-img.desktop{
        display: none;
    }
}