.page-header .inner-wrapper {
    position: relative;
    height: 100%;
}

.page-header .container-with-background {
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ELEMENTS */

.tomato::before {
    content: "";
    background: url(../images/elements/tomato.png) no-repeat center;
    background-size: contain;
    filter: grayscale(50%);
    position: absolute;
    width: 200px;
    height: 200px;
    right: 0;
    top: 0;
}

.cook1::before {
    content: "";
    background: url(../images/elements/cook1.png) no-repeat center;
    background-size: contain;
    filter: grayscale(50%);
    position: absolute;
    width: 350px;
    height: 350px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

/* ---END OF ELEMENTS--- */

.wrapper-class {
    padding: 40px 35px;
}

.cs-hospitality-header {}

.cs-hospitality-header h1 {
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 28px;
    margin: 10px 0px;

    color: var(--color-secondry);
}

.span1 {
    color: var(--color-secondry);
}

.span2 {
    color: var(--color-foreground);
}

/* CS ABOUT */

.cs-hospitality-header h2 {
    font-size: 60px;
    text-transform: capitalize;
    font-weight: bolder;
}

.simple-para p {
    margin-bottom: 12px;
    margin-top: 12px;
}

.cs-about {
    overflow: hidden;
}

.cs-about .inner-wrapper.tomato::before {
    transform: rotate(30deg);
    right: -40px;
    opacity: 0.8;
    top: 2%;
}

.cs-about .inner-wrapper {
    position: relative;
    padding: 45px 15px;
}


.cs-about h2 {
    font-size: 22px;
    font-weight: bolder;
}

.cs-about h3 {
    font-size: 60px;
    font-weight: bolder;
    text-align: left;
}

.cs-about .chef-image-container {
    position: relative;
    z-index: 69;
}

.text-scroller {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.text-scroller .wrapper {
    display: flex;
    align-items: baseline;
    overflow-x: visible;
    gap: 20px;
    animation: text-scroll 50s linear infinite;
    transition: all ease 0.6s;
}

.text-scroller.invert .wrapper {
    animation: text-scroll-invert 50s linear infinite;
}

@keyframes text-scroll {

    0% {
        transform: translateX(0) translateZ(0);
    }

    100% {
        transform: translateX(-100%) translateZ(0);
    }

}

@keyframes text-scroll-invert {

    0% {
        transform: translateX(-100%) translateZ(0);
    }

    100% {
        transform: translateX(0) translateZ(0);
    }

}

.text-scroller .text-stroke-effect {
    font-size: 120px;
    text-align: center;
    width: 100%;
    -webkit-text-stroke-color: var(--color-secondry);
    -webkit-text-stroke-width: 1px;
    color: transparent;

    font-family: var(--font-forum);

    padding-right: calc(61px / 2);
    padding-left: calc(61px / 2);
    text-transform: uppercase;
    display: inline-block;

    white-space: nowrap;
    margin: 0 10px;
    /* Add space between spans */
    white-space: nowrap;
}

.for-new .inner-wrapper {
    padding: 20px 15px;
}

.for-new .left-container {
    background: var(--color-foreground);
    border-radius: 0px 20px 20px 0;
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
}

.for-new.for-old .left-container {
    border-radius: 20px 0px 0px 20px;
}

.left-container::before {
    opacity: 0.8;
    right: -80px;
}

.for-new .simple-para {
    padding-right: 20px;

}

.for-new p {
    font-size: 14px;
    margin-right: 25px;
}

.item-box {
    position: relative;

    margin: 10px;
}

.item-box .box-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 22px;
    box-sizing: border-box;
    border: 2px solid var(--color-secondry);
    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 45px;
    color: var(--color-white);
}

.item-box .content-wrapper {
    position: relative;
    width: 150px;
    box-sizing: border-box;
    padding: 2px;
    margin: 10px 2px;
}

.item-box .content-wrapper p {
    margin: 0;
    width: 100%;

}

.box-wrapper::after {
    content: '';
    border-radius: 22px;
    width: 125px;
    height: 125px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 69;
    border: 1px solid var(--color-secondry);
}

.items-container {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.right-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background: var(--color-white);
    border-radius: 25px;
    padding: 30px;
}

.chef-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    margin: 0 15px;
}

.chef-item-wrapper .content-wrapper {
    color: var(--color-background) !important;
    text-align: center;
}

.chef-item-wrapper .content-wrapper h4 {
    color: var(--color-foreground) !important;

}

.chef-item-wrapper .inner-wrapper {
    position: relative;
    border-radius: 25px;

}

.chef-item-wrapper .image-container {
    height: 350px;
    width: 100%;
    position: relative;
    z-index: 6969;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container .image-wrapper {
    width: 250px;
    height: 250px;
    position: relative;
}

.chef-item-wrapper .image-container .background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;

    animation: spin-motion 15s linear infinite;
    transition: all ease 0.6s;
}

@keyframes spin-motion {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

.cs-prev,
.cs-next {
    position: absolute;
    bottom: -40px;
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);

    font-size: 25px;
    color: var(--color-secondry);
    border: 2px solid var(--color-secondry);
}

.cs-prev {
    left: 40%;
}

.cs-next {
    left: 60%;
}

/* CS SERVICES */
.cs-services .inner-wrapper {
    width: 100%;
    position: relative;
    height: 100%;
    padding: 30px 10px;
    background: var(--color-foreground);
}

.service-box-1 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    margin: 10px 5px;
}

