/*-----------------------*/
/* Top Banner Section START */
/*-----------------------*/

body main {
    margin-bottom: 500px;
}

.hero__section {
    height: 452px;
    width: 100%;
    background-image: url("../content/clips-check-order-banner-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: center;

    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;
    text-align: center;
}

.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;
    }

    .hero__Section__content__wrapper {    
        margin-top: 8rem;
    }
}

/* 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-top: 8rem;
    }
}

/* 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) {} */


/*-----------------------*/
/* Top Banner Section END */
/*-----------------------*/


/*-----------------------*/
/* Check Order Section START */
/*-----------------------*/

.check__order__from__input__field__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.check__order__input__field__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.check__order__input__field {
    width: 220px;
    padding: 12px 28px 12px 28px;
    border-radius: 0.6rem;
    border: 1px solid var(--clr-black);
}

.check__order__form__submit__btn {
    background-color: var(--clr-yellow000);
    color: var(--clr-black);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 28px 10px 28px;
    border-radius: 0.6rem;
    border: 1px solid var(--clr-black);
    transition: all 0.3s;
}

.check__order__form__submit__btn:hover {
    /* opacity: 0.9; */
    background-color: var(--clr-pink000);
    color: var(--clr-white);
}





/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
@media (min-width: 380px) {

    .check__order__input__field__container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }
}

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
@media (min-width: 640px) {

    .check__order__input__field__container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }
}

/* md */
@media (min-width: 768px) {

    .check__order__input__field {
        width: 320px;
        padding: 12px 28px 12px 28px;
        border-radius: 0.6rem;
        border: 1px solid var(--clr-black);
    }
}

/* lg */
@media (min-width: 1024px) {

    .check__order__input__field {
        width: 520px;
        padding: 12px 28px 12px 28px;
        border-radius: 0.6rem;
        border: 1px solid var(--clr-black);
    }
    
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/*-----------------------*/
/* Check Order Section END */
/*-----------------------*/