#web3 .box-1 {
    background-color: var(--card-clr);
    padding: 1rem;
    border-radius: .75rem;
    height: 100%;
    border: 2px solid transparent;
    transition: 0.4s ease-in-out;
}

#web3 .box-1:hover {
    border: 2px solid var(--dark-clr);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


#web3 .odd-even-clr div:nth-child(even) {
    background-color: var(--card-clr);
    border-radius: .5rem;
}

#web3 .box-2 {
    padding: 1.5rem;
    text-align: start;
}

#web3 .box-3 {
    position: relative;
    height: 100%;
    background-color: #fff;
    border-radius: .5rem;
    padding: 1.5rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
}

#web3 .box-3::before {
    content: '';
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 50px;
    height: 50px;
    border-radius: 2.5rem 0 0 0rem;
    background-color: var(--card-clr);
    transition: 0.4s ease-in-out;
}

#web3 .clr-effect {
    color: #000000;
    transition: 0.4s ease-in-out;
}

#web3 .box-3:hover .clr-effect {
    color: var(--dark-clr);
}

#web3 .box-3:hover::before {
    right: 0;
    bottom: 0;
    background-color: var(--dark-clr);
    border-radius: .5rem 0 0 0rem;
}

#web3 .box-4{
    padding: 1rem;
    background-color: var(--card-clr);
    height: 100%;
    border-radius: 1rem;
    transition: 0.4s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 4px 5px 0px 0px;
}

#web3 .box-4:hover{
    background-color: #ffffff;
    box-shadow: var(--dark-clr) 8px 10px 0px 0px;
}

#web3 .web3Gradient-bg {
    background-image: url(/img/v2/homeWeb/cta-1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    border-radius: 0;
}

#web3 .translate-1 {
    transform: translateY(-10%);
}

#web3 .extra-height {
    height: 350px;
}

#web3 .development-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-clr);
    border-radius: 1.5rem;
    margin: 1rem 0;
}

#web3 .dev-box-inner {
    border-radius: 1.5rem;
    padding: 1rem;
    background-color: #ffff;
    box-shadow: 0.3125rem 0rem 0.875rem 0rem rgba(0, 0, 0, 0.25);
}

#web3 .dev-box-no {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    padding: 1rem 2rem;
}


/* Faq start */

#faq .faq-list {
    position: relative;
}

#faq .faq-list h2 {
    color: #1a73e8;
    margin-bottom: 20px;
}

#faq .faq-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    padding: 10px 10px 10px 30px;
    position: relative;
    transition: 0.3s ease-in-out;
}

#faq .faq-item.active {
    padding-left: 3.25rem;
    color: #1a73e8;
}

#faq .faq-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    /* background: url('https://img.icons8.com/ios-filled/50/1a73e8/arrow.png') no-repeat center center; */
    background: url("/img/devprog-img/ico/faqArrow.png") no-repeat center center;
    background-size: contain;
    /* transform: translateY(50%); */
    transition: top 0.3s ease;
}

#faq .faq-answer {
    background-color: #dceeff;
    padding: 30px;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    width: 100%;
    display: none;
}

[id^="faq-answer-"]:empty {
    display: none !important;
    padding: 0 !important;
}

/* faq end */

/* Extra Small Devices (Phones) */
@media only screen and (max-width: 576px) {
    #web3 .tbl-card-1 {
        grid-template-columns: 1fr;
    }

    #web3 .web3Gradient-bg {
        background-size: cover;
        padding: 1.5rem;
        border-radius: 1rem;
    }

    #web3 .extra-height {
        height: auto;
    }

    #web3 .development-box {
        flex-direction: column;
    }
}


/* Small Devices (Tablets) */
@media only screen and (min-width: 577px) and (max-width: 767px) {
    #web3 .tbl-card-1 {
        grid-template-columns: 1fr;
    }

    #web3 .web3Gradient-bg {
        background-size: cover;
        padding: 1.5rem;
        border-radius: 1rem;
    }

    #web3 .extra-height {
        height: auto;
    }

    #web3 .development-box {
        flex-direction: column;
    }
}


/* Medium Devices (Laptops, Smaller Desktops) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    #web3 .tbl-card-1 {
        grid-template-columns: 1fr;
    }

    #web3 .vs-min-height {
        height: auto;
        overflow-y: scroll;
    }

    #web3 .web3Gradient-bg {
        background-size: cover;
        padding: 2.75rem;
        border-radius: 1rem;
    }
}


@media only screen and (min-width: 993px) and (max-width: 1200px) {
    #web3 .tbl-card-1 {
        grid-template-columns: 1fr;
    }

    #web3 .vs-min-height {
        height: 700px;
        overflow-y: scroll;
    }

    #web3 .web3Gradient-bg {
        background-size: contain;
        padding: 3.5rem;
    }

    #web3 .extra-height {
        height: auto;
    }
}


@media only screen and (min-width: 1201px) and (max-width: 1399px) {
    #web3 .extra-height {
        height: auto;
    }
}


/* Extra Large Devices (4K Monitors, TVs) */
@media only screen and (min-width: 1441px) and (max-width: 1920px) {}


@media only screen and (min-width: 1921px) {}