.pricing-section {
    padding: 160px 20px 120px;
    background-image: url(../mavefund-home-images/features-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media screen and (max-width: 768px) {
    .pricing-section {
        padding: 80px 20px 80px;
    }
}

.pricing-title {
    position: relative;
}

.pricing-arrow {
    width: 120px;
    transform: rotate(-5deg);
    position: absolute;
    top: 30px;
    left: 120px;
}

.price-box {
    background-color: #182C27;
    padding: 40px 24px;
    border-radius: 16px;
    box-sizing: border-box;
    border: 3px solid #182C27;
}

@media screen and (max-width: 768px) {
    .price-box {
        margin-bottom: 15px;
    }
}

.price-box:hover {
    border: 3px solid #00D094;
}

.price-name {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    padding-bottom: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .price-amount {
        padding-bottom: 10px;
    }
}

.price-value {
    color: #00D094;
    font-size: 32px;
    font-weight: 600;
}

.price-interval {
    color: #BBC2C7;
    font-size: 18px;
}

.price-usp {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.price-usp li {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.price-usp li span {
    color: #00D094;
    display: inline-block;
    margin: 0 10px;
}

.price-usp li img {
    height: 24px;
    width: 24px;
    margin-right: 10px;
}

.price-action {
    width: 100%;
    border: 1px solid #00D094;
    padding: 10px;
    color: #FFFFFF;
    transition: all 0.15s ease-in-out;
}

.price-box:hover .price-action {
    background-color: #00D094;
    color: black;
}

.price-action:hover {
    color: #FFFFFF;
}

.price-box:hover .price-action:hover {
    color: black;
}

.price-action.btn-theme {
    color: #212121 !important;
}

/* FAQ */
.faq-section {
    padding: 160px 20px 120px;
    background-image: url(../mavefund-home-images/overview-bg.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 80px 20px 80px;
    }
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23FFFFFF' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(.7) !important;
}


.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%2300A676' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    border: 2px solid;
    padding: 15px;
    display: inline-block;
    border-radius: 50%;
    background-position: center;
    position: relative;
    left: 5px;
}

.accordion {
    max-width: 960px;
    margin: 0 auto;
}

.accordion-item,
.accordion-button,
.accordion-header {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #00A676;
    font-weight: 500;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, .125);
}

.accordion-header,
.accordion-button {
    font-size: 20px;
    font-family: anek telugu, sans-serif !important;
    color: #FFFFFF;
}

.accordion-button:focus,
.accordion-button:focus-within {
    outline: none;
    box-shadow: none !important;
}

.card-body {
    color: #BBC2C7;
    font-size: 16px;
}

.card-body a {
    color: #00A676;
}

[data-animate="pricing-left"] {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
    animation: fadeInLeft 700ms ease-in-out forwards;
}

[data-animate="pricing-right"] {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
    animation: fadeInRight 700ms ease-in-out forwards;
}

[data-animate="pricing-middle"] {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
    animation: fadeInUp 700ms ease-in-out forwards;
}

[data-animate="fade-in"] {
    opacity: 0;
    animation: fadeIn 500ms ease-in-out forwards;
}

[data-animate="zoom-in"] {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    animation: zoomIn 500ms ease-in-out forwards;
}

@media screen and (max-width: 768px) {

    [data-animate="pricing-right"],
    [data-animate="pricing-left"],
    [data-animate="pricing-middle"] {
        transform: translate3d(0, 100px, 0);
        animation: fadeInUp 700ms ease-in-out forwards !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        -webkit-transform: scale(.6);
        transform: scale(.6)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
