p {
    line-height: 1.8;
}

.button_class {
    background-color: var(--background-color-3);
    border: none;
    border-radius: 5px;
    transition: 0.2s;
}

.button_class_2 {
    position: relative;
    border: 2px solid var(--background-color-3);
    color: var(--background-color-3);
    border-radius: 5px;
    transition: 0.2s;
    width: 100%;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
}

.button_class a,
.button_class_2 a {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px !important;
    text-decoration: none;
    display: block;
    transition: 0.2s;

}

.button_class_2 a {
    color: var(--background-color-3);
}

.button_class_2 a:hover {
    color: #fff;
}


.button_class_2 span:nth-child(2),
.button_class_2 span {
    position: absolute;
    content: "";
    height: 150%;
    width: -1px;
    box-shadow: 0px 4px 10px 8px #fff;
    background-color: transparent;
    top: -15px;
    rotate: -20deg;
    pointer-events: none;
    left: -20px;
    transition: 0.3s;
    transition-delay: 0.2s;
}

.button_class_2:hover span:nth-child(2) {
    transition-delay: 0.4s;
}

.button_class_2:hover span {
    left: 120%;
}


.button_class:hover,
.button_class_2:hover {
    background-color: var(--background-color-3);
    color: #fff;
}

.button_class:hover span:nth-child(2) {
    transition-delay: 0.4s;
}

.button_class:hover span {
    left: 120%;
}




.blog,
.demo,
.how_to,
.faq {
    padding: 70px 0;
    text-align: center;
    background-color: #fff;

}

.notification_message {
    border: 2px solid var(--background-color-3);
    padding: 20px;
    background-color: var(--background-color-3);
}

.notification_message span {
    text-decoration: underline;

}

.notification_message p {
    color: #fff;
    font-size: var(--h3);
    font-weight: 900;

}

/* ------------------------------ Features Section ------------------------------  */

.features {
    padding: 40px 0;
    text-align: center;
    /* background-color: #f3f3ff; */
    background-color: var(--background-color-5);
}

.features h2 {
    margin-bottom: 40px;
}

.feature h3 {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.pricing-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around;
    justify-content: center;
}

.feature {
    width: 325px;
    /* margin: 15px; */
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #f2f2f2;
    background-color: #fff;
    text-align: left;
}

.feature p {
    font-size: var(--p-small);
}

.feature img {
    width: 20%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.pricing {
    text-align: center;
}

.pricing p {
    /* display: inline-block; */
    font-size: var(--h2);
    font-weight: 900;
    color: #555;
    position: relative;
}

.pricing p span {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #555;
    rotate: 45deg;
    left: 50%;
    top: 0%;

}

.pricing strong {
    font-size: 50px;
    margin-bottom: 10px;

}

.features_list ul li {
    list-style: none;
    line-height: 1.8;
}

.features_list ul li span {
    color: var(--background-color-3);
    font-weight: 900;
    margin-right: 5px;
}

/* ------------------------------ FAQ Section ------------------------------ */
.faq {
    background-color: #fff;
}

.faq h2 {
    margin-bottom: 40px;
}

.faq-list {
    margin: 0 auto;
    /* max-width: 800px; */
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
    padding: 15px 0px;
}

.faq-item .question span {
    font-weight: 800;
    font-size: var(--p-large);
    margin-left: 25px;
}

.faq-item .question {
    font-size: var(--p-large);
    /* font-weight: bold; */
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-item .answer {
    overflow: hidden;
    transition: 0.3s;
}



/* ------------------------------ Responsive Styles  ------------------------------ */
@media (max-width:480px) {

    .features h2 {
        font-size: 25px;
    }

    .feature {
        width: 100%;
        /* margin: 10px 0px; */
    }

    .faq-item .answer,
    .faq-item .question {
        font-size: var(--p-small);
    }

}


@media (max-width:600px) {

    .wrapper {
        padding: 0px 20px !important;
    }

    .container {
        width: 100%;
        margin: 0 auto;
    }

    .feature-blog-list {
        justify-content: center;
    }

    .faq {
        padding: 40px 0;
    }
}


@media (max-width: 800px) {
    .navbar .wrapper .nav-links {
        display: none;
    }

    .navbar .wrapper .active {
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar .hamburger {
        display: block;
    }

    .navbar .nav-links.active li {
        display: block;
    }

    .hero-content {
        padding-bottom: 20px;
    }


    .navbar .nav-links.active .dropdown {
        display: none;
    }

    .hero .wrapper .hero-content h1 {
        font-size: var(--h2);
    }

    .hero .wrapper .hero-content p {
        font-size: var(--p-small);
    }

}