* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #003d74;
    --bg_color_2: #00ab4c;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
}

/* .img:hover img {
    transform: scale(1.1);
} */

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.main_top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.top_call a {
    color: var(--white);
    font-size: 18px;
}

.top_call a i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
}

.socal_media {
    display: flex;
    justify-content: end;
    gap: 6px;
}

.socal_media a {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 14px;
}

.top_call {
    padding: 5px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: relative;
    width: 100%;
    z-index: 99;
    padding-right: 5%;
}

.nav_bg {
    background-color: var(--white);
    border-radius: 0 80px 80px 0;
    position: relative;
    z-index: 9;
    padding: 5px 20px;

}

.nav_bg::after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00ff72;
    border-radius: 0 80px 80px 0;
    z-index: -1;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #000;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo img {
    width: 160px;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--black);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: #fff;
    transition: ease-in-out .5s;
    display: none;
}

.navbar_nav ul .dropdown li {
    padding: 10px 20px;
    transition: ease-in-out .5s;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    background-color: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
}

.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
    z-index: 99;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.magnifying {
    background-color: #a8a8a8;
    padding: 10px 15px;
    cursor: pointer;
}

.magnifying:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;

}

.banner_item.slick-slide.slick-current.slick-active .head_line {
    animation-name: banner_tillte;
    animation-duration: 3s;
    animation-timing-function: linear;
}

.banner_item.slick-slide.slick-current.slick-active img {
    animation-name: banner_img;
    animation-duration: 6s;
    animation-timing-function: linear;
}

.banner_item.slick-slide.slick-current.slick-active .banner_text {
    animation-name: banner_contant;
    animation-duration: 1.5s;
    animation-timing-function: linear;
}

@keyframes banner_tillte {
    0% {
        transform: rotateX(120deg);
    }

    100% {
        transform: rotateX(0deg);

    }
}

@keyframes banner_img {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);

    }
}


@keyframes banner_contant {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);

    }
}

.banner_item {
    position: relative;
}

.banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000006a;
}

.banner_text {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    z-index: 9;
    color: var(--white);
}

.head_line {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    font-family: "Lora", serif;
    font-style: italic;
    display: block;
}

.welcome_tittle {
    display: block;
    color: var(--white);
}

.nextarrow {
    position: absolute;
    right: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    z-index: 9;
    cursor: pointer;
}

.banner_right {
    text-align: right;
    width: 60%;
    margin: 0 0 0 auto;
}

.banner_right p {
    font-size: 32px;
    line-height: 48px;
}

.banner_left {
    text-align: center;
    padding: 0 10%;
}

.banner_btn a {
    display: inline-block;
    margin: 20px 0;
}

.all_btn {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 13px 38px 15px;
    border-radius: 71px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    display: inline-block;
}

.all_btn::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: var(--bg_color_2);
    z-index: -1;
    transition: ease-in-out .5s;
    border-radius: 71px;
}

.all_btn:hover::after {
    width: 100%;
    left: 0;
}


.hot_product {
    background-color: #eeeae1;
    padding: 60px 0;
}

.small_head {
    display: block;
    font-size: 18px;
    color: var(--bg_color_2);
}

.big_head {
    display: block;
    font-size: 35px;
    margin-bottom: 10px;
    font-family: "Lora", serif;
    font-weight: 600;
}

.hot_pro {
    padding-top: 40px;
    text-align: end;
    border-radius: 10px;
    position: relative;
}

.hot_pro img {
    width: 350px;
}

.hot_tittle {
    position: absolute;
    left: 5%;
    top: 10%;
    color: #fff;
    font-size: 30px;
    font-family: "Lora", serif;
    text-align: left;
}

.ab_home {
    display: flex;
    position: relative;
    padding: 70px 0;
}

.ab_img {
    float: left;
    width: 40%;
    margin-right: 60px;
}

.ab_img img {
    border-radius: 400px 400px 0 0;
}

.ab_bg {
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: -1;
    opacity: .5;
}

.product {
    position: relative;
    padding: 60px 0;
    background-color: #eeeae1;
    z-index: 9;
}

.pro_item {
    margin: 10px;
}

.pro_item a {
    color: var(--bg_color);
    display: block;
    font-size: 30px;
    font-weight: 600;
    font-family: "Lora", serif;
    margin: 4px 0;
}

.pro_item img {
    border-radius: 10px;
}

.pro_bg {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: -1;
    width: 315px;
}

.variety img {
    width: 100%;
}

.left_ani,
.right_ani {
    position: relative;
}

.variety .plate {
    position: absolute;
    top: 19%;
    right: -30px;
    width: 300px;
    animation: cir36 20s linear infinite;
}

