/***
* About Shining Star (start)
* */
.ss-about .label {
    font-family: var(--alternative-font);
    max-width: 120px;
    color: #FFFFFF;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
    margin-bottom: 4px;
}

.ss-about h2 {
    font-size: 2rem;
    color: var(--heading-color);
}

.ss-about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ss-about .content p {
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .ss-about h2 {
        font-size: 3rem;
    }

    .ss-about .content p {
        font-size: 1rem;
    }
}

/***
* About Shining Star (end)
* */

/**
* Why Choose Us (start)
* **/

.wcs_wrapper .wcs_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 100px 0;
}

@media screen and (min-width: 1024px) {
    .wcs_wrapper .wcs_container {
        flex-direction: row;
    }
}

.wcs_container .wcs_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.wcs_container .wcs_item .img-container {
    border-radius: 8px;
    background: rgba(253, 92, 99, 0.3);
    padding: 8px;
}

.wcs_container .wcs_item .img-container {
    fill: rgba(253, 92, 99, 1);
}

.wcs_container .wcs_item:first-child .img-container {
   stroke: rgba(253, 92, 99, 1);

}

.wcs_container .wcs_item h4 {
    font-weight: 500;
    /* color: rgba(253, 92, 99, 1); */
    color: var(--heading-color);
}

.wcs_container .wcs_item p {
    font-size: .9rem;
}

@media screen and (min-width: 768px) {
    .wcs_container .wcs_item p {
        font-size: 1rem;
    }
}


/**
*
* Our Cleaning Services (start)
*
*/

.ocs-wrapper {
    background-color: rgba(232, 249, 253, 0.5);
    padding: 150px 0;
}

.ocs-wrapper .content-container{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.ocs-wrapper .label {
    font-family: var(--alternative-font);
    color: #FFFFFF;
    max-width: 120px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}
.ocs-wrapper h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    text-align: center;
}


/** card container **/
.ocs-wrapper .service_card-container {
    margin: 100px 0 0 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    place-items: center;
    grid-gap: 30px;
}

@media screen and (min-width: 768px) {
    .ocs-wrapper .service_card-container {
        place-items: center;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}


@media screen and (min-width: 1440px) {
    .ocs-wrapper .service_card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}


/** card **/
.ocs-wrapper .service-card {
    height: 300px;
    width: 300px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: relative;
}

.ocs-wrapper .service-card h4 {
    color: #FFFFFF;
    position: absolute;
    bottom: 0%;
    left: 0%;
    padding: 10px;
}

.ocs-wrapper .service-card span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    color: #FFFFFF;
    font-family: var(--alternative-font);
    padding: 4px 8px;
    background-color: #59CE8F;
    border-radius: 10px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.ocs-wrapper .service-card:hover span {
    opacity: 1;
}

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

    .ocs-wrapper .service-card {
        height: 300px;
        width: 300px;
    }
    
}


@media screen and (min-width: 1024px) {

    .ocs-wrapper .service-card {
        height: 430px;
        width: 430px;
    }
    
}

@media screen and (min-width: 1440px) {

    .ocs-wrapper .service-card {
        height: 300px;
        width: 300px;
    }
    
}


/**
*
* Our Cleaning Services (end)
*
*/


/***
*
* Team and Members (start)
*/


.leader_text-container {
    display: grid;
    justify-content: center;
    align-items: center;
}

/***
*
* Team and Members (end)
*/




/****
* 
* Clients Who Trust Us (start)
*
**/

.our_clients-wrapper {
    padding: 150px 0;
}

.our_clients-wrapper .content-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.our_clients-wrapper .content-container .label{
    font-family: var(--alternative-font);
    color: #FFFFFF;
    max-width: 120px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}

.our_clients-wrapper h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    text-align: center;
    margin: 0 0 100px 0;
}

.marquee {
    margin: 30px 0 0 0;
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    animation: scroll 20s linear infinite;
}

.marquee .marquee__content span img{
    width: 100%;
    height: auto;
}
.marquee .marquee__content span {
    display: flex;
    align-items: center;
    width: 200px;
    height: 200px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/****
* 
* Clients Who Trust Us (end)
*
**/



/****
* 
* Client Review (start)
*
**/
.client-reviews_wrapper {
    background-color: rgba(232, 249, 253, 0.5);
    padding: 150px 0;
}
.client-reviews_wrapper .content-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.client-reviews_wrapper .content-container .label {
    font-family: var(--alternative-font);
    color: #FFFFFF;
    max-width: 150px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
}


.client-reviews_wrapper h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    text-align: center;
    margin: 0 0 100px 0;
}

.client-reviews_wrapper .review-card{
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;

    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.client-reviews_wrapper .review-card .review_content {
    flex-grow: 1;
    font-style: italic;
}

.client-reviews_wrapper .review-card .reviewer {
    color : rgba(253, 92, 99, 1);
}

.client-reviews_wrapper .blaze_ui {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 80px 0 0 0;
}

.client-reviews_wrapper .blaze-prev,
.client-reviews_wrapper .blaze-next {
    border: none;
    border-radius: 20px;
    background: var(--primary-color);
}

.client-reviews_wrapper .blaze-pagination{
    align-items: center;
}


.client-reviews_wrapper .blaze-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;

}
.client-reviews_wrapper .blaze-pagination button {
    background: none;
    border: none;
    font-size: 0;
    background-color: #cdd9e3;
    padding: 5px;
    border-radius: 10px;

    transition: background-color .3s ease-in-out;
}
.client-reviews_wrapper .blaze-pagination button.active {
    background-color: var(--primary-color);
}

/****
* 
* Client Review (end)
*
**/

/*****
*
* Contact Us Section (start)
*
*/

.contact-us_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 500px;
}

@media screen and (min-width: 1024px) {
    .contact-us_wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }
}

.text-content-container {
    display: grid;
    place-items: center;
    max-width: 800px;
    padding: 25px;
}

.text-content-container .label {
    color: #FFFFFF;
    font-family: var(--alternative-font);
    max-width: 200px;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
    max-width: 70px;
}

.text-content-container .text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-content-container .text-content h3{
    color: var(--primary-color);
}

.text-content-container .text-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--alternative-font);
}

.text-content-container .text-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

/*****
*
* Contact Us Section (end)
*
*/

/**
*
* Leadership and Team (start)
*
*/

.team-wrapper .label {
    font-family: var(--alternative-font);
    max-width: 120px;
    color: #FFFFFF;
    padding: 4px 8px;
    background: rgba(253, 92, 99, 0.6);
    border-radius: 20px;
    margin-bottom: 4px;
}

.team-wrapper .heading {
    text-align: center;
    margin: 80px 0;
}
.team-wrapper h2 {
    color: var(--primary-color);
}

.team-wrapper .designation h6{
    font-family: var(--alternative-font);
    color: var(--primary-color);
}

.team-wrapper .designation span{
    font-family: var(--alternative-font);
    color: rgba(253, 92, 99, 1);
}

.team-wrapper .team .designation {
    text-align: center;
    margin: 8px 0;
}

/**
*
* Leadership and Team (end)
*
*/
