p {
    line-height: 1.8;
}

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

.button_class:hover {
    box-shadow: 0px 0px 15px -5px #000000;
}

.button_class_2 {
    border: 2px solid var(--background-color-3);
    border-radius: 5px;
    transition: 0.2s;
    overflow: hidden;
    position: relative;
}

.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);
}

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

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


/* ------------------------------ Hero Section ------------------------------  */

.hero {
    /* background-color: var(--background-color-5); */
}

.hero .wrapper {
    width: 100%;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #000;
    width: 50%;
    padding-top: 100px;
}

.hero-image {
    position: relative;
    width: 50%;
    height: fit-content;
    z-index: 0;
    margin: 0 auto;
}

.hero-image span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    z-index: -1;
    border-radius: 0;
    background-color: var(--background-color-3);
    transform: translate(-50%, -50%);
}

.hero-image img {
    position: relative;
    width: 100%;
}

.hero-content p {
    margin-bottom: 20px;
    font-size: var(--p-large)
}

.header {
    background-color: #f2f2f2;
    padding: 50px 0;
    text-align: center;
}




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

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

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

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    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;
}

.feature img:hover {
    transform: scale(1.05);
}


.blog_box {
    display: flex;
    justify-content: space-between;
    place-items: start;
}

/* ------------------------------ Blog section ------------------------------  */
.blog,
.demo,
.how_to,
.faq {
    padding: 35px 0;
    text-align: center;
    background-color: #fff;

}

.how_to {
    /* background-color: var(--background-color-5); */

}

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

.blog-list,
.feature-blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    /* justify-content: space-around; */
    /* justify-content: center; */
    margin: 20px 0px;
}

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

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

.blog_post_box img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.blog_post_box img:hover {
    transform: scale(1.05);
}

.how_to ol li,
.demo ol li {
    font-size: var(--p-small);
    /* font-weight: bold; */
    line-height: 5.5;
    list-style-position: inside;
    list-style: none;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: baseline;
    padding: 20px 0px;
}

.demo ol li {
    padding: 10px 0px;
}

.how_to ol li span:nth-child(1),
.demo ol li span:nth-child(1) {
    color: #fff;
    background-color: var(--background-color-3);
    font-size: var(--p-large);
    border-radius: 100px;
    padding: 6px 10px;
    line-height: 1;
    margin-right: 10px;
}

.demo ol li span:nth-child(1) {
    font-size: var(--p-tiny);
    padding: 5px 7px;
}

.how_to ol li span:nth-child(2),
.demo ol li span:nth-child(2) {
    line-height: 2;
}

.how_to ol li::before,
.demo ol li::before {
    position: absolute;
    content: "";
    top: 40px;
    left: 15px;
    color: var(--background-color-3);
    border: 1px dashed;
    height: 100%;
    z-index: -1;
}

.demo ol li::before {
    display: none;
}


.demo .steps {
    width: 40%;
}

.demo .video_class,
.demo .image_class {
    width: 80%;
    border: 1px solid var(--background-color-3);
    box-shadow: 10px -10px 0px 0px var(--background-color-3);
    border-radius: 18px;
    margin: 0 auto;
    object-fit: contain;
}

.demo .image_class,
.demo .video_class {
    width: 50%;
    height: 350px;
    margin: 0px;
}

.how_to ol li:last-child:before,
.demo ol li:last-child:before {
    display: none;
}

/* ------------------------------ Blog post ------------------------------ */
.blog_post_box {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    /* flex: 0 0 20%; */
}

.blog_post_box a {
    text-decoration: none;
}

.thumbnail_box {
    width: 100%;
    justify-items: center;
}

.thumbnail_box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.content_info {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
}

.content_info span:nth-child(1) {
    color: blue;
}

.blog_title a {
    text-decoration: none;
    display: block;
    color: #000;
    font-size: var(--p-tiny);
    line-height: 1.5;
    font-weight: bold;
}

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

.faq h2 {
    font-weight: bold;
    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: 10px 0px;
}

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

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

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



/* ------------------------------ Responsive Styles  ------------------------------ */


@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);
    }


    .demo .steps {
        width: 90%;
    }


    .demo .image_class,
    .demo .video_class {
        margin: 0 auto;
        width: 90%;
    }

    .blog_box {
        display: block;
    }
}


@media (max-width:600px) {

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

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

    .hero .wrapper {
        display: block;
    }

    .hero .wrapper .hero-content {
        width: 100%;
        padding: 50px 0px 0px 0px;
    }

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

    .video_class {
        width: 100% !important;
    }

    .hero-image {
        width: 65%;
    }

    .demo .image_class,
    .demo .video_class {
        height: 250px;
    }

    body section h2::after {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width:480px) {

    .hero .wrapper .hero-content p {
        font-size: 14px;
    }

    .hero .hero-image {
        width: 80%;
    }

    .features h2 {
        font-size: var(--h3);
    }

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

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

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

    .feature-list {
        gap: 10px;
    }

    .demo .image_class,
    .demo .video_class {
        height: 200px;
    }

    body section h2::after {
        left: 50%;
        transform: translate(-50%, -50%);
    }

}