.variety .plate_right {
    position: absolute;
    top: 19%;
    left: -30px;
    width: 300px;
    animation: cir36 20s linear infinite;
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.variety_text {
    padding: 0 80px;
}

.why_item {
    display: flex;
    gap: 5px 20px;
    margin-bottom: 20px;
}

.why_item img {
    width: 120px;
}

.features-area {
    padding-left: 50px;
}

.food-title {
    font-size: 25px;
    display: block;
    font-weight: 600;
    font-family: "Lora", serif;
}

.whychoose .big_head {
    font-size: 55px;
}

.why_img {
    margin-top: -150px;
}

.whychoose {
    position: relative;
    background: #fdf9f3;
    z-index: 9;
    padding: 60px 0;
    padding-left: 3%;
}

.whybg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.timer-card {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 45px 40px 51px;
    margin: 120px auto;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.title-area .big_head {
    color: #fff;
}

.discount {
    padding-top: 100px;
}

.videos video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 250px 250px 0 0;
}


.testmoinal {
    position: relative;
    background-color: #eeeae1;
    padding: 90px 0;
}

.test_item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
}

.test_item p {
    font-size: 20px;
    line-height: 35px;
}

.test_item {
    padding: 0 3%;
}

.testname {
    font-size: 20px;
    display: block;
    color: var(--bg_color);
    font-weight: 700;
}

.avatar1 {
    position: absolute;
    top: 9%;
    left: 26%;
    animation: move7 5s infinite linear;
}

.avatar2 {
    position: absolute;
    top: 25%;
    left: 15%;
    animation: move7 5s infinite linear;
    filter: blur(5px);
}

.avatar3 {
    position: absolute;
    bottom: 25%;
    left: 6%;
    animation: move7 5s infinite linear;
}

.avatar4 {
    position: absolute;
    bottom: 10%;
    left: 15%;
    animation: move7 6s infinite linear;
}

.avatar5 {
    position: absolute;
    top: 9%;
    right: 26%;
    animation: move7 5s infinite linear;
}

.avatar6 {
    position: absolute;
    top: 25%;
    right: 15%;
    animation: move7 5s infinite linear;
    filter: blur(5px);
}

.avatar7 {
    position: absolute;
    bottom: 25%;
    right: 6%;
    animation: move7 5s infinite linear;
}

.avatar8 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    animation: move7 6s infinite linear;
}

.testmoinal img {
    border-radius: 50%;
}

@keyframes move7 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-15px, -15px);
        transform: translate(-15px, -15px);
    }

    50% {
        -webkit-transform: translate(-8px, -8px);
        transform: translate(-8px, -8px);
    }

    75% {
        -webkit-transform: translate(-15px, 8px);
        transform: translate(-15px, 8px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.contact-box {
    background-color: #f5f5f5;
    min-width: 480px;
    overflow: hidden;
    height: auto;
    padding: 60px;
    border-radius: 30px;
    margin: -1px;
}

.contact-box__item {
    display: flex;
    gap: 17px;
    align-items: center;
    margin-bottom: 30px;
}

.contact-box__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_color);
    color: var(--white);
    border-radius: 50%;
}

.media-body {
    flex: 1;
}

.contact-box__label {
    font-size: 16px;
    font-weight: 700;
    margin: -0.14em 0 5px 0;
    display: block;
}

.contact-box__info a {
    color: var(--black);
    display: block;
}

.contact-box .social-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: start;
    align-items: start;
    gap: 10px;
}

.social-links .links-title {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.social-links ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 9px;
}

.social-links ul li a {
    display: inline-flex;
    color: var(--black);
    --icon-size: 36px;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0px 21px 10px 0px rgba(4, 4, 4, 0.05);
    border: 1px solid #c1c1c1;
}

.social-links ul li a:hover {
    background-color: var(--bg_color_2);
    color: var(--white);
}

.contact-wrapper {
    border: 1px solid #c1c1c1;
    border-radius: 30px;
}

.form-style2 {
    flex: 1;
    padding: 65px;
}

.contact input,
select {
    font-size: 14px;
    background-color: var(--white);
    padding: 20px 30px 20px;
    border: 1px solid #e0e0e0;
    width: 100%;
    border-radius: 999px;
    margin-bottom: 15px;
}

textarea {
    font-size: 14px;
    background-color: var(--white);
    padding: 20px 30px 20px;
    border: 1px solid #e0e0e0;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}



footer {
    padding-top: 60px;
    background-color: var(--black);
    color: var(--white);
    font-style: normal;
    position: relative;
    margin-top: 150px;
}

.foot_head {
    display: block;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bg_color_2);
}

