.main-cqp {

    .cqp-head {
        margin-bottom: 3rem;


        .head-content {
            height: 30rem;
            background-color: rgba(0, 128, 0, 0.3);
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-bottom: 5rem;


            @media screen and (max-width:600px) {
                height: auto;
            }


            & .ct-text {
                flex: 0 0 50%;
                animation: moveleft 1s ease;

                @media screen and (max-width:950px) {
                    flex: unset;
                    padding: 0 2rem;
                }

                h1 {

                    margin-bottom: 1.5rem;
                    filter: drop-shadow(0 4.53px 4.53px rgba(209, 69, 69, 0.25));
                    color: #28532d;
                    line-height: 1.5;
                    font-weight: 900;


                }

                p {
                    font-size: 1.1rem;
                    line-height: 1.8;
                    color: #4c574e;
                    margin-bottom: 2rem;
                }

                a {
                
                    text-decoration: none;
                    padding: 1.3em 3em;
                    font-size: 12px;    
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    font-weight: 700;
                    color: white;
                    background-color: #239956;
                    border: none;
                    border-radius: 45px;
                    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
                    transition: all 0.3s ease 0s;
                    outline: none;


                    &:hover {
                        box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
                        color: #000000;
                        
                    }
                }

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

                    padding: 2rem;

                    p {
                        font-size: 1rem;
                    }

                    h1 {
                        font-size: 1.5rem;
                    }
                }
            }

            & .ct-img {
                position: relative;
                animation: moveright 1s ease;

                @media screen and (max-width:950px) {
                    display: none;
                }

                img {
                    width: 83%;
                }

                .icons {
                    img {
                        position: absolute;
                        width: 3rem;


                        &:nth-of-type(1) {
                            left: -2rem;
                            top: 6rem;
                        }

                        &:nth-of-type(2) {
                            left: -4rem;
                            bottom: 3.5rem;
                        }

                        &:nth-of-type(3) {
                            right: 1rem;
                            top: 6.1rem;
                        }


                        &:nth-of-type(4) {
                            right: -1.5rem;
                            bottom: 3.3rem;
                        }

                        &:nth-of-type(5) {
                            left: -6.5rem;
                            top: 50%;
                        }

                        &:nth-of-type(6) {
                            right: -3.8rem;
                            top: 52%;

                        }

                        @media screen and (max-width :1230px) {
                            &:nth-of-type(5) {
                                left: -5rem;
                                top: 50%;
                            }

                            &:nth-of-type(6) {
                                right: -2rem;
                                top: 52%;

                            }
                        }
                    }
                }
            }
        }

        .cours-head {
            text-align: center;
            padding: 0 1rem;

            h2 {
                margin-bottom: .8rem;

                span {
                    color: green;
                }
            }


        }

    }

    .cqp-content {

        .ct-container1 {
            display: flex;
            padding: 0 1rem;
            justify-content: space-evenly;
            flex-wrap: wrap;
            margin-bottom: 5rem;

            @media screen and (max-width:1350px) {
                gap: 1.5rem;
            }

            .card {
                display: flex;
                flex-direction: column;
                align-items: center;
                border-radius: 15px;
                background-color: #f7f6f5;
                border-bottom: 1px solid #00800070;
                border-top: 1px solid #00800070;
                padding: 1rem;
                gap: 2rem;
                width: 235px;
                align-self: center;
                box-shadow: 5px 5px 6px #dadada, -5px -5px 6px #f6f6f6;

                .top-title {
                    background-color: white;
                    padding: .5rem 0;
                    width: 14rem;
                    text-align: center;
                    border: 1px solid #e05c03;
                    border-radius: 10px;

                    h5 {
                        color: red;
                    }
                }

            }
        }

        .ct-container2 {
            padding: 0 1rem;

            .custom-title {
                color: green;

                i {
                    font-size: 2rem;
                }

                h3 {
                    font-size: 1.3rem;
                }
            }

            .list {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 2.5rem;

                .card {
                    padding: 10px;
                    width: 280px;
                    border-radius: 20px;
                    background: #e8e8e8;
                    box-shadow: 5px 5px 6px #dadada,
                        -5px -5px 6px #f6f6f6;
                    transition: 0.4s;
                }

                .card:hover {
                    translate: 0 -10px;
                }

                .card-title {
                    font-size: 18px;
                    font-weight: 600;
                    color: #2e54a7;
                    margin: 10px 0 0 10px;
                }

                .card-body {
                    margin: 10px 0 0 10px;
                    color: rgb(31, 31, 31);
                    font-size: 15px;
                }
            }
        }

        .alert {
            margin: 2rem 0;
            padding: 0 1rem;
            color: red;
            font-weight: 700;
            text-align: center;
            font-size: 1.2rem;
        }
    }


}

@keyframes moveleft {
    from {
        transform: translateX(-200px);
    }

    to {
        transform: translateX(0px);
    }
}

@keyframes moveright {
    from {
        transform: translateX(200px);
    }

    to {
        transform: translateX(0px);
    }
}