.about-cntnt-sec p {
    font-size: 20px;
    font-style: italic;
    display: flex
;
    align-items: center;
    margin: 20px 0;
}
.tab-sec {
    position: relative;
    color: #fff;
    background: url(https://themefantasy.com/soulcraft/wp-content/themes/soulcraft/assets/images/about-bg.png) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-over-image {
    position: relative;
    width: 100%;
    z-index: 2;
}
.tabs-with-bg ul {
    list-style: none;
    padding: 0;
    margin: 0;

}
.tabs-with-bg ul li {
    margin-bottom: 20px;
    font-size: 40px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.4s ease;
    font-family: var(--primary-font);
    color: #dcd8cd9c;
}
.tabs-with-bg ul li.active {
   color:#fff;
}
.tab-content .tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
}
.tab-content {
    position: relative;
    min-height: 220px;
}
.tab-content .tab-pane.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
@keyframes fadeInSmooth {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOutSmooth {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}
@media only screen and (max-width:991px) {
    .tabs-with-bg ul li {
        font-size: 30px;
    }    
}
@media only screen and (max-width:767px) {
.tab-sec {
    background: var(--brown-color);
    text-align: center;
    min-height: auto;
    background-attachment: scroll;
}
.tabs-with-bg ul {
    top: 0;
}
.tabs-with-bg ul li {
    font-size: 25px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    width: 50%;
    margin: 15px auto;
}
}