/* hero */

.hero--image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
}

/* caption */

.hero--caption {
    background-color: rgba(0, 166, 81, 0.94);
    height: 100vh;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

/* top */

.hero--caption.top {
    font-weight: 600;
    background-color: transparent;
    letter-spacing: 0.5px;
    color: var(--color-text-dim);
    height: auto;
}

.hero--caption.mid {
    font-weight: 600;
    background-color: transparent;
    height: auto;
    letter-spacing: 0.8px;
}

.hero--caption.bottom {
    font-weight: 500;
    background-color: transparent;
    color: var(--color-text-dim);
    height: auto;
}

/* blob */

.hero--blob {
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 240px;
    height: 230px;
    z-index: 1;
    object-fit: contain;
}

.hero--blob:nth-of-type(2) {
    transform: scale(0.6);
}

/* alternative */

.hero-promotion--container {
    margin-top: 55px;
}

/* promotion */

.hero-alt--promotion {
    background-color: var(--color-theme-secondary);
    font-size: 13px;
    padding: 12px 0px;
    font-weight: 600;
    letter-spacing: 1px;
    /* animation: changePromotion 5s ease-in-out 2s infinite alternate; */
}

@keyframes changePromotion {
    from {
        background-color: var(--color-theme-secondary);
    }
    to {
        background-color: var(--color-theme);
    }
}

@media (min-width: 1px) and (max-width: 575px) {
    .hero-alt--promotion {
        padding: 7px 4px;
        line-height: 18px;
    }
}

.hero-alt--promotion span {
    color: white;
}

.hero-alt--promotion span.text {
    width: 100%;
    display: block;
}

.hero-alt--promotion span.text span {
    font-size: 14px;
    margin-left: 2px;
    font-weight: 700;
}

.hero-alt--promotion span.text span:before {
    content: '"';
    margin-right: 1px;
}

.hero-alt--promotion span.text span:after {
    content: '"';
    margin-left: 1px;
}

/* slider */

.hero-alt--slide {
    height: 85vh;
    margin-top: 96px;
}

.banners--swiper-1 .swiper-slide {
    background-color: white !important;
}

@media (min-width: 1px) and (max-width: 1199px) {
    .hero-alt--slide {
        height: auto;
    }
}

.hero--alt-image {
    width: 100%;
    height: 84%;
    object-fit: cover;
    border-radius: 20px;
    object-position: center center;
}

@media (max-width: 1199px) {
    .hero--alt-image {
        height: 580px;
    }
}

@media (max-width: 575px) {
    .hero--alt-image {
        height: 300px;
    }
}

.hero-alt--content {
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
}

.hero-alt--content h2 {
    letter-spacing: 0.5px;
    font-size: 32px;
    max-width: 600px;
    line-height: 40px;
    text-transform: uppercase;
}

@media (min-width: 1px) and (max-width: 575px) {
    .hero-alt--content h2 {
        max-width: 300px;
        margin: auto;
    }
}

.hero-alt--content h5 {
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 25px;
    max-width: 490px;
}

.hero-alt--content h5 span.primary {
    color: var(--color-theme-secondary);
    font-weight: 600;
}

.hero-alt--content h5 span.secondary {
    color: var(--color-theme);
    font-weight: 600;
}

/* button group */

.hero-alt--group .btn:hover,
.hero-alt--group .btn.active {
    /* transform: scale(1.1); */
    background-color: black;
    color: white;
}

.hero-alt--group .btn {
    border: 1px solid var(--color-text-reverse);
    padding: 7px 25px;
    border-radius: 2px !important;
    margin: 0px 10px;
    font-weight: 600;
    color: var(--color-text-reverse);
    letter-spacing: 0.5px;
}

.hero--separator {
    width: 60%;
    display: none;
    border-color: #eeeeee;
    margin: auto;
    border-radius: 50%;
    border-width: 2px;
    border-style: dashed;
}

/* sample meals */

.swiper-slide.sample-meals {
    width: auto;
}

.swiper-slide.plan--col {
    width: auto;
}

.sample-meals.swiper-slide-active .sample-meals--wrapper {
    transform: scale(1.08);
}

.sample-meals--wrapper {
    background-color: white;
    padding: 0px 5px;
    padding-right: 20px;
    /* box-shadow: 0px 0px 12px #d3d3d3; */
    /*border: 1px solid #e4e4e4;*/
    border-radius: 10px;
    margin-bottom: 28px;
    margin-top: 35px;
    max-width: 380px;
    min-width: 380px;
}

@media (min-width: 1px) and (max-width: 575px) {
    .sample-meals--wrapper {
        padding: 0px 15px;
        max-width: 250px;
        min-width: 250px;
        margin: auto;
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

.sample-meals--wrapper:hover,
.sample-meals--wrapper:focus {
    /* box-shadow: 0px 0px 12px #b8b8b8; */
    transform: scale(1.04);
}

@media (min-width: 1px) and (max-width: 767px) {
    .sample-meals--wrapper:hover,
    .sample-meals--wrapper:focus {
        transform: unset;
    }
}

.sample-meals--image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1px) and (max-width: 575px) {
    .sample-meals--image {
        width: 100%;
        height: 125px;
        margin-top: -18px;
        object-fit: contain;
        object-position: center;
    }
}

.sample-meals--title {
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.sample-meals--cuisine {
    font-size: 9px;
    text-align: center;
    font-weight: 600;
    background-color: var(--color-theme-secondary);
    letter-spacing: 0.8px;
    display: inline-block;
    padding: 0px 10px;
    margin: auto;
    margin-bottom: 12px;
    color: white;
    border-radius: 2px;
}

/* macro */

.sample-meals--macro {
    border: 1px solid #000000;
    border-radius: 4px;
    width: 21%;
    padding: 10px 0px 6px;
}

.sample-meals--macro span:first-of-type {
    display: block;
    font-weight: 600;
    font-size: 9px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

@media (min-width: 1400px) {
    .sample-meals--macro span:first-of-type {
        font-size: 9px;
    }
}

.sample-meals--macro span:last-of-type {
    display: block;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.3px;
    color: black;
}

.sample-meals--macro span:last-of-type span {
    display: inline;
    margin-left: 1px;
    font-size: 11px;
    color: black !important;
}

/* coloring */
.sample-meals--macro:nth-of-type(1) {
    /* border-color: #f78a4d; */
}

.sample-meals--macro:nth-of-type(1) span:first-of-type {
    /* color: #f78a4d; */
}

.sample-meals--macro:nth-of-type(2) {
    /* border-color: #68bd52; */
}

.sample-meals--macro:nth-of-type(2) span:first-of-type {
    /* color: #68bd52; */
}

.sample-meals--macro:nth-of-type(3) {
    /* border-color: #62aadd; */
}

.sample-meals--macro:nth-of-type(3) span:first-of-type {
    /* color: #62aadd; */
}

.sample-meals--macro:nth-of-type(4) {
    /* border-color: #fcb814; */
}

.sample-meals--macro:nth-of-type(4) span:first-of-type {
    /* color: #fcb814; */
}

.sample-meals--desc {
    font-size: 11px;
    color: #000000;
    font-weight: 500;
    margin-top: 12px;
    letter-spacing: 0.4px;
    height: 36px;
}

.sample-meals--inner {
    padding: 20px 0px;
}

@media (min-width: 1px) and (max-width: 575px) {
    .sample-meals--inner {
        padding: 16px 0px 20px;
    }
}

.sample-meals--type {
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-theme);
    margin-bottom: 0px;
}
