#defi .callToAction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 4rem 0;
    border: 0.5rem solid var(--dark-clr);
    border-radius: 4rem 0rem;
    background: linear-gradient(94.51deg,
            rgba(0, 104, 199, 1) 0%,
            rgba(2, 12, 23, 1) 100%);

}

#defi .cta-btn {
    position: relative;
    border: 1px solid transparent;
    background-color: #ffffff;
    padding: .5rem 1rem;
    font-weight: 600;
    border-radius: .5rem;
    color: #000;
    transform: scale(1);
    transition: 0.4s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

#defi .cta-btn::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--dark-clr);
    width: 20%;
    height: 100%;
    border-radius: .5rem;
    z-index: -1;
    transition: 0.4s ease-in-out;
}

#defi .cta-btn:hover {
    color: #ffffff;
    transform: scale(1.035);
}

#defi .cta-btn:hover::before {
    bottom: 0%;
    width: 100%;
}


#defi .topBorder-effect {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    background-color: var(--card-clr);
    border-radius: .5rem;
    padding: 1rem;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
}

#defi .topBorder-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--dark-clr);
    border-radius: .5rem;
    transition: width 0.4s ease-in-out;
}

.clr-eff {
    transition: 0.4s ease-in-out;
}

#defi .topBorder-effect:hover .clr-eff {
    color: var(--dark-clr);
}

#defi .topBorder-effect:hover {
    transform: translateY(-5%);
}

#defi .topBorder-effect:hover::before {
    width: 100%;
}

#defi .box1 {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border: 4px transparent;
    border-style: solid none;
    background-color: #ffffff;
    border-radius: 1.5rem .5rem;
    padding: 1rem;
    height: 100%;
    transition: 0.4s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#defi .box1:hover {
    border: 4px var(--dark-clr);
    border-style: solid none;
}

#defi .borderCards-effect {
    border: 1px solid var(--dark-clr);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border-radius: .5rem;
    height: 100%;
    padding: 1.75rem 1rem;
    transition: 0.4s ease-in-out;
}

#defi .borderCards-effect:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px inset;
}

#defi .gridCards{
    padding: 1rem;
    height: 100%;
    background-color: white;
    border-radius: .5rem;
    transform: scale(1);
    transition: 0.2s ease-in-out;
}

#defi .gridCards:hover{
    transform: scale(1.015);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px inset;
}


#defi .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;
}

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

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

#defi .sliderCard{
    padding: 1rem;
    background-color: var(--card-clr);
    height: 100%;
    border-radius: .25rem;
    border-right: 3px solid transparent;
    transition: .3s ease-in-out;
}

#defi .sliderCard:hover{
    border-radius: .5rem;
    border-right: 3px solid var(--dark-clr);
}

#defi .tech-tab-btn {
    border-bottom: 2px solid transparent;
    background: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    padding: 1rem;
    font-size: 1rem;
    border-radius: .5rem;
    width: 100%;
    text-align: start;
    transition: 0.4s ease-in-out;
}

#defi .tech-tab-btn:hover,
#defi .tech-tab-btn.active {
    border-bottom: 2px solid var(--dark-clr);
    background-color: #ffffff;
    transform: scale(1.025);
    color: var(--dark-clr);
}

#defi .defiTechIconSetImage1 {
    background-image: url('/img/v2/techStack/blue-teckstacks.webp');
}

#defi .defiteckIconSet {
    display: inline-block;
    background-color: #ffffff;
    width: 34px;
    height: 34px;
    padding: 1.5rem;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px inset;
    transform: scale(1);
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#defi .tech-items {
    display: flex;
    gap: .5rem;
    align-items: center;
    background-color: var(--card-clr);
    border-radius: .5rem;
    padding: .5rem 1rem;
    height: 100%;
}

.borderRadius > div:nth-child(1) .box2 {
    border-top-left-radius: 2rem;
}

.borderRadius > div:nth-child(4) .box2 {
    border-top-right-radius: 2rem;
}

.borderRadius > div:nth-child(5) .box2 {
    border-bottom-left-radius: 2rem;
}

.borderRadius > div:nth-child(7) .box2 {
    border-bottom-right-radius: 2rem;
}

#defi .box2{
    padding: 1rem;
    background-color: var(--card-clr);
    height: 100%;
    border: 1px solid transparent;
    transition: .3s ease-in-out;
} 

#defi .box2:hover{
    border: 1px solid var(--dark-clr);
}

#defi .keyPointCard{
    height: 100%;
    border-radius: .5rem;
    padding: 1rem;
    background-color: white;
    transition: .3s ease-in-out;
}

#defi .keyPointCard:hover{
    color: var(--dark-clr);
}

.borderClr > div:nth-child(1) .keyPointCard {
    border-right: 1px solid var(--dark-clr);
    border-bottom: 1px solid var(--dark-clr);
}

.borderClr > div:nth-child(2) .keyPointCard {
    border-left: 1px solid var(--dark-clr);
    border-bottom: 1px solid var(--dark-clr);
}

.borderClr > div:nth-child(3) .keyPointCard {
    border-right: 1px solid var(--dark-clr);
    border-bottom: 1px solid var(--dark-clr);
    border-top: 1px solid var(--dark-clr);
}

.borderClr > div:nth-child(4) .keyPointCard {
    border-left: 1px solid var(--dark-clr);
    border-bottom: 1px solid var(--dark-clr);
    border-top: 1px solid var(--dark-clr);
}

.borderClr > div:nth-child(5) .keyPointCard {
    border-top: 1px solid var(--dark-clr);
}

#defi .slider-highligther {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

#defi .slider-bg-left{
    /* background-color: var(--card-clr); */
}

#defi .accordion-item {
    border: 2px var(--dark-clr);
    border-style: none solid solid none;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

#defi .accordion-button {
    border-radius: 1rem;
}

#defi .accordion-button:focus {
    box-shadow: none;
}

#defi .accordion-button::after {
    background-image: url('/img/v2/homeWeb/right-blue-arrow.webp');
    background-repeat: no-repeat;
}

#defi .accordion-button:not(.collapsed) {
    color: var(--dark-clr);
    background-color: transparent;
}

#defi .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}


#defi .whyChoose-effect {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    background-color: var(--card-clr);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
}


#defi .table-head th:nth-child(1) {
    border-radius: .5rem 0 0 0;
}

#defi .table-head th:nth-child(3) {
    border-radius: 0 .5rem 0 0;
}

#defi .table-head th {
    background-color: var(--dark-clr);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    white-space: nowrap;
}

#defi .table-body td {
    padding: 1rem;
    border: none;
    background-color: transparent;
}

#defi .table-even-body-bg .table-body:nth-child(even){
    background-color: var(--card-clr);
}

/* 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: 1.05rem;
    font-weight: 500;
    line-height: 1.6rem;
    width: 100%;
    display: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

@media (max-width: 767px) {

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

@media (max-width: 1200px){

    .borderRadius > div:nth-child(1) .box2 {
        border-top-left-radius: 0rem;
    }

    .borderRadius > div:nth-child(4) .box2 {
        border-top-right-radius: 0rem;
    }

    .borderRadius > div:nth-child(5) .box2 {
        border-bottom-left-radius: 0rem;
    }

    .borderRadius > div:nth-child(7) .box2 {
        border-bottom-right-radius: 0rem;
    }

    .box2{
        border-radius: .5rem;
    }
}