/* Banner Start */

.wrap {
    position: relative;
    height: 90vh;
}

.video-bg {
    position: relative;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.video-bg iframe {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 60vw;
}

.homeBanner .banner-info {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 100%;
    transform: translateY(-50%);
}

.wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.4;
    z-index: 0;
}

.banner-info h1 {
    font-size: 60px;
    line-height: 80px;
    color: var(--white-color);
    font-family: var(--h1HeadingFont);
    position: relative;
    margin-bottom: 30px;
}

.banner-info h1::after {
    content: '';
    position: absolute;
    left: -20px;
    top: -30px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-color: var(--main-color);
    z-index: -1;
}

.banner-info ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-info ul li {
    position: relative;
    color: var(--white-color);
    padding-left: 20px;
    text-transform: uppercase;
}

.banner-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: var(--main-color);
}

/* Banner End */

/* Banner Bottom Start */

.bnr-btm-txt h2 {
    font-family: 'mythirdfont-Regular';
    color: var(--white-color);
    font-size: 56px;
    line-height: 66px;
    position: relative;
}

.bnr-btm-txt h2::before {
    content: url(../images/coma.png);
    position: absolute;
    left: -50px;
    top: -20px;
}

.bnr-btm-txt h2::after {
    content: url(../images/coma.png);
    position: absolute;
    right: 30%;
}

.banner-btm {
    padding: 50px 0;
}

/* Banner Bottom End */

/* Cook Start */

.cook-box {
    position: relative;
    height: 100%;
    padding: 0 50px;
}

.cook-box img {
    width: 100%;
    height: auto;
}

.cook-txt {
    background-color: var(--black-color);
    width: 85%;
    text-align: center;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: -40px auto 0;
}

.cook-txt-top {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
}

.cook-txt-btm {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
}

.cook-txt h3 {
    font-size: 30px;
    line-height: 30px;
    font-family: var(--h3HeadingFont);
    color: #fff;
    position: relative;
    z-index: 3;
}

.cook-li {
    width: 28%;
}

.cook-sec ul li .cook-shape {
    position: absolute;
    z-index: -1;
    width: auto;
}

.cook-sec ul li:nth-child(1) .cook-shape {
    left: 0;
    top: 0;
}

.cook-sec ul li:nth-child(2) .cook-shape {
    right: 25%;
    top: 10%;
}

.cook-sec ul li:nth-child(3) .cook-shape {
    right: -15%;
    top: -7%;
}

.cook-shape-side {
    position: absolute;
    bottom: 1%;
    right: 2%;
}

.cook-leaf-shape1 {
    position: absolute;
    top: -50px;
    left: 10px;
    z-index: 3;
}

.cook-leaf-shape2 {
    position: absolute;
    top: 20%;
    left: 1.5%;
}

/* Cook End */

/* About Start */

.about-img img {
    width: 100%;
}

.about-txt {
    width: 80%;
    padding-left: 150px;
}

.about-txt .heading {
    margin-bottom: 30px;
}

.about-txt .inner-para {
    margin-bottom: 70px;
}

.about-shape {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 30%;
    height: auto;
}

/* About End */

/* Recipes Start */

.feature-btn {
    display: flex;
    justify-content: flex-end;
}

.recipe-shape {
    position: absolute;
    top: 5%;
    left: 0;
    width: 7%;
    height: auto;
}

.recips-box {
    width: 100%;
    height: auto;
}

.recips-box:first-child {
    margin-bottom: 25px;
}

.recips-box img {
    width: 100%;
}

.recipe-img {
    width: 100%;
    height: 100%;
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipes a {
    display: block;
}

.recipe-img {
    height: 100%;
    position: relative;
}

.recipes-row {
    margin-top: 30px;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    transition: all ease-in-out 0.4s;
    font-size: 25px;
    z-index: 2;
}

.recipe-img:hover .gallery-icon {
    opacity: 1;
}

.recipe-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: all ease-in-out 0.4s;
}

.recipe-img:hover::after {
    opacity: 0.4;
}

.play-icon {
    width: 40px !important;
}

/* Recipes End */

/* Travel Start */

.travel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e8e8e8;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.travel-img img {
    width: 100%;
}

