@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Stylish&display=swap');

* {
    margin: 0;
    padding: 0;

}

:root {
    --color: rgb(194, 17, 129);
    --black: black;
    --white: white;
    --red: rgb(213, 24, 24);
    --blue: rgb(30, 97, 192);
    --gray: rgb(166, 166, 166);
    --light: rgb(236, 236, 236);
}


/* ----------------HEADER section ------------------------------------------------------------------  */
header {
    width: 100%;
    height: 50vh;
    position: relative;
    background-image: url(../Images/BANNER/NEW/banner-6.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    margin-bottom: 5%;
}

/* ----------------------Testimonial section --------------------------------------- */

.testimonial-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 5%;

}


.testimonial-title {
    margin-bottom: 5%;
}

.testimonial-title h1 {
    color: var(--color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.testimonial-section .testimonial-reviews {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 1.2rem;
    text-align: justify;
}

.testimonial-section .testimonial-reviews .review-boxs {
    padding: 3%;
    border: 1px solid var(--light);
    border-radius: 10px;
    margin-bottom: 3%;

}


.testimonial-section .testimonial-reviews .review-boxs .name-star {
    display: flex;
    justify-content: space-between;
}

.testimonial-section .testimonial-reviews .review-boxs .name-star .star {
    color: var(--color);
    text-shadow: yellow,
        0 0 15px yellow,
        0 0 20px var(--black),
        0 0 25px var(--black),
        0 0 30px var(--black);
    animation: star 4s linear infinite;
}


.testimonial-section .testimonial-reviews .review-boxs .name-star .testimonial-name h4 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--color);
    text-shadow: yellow,
        0 0 15px yellow,
        0 0 20px var(--black),
        0 0 25px var(--black),
        0 0 30px var(--black);
    animation: star 4s linear infinite;

}


.testimonial-section .testimonial-reviews .review-boxs .name-star .testimonial-name h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--red);
    font-weight: 700;
}


.testimonial-section .testimonial-reviews .review-boxs .testimonial-content p {
    color: var(--gray);
}














@media screen and (max-width:320px) {

    /* ----------------HEADER section ------------------------------------------------------------------  */
    header {

        background-image: url(../Images/BANNER/NEW/banner-6.0.jpg);

    }
}

@media screen and (min-width:321px) and (max-width:425px) {

    /* ----------------HEADER section ------------------------------------------------------------------  */
    header {

        background-image: url(../Images/BANNER/NEW/banner-6.0.jpg);

    }
}

@media screen and (min-width:426px) and (max-width:600px) {

    /* ----------------HEADER section ------------------------------------------------------------------  */
    header {

        background-image: url(../Images/BANNER/NEW/banner-6.0.jpg);

    }
}

@media screen and (min-width:601px) and (max-width:768px) {

    /* ----------------HEADER section ------------------------------------------------------------------  */
    header {

        background-image: url(../Images/BANNER/NEW/banner-6.0.jpg);

    }
}

@media screen and (min-width:769px) and (max-width:900px) {}

@media screen and (min-width:901px) and (max-width:992px) {}

@media screen and (min-width:993px) and (max-width:1024px) {}

@media screen and (min-width:1025px) and (max-width:1140px) {}