body {
    margin: 0;
    padding: 0;
    font-family: Times New Roman;
    background: #F7F3ED;
    color: #000000;
}

/*-------toTop-----------*/
#toTop {
    transition: transform 0.5s ease 0s;
    bottom: 75px;
    padding: 5px;
    position: fixed;
    right: 24px;
    z-index: 9;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}

#toTop img {
    position: absolute;
    left: 14px;
    z-index: 99;
    margin-top: 10px;
}

#star-svg {
    position: fixed;
    right: 19px;
    bottom: 70px;
    width: 80px;
    height: 80px;
}

/*-------toTop-----------*/

.fs-60 {
    font-size: 60px;
}

.fs-50 {
    font-size: 50px;
}

.fs-40 {
    font-size: 40px;
}

.fs-30 {
    font-size: 30px;
}

.fs-20 {
    font-size: 20px;
}

.px-70 {
    padding: 0px 70px;
}

.mt-100 {
    margin-top: 130px;
}

.mt-60 {
    margin-top: 60px;
}
h4 {
    font-size: 30px;
    font-weight: bold;
}

h5 {
    font-size: 45px;
}

p {
    font-size: 25px;
}

h3 {
    font-size: 52px;
}

.my_header {
    transition: 0.5s;
}

.header_container {
    padding: 10px 70px;
}

.logo_container {
    width: 250px;
}

.menu_container {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    width: 100%;
}

.fixed_logo {
    display: none;
}

.menu_container .menu_list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

.menu_container .menu_list li {
    margin-right: 25px;
}

.menu_container .menu_list li:last-child {
    margin-right: 0;
}

.menu_container .menu_list li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    letter-spacing: 0;
    position: relative;
}

.menu_container .menu_list li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    bottom: -3px;
    transition: 0.3s;
    left: 0;
    transform: scalex(0);
}

.menu_container .menu_list li a:hover::before {
    transform: scalex(1);
}

.menu_container .menu_list .active a::before {
    transform: scalex(1);
}

.my_header .menu_container .menu_list .menu_dropdown li a::before {
    background-color: #747e73;
}

.menu_container .menu_list li.drop {
    display: flex;
    fill: #000;
    align-items: center;
    position: relative;
}

.menu_container .menu_list li.drop svg {
    height: 20px;
    width: 20px;
    margin-left: 2px;
}

.menu_dropdown {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    background-color: #fff;
    padding: 15px 0;
    top: 50px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 5px 10px #6a7569;
}

.menu_container .menu_list li.drop:hover .menu_dropdown {
    opacity: 1;
    top: 28px;
    visibility: visible;
    z-index: 11;
}

.menu_container .menu_list .menu_dropdown ul li a {
    color: #000;
    fill: #000;
    font-size: 16px;
    white-space: nowrap;
    padding: 5px 20px;
    transition: 0.3s;
}

.menu_container .menu_list .menu_dropdown ul li a:hover {
    background-color: #717b70;
    color: #000;
}

.list-style-none {
    list-style: none !important;
}

/* fixed */
.my_header.fixed {
    background-color: #F7F3ED;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: 0.5s;
}

.my_header.fixed .default_logo {
    display: none;
}

.my_header.fixed .fixed_logo {
    display: block;
}

.my_header.fixed .logo_container {
    width: 200px;
}



.my_header.fixed #navtoggle span {
    background: #000;
}
#navtoggle span{
    background: #000 !important;
}
#navtoggle.active span{
    background: #fff !important;
}

.my_header.fixed .menu_container .menu_list li a::before {
    background-color: #000;
}

svg {
    max-height: 30px;
    max-width: 30px;
}

#navtoggle {
    width: 40px;
    height: 26px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 111;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: translatey(-50%) rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

#navtoggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #fff;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#navtoggle span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

#navtoggle span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

#navtoggle span:nth-child(1),
#navtoggle span:nth-child(2) {
    top: 0px;
}

#navtoggle span:nth-child(3),
#navtoggle span:nth-child(4) {
    top: 11px;
}

#navtoggle span:nth-child(5),
#navtoggle span:nth-child(6) {
    top: 22px;
}

#navtoggle.active span:nth-child(1),
#navtoggle.active span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#navtoggle.active span:nth-child(2),
#navtoggle.active span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#navtoggle.active span:nth-child(1) {
    left: 5px;
    top: 12px;
}

#navtoggle.active span:nth-child(2) {
    left: calc(50% - 5px);
    top: 12px;
}

