/* ===================================
    Table of Content
====================================== */

/*
  - Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side Menu
  - Banner-Section
  - Ideas-Section
  - Meals-Section
  - Reviews-Section
  - Advertisement-Section
  - Contact-Section
  - Footer  
  - Detail-Page
  - StandAlone Page
  - Media Queries
*/

/* ===================================
    Fonts
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  width: 12px;
  background: white;
  border-left: 0 solid white;
  border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
  background: #28347c;
  width: 0;
  height: 25%;
  transition: .5s ease;
  cursor: pointer;
}

/* ===================================
  General
====================================== */

body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
}

/*Headings and Text*/
.heading{
  font-size: 48px;
  color:#000;
  font-weight: 700;
  letter-spacing: -3px;
  font-family: 'Montserrat', sans-serif;  
}

.subheading{
  font-size: 18px;
  color: #e85200;
  font-weight: 700;
  line-height: 35px;
  font-family: 'Montserrat', sans-serif;
}

.text{
  font-size: 18px;
  color: #585858;
  font-weight: 400;
  line-height: 32px;
}

/*Colors*/
.orange-color{color: #e85200;}
.green-color{color: #28347c;}
.black-color{color:#000;}

/*Social icons*/

 .social-icons ul {
  margin-bottom: 0;
}

 .social-icons li {
  display: inline-block;
}


 .social-icons ul li a {
  border-radius: 50%;
  color: #000;
  height: 50px;
  line-height: 52px;
  width: 50px;
  font-size: 34px;
  border: 1px solid transparent;
  display: block;
  text-align: center;
}

/*Hover Style 1*/
 .hovr:hover {color: #fff; transition: 0.5s ease; background-color: #000;}

/*Hover Style 2*/
 .hover:hover{color: #28347c !important; transition: 0.5s ease; background-color: #fff;}
 
/*Social icons background hover*/
.facebook-hover:hover{color: #fff; transition: 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover{color: #fff; transition: 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover{color: #fff; transition: 0.5s ease; background-color: #db4a39;}
.linked-in-hover:hover{color: #fff; transition: 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover{color: #fff; transition: 0.5s ease; background-color: #C13584;}
.gmail-hover:hover{color: #fff; transition: 0.5s ease; background-color: #D44638;}
.instagram-hover:hover{color: #fff;  transition: all .5s ease; 
  background:linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%)!important;}

/*Button*/
.btn {
 z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 600;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #000;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 16px !important;
  font-weight: 600;
  color: #000;
  padding: 9px 27px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: 'Montserrat', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

/*Buttons*/
.btn.trans-btn { background: transparent; border-color: #000; color: #000; }
.btn.orange-btn{ background: #b03a2e; border-color:  #b03a2e; color: #fff; }
.btn.green-btn{ background: #28347c; border-color:  #28347c; color: #fff; }

/*Buttons Hovers*/
.btn.btn-hvr-black:hover { background-color:transparent; border-color: #000; color: #fff; }
.btn.btn-hvr-orange:hover { background-color: transparent; border-color: #e85200; color: #fff; }
.btn.btn-hvr-green:hover { background-color: transparent; border-color: #28347c; color: #fff; }

.btn.btn-black::before,
.btn.btn-black::after {
  background: #000;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn.btn-orange::before,
.btn.btn-orange::after {
  background: #e85200;
  content: '';
  position: absolute;
  z-index: -1;
}

.btn.btn-green::before,
.btn.btn-green::after {
  background: #28347c;
  content: '';
  position: absolute;
  z-index: -1;
}

/*Button Hover*/
.btn,
.btn::after {
  transition: all 0.3s;
}

.btn-1::after { height: 0; left: 0; bottom: 0; width: 100%; }
.btn-1:hover:after { height: 100%; } 

/* ===================================
        Preloader
====================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #fff;
    z-index: 9999;
}

.center {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.spinner {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner .blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.spinner .blob.top {
    top: 0;
    animation: blob-top 1s infinite ease-in;
}

.spinner .blob.bottom {
    top: 100%;
    animation: blob-bottom 1s infinite ease-in;
}

.spinner .blob.left {
    left: 0;
    animation: blob-left 1s infinite ease-in;
}

.spinner .move-blob {
    border-color:#28347c;
    background:  #28347c;
    top: 0;
    animation: blob-spinner-mover 1s infinite ease-in;
}

@keyframes blob-bottom {
    25%, 50%, 75% {
        top: 50%;
        left: 100%;
    }
    100% {
        top: 0;
        left: 50%;
    }
}

@keyframes blob-left {
    25% {
        top: 50%;
        left: 0;
    }
    50%, 100% {
        top: 100%;
        left: 50%;
    }
}

@keyframes blob-top {
    50% {
        top: 0;
        left: 50%;
    }
    75%, 100% {
        top: 50%;
        left: 0;
    }
}

@keyframes blob-spinner-mover {
    0%, 100% {
        top: 0;
        left: 50%;
    }
    25% {
        top: 50%;
        left: 100%;
    }
    50% {
        top: 100%;
        left: 50%;
    }
    75% {
        top: 50%;
        left: 0;
    }
}

/* ===================================
    Navbar
====================================== */

header{
  position: relative;
  top:0;
  left:0;
  right:0;
}

header .nav-logo{
  text-align: center;
}

header .navbar .navbar-nav .nav-link {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  padding: 6px 6px;
  margin-left: 10px;
  margin-right: 10px;
  transition: .5s ease;
  border: 2px solid transparent;
  display: block;
}

header .navbar .navbar-nav{
  margin-left: auto;
  margin-right: auto;
}

header .navbar .navbar-nav .nav-link.active {
  color: #28347c;
  transition: all .6s ease;
}

header .navbar .navbar-nav .nav-link:hover {
  transition: all .6s ease;
  color:#28347c;
}

header .btn.button{
  font-size: 14px !important;
}

header .logo-scrolled {
  display: none;
}

header .nav-btn .btn-scrolled{
    display: none;
}

header .nav-btn .btn-scrolled.btn{
    transition: none !important;
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  z-index: 999;
  left: 100px;
  top: -45px;
  margin-left: 30px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: none;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #000;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/*Header-appear*/
.header-appear {
    height: 105px;
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 1024;
    background: #ffffff;
    animation-name: animationFade;
    animation-duration: 1s;
    animation-fill-mode: both;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}



@keyframes animationFade {
    from { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0);
    }
    to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; }
}

.header-appear .navbar-top-default{
    position: fixed;
    top: 0;
    z-index: 1024;
    height: 90px;
    width: 100%;
}

/*Full-nav*/
.header-appear .full-nav {
    height: 85px;
    margin-top: 40px;
}

.header-appear .full-nav, .header-appear .full-nav {
    margin-top: 0;
    padding: 0;
}

header .header-appear .navbar-nav {
  margin-left: auto;
  margin-right: 0;
}


/*Hedaer-appear */
.header-appear .logo .logo-scrolled{
  display: block;
  padding-left: 85px;
}

/*Header-appear btn*/
.header-appear .nav-btn .btn-scrolled{
  display: block;
  right: 0;
}
.header-appear .nav-btn  .btn.button{
  padding: 9px 18px !important;
  transition: none !important;
}

/*Hedaer-apear social-icons*/
.header-appear .social-icons  {
    display: none;
}

/*Header-appear Side-menu-btn*/
.header-appear .sidemenu_btn{
  left: 0;
  margin-left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.header-appear .pb-4{
  padding-bottom: 0 !important;
}

.header-appear .pt-4{
  padding-top: 0 !important;
}
.header-appear .pt-3{
  padding-top: 0 !important;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  width: 45%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #28347c;
  z-index: 2032;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform .5s ease;
  overflow: hidden;
}

.side-menu .side-nav {
  margin-top: 40px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 35px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.image {
  position: absolute;
  top: 30px;
  right: 50px;
}

/*side close btn*/
.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 31px;
  left: 50px;
  cursor: pointer;
  border: solid 1px #fff;
}

.header-appear~.side-menu .btn-close {
  top: 50px;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: ' ';
  height: 28px;
  width: 2px;
  background: #fff;
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 3rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .navbar-nav {
  display: block;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #fff;
  font-size: 15px;
}

.side-menu-footer .social-icons ul li a {
  color: #fff;
  height: 40px;
  line-height: 42px;
  width: 40px;
 
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===================================
    Banner-Section
====================================== */

.banner-section{
  background-color: #f3f2ec;
  padding-top:8rem;
  background-size: cover;
}

.banner-section .img-section{
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin-left: 80px;
  z-index: 5;
}

.banner-section .text-section{
  position: absolute;
  padding-top: 80px;
  z-index: 6;
}

.banner-section .heading {
  font-size: 40px;
  margin-bottom: 25px;
  letter-spacing: -5px;
}

.banner-section .text{
  font-size: 26px;
  margin-bottom: 40px;
}

/* ===================================
    Ideas-Section
====================================== */

.ideas-section{
    padding: 120px 0;
}

.ideas-section .text-section{
  margin-top: 100px;
}

.ideas-section .text-section .text{
  padding-left: 7px;
}

.ideas-section .food-ideas{
  margin-top: 50px;
}

.ideas-section .food-ideas .idea-2 .media{
  display: block;
  text-align: center;
}

.ideas-section .food-ideas .media{
  margin-top: 50px;
}

.ideas-section .food-ideas .idea-3 .media{
  text-align: right;
}

.ideas-section .food-ideas .media i{
  font-size: 80px;
}

.ideas-section .food-ideas .media .text{
  padding-left: 10px;
  padding-right: 10px;
}

.ideas-section .food-ideas .media  .icon-holder{
    margin-bottom: 12px;
    transition: .5s ease;
}

.ideas-section .food-ideas  .media:hover .icon-holder{
  cursor: pointer;
  animation: .8s pulse infinite;
}

/* ===================================
    Meals-Section
====================================== */

.meal-section{
    padding: 120px 0;
  background-color: #f3f2ec;
}

.meal-section .heading{
  margin-top: 50px;
  margin-bottom: 50px;
}

.meal-section .text{
  padding-right: 50px;
}

.meal-section .center-btn{
  margin-top: 50px;
  margin-bottom: 50px;
}

/* ===================================
    Reviews-Section
====================================== */

.reviews-section{
    padding: 120px 0;
}

.reviews-section .heading{
  margin-bottom: 120px;
} 

.reviews-section .card{
  border:1px solid transparent;
}

.reviews-section .card .card-body .card-title{
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.reviews-section .card .text{
  font-size: 16px;
}

.reviews-section .card .card-body .checked,.half-checked{
  color: #ffc600;
}

/* ===================================
    Advertisement-Section
====================================== */

.advertisemnet-Section{
    padding: 120px 0;
  background-color: #f3f2ec;
}

.advertisemnet-Section .heading{
  margin-top: 50px;
  margin-bottom: 50px;
}

.advertisemnet-Section .text{
  padding-right: 20px;
}

.advertisemnet-Section .center-btn{
  margin-top: 50px;
  margin-bottom: 50px;
}

/* ===================================
    Contact-Section
====================================== */

.contact-section{
  padding-top: 120px; 
}

.contact-section .heading{
  margin-bottom: 80px;
}

.contact-section .form-group{
  margin-bottom: 25px;
}

.contact-section .button{
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

.contact-section .form-control{
  padding: 1.375rem 1.75rem;
}

.contact-section .form-control:focus{
  color: #000;
  border-color: #ced4da;;
  box-shadow: 0 0 0 0.2rem transparent;
}

.contact-section .form-section{
  padding-bottom: 80px;
}

.contact-section .img-section {
  padding-top: 80px;
}

.contact-section img{
  float: right;
}

/* ===================================
     Footer
====================================== */

footer {
  padding: 120px 0;
  background-color: #f6f6f6;
}

footer .social-icons ul {
  margin-bottom: 0;
}

.social-icons ul li {
  display: inline-block;
}

footer .social-icons ul li a{
   height: 60px;
  line-height: 62px;
  width: 60px;
   font-size: 29px;
}

footer .text {
  margin-top: 8px !important;
  text-align: right;
  font-size: 14px;
  padding-right: 10px;
}

/* ===================================
    Product Detail Page
====================================== */

.banner {
    background-color: #f3f2ec;
    height: auto;
    background-size: cover;
}

.banner img{
    width:100%;
    padding-top: 20px;
}

.banner .header-text {
    padding-top: 8.5rem;
}

.banner .heading {
    font-size: 55px;
    letter-spacing: 0;
    padding-bottom: 16px;
}

.page-breadcrumb li {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.page-breadcrumb li a {
    color: #000;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.page-breadcrumb li i {
    color: #28347c;
}

/*HEADING SECTION*/
.heading-section{
  padding-top: 120px;
}

.product-body .pro-detail-sec .heading{
    margin-bottom: 15px;
}

.product-detail{
    margin-top: 50px;
}

.product-body .center-btn{
  margin-bottom: 20px;
}

/*PRODUCT DETAIL*/
.product-detail-slider img{
    width: 100%;
}

.product-slider .swiper-slide img {
    height: auto;
}

.product-body .product-list .product-single-price {
    margin-bottom: 10px;
}

.product-body .product-single-price .text{
    font-size: 14px;
}

.product-body .product-detail .product-checklist{
    margin-top: 20px;
}

.product-body .product-detail .product-checklist ul{
    padding-left: 0;
    margin-bottom: 20px;
}

.product-body .product-detail .product-checklist ul li{
    list-style: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-body .product-detail .product-checklist ul li i{
    color:  #28347c;
}
.product-body .product-list .product-detail .product-single-price{
    margin-top: 20px;
}

.product-body .product-list  .share-product-details .share-product-icons{
    padding: 0;
}

.product-body .product-list .social-icons li p{
  color: #000000;
  font-size: 14px;
  font-weight: normal;
}

.product-body .product-list  .social-icons li{
  margin-right: 15px;

}

/*SWIPER SLIDER CODE*/
.wrapper{
    max-height: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.product-detail-slider .swiper-slide{
    width: 96%;
}

.product-detail-slider .swiper-slide img {
    display: block;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
}

.Thumbs{
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}

.Thumbs .swiper-slide {
    opacity: 0.4;
}

.Thumbs .swiper-slide-active {
    opacity: 1;
}

.remove-margins{
    margin: 0;
}

.property-addtional-info {
    list-style-position: outside;
    padding: 0;
    margin: 0 0 0;
    margin-left: 25px;
    list-style: none;
}

.property-addtional-info li{
  margin-bottom: 10px;
}


.property-addtional-info li i{
  display: inline-block;
  margin-right: 2px;
  color: #ff431e;
}


.property-addtional-info li p{
  display: inline-block;
  font-size: 17px;
}

/*CUSTOMER REVIEWS SECTION */
.customer-reviews{
  padding-bottom: 120px;
}

.customer-reviews .review-area{
  border: 1px solid #d3d3d3;
  padding: 5px 15px;
}

.customer-reviews .heading{
  letter-spacing: 0;
  margin-bottom: 50px;
  margin-top: 50px !important;
}

.customer-reviews .reviews .media{
  margin-bottom: 60px;
  margin-top: 60px;
}

.customer-reviews .reviews .text{
  font-size: 16px;
}

.customer-reviews .reviews .media-body{
  padding-left: 30px;
  border-left: 1px solid #d3d3d3;
}

.customer-reviews .reviews .media-body span{
  color: #d3d3d3;
}

.customer-reviews .reviews .media-body .heading{
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 0;
}

.customer-reviews .checked-star{
  color: #ffc600 ;
}

.customer-reviews .getin_form .user-rating li{
  display: inline-block;
  color: #ffc600;
}

/* ===================================
        Model Window Form
====================================== */

.quote-content{
  text-align: center;
  max-width: 900px;
  padding: 50px 150px;
  overflow: visible;
}

.quote-content .contact-form .form-control{
  border-radius: 0;
  padding: 0;
}

.quote-content #quote_submit_btn{
  margin-bottom: -120px;
}

/*CheckBox*/
.quote-content .form-check{
  padding: 50px 0 8px 0;
  text-align: center;
  margin-bottom: -15px;
}

.checkbox-lable {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  user-select: none;
}

.checkbox-lable input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px dotted #d4d4d4;
}

.checkbox-lable:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox-lable input:checked ~ .checkmark {
  background-color: #28347c;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-lable input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-lable .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.quote-content .fancybox-close-small {
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  background:  #28347c;
  transition: all .2s ease-in-out;
}

.quote-content .fancybox-close-small:hover,.quote-content .fancybox-close-small:focus{
  background: #e85200;
}

.quote-content .fancybox-close-small:after {
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-top: -1px;
  font: initial;
  font-size: 35px;
  color: #fff;
}

.fancybox-close-small:focus:after{
    outline: none;
}

.quote-content .fancybox-close-small:hover:after,
.quote-content .fancybox-close-small:focus:after{
    background-color: transparent;
}

.quote-content .contact-form .form-control {
  border: none;
  border-bottom: 1.5px solid #e2e2e2;
  padding: 10px 0;
  background: #fff;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  height: 44px;
  color: #9b9b9b;
  font-size: 14px;
  position: relative;
  transition: border .9s ease;
}

.quote-content .contact-form textarea {
  min-height: 130px;
  resize: none;
}

.food-id{
  font-size: 18px;
  color: #202020;
  font-weight: 400;
}

.hidden{
  display: none;
}

/* ===================================
    StandAlone Page
====================================== */

.standalone-banner {
  background-color: #f3f2ec;
  height: auto;
  background-size: cover;
}

.standalone-banner img{
    width:100%;
    padding-top: 20px;
}

.standalone-banner .header-text {
    padding-top: 8.5rem;
}

/*Main Page Start*/
.main-page{
    padding: 120px 0;
}

.main-page .standalone-heading{
  padding-bottom: 100px;
}

.main-page .standalone-area .heading{
 font-size:40px;
 margin-bottom: 20px;
}

.main-page .row-image{
  position: relative;
}

.main-page .row-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.standalone-area .standalone-row{
  margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child{
  margin-bottom: 0;
}

.main-page .standalone-row .row-text{
    padding-left: 30px;
    text-align: center;
}

.standalone-row:nth-child(2) .row-text{
    padding-left: 0;
    padding-right: 30px;
}

/* Image Hover*/
.standaloneoverlay {
    position: absolute;
    transition: all 0.3s ease;
    opacity: 0;
    background-color:  #28347c;
}

.hover-effect:hover .standaloneoverlay {
    opacity: .4;
}

.overlayBottom {
    width: 100%;
    height: 0;
    top: 0;
    right: 0;
    background-color: #28347c;
    cursor: pointer;
}

.hover-effect:hover .overlayBottom {
    height: 100%;
}

/* ===================================
    Media Queries
====================================== */
@media (min-width: 1920px) { 
 
     /*Navbar*/
    .sidemenu_btn{
      left:360px;
      margin-left: 50px;
    }
    .header-appear .sidemenu_btn{
      left:20px;
    }
    .header-appear .full-nav .btn.button{
      left:380px;
    }
    .header-appear .navbar .navbar-nav{
      margin-left: auto;
      margin-right: 0 !important;
    }
    .header-appear .logo .logo-scrolled{
      padding-left: 65px;
    }
    header .sidemenu_btn{
      left: 345px;
    }

    /*Side Menu*/
    .side-menu .side-nav{
      margin-top: 100px;
    }

    /*Banner-Section*/
    .banner-section{
      padding-top: 11rem;
    }
}

@media (max-width: 1200px) { 
    .img-section img{
      max-width:90%;
    }

    /*Navbar*/
    header .navbar{
      height: 95px;
      padding:0;
    }
    header .nav-logo .logo{
      display: none;
    }
    header .logo-scrolled{
      display: block;
      padding-left: 0;
      width: 90%;

    }
    .header-appear .logo .logo-scrolled{
      padding-left:10px;
      width: 90%;
    }

    header .header-appear .navbar-nav {
      margin-right: 30px;
    }

    header .nav-btn{
      display: none;
    }

    header .menu-button{
      display: none;
    }

    header .nav-icons{
      display: none;
    }
    header .pt-3{
      padding-top: 0 !important;
    }

    .sidemenu_btn{
      top:25px;
      left: 89%;
    }
    .header-appear .sidemenu_btn{
      top: 38px;
      left: 92%;
    }
    .header-appear  .logo-scrolled{
      display: block;
    }
    .header-appear{
      height: 75px;
    }

    /*Banner-Section*/
    .banner-section .img-section{
      margin-left: 120px;
      max-width: 90%;
    }
    .banner-section .heading{
      font-size: 60px;
    }
    .banner-section .text{
      font-size: 22px;
    }

    /*Meal-Section*/
    .meal-section .img-section img{
      max-width:100%;
    }

    /*Counter-section*/
    .contact-section .img-section img{
      max-width:100%;
    }

    /*Food Detail Page*/
    .banner .header-text{
      padding-top: 6.5rem;
    }

    /*StandAlone Page*/
    .standalone-banner .header-text {
      padding-top: 6.5rem;
    }

}
@media (max-width: 992px) { 
    .heading{
        font-size: 34px;
        letter-spacing: -3px;
        margin-top: 0 !important;
        text-align: center;
      }
    .text{
        text-align: center;
        font-size: 16px !important;
    }
    .subheading{
        text-align: center;
    }
    .center-btn{
        text-align: center;
    }
    .img-section img{
      width: 100%;
    }
    .img-section img{
      max-width:100%;
	  display:none;
    }

    /*Side Menu*/
    .side-menu{
      width: 100%;
    }

    /*Banner-section*/
    .banner-section{
      text-align: center;
    }
    .banner-section .heading{
      font-size: 60px;
    }
    .banner-section .heading br{
      display: none;
    }
    .banner-section .text br{
      display: none;
    }
    .banner-section .text{
      font-size: 20px;
      padding-right: 0;
    }
    .banner-section .text-section{
      position: relative;
      padding-top: 55px;
    }
    .banner-section .img-section{
        margin-left: 0;
        padding-top: 100px;
    }

    /*Ideas Section*/
    .ideas-section .text-section .text{
      padding-left: 0;
    }
    .ideas-section .food-ideas .media, .idea-3{
      display: block;
    }
    .ideas-section .food-ideas .media .text{
      padding:0;
    }
    .ideas-section .food-ideas .media .icon-holder{
      text-align: center;
    }
    .ideas-section .text-section:first-child{
       margin-top: 0;
    }
    .ideas-section .img-section{
      margin-top: 100px;
    }

    /*Meal Section*/
    .meal-section .text{
      padding-right: 0;
    }
    .meal-section  .text-section{
      padding-top: 60px;
     }

     /*Reviews Section*/
    .reviews-section .heading{
      margin-bottom: 50px;
    }

    /*Advertisement Section*/
    .advertisemnet-Section .text-section{
      padding-top: 60px;
    }
    .advertisemnet-Section .center-btn{
      margin-bottom: 0;
    }
    .advertisemnet-Section .text{
      padding-right: 0;
    }

     /*Contact-Section*/
     .contact-section .form-section {
      padding-bottom: 0;
    }

     /*Footer*/
     footer .social-icons ul{
      text-align: center;
    }
     footer .text{
      text-align: center;
    }

     /*Food Detail Page*/
    .banner .heading{
      text-align: center;
        font-size: 50px;
    }
    .page-breadcrumb{
      text-align: center;
     }
     .product-single-price{
      margin-top: 50px;
     }
    .customer-reviews .reviews .media{
      display: block;
    }
    .customer-reviews .reviews .media-body{
      padding-left: 0;
      border-left: 1px solid transparent;
    }

    /*StandAlone Page*/
    .standalone-banner .header-text{
      padding-top: 8.5rem;
    }
    .standalone-banner .heading{
      font-size: 43px;
    }
    .main-page .standalone-heading{
      padding-top: 0;
    }
    .main-page .standalone-heading .heading{
      font-size: 40px;
    }
    .main-page .subheading{
      margin-bottom: 0;
    }
    .main-page .standalone-area .heading{
      font-size: 32px;
    }
    .standalone-area .standalone-row{
      margin-bottom: 60px;
    }
    .main-page .standalone-row .row-text{
      padding-left: 0;
      margin-bottom: 20px;
    }
    .standalone-row:nth-child(2) .row-text{
      padding-right: 0;
    }
}

@media (max-width: 767px) { 
      /*wow animation*/
    .wow {
      visibility: visible !important;
      animation: none !important;
    }

      /*Navbar*/
    .header-appear .navbar .logo-scrolled,
    .navbar .logo-default{
       width: 90%;
    }
    .sidemenu_btn{
        left: 82%;
    }
    .header-appear .sidemenu_btn{
      left: 87%;
    }

    /*Banner Section*/
    .banner-section .heading{
      font-size: 43px;
    }
    .banner-section .text-section{
      padding-top: 25px;
    }
    .banner-section .img-section{
      padding-top: 70px;
    }
    footer .text{
      font-size: 13px !important;
    }

}

@media (max-width: 370px) { 
    /*General*/
    .text{
      font-size: 13px !important;
    }

    /*Navbar*/
    .sidemenu_btn{
      left:80%;
    }

    /*Side Menu*/
    .side-nav .navbar-nav .nav-link{
      font-size: 32px;
    }

    /*Banner-Section*/
    .banner-section {
      padding-top: 6rem;
    }
    .banner-section .heading{
      font-size: 35px;
      letter-spacing: -3px;
    }
    .banner-section .text{
      font-size: 18px;
    }
    .banner-section .text-section{
      padding-top: 0;
    }
    .banner-section .img-section{
      padding-top: 50px;
    }

    /*Food-Detail Page*/
    .banner .heading{
      font-size: 45px;
    }
    .customer-reviews .heading{
      font-size: 30px;
    }

    /*SatndAlone Page*/
    .standalone-banner .heading{
      font-size: 40px;
    }
    .main-page .standalone-heading .heading{
      font-size: 35px;
    }
    .main-page .standalone-area .heading{
      font-size: 30px;
    }
}


p.headertext {
	   color:#101010;
	   font-size:26px;
	   text-align:left;
	   width:80%;
	   font-weight:normal;
   }

h4.bannerheader {
	   color:#101010;
	   font-size:46px;
	   text-align:left;
	   font-weight:bold;
	   margin-top:35px;
	   margin-bottom:15px;
   }

div.banner2 {
	display:none;
}
   
p.textkatilim {
   font-size:28px;
   color:#101010;
   padding-top:50px;
   font-weight:normal;
}	
   
a.nav-link2 {
   color:#000;
   font-size:22px;
   white-space:nowrap;
}	

a.nav-link2 i {
   width:28px;
}	



a.nav-link2:hover {
   color:#28347c;
}	
   
@media (min-width: 1920px) { 
   p.headertext {
	   color:#101010;
	   font-size:26px;
	   text-align:left;
	   width:80%;
	   font-weight:normal;
   }
   
   p.textkatilim {
	   font-size:26px;
	   color:#101010;
	   padding-top:50px;
	   font-weight:normal;
	   text-align:left;
	}	
   
	h4.bannerheader {
		   color:#101010;
		   font-size:46px;
		   text-align:left;
		   font-weight:bold;
		   margin-bottom:15px;
	   }
   
}

@media (max-width: 1200px) { 

   
   p.headertext {
	   color:#101010;
	   font-size:24px;
	   text-align:left;
	   width:100%;
	   font-weight:normal;
   }

	p.textkatilim {
	   font-size:24px;
	   color:#101010;
	   padding-top:50px;
	   font-weight:normal;
	   text-align:left;
	}	



	h4.bannerheader {
		   color:#101010;
		   font-size:36px;
		   text-align:left;
		   font-weight:bold;
		   margin-bottom:15px;
	   }


}

@media (max-width: 992px) { 
   p.headertext {
	   color:#101010;
	   font-size:22px;
	   text-align:left;
	   width:100%;
	   font-weight:normal;
   }
   
	p.textkatilim {
	   font-size:22px;
	   color:#101010;
	   padding-top:20px;
	   font-weight:normal;
	   text-align:center;
	}	
   

	h4.bannerheader {
		   color:#101010;
		   font-size:36px;
		   text-align:center;
		   font-weight:bold;
		   margin-bottom:15px;
	   }
	   
	div.banner2 {
		display:block;
		visibility:none;
		padding-bottom:0px;
	}
	
	
	a.nav-link2 {
	   color:#000;
	   font-size:20px;
	   white-space:nowrap;
    }	

	
	

	   
}

@media (max-width: 767px) { 
   p.headertext {
	   color:#101010;
	   font-size:20px;
	   text-align:left;
	   width:100%;
	   font-weight:normal;
   }

	p.textkatilim {
	   font-size:20px;
	   color:#101010;
	   padding-top:20px;
	   font-weight:normal;
	   text-align:center;
	}

	h4.bannerheader {
		   color:#101010;
		   font-size:36px;
		   text-align:center;
		   font-weight:bold;
		   margin-bottom:15px;
	   }


	a.nav-link2 {
	   color:#000;
	   font-size:20px;
	   white-space:nowrap;
    }

}

@media (max-width: 370px) {
	
}