.foot_contact li {
    margin: 30px 0;
}

.foot_logo img {
    width: 250px;
}

.foot_contact li a {
    color: var(--white);
}

.foot_nav ul li a {
    color: var(--white);
    display: block;
    padding: 6px 0;
}

.foot_nav ul li a:hover {
    color: var(--bg_color_2);
}

.foot_contact .socal_media {
    justify-content: left;
}

.footer_line {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
}

.foot_nav ul {
    max-height: 230px;
    overflow: auto;
}

.foot_contact li i {
    color: var(--bg_color_2);
    margin-right: 8px;
}

.socal_media {
    display: flex;
    gap: 20px;
}

.foot_logo .socal_media a {
    color: var(--black);
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #343434;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
}

.copy_right p a {
    color: var(--white);
    font-weight: 600;
}








.inner_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.inner_header img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}


.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}


.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
    background: #fff;
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(0);
}

.back-to-top.scroll_show {
    transform: scale(1);
    bottom: 3%;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 992px) {
    .navbar_nav ul li {
        padding: 20px 13px;
    }

    .ab_img {
        width: 50%;
        margin-right: 35px;
    }

    .whychoose .big_head {
        font-size: 30px;
    }

    .contact-box {
        margin-bottom: 20px;
    }

    .form-style2 {
        border-top: 1px solid #c1c1c1;
    }

    .variety {
        overflow: hidden;
    }
}

@media only screen and (max-width: 900px) {
    .top_btn {
        display: none;
    }
}


@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    .inner_header img {
        height: 312px;
    }
}


@media only screen and (max-width: 768px) {
    .variety .plate {
        right: 0;
    }

    .variety .plate_right {
        left: 0;
    }

    .variety_text {
        padding: 20px 0;
    }

    .whybg {
        display: none;
    }

    .features-area {
        padding-left: 00px;
    }

    .why_img {
        margin-top: 0px;
    }

    .test_item {
        padding: 0 0%;
    }

    .test_item p {
        font-size: 17px;
    }

    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .big_head {
        font-size: 22px;
    }

    .small_head {
        font-size: 16px;
    }

    .pro_bg {
        width: 185px;
        opacity: .5;
    }

    .main_top {
        position: relative;
    }

    .top_call a {
        color: var(--bg_color);
    }

    .top_call a i {
        color: var(--white);
    }

    .nav_bg::after {
        display: none;
    }

    .banner_left p {
        display: none;
    }

    .top_details {
        background-color: var(--bg_color_2);
    }

    .ab_bg {
        bottom: auto;
        top: 0;
    }
    .inner_header img {
        height: 207px;
    }
    .inner_hrad{
        font-size: 23px;
    }
}

@media only screen and (max-width: 600px) {
    .socal_media {
        gap: 8px;
    }

    .head_line {
        font-size: 30px;
    }
}

@media only screen and (max-width: 550px) {
    .hot_tittle {
        font-size: 25px;
    }

    .contact-box {
        min-width: auto;
    }

    .why_item img {
        width: 82px;
    }

    .whychoose {
        padding: 36px 0;
        padding-left: 0;
    }

    .food-title {
        font-size: 20px;
    }

    .whychoose .big_head {
        font-size: 22px;
    }

    .hot_product {
        padding: 30px 0;
    }

    .ab_home {
        padding: 30px 0;
    }

    .pro_bg {
        top: -36px;
    }

    .pro_item a {
        font-size: 25px;
    }

    .timer-card {
        margin: 0 auto;
    }

    .avatar7,
    .avatar3,
    .avatar1,
    .avatar5,
    .avatar8,
    .avatar4 {
        display: none;
    }

    .contact-box {
        padding: 27px;
    }

    .form-style2 {
        padding: 30px;
    }

    footer {
        margin-top: 60px;
    }

    .prevarrow,
    .nextarrow {
        font-size: 20px;
    }

    .my {
        margin: 40px 0;
    }
}

@media only screen and (max-width: 430px) {
    .top_call a {
        font-size: 14px;
    }

    .socal_media a {
        padding: 5px 9px;
        font-size: 12px;
    }

    .head_line {
        font-size: 25px;
    }

    .banner_left {
        padding: 0 7%;
    }

    .socal_media {
        gap: 4px;
    }

    .top_call a i {
        padding: 7px;
        font-size: 12px;
    }

    .logo img {
        width: 130px;
    }

    .why_item img {
        width: 60px;
    }

    .timer-card {
        padding: 40px 20px 35px;
    }

    .videos video {
        height: auto;
    }

}