.secProductSlider {
    padding-bottom: 50px;
    margin: 0 -15px;
}

.secProductSlider .slick-slide {
    padding: 0 15px;
}

.travel-row {
    margin-top: 50px;
}

.travel-img {
    position: relative;
}

.travel-img:hover .gallery-icon {
    opacity: 1;
}

.travel-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: all ease-in-out 0.4s;
}

.travel-img:hover::after {
    opacity: 0.4;
}

/* Travel End */

/* Book Start */

.book-txt .heading {
    margin-bottom: 30px;
}

.book-txt .inner-txt {
    margin-bottom: 50px;
}

.book-img {
    width: 100%;
    position: relative;
}

.book-img img {
    width: 100%;
    position: absolute;
}

/*.book-sec {
    margin-bottom: 50px;
}*/

/* Book End */

/* Media Start */

.media-box {
    height: 100%;
    background-color: var(--main-dark-color);
}

.media-box img {
    width: 100%;
}

.media-txt {
    padding: 40px;
}

.media-txt span, .media-sm-txt span {
    color: #c5c5c5;
    font-size: 16px;
    margin-bottom: 20px;
}

.media-txt .heading {
    margin-top: 15px;
}

.media-a {
    height: 100%;
    display: block;
}

.media-sm-box {
    display: flex;
}

.media-sm-txt, .media-sm-box img {
    width: 50%;
}

.media-sm-box img {
    height: auto;
    object-fit: cover;
}

.media-sm-txt {
    padding: 40px;
    background-color: var(--main-dark-color);
}

.media-sm-a:first-child .media-sm-box {
    margin-bottom: 25px;
}

.media-sm-txt .heading {
    margin-top: 15px;
    margin-bottom: 0;
}

.media-row {
    margin-top: 40px;
}

/* Media End */

/* News Start */

.secNewsSlider .slick-track {
    display: flex;
}

.secNewsSlider .slick-slide {
    margin: 0 15px;
    height: auto;
    background: var(--main-dark-color);
}

.secNewsSlider {
    padding-bottom: 50px;
    margin: 0 -15px;
}

.news-sec .media-txt {
    padding: 20px;
}

.secNewsSlider .heading h3 {
    min-height: 110px;
}

/* News End */


/* Responsive Css Start */

@media (max-width: 1600px) {

    .media-sm-txt {
        background-color: var(--main-dark-color);
    }

    .media-sm-a:first-child .media-sm-box {
        margin-bottom: 28px;
    }

    .bnr-btm-txt h2::after {
        right: 10%;
    }

}

@media (max-width: 1399px) {

    .banner-info h1 {
        font-size: 55px;
        line-height: 75px;
    }

    .banner-info ul li {
        font-size: 18px;
    }

    .bnr-btm-txt h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .bnr-btm-txt h2::after {
        right: -3%;
    }

    .cook-box {
        padding: 0 15px;
    }

    .cook-li {
        width: 30%;
    }

    .cook-txt {
        margin-top: -40px;
        height: 60px;
    }

    .cook-txt h3 {
        font-size: 25px;
        line-height: 25px;
    }

    .media-txt span, .media-sm-txt span {
        font-size: 15px;
    }

    .wrap {
        position: relative;
        height: 600px;
    }

    .media-sm-txt {
        padding: 32px;
    }

    .media-sm-a:first-child .media-sm-box {
        margin-bottom: 25px;
    }
    
    .secNewsSlider .heading h3 {
        min-height: 90px;
    }

}

@media (max-width: 1199px) {

    .bnr-btm-txt h2 {
        font-size: 44px;
        line-height: 54px;
    }

    .cook-li {
        width: 32%;
    }

    .about-txt {
        width: 90%;
        padding-left: 70px;
    }

    .media-sm-txt {
        padding: 20px;
        background-color: var(--main-dark-color);
    }
    
    .secNewsSlider .heading h3 {
        min-height: 120px;
    }

}

@media (max-width: 1024px) {

    .media-sm-a:first-child .media-sm-box {
        margin-bottom: 30px;
    }
    
    .wrap {
        position: relative;
        height: 550px;
    }

}

