/* FulterNet Landing Page Styles */
html,
body {
    overflow-x: hidden;
}

.header-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    transition: background-color 0.3s ease;

}
video {
  pointer-events: none;
}
#Subscriptions {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
}

.item-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.item-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-section {

    width: 50%;

    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.text-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.text-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.text-section ul>li {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.text-section.show {
    transform: translateY(0);
    opacity: 1;
}

.image-section {
    width: 50%;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-height: 400px;
}

.image-section.show {
    opacity: 1;
}



@media (max-width: 986px) {
    .text-section ul>li {
        font-size: 14px;
        line-height: normal;
    }
}
 

@media (max-width: 1250px) {
    .text-section ul>li {
        font-size: 14px;
        line-height: normal;
    }
}




@media (max-width: 768px) {

    .text-section,
    .image-section {
        width: 100%;
        padding: 1rem;
        font-size: 12px;
    }

    .text-section {
        align-items: center;
        text-align: center;
        padding-top: 100px;
    }

    .text-section h2 {
        font-size: 1.5rem;
    }

    .text-section>ul>li {
        font-size: 12px;
    }

    .item-section {
        flex-direction: column;
    }

    .image-section img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    #Subscriptions {
        height: 1000px;
    }
    /*
    .memberships-title {
        margin-top: 100px;
    }*/
    
    .text-section h2 {
        font-size: 1.2rem;
    }

    .text-section ul>li {
        font-size: 12px;
        line-height: normal;
    }

    .image-section img {
        max-height: 150px;
        margin-top: -10px;
    }
}






.cta-btn {
    margin: 20px auto;
    padding: 12px 20px;
    background-color: #154148;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #167382;
}