.service-box-1 .wrapper .content-container h3 {
    font-size: 35px;
    font-weight: 900;
    text-shadow: 7px 11px 8px var(--color-foreground);
}

.service-box-1 .wrapper .content-container {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 1;
    background: none;
    padding: 30px;
    z-index: 6969;
}

.service-box-1 .wrapper .image-container img {
    filter: grayscale(60%);

}

.service-box-1 .wrapper .image-container::before {
    width: 100%;
    content: '';
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: var(--color-foreground);
    opacity: 0.2;
    z-index: 9;
}

.service-box-1 .wrapper .image-container {
    width: 100%;
    height: 100%;
}

.service-box-1 .wrapper {
    border-radius: 22px;
    border: 2px solid var(--color-secondry);
    /* padding: 20px; */
    height: 450px;
    overflow: hidden;
}

.portfolio .inner-wrapper {
    width: 100%;
    position: relative;
    height: 100%;
    padding: 30px 10px;
}

.portfolio .brand-box {
    position: relative;
    margin: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.portfolio .brand-box .image-container {
    overflow: hidden;
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-secondry);
}

.follow-btn {
    background: var(--color-secondry);
    margin: 0;
    padding: 8px;
    font-size: 14px;
}

.follow-btn:hover {
    border: 1px solid var(--color-secondry);
}


/* ------------------------------------------------------- */
/* PAGE: RECIPE */
/* ******************************************************* */

.latest-recipe .inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background-color: var(--color-foreground);
}

