.seo-text {
    position: relative;
    border-bottom: 4px solid #222222;
    color: #fff;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
}

.seo-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--glow-color);
    transition: width 0.4s ease-in-out;
}

.seo-text:hover::after {
    width: 100%;
}

.seo-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.content-wrapper {
    padding: 40px 0;
}

.seo-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.seo-content {
    padding: 10%;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: #fff;
    position: relative;
}

@media (min-width: 376px) and (max-width: 575px) {
}

@media (min-width: 576px) and (max-width: 767px) {
    .template main {
        max-width: 767px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .seo-text .seo-title {
        text-align: center;
    }

    .seo-content {
        padding: 10%;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .seo-text .seo-title {
        text-align: center;
    }

    .seo-content {
        padding: 10%;
    }
}

@media (max-width: 375px) {
    .seo-text .seo-title {
        font-size: 17px;
    }
}
