@media screen and (max-width: 991px) {
    h3 {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: block;
        margin-right: 20px;
    }

    .main-nav{
        overflow: initial;
    }

    .nav-links {
        position: absolute;
        background-color: #fff;
        left: -100%;
        top: 100%;
        width: 100%;
        padding-block: 20px;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }

    .nav-links.active{
        left: 0;
    }

    .nav-links ul{
        flex-direction: column;
        align-items: flex-start;
        padding-inline: var(--padding-inline-section);
    }

    .nav-links .buttons{
        flex-direction: column ;
        width: 100%;
        display: block;
    }

    .primary-btn, .secondary-btn{
        text-align: center;
       margin-bottom: 15px;
    }

    .examples-area {
        gap: 20px;
    }

    .examples-cards {
        width: calc(50% - 10px);
        height: 180px;
    }

    .cta-section {
        padding-block: 80px;
    }
    .lg-view{
        display:none;
     }
 
    .rg-view{
        display:inline-block;
     }

    #collection {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-link {
        flex: 0 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .big-feature-container,
    .row-reverse {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    /* .primary-btn {
      

    } */

    .header-section {
        flex-direction: column-reverse;
    }

    .header-left {
        max-width: 100vw;
        text-align: center;
    }

    .feature-link {
        flex: 0 1 calc(50% - 10px);
    }

    .features-card {
        padding: 30px 20px;
    }

    .big-feature-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .link-col {
        align-items: center;
    }
    .lg-view{
        display:none;
     }
 
    .rg-view{
        display:inline-block;
     }

}

@media screen and (max-width: 479px) {
    :root {
        --padding-inline-section: 10px;
    }

    .primary-btn {
        width: 100%;

    }

    .secondary-btn{
        width: 100%;
    }

    
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
 
    .feature-link {
        flex: 0 1 100%;
    }

    .examples-cards{
        width: 100%;
    }
    .lg-view{
        display:none;
     }

    .rg-view{
        display:inline-block;
     }

    #collection {
        grid-template-columns: 1fr;
    }

}