.recipe-style-1 {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.recipe-style-1 .image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.recipe-style-1 .wrapper {
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid var(--color-secondry);
}

.tags-container {
    position: absolute;
    z-index: 69;
    left: 0;
    top: 0;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tag-item {
    background: var(--color-secondry);
    padding: 3px 5px;
    text-decoration: none;
    font-weight: bolder;
    color: var(--color-foreground);
    font-size: 12px;

    transition: all ease 0.7s;
}

.tag-item:hover {
    transform: translateY(-10px);
}

.res-list {
    position: relative;
}

.res-list .main-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.res-list .main-list ul {
    margin: 2px 5px;
    text-decoration: none;
    color: var(--color-white);
    align-items: center;
    display: flex;
    font-size: .75rem;
}

.res-list a {
    text-decoration: none;
    font-weight: bolder;
    color: var(--color-white);
}

.recipe-style-2 .wrapper {
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    border: 3px solid var(--color-secondry);

    transition: all ease 0.6s;
}

.recipe-style-2:hover .wrapper {
    transform: rotateZ(5deg);
}

.recipe-style-2 .wrapper .overlay-text {
    position: absolute;
    z-index: 69;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bolder;
}



.recipe-style-2 .image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.recipe-style-2 .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background: var(--color-secondry);
    filter: blur(10px);
    opacity: 0.5;
}

.chef-special .inner-wrapper {

    background: var(--color-background);

}

.search-container {
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.search-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-control.search-input {
    border: none;
    background: var(--color-white);
    padding-left: 20px;
    font-size: 1rem;
    height: 50px;
    margin: 0;
}

.form-control.search-input:focus {
    box-shadow: none;
    outline: none;
}

.btn-search {
    /* background-color: #007bff;
    color: white; */
    border-radius: 50px;
    padding: 10px 20px;
    border: none;
    transition: all 0.3s ease;
}

.btn-search:hover {
    /* background-color: #0056b3; */
    transform: scale(1.05);
}

.search-icon {
    color: #6c757d;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}


/* recipe Detail Page */
.recipe-detail .inner-wrapper {
    padding-top: 4.45rem;
    padding-bottom: 3rem;
}

.layout-1 .ctg-name {
    color: var(--color-secondry);
    padding: 5px;
    padding-left: 0;
    margin-bottom: 5px;
}

.layout-1 .recipe-heading {
    color: var(--color-white);
}

.layout-1 .entry-meta {
    font-size: 13px;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.layout-1 .entry-meta .single-meta {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.layout-1 .entry-meta .single-meta .item-rating {
    margin-bottom: 10px;
}

.layout-1 .entry-meta .single-meta .item-rating i {
    color: var(--color-secondry);
}

.item-rating li {
    display: inline-block;
}

.layout-1 .action-item {
    font-size: 10px;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.action-item li {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #d5d5d5;
    line-height: 1;
    margin-bottom: 5px;
}

.action-item li button {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #a8a8a8;
    font-size: 24px;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.action-item li.action-share-hover {
    position: relative;
}

.action-item li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

/*.layout-1 .action-item li.action-share-hover .action-share-wrap {
    position: absolute;
    top: 40px;
    padding-top: 10px;
    z-index: 9999;
    left: 0;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.layout-1 .action-item li.action-share-hover:hover .action-share-wrap:before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.7s;
}



.layout-1 .action-item li.action-share-hover .action-share-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid var(--color-secondry);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.1s;
}


 .layout-1 .action-item li.action-share-hover .action-share-wrap a {
    color: var(--color-foreground);
    background-color: var(--color-secondry);
    display: block;
    padding: 10px 12px;
    transform: translateX(-40px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.layout-1 .entry-meta .single-meta a i {
    margin-right: 5px;
    color: var(--color-secondry);
    font-size: 14px;
}

.layout-1 .entry-meta .single-meta a {
    position: relative;
    text-decoration: none;
    color: var(--color-secondry);
}

.layout-1 .action-item li.action-share-hover .action-share-wrap a:first-child {
    padding: 20px 12px 10px;
}

.layout-1 .action-item li.action-share-hover:hover .action-share-wrap a:nth-child(1n) {
    transition-delay: 0.1s;
}

.layout-1 .action-item li.action-share-hover:hover .action-share-wrap a {
    transform: translateX(0);
} */

.layout-1 .action-item li.action-share-hover {
    position: relative;
}

.layout-1 .action-item li.action-share-hover .action-share-wrap {
    position: absolute;
    top: 0;
    left: 120%;
    display: flex;
    gap: 8px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.layout-1 .action-item li.action-share-hover:hover .action-share-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.layout-1 .action-item li.action-share-hover .action-share-wrap a {
    color: #fff;
    background: var(--color-secondry);
    padding: 10px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.layout-1 .action-item li.action-share-hover .action-share-wrap a:hover {
    background: var(--color-primary);
}

.layout-1 .item-figure {
    position: relative;
    height: 500px;
    overflow: hidden;
    width: 100%;
    border: 2px solid var(--color-secondry);
    border-radius: 1px;
}

.item-feature {
    margin-bottom: 35px;
}

.item-feature ul {
    margin-left: -1px;
    margin-right: -1px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.item-feature ul li {
    margin-top: 2px;
    max-width: 25%;
    flex: 0 0 25%;
    padding-left: 1px;
    padding-right: 1px;
}

.item-feature ul li .feature-wrap {
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
}

.item-feature ul li .media {
    height: 100%;
    padding: 12px 5px;
    align-items: center;
    display: flex;
}

.item-feature ul li .feature-icon {
    font-size: 24px;
    line-height: 1;
}

.layout-1 .item-feature ul li .feature-icon i,
.layout-1 .item-feature ul li .feature-icon i:before {
    font-size: 30px;
    font-weight: 600;
    color: #a8a8a8;
}

.media-body.space-sm {
    margin-left: 15px;
}

.item-feature ul li .feature-title {
    font-size: 18px;
    color: #111111;
    font-weight: 600;
}

.item-feature ul li .feature-sub-title {
    font-size: 16px;
    color: #111111;
    font-weight: 600;
}

.making-elements-wrap .ingridients-wrap {
    background-color: #f8f8f8;
    padding: 35px;
    margin-bottom: 30px;
}

.making-elements-wrap .item-title {
    font-weight: 700;
    font-size: 24px;
    color: #111111;
    margin-bottom: 30px;
}

.making-elements-wrap .item-title i {
    color: var(--color-foreground);
    margin-right: 10px;
}

.making-elements-wrap .ingridients-wrap .adjust-servings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px 10px 10px 15px;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 37px;
}


.making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity {
    width: 124px;
    position: relative;
}

.making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity .quantity-holder {
    justify-content: flex-end;
}

.making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity .quantity-holder .quantity-input {
    width: 50px;
    flex: inherit;
    height: 30px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    margin: 0 5px;
    color: #444444;
}

.layout-1 .making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity .quantity-holder .btn-quantity-select button {
    color: #444444;
    background: #f8f8f8;
    font-size: 13px;
    cursor: pointer;
    width: 32px;
    height: 30px;
    box-shadow: none;
    border: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity .quantity-holder {
    justify-content: flex-end;
}

.making-elements-wrap .ingridients-wrap .checkbox {
    padding-left: 5px;
    margin-bottom: 22px;
}

.making-elements-wrap .ingridients-wrap .checkbox input[type="checkbox"] {
    display: none;
}

.making-elements-wrap .ingridients-wrap .checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-top: 0;
    margin-bottom: 0;
    color: #444444;
}

.making-elements-wrap .ingridients-wrap .checkbox label:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 1px;
    margin-left: -5px;
    border: 1px solid #cccccc;
    border-radius: 2px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity .quantity-holder .btn-quantity-select .quantity-minus {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.making-elements-wrap .ingridients-wrap .adjust-servings .servings-quantity .quantity-holder .btn-quantity-select button:hover {
    color: #ffffff;
    background-color: var(--color-secondry);
}

.making-elements-wrap .ingridients-wrap .adjust-servings .servings-title {
    color: #444444;
    font-weight: 600;
    margin-top: 2px;
}

.making-elements-wrap .ingridients-wrap .checkbox {
    padding-left: 5px;
    margin-bottom: 22px;
}

.layout-1 .making-elements-wrap .nutrition-wrap {
    background-color: var(--color-secondry);
    padding: 35px;
    margin-bottom: 30px;
}

.layout-1 .making-elements-wrap .item-title {
    font-weight: 700;
    font-size: 24px;
    color: #111111;
    margin-bottom: 30px;
}

.layout-1 .making-elements-wrap .nutrition-wrap .nutrition-list {
    border-radius: 4px;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.13);
}

.making-elements-wrap .nutrition-wrap .nutrition-list li {
    padding-left: 35px;
    padding-right: 35px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.making-elements-wrap .nutrition-wrap .nutrition-list li {
    padding-left: 0;
}

.making-elements-wrap .nutrition-wrap .nutrition-list li .nutrition-name {
    color: #111111;
}

.making-elements-wrap .nutrition-wrap .nutrition-list li .nutrition-value {
    font-size: 19px;
    font-weight: 600;
    color: #444444;
}

.step-wrapper .image-container {
    height: 350px;
    position: relative;
    width: 100%;
}

.step-wrapper .step-counter i {
    margin-right: 15px;
    color: var(--color-secondry);
}

.side-bar .side-bar-wrapper {
    position: relative;
    padding: 10px 15px;
    margin: 5px;
}

.side-bar .latest-res .latest-card .empty-wrapper {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.side-bar .latest-res .latest-card .empty-wrapper a {
    text-decoration: none;
    color: inherit;
}

.side-bar .latest-res .latest-card .empty-wrapper .single-meta {
    color: var(--color-secondry);
}

.side-bar .latest-res .latest-card .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.subscribe-box .wrapper .cta-btn {
    width: 100%;
}

.subscribe-box .wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 15px 15px;
    background: var(--color-foreground);

}


.author-details .profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.author-details .profile .image-container {
    position: relative;
    width: 120px;
    height: 120px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-secondry);
    transition: all ease 0.6s;
}



/* VIDEO */
/* --------------------------------------------------------------------------------------- */
/**
  * Plugin Name:  Click Image Play YouTube Video
  * Plugin URI:   https://github.com/sricharankrishnan/click-image-play-youtube-video
  * Description:  Click Image Play YouTube Video is a Jquery based plugin, designed to be integrated into your web app on the 
                  client side. It provides a simple yet effective user interface (in the form of an overlay), to help play 
                  youtube embeded videos based on a click event.
  * Requirements: Jquery version 3 upwards, CSS, Sass (only if you are using this in the pre compile phase)
  * Author:       Sricharan Krishnan | sricharan.krishnan@gmail.com
  * Author URI:   https://github.com/sricharankrishnan
  **/

/* This stylesheet is exclusively for the plugin. Incase you would like to make some changes, would recommend you import this in your stylesheet and then make the changes as per your liking. */
.videoPlayerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.5);
    transition-property: all;
    -moz-transition-property: all;
    -webkit-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-duration: 0.25s;
    -webkit-transition-duration: 0.25s;
    -ms-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
}

.videoPlayerOverlay .closeIcon {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 3rem;
    z-index: 200;
    padding: 10px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    width: 30px;
    height: 30px;
    transition-property: transform;
    -moz-transition-property: transform;
    -webkit-transition-property: transform;
    -o-transition-property: transform;
    -ms-transition-property: transform;
    transition-duration: 0.25s;
    -webkit-transition-duration: 0.25s;
    -ms-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    display: flex;
}

.videoPlayerOverlay .closeIcon img {
    width: 100%;
    height: auto;
}

.videoPlayerOverlay iframe {
    max-width: 853px;
    max-height: 480px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.videoPlayerOverlay.hiddenTransform {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
}

@media only screen and (min-width: 1200px) {
    .videoPlayerOverlay .closeIcon:hover {
        cursor: pointer;
        background: var(--primary-color);
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}


/* ------------------------------------------------------- */

.upcoming .class-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

    cursor: pointer;

    padding: 15px;
}

.upcoming .inner-wrapper {
    padding: 25px 5px;
}

.upcoming .class-wrapper .wrapper {
    border-radius: 23px;
    overflow: hidden;

    height: 500px;

    position: relative;


    background: var(--color-foreground);

    border: 2px solid var(--color-secondry);
}

.upcoming .class-wrapper .wrapper .image-container {
    height: 200px;
    position: relative;
}

.upcoming .bottom-container .loc .ico {
    color: var(--color-secondry) !important;
    font-size: 20px;
}

.upcoming .price-container {
    position: absolute;
    right: -15px;
    bottom: -20px;
    padding: 5px;
    overflow: hidden;

}

.upcoming .price-container .inner-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    padding: 25px;
    background: var(--color-secondry);
    border-radius: 50%;
    overflow: hidden;
    color: var(--color-foreground);
}

.upcoming .price-container span {
    text-align: center;
    font-weight: bolder;

}

.upcoming .bottom-container .loc {
    font-size: 18px;
    gap: 15px;
}

.upcoming .bottom-container {
    color: var(--color-white) !important;
    padding: 15px;

}

.upcoming .bottom-container h4 {
    color: var(--color-white) !important;
    font-size: 30px;
}

.upcoming .cs-prev,
.upcoming .cs-next {
    bottom: 0;
    top: 50%;
    z-index: 99999;
}

.upcoming .cs-prev {
    left: -5%;
}

.upcoming .cs-next {
    right: -10%;
    left: unset;
}

/* --------------------------------------- */

.about-the-chef .inner-wrapper {
    position: relative;
    padding: 45px 10px;

    height: 100%;
}

.title-container .title-wrapper {
    padding: 5rem 30px 3rem !important;
}


.title-container .title-wrapper h2 {
    font-size: 55px;
}

.title-container {
    margin-left: 15px;
    margin-right: 15px;
}

.col-wrapper {
    padding: 12px;
    position: relative;
    width: 100%;
    height: 100%;
}

.about-the-chef .col-wrapper .simple-para {
    font-size: 16px;
    position: relative;
    text-align: start;
}

.about-the-chef .col-wrapper .image-container {
    position: relative;
    width: 100%;
    height: 550px;
}

.simple-contact .inner-wrapper {
    padding: 45px 10px;
    position: relative;
    background: var(--color-background);
}

/* ------------------------------------------------------- */

.para .inner-wrapper {
    position: relative;
    padding: 25px 10px;
    /* height: 100vh; */
}

.para .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000098;
    z-index: 99;
    padding: 0;
    margin: 0;
}

.para .inner-wrapper {
    z-index: 99999999999999;
}

.new-title {
    position: relative;
    width: 100%;
    padding: 30px 25px;
    text-align: center;
    margin: 15px;
}

.new-title p {
    font-size: 22px;
    font-weight: bolder;
}

.feast-feature .inner-wrapper {
    position: relative;
    padding: 15px;
}

.feast-card {
    overflow: hidden;
    position: relative;

    margin: 15px 20px;
}

.feast-card .card-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 2px solid var(--color-secondry);

}

.feast-card .image-container {
    width: 100%;
    position: relative;
    height: 180px;
    border-bottom: 3px solid var(--color-foreground);

}

.feast-card .bottom-contents {
    position: relative;
    width: 100%;
    background: var(--color-white);
    padding: 20px 16px;
}

.feast-card .bottom-contents .details-container {
    position: relative;
    padding: 8px 0px;
    color: #6c757d;
    font-size: 17px;
}

.feast-card .bottom-contents .price {
    position: relative;
    padding: 5px 0px;
    color: #6c757d;
    font-size: 17px;
}

.feast-card .bottom-contents .price p {
    margin: 0;
    font-size: 14px;
    text-transform: capitalize;
}

.feast-card .bottom-contents .details-container p {
    margin: 0;
    font-size: 16px;
}

.feast-card a {
    color: inherit;
    text-decoration: none;
}

.feast-card h4 {
    color: var(--color-foreground);
    font-weight: bolder;
    letter-spacing: 2px;

    font-size: 18px;
}

.feast-card .bold-p {
    font-size: 20px !important;
    font-weight: bolder;
    color: var(--color-foreground);
}

.bold-p {
    font-size: 20px !important;
    font-weight: bolder;
    color: var(--color-foreground);
}

.bold-p.invert {
    font-weight: 300;
}

.page-link {
    color: var(--color-foreground) !important;
}

.page-link.active {
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(21, 27, 37, 0.25);
    background-color: var(--color-foreground) !important;
    color: #f8f8f8 !important;
    border-color: var(--color-background) !important;
}


.feast-card .cta-wrapper {
    position: relative;
    width: 100%;
}

.search-filter .inner-wrapper {
    position: relative;
    padding: 20px 15px;
}

/* ------------------------------------------- */
/* ECOMMERCE */

.ecom-container .inner-wrapper {
    position: relative;
    padding: 30px 15px;
    display: block;
}

.ecom-container .filter-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
}

.ecom-container .filter-wrapper .wrapper {
    position: sticky;
    z-index: 908990;

    padding: 15px;
}


.accordion.store {
    --bs-accordion-border-color: var(--color-secondry);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(241, 204, 143, 0.35);
    --bs-accordion-btn-color: var(--color-secondry);

    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23F1CC8F' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23F1CC8F' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.accordion.store .accordion-item {
    background: var(--color-foreground) !important;
    color: var(--color-white) !important;

    transition: all ease 0.7s;
}

.accordion.store .accordion-item .accordion-header {
    background: var(--color-foreground) !important;
    color: var(--color-white) !important;

    transition: all ease 0.7s;
}

.accordion.store .accordion-item:focus {}

.accordion.store .accordion-item .accordion-header .accordion-button {
    color: inherit;
    background: inherit;
}

.accordion.store .accordion-item .accordion-collapse {
    background: var(--color-white) !important;
    color: var(--color-foreground) !important;
}

.ecom-container .products-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-box {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 15px;
    padding: 10px;
    background: none;
}

.product-box .wrapper {
    height: 380px;
    overflow: hidden;
    width: 100%;
}

.product-box .image-container {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.product-box .bottom-container {
    position: relative;
    bottom: 0;
    background: var(--color-white);
    padding: 10px;
    height: 100%;
}

.product-box .bottom-container .little-wrapper {
    margin-top: 2px;
    padding: 5px;
}

.product-box a {
    text-decoration: none;
    transition: all ease 0.6s;
    color: var(--color-foreground);
}

@media (max-width: 768px) {

    .product-box h4 {
        font-size: inherit;
    }

    .product-box {
        padding: 0;
        margin: 0;
        margin-top: 10px;
    }

    .product-box a {
        font-weight: 16px;
    }

    .product-box .wrapper {
        height: 285px;
    }

    .product-box .wrapper .image-container {
        height: 150px;
    }

    .bold-p {
        font-size: 16px !important;
    }

}

/* ----------------------------------------------------------------------- */
/* JOB HIRING MODE */

.job-search-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
}

.job-search-container .wrapper {
    background: var(--color-white);
    border-radius: 25px;
    width: 100% !important;
    /* padding: 15px; */

    border: 3px solid var(--color-secondry);
}


.search-filter-item {
    border-right: 1px solid var(--color-secondry);
}

.btn.search {

    border-radius: 20px;
    width: 100%;

}

.job-search-container .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 30px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    height: 100%;
}

.job-search-container .select2-container--default .select2-selection--single {
    background-color: none !important;
    border: none !important;
    border-radius: none !important;

    background: none;
}

.job-search-container .select2 {
    width: 100% !important;
    position: relative;
    height: 100% !important;

    padding: 20px 10px;
}

.job-search-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 65px !important;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 50px;
}

.select2-dropdown {
    background-color: var(--color-foreground) !important;
    border: 1px solid var(--color-secondry);
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-background);
    color: white;
}

.select2-container--default .select2-results__option--selected {
    background-color: var(--color-secondry);
}

.new-list {
    display: inline-block;
    text-align: center;
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0px auto;
}

.new-list li {
    display: inline-block;
    margin-right: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 15px 20px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-image: initial;
    transition: 0.35s;
}

.new-list li sub.counter_item {
    display: inline-block;
    line-height: 70px;
    text-align: left;
    /* vertical-align: middle; */
    font-size: 25px;

    color: var(--color-secondry);
}

.new-list .image-container {
    width: 180px;
    height: 180px;
    float: left;
}

.user-types {
    margin-top: 40px;
}

.job-cat .inner-wrapper {
    position: relative;
    padding: 25px 10px;
}

.category-wrapper {
    position: relative;
    padding: 15px 10px;
}

.category-wrapper .single-cat {
    width: 100%;
    height: 200px;
    background: var(--color-foreground);
    padding: 10px;

    border-radius: 8px;

    position: relative;

    margin-top: 10px;
}

.single-cat .counter {
    position: absolute;
    padding: 1px 3px;
    border-radius: 5px;
    background: var(--color-secondry);
    top: 0;
    right: 0;
    margin: 5px;
    font-size: 13px;
    color: var(--color-foreground);
    font-weight: bold;
}

.single-cat .title {
    position: relative;
    text-align: center;
    bottom: 0;

    margin-top: 15px;
    font-weight: bolder;
}

.single-cat .icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: var(--color-background);
    border: 2px solid var(--color-secondry);

    font-size: 30px;
}

.job-listing .inner-wrapper {
    position: relative;
    padding: 25px 10px;

}

.job-listing .job-card {
    display: flex;
    margin-top: 12px;
    align-items: center;
    flex-wrap: nowrap;

    border: 1px solid var(--color-secondry);
    padding: 15px;
    border-radius: 23px;
}

@media (max-width: 768px) {
    .job-listing .job-card {
        flex-direction: column;
    }


    .new-list li sub.counter_item {
        font-size: 16px;
    }

    .new-list li {
        margin-top: 10px;
        margin-right: 0;
    }

    .new-list li .image-container {
        width: 140px;
    }
}

.job-card .brand-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--color-secondry);
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.job-details {
    margin-right: 15px;
}

