@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&display=swap');


header.takeoffs{
    .content{
        ul{
            li{
                &:last-child{
                    a{
                        background-color: #ffb937;
                        padding: .5rem 1rem;
                        border-radius: .5rem;
                    }
                }
            }
        }
    }
}



section.banner.budgeting {
    .content {
        h2 {
            font-size: 50px;
            margin-bottom: 2rem !important;

            span {
                color: #ffb937;
            }
        }
    }

    &::after {
        background: linear-gradient(to bottom, #000000 0%, #00000061 100%);

    }
}

.our-services.budgeting {


    h2 {
        font-size: 50px;
        font-weight: 900;
    }

    .card-container {
        grid-template-columns: repeat(4, 1fr);
        width: 85%;
        margin: 0 auto;

        @media(max-width: 1024px){
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .card-content {


            .card {
                display: flex;
                flex-direction: column;
                align-items: center;
                place-content: center;
height: 250px;
                justify-content: flex-start;
                @media(max-width: 767px) {
                    place-content: unset;
                    min-height: unset;
                }

                .image {
                    height: 2rem;
                    margin-bottom: 2rem;
                    margin-left: -8rem;
                    margin-top: -1rem;

                    svg {
                        width: 100%;
                        height: 100%;
                    }
                }


                h4 {
                    font-size: 15px;

                    @media(max-width: 767px) {
                        font-size: 20px;
                    }


                }

                p {
                    font-size: 12px;
                }

                &::after {
                    margin-top: 3.5rem !important;
                    margin-left: .9rem !important;

                    @media(max-width: 767px) {
                        top: -2rem;
                        left: 0rem;
                    }
                }
            }
        }
    }
}


.testimonial {
    background-color: rgb(255, 237, 157);

    .content {

        h2 {
            text-align: center;
            margin-bottom: 5rem;
        }

        .star-container {
            margin-bottom: 1rem;
            display: flex;
            place-content: end;
        }
    }

    i {
        font-size: 18px;
        color: #ffb937;

    }
}

.owl-carousel {
    .item {
        background-color: rgb(255, 237, 157);
        position: relative;

        p {
            font-size: 18px;
            font-weight: 400;
            font-family: "Edu NSW ACT Cursive", cursive;
            text-align: center;

            &:nth-of-type(1) {
                margin-bottom: 2rem;

            }

            &:nth-of-type(2) {
                text-align: right;
                font-family: "Roboto", sans-serif;
                font-size: 15px;

            }
        }





        &::after {
            border-radius: 1rem;
            position: absolute;
            top: 0px;
            left: 0px;
            content: "";
            width: 100%;
            height: 100%;
            background-color: #cacaca;
            z-index: -1;

            margin-left: 1rem;
        }

    }

    .owl-dots {
        margin-top: 40px !important;
    }
}



.pricing {
    .content {
        h2 {
            text-align: center;
            margin-bottom: 2rem !important;
            font-size: 50px;
        }

        p {
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 600;

            &:nth-of-type(2) {
                font-size: 20px;
            }
        }

        .fullpricing{
            color: #2259ff;
        }

        .card-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;

            .card {
                border: 3px solid #000;
                border-radius: 1rem;
                padding: 2rem 2rem;
                width: 30%;
                position: relative;

                p {
                    text-align: left;
                    margin-bottom: 1rem;
                    font-size: 20px;
                    font-weight: 900;


                    &:nth-of-type(2) {
                        margin-bottom: 2rem;
                        font-size: 15px;
                        font-weight: 400;
                    }
                }

                h3 {
                    font-size: 40px ;
                    font-weight: 900;
                    margin-bottom: 1rem;
                    margin-top: 0;
                    @media(max-width: 767px) {
                        font-size: 30px ;
                    }

                    &:nth-of-type(1) {
                        span {
                            color: #ffb937;
                        }
                    }

                }

                ul {
                    margin-left: 2rem;

                    @media(max-width: 767px) {
                        margin-left: 0rem;
                    }

                    li {
                        font-size: 15px;
                        margin-bottom: 1rem;
                        list-style: none;
                        font-weight: 700;
                        color: #2c2c2c;

                        @media(max-width: 767px) {
                            font-size: 16px;
                        }

                        i {
                            font-weight: 800;
                        }
                    }
                }

                .cta-con {
                    display: flex;
                    justify-content: center;

                    .cta {
                        background-color: #2c2c2c;
                        color: #fff;
                        margin-top:0rem;
                    }
                }



                &:nth-of-type(2) {
                    background-color: #ffb937;

                    h3 {
                        span {
                            color: #fff;
                        }
                    }

                    p {
                            font-size: 15px;
                            font-weight: 300;
                        &:nth-of-type(1) {
                            position: absolute;
                            top: -20px;
                          
                            font-size: 15px;
                            background-color: #2c2c2c;
                            color: #ffb937;
                            padding: .5rem;
                            border-radius: 2rem;
                            font-weight: 500;

                            @media(max-width: 767px) {
                                left: unset;
                            }
                        }

                        &:nth-of-type(2) {
                            font-size: 20px !important;
                        font-weight: 700;
                        }
                    }

                    .cta-con {
                        .cta {
                            background-color: #fff;
                            color: #2c2c2c;
                        }
                    }
                }
            }
        }
    }
}








@media (max-width: 767px) {



    .pricing {
        .content {
            .card-container {
                display: flex;
                flex-direction: column;

                .card {
                    width: unset;
                }
            }
        }
    }
}