#navtoggle.active span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#navtoggle.active span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#navtoggle.active span:nth-child(5) {
    left: 5px;
    top: 22px;
}

#navtoggle.active span:nth-child(6) {
    left: calc(50% - 5px);
    top: 22px;
}

.sub_menu {
    display: none;
    position: absolute;
    right: 30px;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.sub_menu::after,
.sub_menu::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translate(-50%);
    transform-origin: 50% 50%;
    transition: 0.3s;
    border-radius: 5px;
    left: 50%;
}

.sub_menu::before {
    transform: translate(-50%) rotate(90deg);
}

.sub_menu.active::before {
    transform: translate(-50%) rotate(0deg) !important;
}

.onee {
    width: 100%;
    display: flex;
    align-items: center;
}

.Pre-Order-box ::before {
    content: "";
    background: #8A9A6E;
    position: absolute;
    height: 190%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.Pre-Order-box2 ::before {
    content: "";
    background: #A0704A;
    position: absolute;
    height: 75%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.Pre-Order-boxstock::before {
    content: "";
    background: #A0704A;
    position: absolute;
    height: 60%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}


.Pre-Order {
    padding: 50px;
}

.Pre-Order h2 {
    font-size: 65px;
    color: #fff;
}

    .Pre-Order p {
        color: #fff;
        margin-bottom: 40px;
        font-size: 20px;
    }

    .Pre-Order a {
        font-size: 20px;
        color: #FDFDFD;
        padding: 12px 38px;
        border: solid 2px #FDFDFD;
        text-decoration: none;
    }

.theambtn {
    position: relative;
    padding: 10px 36px;
    margin: 0;
    border: 2px solid #585858;
    z-index: 1;
    color: white;
    font-weight: 700;
    transition: .5s;
}

.menu_container .menu_list li .theambtn:hover::before{
    transform: scalex(0);
}

.theambtn:hover {
    background: #8A9A6E;
    border-color: #8A9A6E;
    color: white !important;
}

.modal.left .modal-dialog {
    position: absolute;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    margin:0px;
    left:70px;
    top:20%;
}


.modal.left.show .modal-dialog {
    transform: translateX(0);
}

.modal-dialog .card-body {
    background-color: #C87050;
    color: #fff;
    border: 0px;
    border-radius: 0px;
    padding:40px 80px;
}

    .modal-dialog .card-body span {
        font-size:30px;
    }
    .modal-dialog .card-body svg {
        height: 30px;
        width: 30px;
        margin-right:10px;
        margin-bottom:12px;
    }

#leftModal{
    overflow:unset;
    position:absolute;
}
.modal-dialog .card-body ul {
    padding: 0px
}

    .modal-dialog .card-body ul li {
        list-style: none;
        font-size:20px;
    }

.leftpopup .pop-btn {
    position: absolute;
    top: 40%;
    left: 3px;
    transform: rotate(-90deg);
    background: #C87050;
    border: 0px;
    border-radius: 0px;
    padding: 10px 16px;
}
.leftpopup span {
    font-size: 30px;
}

.leftpopup svg {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    margin-bottom: 12px;
}

.zoom {
    overflow: hidden;
    padding: 0;
}

.zoom img {
    transition-duration: 2s;
    margin: 0 auto;
    display: block;
}

.zoom img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

.instagram_content a {
    text-decoration: none;
    color: #000000;
    font-size:20px;
}
    .instagram_content a::before{
        content:'@';
    }

    .kelowna-faves h3 {
        font-size: 52px;
        color: #000000;
    }

.insta-post img {
    width: 100%;
}

.insta-post .img {
    margin-bottom: 20px;
}
.insta-post  {
    margin-top: 40px;
}

.footer-contant {
    background: #8A9A6E;
    padding: 80px;
    color: #FDFDFD;
}

.location {
    margin-bottom: 45px;
}

.location h2 {
    font-size: 65px;
}

.location p i {
    margin-right: 20px;
}

.location p a {
    color: #FDFDFD;
    text-decoration: none;
    transition: .5s;
}
.location p a:hover{
    color: #D3C1B0;

}

.form-control {
    height: auto;
    font-size: 25px;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    color: #020202;
    padding: 6px 15px 0;
}

.btn_2 {
    background: #D3C1B0;
    border-radius: 0;
    padding: 18px 50px 16px;
    line-height: 23px;
    font-size: 25px;
    color: #020202;
    border: 1px solid #D3C1B0;
}

.btn_2:hover {
    color: #D3C1B0;
    background: none;
    border: 1px solid #D3C1B0;
}

.footer-link li {
    list-style: none;
    font-size: 25px;
}

.footer-link li a {
    text-decoration: none;
    color: #FDFDFD;
    font-size: 25px;
    margin-right: 15px;
    transition: .5s;
}

.footer-link li a:hover{
    color: #D3C1B0;
}

.owl-carousel .owl-stage-outer {
    padding: 0px;
}

.btn-similer a {
    padding: 8px 40px;
    color: #000;
    border: solid 1px #585858;
    text-decoration: none;
}

.btn-similer .first {
    padding: 10px 40px;
}

.btn-similer a:hover {
    color: #fff;
    background: #000;

    transition: all 0.6s;
}

.mixvegetable-content {
    padding: 20px 40px;
}

.dropdown button {
    width: 100%;
    text-align: left;
    background: none;
    color: #000000;
    border-radius: 2px;
    font-size: 20px;
    border-color: #585858;
}

.dropdown .btn:hover {
    color: #000000;
    background-color: #F7F3ED;
    border-color: #585858;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff;
    background-color: #C87050;
    border-color:#C87050;
}

.dropdown-toggle::after {
    right: 20px;
    position: absolute;
    top: 21px;
}

.dropdown-menu.show {
    width: 100%;
}

.categerybtn a {
    color: #FFFFFF;
    border: solid 2px #FFFFFF;
    width: 193px;
    text-align: center;
    padding: 7px 10px;
    font-size:20px;
}

.categerybtn a:hover {
    color: #FFFFFF;
    border: solid 2px #FFFFFF;
    background: #00000029;
}
.page-btn {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.page-btn a {
    color: #A0704A;
    border: solid 2px #A67955;
}

.page-btn a:hover {
    color: #fff;
    border: solid 2px #A67955;
    background: #A67955;
}

.Instagram .zoom{margin-bottom:30px;}
.bi-geo-alt-fill{font-size:28px;}

.carousel-caption {
    right: 6%;
    left: 6%;
}

.btn-similer ul li {
    text-align: start;
    font-size: 19px;
    margin-bottom: 7px;
    list-style:none;
    margin-right:20px;
}
.btn-similer ul{display:flex; justify-content:space-between; padding:0px;}

.about_video_box video {
    height: 100%;
}
@media only screen and (max-width:1716px) {
    .Pre-Order-box ::before {
        height: 160%;
    }
}


@media only screen and (max-width:1600px) {
    .carousel-caption {
        right: 5%;
        left: 5%;
    }
    .fs-60 {
        font-size: 55px;
    }
}

@media only screen and (max-width:1440px) {

    .menu_container .menu_list li a {
        font-size: 18px;
    }
    .logo_container {
        width: 230px;
    }

    .location h2 {
        font-size: 45px;
    }

    p {
        font-size: 20px;
    }

    h5 {
        font-size: 30px;
    }

    .my_header.fixed .logo_container {
        width: 200px;
    }

    .carousel-caption {
        right:5%;
        left: 5%;
    }

    .Pre-Order h2 {
        font-size: 45px;
    }

    .carousel-caption h1 {
        font-size: 45px;
    }

    .btn_2 {
        font-size: 20px;
    }

    .form-control {
        font-size: 20px;
    }

    .footer-link li a {
        font-size: 20px;
    }

    .footer-link li {
        font-size: 20px;
    }

    h4 {
        font-size: 26px;
    }
    .Pre-Order p {
        font-size: 17px;
    }
}

@media only screen and (max-width:1366px) {
    .menu_container .menu_list li {
        margin-right: 20px;
    }

    .menu_container .menu_list li a {
        font-size: 16px;
    }

    .menu_container .menu_list li.drop svg {
        height: 17px;
        width: 17px;
        margin-left: 0px;
    }

    .logo_container {
        width: 275px;
    }
    
}



@media only screen and (max-width:1199px) {
    .Pre-Order-box ::before {
        height: 150%;
    }
    .carousel-caption h1 {
        font-size: 40px;
    }

    .carousel-caption {
        bottom: 0px;
    }

    .menu_container .menu_list li {
        margin-right: 15px;
    }
    .menu_container .menu_list li a {
        font-size: 13px;
    }
    .dropdown-toggle::after {
        margin-left: 40%;
    }
}

@media only screen and (max-width:1100px) {
    .Pre-Order-box ::before {
        height: 125%;
    }

   
}

@media only screen and (max-width:1024px) {
    .footer-contant {
        padding: 70px;
    }

    .footer-link li a {
        font-size: 18px;
    }

    .footer-link li {
        font-size: 18px;
    }

    .footer-link-bottum {
        display: block !important;
    }

}

@media only screen and (max-width:991px) {
    .top-icon li img {
        width: 29px;
    }

    .owl-carousel .owl-dots.disabled,
    .owl-carousel .owl-nav {
        display: none;
    }
    iframe {
        height: 350px;
    }

    .onee1 {
        width: 100%;
        display: block;
        padding: 50px 30px;
        margin-top: 150px;
    }

    .menu_container .menu_list li.drop:hover .menu_dropdown {
        top: 12px;
    }

    .mainulogo,
    .oneelast {
        display: none;
    }

    .top-logoicon {
        display: block !important;
        width: 80%;
        z-index: 99;
    }

    .menu_container .menu_list {
        flex-direction: column;
        position: fixed;
        left: -150%;
        width: 100%;
        background: #8A9A6E;
        height: 100vh;
        top: 0;
        justify-content: flex-start;
        align-items: center;
        transition: 0.3s;
        z-index: 11;
    }

    .menu_container {
        justify-content: flex-start;
    }

    .top-icon li {
        list-style: none;
        margin-right: 10px;
    }

    .top-logo {
        width: 100px;
        margin: auto;
    }

    .menu_container .menu_list li.drop {
        align-items: normal;
    }

    .menu_container .menu_list.active {
        left: 0 !important;
    }

    .menu_container .menu_list li {
        margin-right: 0;
        margin-top: 15px;
    }

    .menu_container .menu_list li:first-child {
        margin-top: 0;
    }

    .menu_dropdown {
        opacity: 1;
        visibility: visible;
        display: none;
        position: relative;
        left: -205px;
        transform: unset;
        top: 12px;
        transition: unset;
        margin-top: 11px;
        box-shadow: unset;
        background: transparent;
    }

    .menu_container .menu_list li a {
        color: #fff;
        font-size: 20px;
    }
    .menu_container .menu_list li a::before{
        background: #fff;
    }
    .my_header.fixed .menu_container .menu_list li a::before {
        background-color: #fff;
    }

    .menu_container .menu_list li.drop svg {
        display: none;
    }

    .menu_container .menu_list li.drop {
        width: 100%;
    }

    .my_header.fixed .menu_container .menu_list li a {
        color: #fff;
    }

    .my_header.fixed .menu_container .menu_list .menu_dropdown li a {
        color: #FFFFFF;
        fill: #fff;
    }

    .menu_container .menu_list .menu_dropdown ul li a {
        color: #fff;
        fill: #fff;
        font-size: 20px;
    }

    .my_header.fixed .menu_container .menu_list .menu_dropdown li a:hover {
        color: #fff;
        fill: #fff;
        top: unset;
    }

    .my_header.fixed #navtoggle.active span {
        background: #fff;
    }

    #navtoggle,
    .sub_menu {
        display: block;
    }

    .header_container {
        padding: 10px 50px;
    }

    .px-70 {
        padding: 0px 50px;
    }

    .carousel-caption h1 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h4 {
        font-size: 22px;
    }

    p {
        font-size: 18px;
    }

    .Pre-Order a {
        font-size: 18px;
    }

    .kelowna-faves h3 {
        font-size: 38px;
        text-align:center;
    }

    .kelowna-faves h4 {
        font-size: 24px;
    }
    .kelowna-faves p {
        font-size: 18px;
    }

    .location h2 {
        font-size: 38px;
    }

    .Pre-Order h2 {
        font-size: 39px;
    }

   
    .footer-contant {
        padding: 50px;
    }

    .input-group {
        width: 70%;
    }

    .Pre-Order {
        padding: 30px;
        text-align:center;
    }

    .Pre-Order-box ::before {
        height: 130%;
    }

    .carousel-caption {
        padding-bottom: 0px;
    }
    .dropdown-toggle::after {
        margin-left: 70%;
    }

    

    .leftpopup .pop-btn {
        left: -17px;
    }
    .modal.left .modal-dialog {
        top: 15%;
    }

    .mt-100 {
        margin-top: 90px;
    }

    .instagram_content h4{font-size:30px;}
}

@media only screen and (max-width:767px) {
    .dropdown-toggle::after {
        margin-left: 60%;
    }
    iframe {
        height: 300px;
    }
    .logo_container {
        width: 117px;
    }

    .my_header.fixed .logo_container {
        width: 90px;
    }

    .sub_menu {
        right: 15px;
    }

    .input-group {
        width: 85%;
    }

    h3 {
        font-size: 44px;
    }

    section{
        text-align:center;
    }
}

@media only screen and (max-width:676px){
    .Pre-Order-boxstock::before {
        height: 25%;
    }

    .Pre-Order-boxstock p{
        margin-bottom:0px;
    }
    .Instagram .zoom {
        width: 47%;
        display: inline-block;
        margin: 5px 4px;
    }
    .cardmargin{
        margin-bottom:50px;
    }
    h5 {
        font-size: 25px;
    }
    .fs-40 {
        font-size: 30px;
    }
}

@media only screen and (max-width:600px) {
    .input-group {
        width: 100%;
    }

    .px-70 {
        padding: 0px 30px;
    }

    .header_container {
        padding:10px 30px;
    }

    .Pre-Order-box2 ::before {
        height: 80%;
    }

    .footer-link li a {
        font-size: 18px;
    }

    .footer-link li {
        font-size: 18px;
    }

    .footer-contant {
        padding: 40px;
    }

    h3 {
        font-size: 48px;
    }
    .mixvegetable-content {
        padding: 20px 30px;
    }

    .leftpopup svg {
        height: 22px;
        width: 22px;
        margin-right: 8px;
        margin-bottom: 5px;
    }
    .modal-dialog .card-body svg {
        height: 22px;
        width: 22px;
        margin-right: 8px;
        margin-bottom: 5px;
    }
    .leftpopup span {
        font-size: 18px;
    }
    .modal-dialog .card-body span {
        font-size: 18px;
    }
    .modal-dialog .card-body ul li {
        list-style: none;
        font-size: 16px;
    }
    .carousel-caption {
        right: 10%;
        left: 10%;
    }

    .padding-x {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .insta-post {
        margin-top: 10px;
    }
}

@media only screen and (max-width:540px) {
    .popup span{
        font-size: 13px;
    }
    .popup {
        
        top: 8%;
    }

    .Pre-Order {
        padding: 20px;
        margin-bottom: 20px;
    }

    .kelowna-faves h3 {
        font-size: 30px;
    }

    .Pre-Order h2 {
        font-size: 30px;
        padding-top:20px;
    }

    .footer-link li a {
        font-size: 16px;
    }

    .footer-link li {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }
    .page-btn {
        justify-content:center;
    }

    .page-btn a {
        margin-bottom: 10px;
        text-align: center;
    }
    h3 {
        font-size: 45px;
    }

    .form-control {
        font-size: 18px;
        padding: 6px 10px 0;
    }

    .btn_2 {
        padding: 18px 40px 16px;
        font-size: 18px;
    }
    .top-icon li {
        margin-right: 0px;
    }
    .dropdown-toggle::after {
        margin-left: 50%;
    }
    .footer-link li a{
        margin-right: 9px;
    }
    .fs-40 {
        font-size: 20px;
    }
    .video-box{
        padding:0px !important;
    }
}

@media only screen and (max-width:430px) {
    .carousel-caption h1 {
        font-size: 20px;
    }

    .about_video_box {
        margin-top: -40px;
    }
   
    .Pre-Order-box2 ::before {
        height: 83%;
    }

    .mt-100 {
        margin-top: 60px;
    }

    h3 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    .location h2 {
        font-size: 26px;
    }

    .location p i {
        margin-right: 10px;
    }

    .footer-contant {
        padding: 20px;
    }

    .px-70 {
        padding: 0px 15px;
    }

   
    .Pre-Order p {
        font-size: 15px;
    }
    h4 {
        font-size: 20px;
    }
    .top-logo {
        width: 90px;
    }
    .onee1 {
        width: 100%;
        display: block;
        padding: 15px;
    }
    .header_container {
        padding: 10px 15px;
    }
    .mixvegetable-content {
        padding: 20px 15px;
    }
    .dropdown-toggle::after {
        margin-left: 35%;
    }

    .leftpopup .pop-btn {
        left: -32px;
    }
    .modal.left .modal-dialog {
        top: 10%;
    }
    .modal-dialog .card-body {
        padding: 30px 50px;
    }
}

@media only screen and (max-width:375px){
    .Pre-Order-boxstock::before {
        height: 28%;
    }
    .Pre-Order h2 {
        font-size: 26px;
    }
    .Instagram .zoom {
        width: 45%;
    }
}
