/*--------------------------------*/
/* Hero Section START */
/*--------------------------------*/

.hero__section {
    height: 798px;
    width: 100%;
    background-image: url("../content/clips-hero-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    background-position-x: 76%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__Section__content__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    justify-content: center;
    align-items: start;

    margin-bottom: 3.5rem;
}

.hero__section__content__text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero__section__content__text h1 {
    color: var(--clr-white);
    font-size: var(--size-4xl);
    font-weight: 600;
}

.hero__section__content__text p {
    color: var(--clr-white);
    font-size: var(--size-sm);
    font-weight: 300;
}

.hero__cta__btn__container {
    display: flex;
    justify-content: center;
    align-items: start;

    gap: 0.6rem;
}

.hero__section__btn {
    display: none;
}

/* xxxs */
@media (min-width: 320px) {

    .hero__section__content__text h1 {
        color: var(--clr-white);
        font-size: var(--size-4xl);
        font-weight: 600;
    }
}

/* xxs */
@media (min-width: 380px) {

    .hero__section__content__text h1 {
        color: var(--clr-white);
        font-size: var(--size-4xl);
        font-weight: 600;
    }

    .hero__Section__content__wrapper {    
        margin-bottom: 1rem;
    }
}

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
@media (min-width: 640px) {

    .hero__section__content__text h1 {
        color: var(--clr-white);
        font-size: var(--size-5xl);
        font-weight: 600;
        width: 680px;
    }

    .hero__section__content__text p {
        font-size: var(--size-base);
        font-weight: 400;
        width: 585px;
    }
}

/* md */
@media (min-width: 768px) {

    .hero__section {
        background-position-y: center;
        background-position-x: center;
    }

    .hero__section__content__text h1 {
        color: var(--clr-white);
        font-size: var(--size-6xl);
        font-weight: 600;
        width: 680px;
    }

    .hero__section__content__text p {
        font-size: var(--size-base);
        font-weight: 400;
        width: 585px;
    }
}

/* lg */
@media (min-width: 1024px) {

    .hero__Section__content__wrapper {    
        margin-bottom: 2rem;
    }

    .hero__section__content__text h1 {
        color: var(--clr-white);
        font-size: var(--size-6xl);
        font-weight: 600;
        width: 680px;
        /* line-height: 4.5rem; */
    }

    .hero__section__content__text p {
        font-size: var(--size-base);
        font-weight: 400;
        width: 585px;
    }

    .hero__cta__btn__container {
        display: none;
    }
    
    .hero__section__btn {
        display: block;
    }
    
}

/* xl */
@media (min-width: 1280px) {

    .hero__section {
        background-position-y: top;
        background-position-x: center;
    }

    .hero__Section__content__wrapper {    
        margin-top: 5rem;
        /* margin-bottom: 10rem; */
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */


/*--------------------------------*/
/* Hero Section END */
/*--------------------------------*/


/*--------------------------------*/
/* SECTION HEADING START */
/*--------------------------------*/

.section__heading__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section__heading__wrapper h1 {
    color: var(--clr-black);
    font-size: var(--size-5xl);
    font-weight: 600;
}

.section__heading__wrapper p {
    color: var(--clr-black200);
    font-size: var(--size-base);
    font-weight: 400;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
    
    .section__heading__wrapper h1 {
        font-size: var(--size-5xl);
        font-weight: 600;
    }

    .section__heading__wrapper p {
        font-size: var(--size-base);
        font-weight: 400;
    
        width: 800px;
    }
}

/* xl */
@media (min-width: 1280px) {

    .section__heading__wrapper h1 {
        font-size: var(--size-6xl);
        font-weight: 600;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/*--------------------------------*/
/* SECTION HEADING END */
/*--------------------------------*/




/*--------------------------------*/
/* Our Services Section START */
/*--------------------------------*/

/* .our__services__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: ;
} */

.our__services__section__content__wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    /* background-color: red; */
    margin-top: 3rem;
}

.our__services__section__container__1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding-right: 0rem;
}

.services__point__container {
    background-color: var(--clr-pink-light-900);
    padding: 20px 20px 25px 20px;
    border: 2px solid var(--clr-pink-light-900);
    border-radius: 1rem;

    transition: all 0.3s;
}

/* .services__point__container:hover {
    border: 2px solid var(--clr-pink000);
    transform: scale(1.03);
    cursor: pointer;
} */

.services__point__container h2 {
    color: var(--clr-pink-dark-100);
    font-size: var(--size-2xl);
    font-weight: 500;
}

.services__point__container p {
    color: var(--clr-black200);
    font-size: var(--size-base);
    font-weight: 400;
}

.our__services__section__container__2 {
    display: flex;
    justify-content: end;
    align-items: center;

}


/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .our__services__section__content__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin-top: 2rem;
    }

    .our__services__section__container__1 {
        padding-right: 0rem;
    }

    .services__point__container h2 {
        font-size: var(--size-2xl);
    }
    
    .services__point__container p {
        font-size: var(--size-sm);
    }
}

/* xl */
@media (min-width: 1280px) {

    .our__services__section__content__wrapper {
        margin-top: 2rem;
    }

    .our__services__section__container__1 {
        padding-right: 2rem;
    }

    .services__point__container h2 {
        font-size: var(--size-3xl);
    }
    
    .services__point__container p {
        font-size: var(--size-base);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/*--------------------------------*/
/* Our Services Section END */
/*--------------------------------*/


/*--------------------------------*/
/* About Us Section START */
/*--------------------------------*/

.about__us__section {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about__us__section__container__1 {
    order: 2;
}

.about__us__section__container__1 img {
    border-radius: 1rem;
}

.about__us__section__container__2 {
    order: 1;
}

.about__us__section__container__2 h1 {
    font-size: var(--size-5xl);
    font-weight: 600;

    margin-bottom: 1rem;
}

.about__us__section__container__2 div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 1rem;

    margin-bottom: 1.5rem;
}

.about__us__section__container__2 div p {
    font-size: var(--size-base);
    font-weight: 400;
}



/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .about__us__section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .about__us__section__container__1 {
        order: 1;
    }
    
    .about__us__section__container__2 {
        order: 2;
    }

    .about__us__section__container__2 h1 {
        font-size: var(--size-4xl);
        font-weight: 600;
    }

    .about__us__section__container__2 div p {
        font-size: var(--size-sm);
        font-weight: 400;
    }
}

/* lg */
@media (min-width: 1024px) {

    .about__us__section {
        gap: 3rem;
    }

    .about__us__section__container__2 h1 {
        font-size: var(--size-5xl);
        font-weight: 600;
    }

    .about__us__section__container__2 div p {
        font-size: var(--size-base);
        font-weight: 400;
    }
}

/* xl */
@media (min-width: 1280px) {

    .about__us__section__container__2 h1 {
        font-size: var(--size-6xl);
        font-weight: 600;
    
        margin-bottom: 1rem;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/*--------------------------------*/
/* About Us Section END */
/*--------------------------------*/


/*--------------------------------*/
/* Why Choose Us Section START */
/*--------------------------------*/

.why__choose__us__content__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: 1rem;

    padding-top: 2.5rem;
}

.why__choose__us__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.2rem;

    background-color: var(--clr-pink-light-900);
    padding: 2rem 0.5rem;
    border-radius: 1rem;
}

.why__choose__us__box {
    cursor: pointer;
}

.why__choose__us__box__image {
    width: 80px;
    margin-bottom: 1rem;
}

.why__choose__us__box__title {
    color: var(--clr-black);
    font-size: var(--size-1xl);
    font-weight: 500;
}

.why__choose__us__box__description {
    color: var(--clr-black200);
    font-size: var(--size-sm);
    font-weight: 400;
}


/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
@media (min-width: 640px) {

    .why__choose__us__box__title {
        color: var(--clr-black);
        font-size: var(--size-2xl);
        font-weight: 500;
    }

    .why__choose__us__box {
        padding: 2rem 1rem;
    }
}

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {

    .why__choose__us__content__wrapper {
        grid-template-columns: repeat(4, 1fr);
        padding-top: 2.5rem;
    }

    .why__choose__us__box__title {
        color: var(--clr-black);
        font-size: var(--size-1xl);
        font-weight: 500;
    }
    
    .why__choose__us__box__description {
        color: var(--clr-black200);
        font-size: var(--size-sm);
        font-weight: 400;
    }
}

/* xl */
@media (min-width: 1280px) {

    .why__choose__us__box__title {
        color: var(--clr-black);
        font-size: var(--size-2xl);
        font-weight: 500;
    }
    
    .why__choose__us__box__description {
        color: var(--clr-black200);
        font-size: var(--size-sm);
        font-weight: 400;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */


/*--------------------------------*/
/* Why Choose Us Section END */
/*--------------------------------*/

/*--------------------------------*/
/* Contact Us Section START */
/*--------------------------------*/

.contact__us__section__content__wrapper {
    display: grid;
    justify-content: stretch;
    align-items: center;
    gap: 3rem;

    padding-top: 2.5rem;
}

.contact__us__section__container__1 {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    gap: 1rem;    
}

.contact__us__details__box {
    background-color: var(--clr-blue-light-900);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid var(--clr-blue-light-900);

    transition: all 0.3s;
}

.contact__us__details__box:hover {
    border: 2px solid var(--clr-blue000);
}

.contact__us__details__box__icon__wrapper {
    width: 75px;
    height: 75px;
    background-color: var(--clr-blue000);
    border-radius: 20rem;

    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__us__details__box__icon {
    font-size: 2.2rem;
    color: var(--clr-white);
}

.contact__us__details__box__icon__whatsapp {
    font-size: 2.8rem;
}

.contact__us__details__box__title {
    color: var(--clr-black);
    font-size: var(--size-2xl);
    font-weight: 500;
}

.contact__us__details__box__description {
    color: var(--clr-black200);
    font-size: var(--size-base);
    font-weight: 400;
    line-height: 1.3rem;
}

.contact__us__google__map__wrapper iframe {
    width: 100%;
    border-radius: 1rem;
}



/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .contact__us__section__content__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
        gap: 0rem;
    
        padding-top: 2.5rem;
    }

    .contact__us__section__container__1 {
        gap: 1.5rem;
        padding-right: 2rem;
    }

    .contact__us__details__box {
        background-color: var(--clr-blue-light-900);
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1rem;
        border-radius: 1rem;
        border: 2px solid var(--clr-blue-light-900);
    
        transition: all 0.3s;
    }

    .contact__us__details__box__icon__wrapper {
        width: 65px;
        height: 65px;
    }

    .contact__us__details__box__icon {
        font-size: 1.8rem;
        color: var(--clr-white);
    }

    .contact__us__details__box__icon__whatsapp {
        font-size: 2.3rem;
    }
}

/* lg */
@media (min-width: 1024px) {

    .contact__us__details__box {
        background-color: var(--clr-blue-light-900);
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 1.5rem;
        border-radius: 1rem;
        border: 2px solid var(--clr-blue-light-900);
    
        transition: all 0.3s;
    }

    .contact__us__google__map__wrapper iframe {
        border-radius: 1rem;
    }
}

/* xl */
@media (min-width: 1280px) {
    .contact__us__section__container__1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 1.5rem;
    }

    .contact__us__details__box {
        width: 480px;
    }

    .contact__us__details__box__title {
        color: var(--clr-black);
        font-size: var(--size-2xl);
        font-weight: 500;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/*--------------------------------*/
/* Contact Us Section END */
/*--------------------------------*/