@media (max-width: 991px) {

    .banner-info h1 {
        font-size: 50px;
        line-height: 65px;
    }

    .banner-info h1::after {
        width: 140px;
        height: 140px;
    }

    .about-txt {
        width: 80%;
        padding-left: 0;
    }

    .recipes-sm-con {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .recips-box:first-child {
        margin-bottom: 0;
    }

    .wrap {
        position: relative;
        height: 450px;
    }

    .cook-li {
        width: 49%;
    }

    .cook-sec .d-flex {
        flex-wrap: wrap;
    }

    .about-img {
        width: 70%;
        margin: 0 auto;
    }
    
    .secNewsSlider .heading h3 {
        min-height: 90px;
    }

}

@media (max-width: 767px) {
    .media-sec .heading {
        margin-top: 15px;
        margin-bottom: 10px !important;
    }
    .recipe-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .recipe-img .gallery-icon img {
        height: auto;
    }
    .media-sm-txt, .media-sm-box img {
        width: 100%;
    }
    .media-sm-box {
        flex-direction: column-reverse;
    }
    .media-sm-txt {
        padding: 40px;
    }
    .banner-info h1 {
        font-size: 40px;
        line-height: 55px;
    }

    .banner-info h1::after {
        width: 100px;
        height: 100px;
        top: -20px;
    }

    .banner-info ul li {
        font-size: 16px;
    }

    .bnr-btm-txt h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .about-txt {
        width: 100%;
    }

    .recips-box {
        width: 100%;
    }

    .recipes-sm-con {
        flex-wrap: wrap;
        gap: 25px;
    }

    .book-img img {
        width: 100%;
        position: relative;
    }

    .book-sec .row {
        flex-direction: column-reverse;
    }

    .wrap {
        position: relative;
        height: 340px;
    }

    .book-sec {
        margin-bottom: 0;
    }

    .about-img {
        width: 85%;
    }

    .about-shape, .recipe-shape, .ftr-top-shape2, .ftr-top-shape1, .cook-leaf-shape1, .cook-leaf-shape2 {
        display: none;
    }

    .bnr-btm-txt h2::before {
        left: -18px;
    }
    
    .secNewsSlider .heading h3 {
        min-height: 150px;
    }

}

@media (max-width: 575px) {

    .video-bg iframe {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        transform: unset;
        width: 100%;
        height: 100%;
    }

    .homeBanner .banner-info {
        position: relative;
        top: 50%;
        z-index: 1;
        width: 100%;
        transform: unset;
        padding: 50px 0 80px;
        background: var(--black-color);
    }

    .banner-info h1 {
        font-size: 34px;
        line-height: 46px;
    }

    .banner-info ul li {
        font-size: 14px;
    }

    .bnr-btm-txt h2::before {
        left: -20px;
    }

    .bnr-btm-txt h2::after {
        right: 10px;
    }

    .banner-info ul {
        flex-wrap: wrap;
    }

    .cook-li {
        width: 80%;
    }

    .media-txt {
        padding: 26px;
        background-color: var(--main-dark-color);
    }

    .cook-txt h3 {
        font-size: 20px;
        line-height: 20px;
    }

    .cook-txt {
        height: 40px;
    }

    .media-sm-box {
        display: flex;
        flex-wrap: wrap;
    }

    .media-sm-txt .heading {
        margin-top: 10px;
    }

    .media-sm-txt {
        padding: 26px;
    }

    .media-txt span, .media-sm-txt span {
        font-size: 14px;
    }

    .about-img {
        width: 85%;
    }
    
    .secNewsSlider .heading h3 {
        min-height: 60px;
    }

}

@media (max-width: 550px) {

    .wrap {
        position: relative;
        height: 300px;
    }

}

@media (max-width: 480px) {

    .wrap {
        position: relative;
        height: 260px;
    }

    .cook-li {
        width: 100%;
    }
    
    .secNewsSlider .heading h3 {
        min-height: 80px;
    }

}

@media (max-width: 400px) {

    .wrap {
        position: relative;
        height: 240px;
    }

}

@media (max-width: 375px) {

    .wrap {
        position: relative;
        height: 220px;
    }

}