.job-footer ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.job-footer ul li {
    background: #ffffff;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 5px;
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}

/* ------------------------------------------------------------- */
/* Blog */

.has-slider .inner-wrapper {
    --my-border: 25px;
    height: 80vh !important;
    border-radius: 0px 0px var(--my-border) var(--my-border);
    overflow: hidden;
}

.has-slider .header-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.has-slider .header-slider .slider-item {
    position: relative;
    width: 100% !important;
    height: 100% !important;
}

.has-slider .content-container {
    position: absolute;
    bottom: 5%;
    left: 0;

    opacity: 1;
    background: none;
}

.has-slider .content-container .wrapper {
    position: relative;
    width: 100%;

    padding: 25px 20px;
}

.has-slider .author-details {
    float: right;
    text-align: end;
    font-size: bolder;
}

.has-slider .slider-item::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-foreground);
    z-index: 0;
    position: absolute;
    opacity: 0.3;
}

span.cat {
    backdrop-filter: blur(100%);
    /* Adjust blur intensity */
    background: rgba(255, 255, 255, 0.3);
    /* Adjust transparency */

    padding: 5px 14px;
    border-radius: 15px;

    margin: 10px 0px;
}

.has-slider .profile .image-container {
    width: 50px;
    height: 50px;
    background: var(--color-white);

    padding: 2px;
}

.has-slider .dot {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 10px;
}

.has-slider .profile .author-name {
    font-size: 22px;
    margin-bottom: 0;
}

.has-slider .profile {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.has-slider .date-time p {
    margin: 0;
}

/* playing with slick */

.has-slider .slick-slide {
    position: relative;
    height: 100% !important;
}

.has-slider .slick-slide>div:first-child {
    position: relative;
    width: 100%;
    height: 100%;
}

.has-slider .slick-list {
    position: relative;
    width: 100% !important;
    height: 100% !important;
}


.has-slider .slick-track {
    position: relative;
    height: 100% !important;
}

/* #blog-slider .full-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
} */

#blog-slider .full-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
}

#blog-slider .full-image-container:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

#blog-slider .slick-dots {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    /* transform: translate(-50%, 0); */
}

#blog-slider .slick-dots li {
    padding: 5px;
}

#blog-slider .slick-dots button {
    display: block;
    width: 13px;
    height: 13px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .25);
    transition: all .3s ease;
}

#blog-slider .slick-dots .slick-active button {
    background-color: var(--color-foreground);
}