@charset "UTF-8";

body {
  padding-top: 3.375rem;
  color: #6c757d;
  overflow-x: hidden !important;
}

@media (min-width: 992px) {
  body {
    padding-top: 0;
    padding-left: 0;
  }
}

hr {
    background-color: #859db4;
}

a {
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  outline-style: none;
  color: #0e1111;
}

a:hover {
  text-decoration: none;
  outline-style: none;
  color: #f01452;
}

/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #fff;
	z-index: 99999;
}
.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #adc53b;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #adc53b;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #adc53b;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*  */

.navbar-dark .navbar-brand {
    color: rgba(52, 58, 64, 1);
    font-weight: 700;
}

.bg-primary {
    opacity: 1;
	background-color: transparent ;
    /* background-color: rgba(245,245,245,1) !important; */
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    /* color: #ec1823; */
}

.navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .nav-link.active {
    /* color: #ec1823; */
}

.navbar-dark .navbar-nav .nav-link:active, .navbar-dark .navbar-nav .nav-link:focus {
    /* color: rgba(236, 24, 35, 1); */
}

.navbar-dark .navbar-nav .nav-link.active::before {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 10%;
	width: 80%;
	height: 20%;
	background: #adc53b;
	transform: scale3d(1,1,1);
	transform-origin: 50% 0%;
}

@media screen and (max-width: 991px) {	
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
   }
   .navbar-dark .navbar-nav .nav-link.active::before {
	left: 10%;
	width: 80%;
	height: 20%;

}
.cbp-spmenu.cbp-spmenu-vertical.cbp-spmenu-left img {
	max-width: 120px;
   }
}

/* nav */

#LeftNav {
  padding-left: 1rem;
  padding-right: 1rem;
}
#LeftNav .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
#LeftNav .navbar-toggler:focus {
  outline-color: #d48a6e;
}

@media (min-width: 992px) {
  #LeftNav {
    padding-left: 0;
    padding-right: 0;
	padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 60px;
	box-shadow: none;
	/* box-shadow: rgb(0 0 0 / 15%) 0px 0px 20px 0px; */
  }
  #LeftNav .navbar-brand {
    display: block;
    left: 0;
    position: fixed;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    margin: 5px 0 0 0;
  }
  #LeftNav .navbar-brand .img-profile {
    max-width: 10rem;
    max-height: 10rem;
    /* border: 0.5rem solid rgba(255, 255, 255, 0.2); */
	/* border-radius: 33% 66% 70% 30%/49% 62% 38% 51%; */
	/* box-shadow: 8px 8px 0px 0px rgb(236 24 35 / 100%); */
	border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
	animation: borderanim 10s infinite;
    overflow: hidden;
  }
  #LeftNav .navbar-collapse {
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    margin-bottom: auto;
  }
  #LeftNav .navbar-collapse .navbar-nav {
    flex-direction: row;
    right: 10px;
    float: right;
    position: fixed;
   /*  width: 100%; */
  }
  #LeftNav .navbar-collapse .navbar-nav .nav-item {
    display: block;
  }
  #LeftNav .navbar-collapse .navbar-nav .nav-item .nav-link {
    display: block;
  }
  

}

@media screen and (max-width: 991px) {

#LeftNav {
    text-align: center;
    background: #fff !important;
}	

#LeftNav .navbar-collapse {
    display: flex;
    align-items: flex-start;
    flex-grow: 0;
    width: 100%;
    margin-bottom: auto;
	justify-content: center;
}

  #LeftNav .navbar-brand .img-profile {
	/* border-radius: 33% 66% 70% 30%/49% 62% 38% 51%; */
	border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
	animation: borderanim 10s infinite;
  }
  
  #LeftNav .navbar-nav .nav-item .nav-link {
  color: #0e1111 !important;
  }
  
  .navbar-dark .navbar-brand {
    color: rgba(52, 58, 64, 1) !important;
    font-weight: 700;
}

.navbar.navbar-expand-lg.navbar-dark.cbp-spmenu.cbp-spmenu-vertical.cbp-spmenu-right.menu--eff {
	box-shadow: none !important;
}

.navbar.navbar-expand-lg.navbar-dark.cbp-spmenu.cbp-spmenu-vertical.cbp-spmenu-right.menu--eff.cbp-spmenu-open {
	box-shadow: rgb(0 0 0 / 15%) 0px 0px 20px 0px !important;
}


}

@-moz-keyframes borderanim {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    /* box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}
@-webkit-keyframes borderanim {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
   /*  box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}
@-o-keyframes borderanim {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    /* box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}
@keyframes borderanim {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    /* box-shadow: 15px 15px 50px rgba(0,0,0,0.2); */
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
    /* box-shadow: -10px -5px 50px rgba(0,0,0,0.2); */
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}

/* section */

#welcome {
	height: 93vh;
}

.fixed-alert {
    position: fixed;
    margin: 0 auto;
    top: 100px;
    z-index: 99888;
    left: calc(50% - 176px);
}

.fixed-alert span {
    font-weight: 800;
}
	
section.personal-page {
	display: flex;
	align-items: center;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 4rem;
	padding-bottom: 2rem;
	/* max-width: 75rem; */
	/* max-width: 90rem; */
}
section.personal-page .personal-page-content {
	width: 100%;
}

.page-title {
	color: rgba(52, 58, 64, 1);
	font-size: 3.5em;
    font-weight: 700;
	margin-bottom: 3rem;
}

@media (min-width: 992px) {

section.personal-page {
	/* min-height: 100vh; */
	padding-left: 3rem;
	padding-right: 3rem;
	padding-top: 4rem;
	padding-bottom: 2rem;
   }
}

/* mobile menu http://tympanus.net/codrops/licensing/ */

.cbp-spmenu {
	/* background: #47a3da; */
	position: fixed;
}

.cbp-spmenu h3 {
	color: #afdefa;
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	background: #0d77b6;
}

.cbp-spmenu a {
	display: block;
	/* color: #fff; */
	font-size: 1.1em;
	font-weight: 300;
}

.cbp-spmenu a:hover {
	
}

.cbp-spmenu a:active {
	
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	
	
}

.cbp-spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (max-width: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em){

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -190px;
	}

	.cbp-spmenu-right {
		right: -190px;
	}

	.cbp-spmenu-push-toright {
		left: 190px;
	}
}

/* menu bars */

.umenu-cont.navbar-toggler {
	color: transparent !important;
	border: none !important; 
	text-decoration: none !important;
	outline: none !important;
	letter-spacing: 0em;
	border-radius: 0 !important;
	top: 10px;
}

.fixed-top-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99994;
    background-color: transparent;
	display: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}

@media screen and (max-width: 991px) {	
.fixed-top-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 994;
	height: 60px;
	width: 100%;
    background-color: transparent;
	display: block;
	box-shadow: none;

  }

}

.umenu-cont {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99998 !important;
    height: 60px;
    width: 60px;
    padding-left: 10px;
}
.umenu-cont.mi_change {
	position: absolute;
    right: 345px;
	z-index: 99988;
	border: none !important;
	/* background: #fff */
}

@media screen and (max-width: 1195px) {	
.umenu-cont.mi_change {
    right: 230px;
   }
.umenu-cont {

   }
}

/* menu icon anim */

.mi_ball1, .mi_ball2, .mi_ball3 {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	outline-style: none;
	height: 3px;
	background-color: #fff;
	margin: 6px 0;
	transition: 0.4s;
}	

.mi_ball1 {
	width: 30px;
}
.mi_ball2 {
	width: 25px;
}
.mi_ball3 {
	width: 30px;
}

.mi_change .mi_ball1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 7px);
	transform: rotate(-45deg) translate(-5px, 7px);
}
.mi_change .mi_ball2 {
	opacity: 0;	
}
.mi_change .mi_ball3 {
	-webkit-transform: rotate(45deg) translate(-6px, -8px);
	transform: rotate(45deg) translate(-6px, -8px);
}


/* menu eff https://tympanus.net/codrops/?p=31887 */

.menu--eff .menu__item {
	position: relative;
	display: block;
	outline: none;
}

.menu--eff .menu__item:hover {
	color: #859db4;
}

.menu--eff .menu__item:first-child {
	--menu-item-color:rgb(158 183 208 / 100%);
}

.menu--eff .menu__item:nth-child(2) {
	--menu-item-color:rgb(158 183 208 / 100%);
}

.menu--eff .menu__item:nth-child(3) {
	--menu-item-color:rgb(158 183 208 / 100%);
}

.menu--eff .menu__item:nth-child(4) {
	--menu-item-color:rgb(158 183 208 / 100%);
}

.menu--eff .menu__item:nth-child(5) {
	--menu-item-color:rgb(158 183 208 / 100%);
}

.menu--eff .menu__item:nth-child(6) {
	--menu-item-color:rgb(158 183 208 / 100%);
}

.menu--eff .menu__item-name {
	
}

.menu--eff .menu__item-name::before {
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 10%;
	width: 80%;
	height: 20%;
	background: #adc53b;
	transform: scale3d(1,0,1);
	transform-origin: 50% 100%;
	transition: transform 0.3s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu--eff .menu__item:hover .menu__item-name::before,
.menu--eff .menu__item:focus .menu__item-name::before {
	transform: scale3d(1,1,1);
	transform-origin: 50% 0%;
}

.menu--eff .menu__item-label {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0.5em 0 0 1.5em;
	white-space: pre;
	color: #515152;
}

.menu--eff .menu__item-label span {
	display: inline-block;
}

@media screen and (max-width: 50em) {
	.menu--eff .menu__item-label {
		font-size: 0.6em;
		margin-left: 0.25em;
	}
}

@media screen and (max-width: 991px) {	
.menu--eff .menu__item-name::before {
	left: 10%;
	width: 80%;
	height: 20%;
   }
}


/*  */


.item-tophover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.item-tophover:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}




/* ueffctver */
@-webkit-keyframes ueffctver {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ueffctver {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.ueffctver {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.ueffctver .ueffctver-text {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  
}
.ueffctver:hover .ueffctver-text, .ueffctver:focus .ueffctver-text, .ueffctver:active .ueffctver-text {
  -webkit-animation-name: ueffctver;
  animation-name: ueffctver;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* about */


@media screen and (min-width: 768px) {
    .image-container.image-right {
        top:80px;
        margin-left: -100px;
        margin-bottom: 130px
    }

    .image-container.image-left {
        margin-right: -100px;
    }
	
}

.section-about-cont .image-container {
    height: 500px;
    position: relative;
    background-position: 50%;
    background-size: cover;
    box-shadow: 0 10px 25px 0 rgb(0 0 0 / 30%);
    border-radius: 0.25rem;
}

.section-about-cont .image-container.image-left {
    z-index: 1;
}

.section-about-cont p.blockquote {
    width: 50%;
    padding: 1em;
    text-align: center;
    /* position: absolute; */
    /* top: 550px; */
    /* right: 220px; */
    z-index: 0;
    font-size: 1em;
    border: 1px solid #859db4;
    color: #859db4;
    margin: 4em 20%;
}

.section-about-cont p {
	color: #859db4;
	font-size: 1em;
}

.card-chef {
	text-align: center;
}

.chef-description {
    color: #859db4;
    font-size: 1em;
}

.card-chef .img-profile {
    max-width: 15rem;
    max-height: 15rem;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    animation: borderanim 10s infinite;
    overflow: hidden;
	border: 2px solid rgba(173,197,59,.2);
}

.btn-outline-chef {
	height: 2.375rem;
    min-width: 2.375rem;
    width: 2.375rem;
    padding: 0;
    font-size: 1rem;
    overflow: hidden;
    position: relative;
    line-height: normal;
	border-width: 1px;
    border-radius: 30px!important;
	background: #fff;
	color: #adc53b;
	border: 1px solid #adc53b;
	margin: 5px;
}

.btn-outline-chef:hover, .btn-outline-chef:active {
	background: #adc53b;
	color: #fff;
	border: 1px solid #adc53b;
	box-shadow: 0 3px 11px 0 rgba(173,197,59,.5);
}

.btn-outline-chef svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-12px,-8px);
    line-height: 1.5626rem;
    width: 23px !important;
}

.section-about-cont .about-desc {
    color: #859db4;
    padding: 15px;
    font-weight: 400;
    font-size: 1.2em;
	margin: 0 0 1em 0;
}

@media screen and (max-width: 767px) {
    .image-container.image-left {
        /* margin-bottom:180px */
    }

    .section-about-cont p.blockquote {
    width: 80%;
    padding: 1em;
    text-align: center;
    /* position: absolute; */
    /* top: 550px; */
    /* right: 220px; */
    z-index: 0;
    font-size: 1em;
    border: 1px solid #859db4;
    color: #859db4;
    margin: 2em 10%;
}

.section-about-cont .image-container {
    height: 400px;
}

.section-about-cont .image-container+.category {
	padding-top: 50px
}


.section-about-cont .image-container:nth-child(2) {
        margin-left: 0;
        margin-bottom: 30px
    }
}


/* menu */


.menu-itemhover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 15px;
  margin-bottom: 25px;
  /* box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%); */
  box-shadow: 30px 30px 0px -25px rgb(173 197 59 / 20%);
  transition: all .5s ease-in-out;
}

.menu-itemhover:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.menu-itemhover img {
    border-radius: 50%;
	width: 200px;
	height: auto;
    padding: 5px;
}

.menu-itemhover .menu-price {
    font-size: 1.5em;
    color: #adc53b;
    font-weight: 700;
	margin-top: auto !important;
    margin-bottom: auto !important;
}

.menu-itemhover .menu-desc {
    font-size: 1.1em;
    color: #859db4;
	margin-top: auto !important;
    margin-bottom: auto !important;
	padding: 10px;
	width: 90%;
}

.menu-itemhover .menu-desc .menu-title {
    font-size: 1.5em;
    color: rgba(52, 58, 64, 1);
    font-weight: 700;
	margin-top: auto !important;
    margin-bottom: auto !important;
}

.menu-itemhover .menu-desc p {
    height: 5rem;
	text-overflow: ellipsis;
	overflow: hidden;
}

.mymenutab {
	margin: 0 0 3em 0;
	justify-content: center !important;
}

.mymenutab.nav-tabs {
    border: none;
}

.mymenutab.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #adc53b;
    background-color: #fff;
    border: none;
}

.mymenutab .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(52, 58, 64, 1);
	font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
	border: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.mymenutab .nav-link:hover {
    color: #adc53b;
	border: none;
}

@media all and (max-width: 1400px) {
  .menu-itemhover {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }
  .menu-itemhover .menu-desc {
   text-align: center;
}
  .menu-itemhover .menu-desc .menu-title {
   text-align: center;
   height: auto;
  }

  
}

@media all and (max-width: 765px) {
	.menu-itemhover .menu-desc p {
    height: auto;
    text-overflow: ellipsis;
    overflow: hidden;
}
.menu-itemhover img {
    border-radius: 50%;
    width: 110px;
    height: auto;
    padding: 5px;
}
.menu-itemhover .menu-price {
    font-size: 1.5em;
    color: #adc53b;
    font-weight: 700;
    margin-top: auto !important;
    margin-bottom: auto !important;
    width: 80%;
}
}

/* cart */

.btn-addtocart {
    padding: 0.25rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
    margin-top: 3em;
    /* float: right; */
    color: #adc53b;
    border: 1px solid #adc53b;
	background: #fff;
	outline: none;
	text-decoration: none;
	display: block;
	margin-right: auto !important;
    margin-left: auto !important;
}

.btn-addtocart:hover, .btn-addtocart:focus, .btn-addtocart:active {
    color: #fff;
    border: 1px solid #adc53b;
	background: #adc53b;
	outline: none !important;
	box-shadow:none !important;
}

.btn-addtocart.active {
  color: #fff;
  border: 1px solid #adc53b;
  background: #adc53b;
  outline: none !important;
  box-shadow: none !important;
}

.product{
	border:none !important;
}
.product img{
	height: 150px;
	width: auto;
	margin-bottom: -50px;
	margin-left: 1rem;
	transition: 0.5s;
}
.product:hover img{
	transform: scale(1.05) rotate(-10deg);
}
.product .card-title{
	margin-top: 50px;
}

.img-in-cart{
	border-radius: 50%;
    width: 110px;
    height: auto;
}

.check .img-in-cart {
    border-radius: 50px;
    width: 80px;
    height: auto;
}

.check hr {
    margin: 0.5rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

.check .addeditems-title {
    color: rgba(52, 58, 64, 1);
    font-weight: 700;
    font-size: 1.1em;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.item-in-cart-count {
	width: 23px;
    display: inline-grid;
}

.cart-header {
    color: rgba(52, 58, 64, 1);
    margin: 1rem;
	padding: 1rem;
}

.cart-title {
    color: rgba(52, 58, 64, 1);
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5rem;
}

.cart-desc {
    color: #526a8e;
    font-size: 1em;
	font-weight: 600;
}

.addeditems-title {
	color: rgba(52, 58, 64, 1);
    font-weight: 700;
	font-size: 1.2em;
}

.addeditems-form {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.addeditems-price {
    color: #526a8e;
    font-size: 1.3em;
	font-weight: 700;
	width: 80px;
    text-align: end;
}

.addeditems-total {
    color: #dc3545;
	font-size: 2em;
	font-weight: 800;
}

.swal2-popup.swal2-toast {
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0.4em !important;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0 0 0.625em #d9d9d9;
}

.swal2-popup.swal2-toast .swal2-title {
    flex-grow: 1;
    justify-content: flex-start;
    margin: 0 0.6em;
    font-size: 1em;
    font-weight: 700;
}

.cart-checkout {
    border-radius: 3rem;
	margin-top: 0.5em;
	font-size: 2rem;
    font-weight: 800;
}

.total.position-sticky.py-3.bg-white {
	color: rgba(52, 58, 64, 1);
	padding: 2.3rem;
}

.totaltwo.position-sticky.py-3.bg-white {
	color: rgba(52, 58, 64, 1);
	padding: 2.3rem;
}

.glyphicon.glyphicon-time:before {
	font-family: "Font Awesome 5 Free";
	content: "\f017";
	color: rgba(52, 58, 64, 1);
}

.glyphicon.glyphicon-calendar:before {
	font-family: "Font Awesome 5 Free";
	content: "\f133" ;
	color: rgba(52, 58, 64, 1);
}

.glyphicon.glyphicon-chevron-down:before {
	content: "↓" ;
	font-size: 1.3em;
	color: rgba(52, 58, 64, 1);
}

.glyphicon.glyphicon-chevron-up:before {
	content: "↑";
	font-size: 1.3em;
	color: rgba(52, 58, 64, 1);
}

.disabled-input {
    background-color: #fff !important;
    border: none !important;
}

@media all and (max-width: 991px) {
	.cart-title {
    color: rgba(52, 58, 64, 1);
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5rem;
   }
   .cart-checkout {
    font-weight: 800;
    font-size: 1.1rem;
}
}

@media all and (max-width: 765px) {
	.btn-addtocart {
    padding: 0.25rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
    margin-top: 0.5em;
    float: right; 
    color: #adc53b;
    border: 1px solid #adc53b;
    background: #fff;
    outline: none;
    text-decoration: none;
    display: block;
    margin-right: auto !important;
    margin-left: auto !important;
}
.menu-price span {
    float: left;
}
}

/* gallery  */

/* Hover Effect Ideas

[Article on Codrops](http://tympanus.net/codrops/?p=19292)

[Demo](http://tympanus.net/Development/HoverEffectIdeas/) 

*/

.grid {
	position: relative;
	margin: 0 auto;
	padding: 1em 0 4em;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    /* float: left; */
    overflow: hidden;
    /* margin: 10px 1%; */
    /* min-width: 320px; */
    max-width: 650px;
    max-height: 433px;
    width: 100%;
    background: black;
    text-align: center;
    cursor: pointer;
    border-radius: 0.3rem;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.grid figure figcaption > a {
	z-index: 100;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h4 {
	word-spacing: -0.15em;
	font-weight: 300;
	font-size: 1.3rem;
}

.grid figure h4 span {
	font-weight: 800;
}

.grid figure h4,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

/*---------------*/

figure.img-hover-eff img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.8;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

figure.img-hover-eff figcaption {
	text-align: left;
}

figure.img-hover-eff figcaption > div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 1em;
	width: 100%;
	height: 60%;
}

figure.img-hover-eff h4,
figure.img-hover-eff p {
	-webkit-transform: translate3d(0,40px,0);
	transform: translate3d(0,40px,0);
}

figure.img-hover-eff h4 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.img-hover-eff p {
	color: rgba(255,255,255,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.img-hover-eff:hover img {
	opacity: 0.5;
}

figure.img-hover-eff:hover p {
	opacity: 1;
}

figure.img-hover-eff:hover img,
figure.img-hover-eff:hover h4,
figure.img-hover-eff:hover p {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.img-hover-eff:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}

@media all and (max-width: 1280px) { 
figure.img-hover-eff figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 80%; 
  }
}

@media all and (max-width: 991px) { 
figure.img-hover-eff figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 50%; 
  }
}

/*  */

.title-black-text {
	color: rgba(52, 58, 64, 1);
    font-weight: 700;
}

.desc-grei-text {
	color: rgb(158 183 208 / 100%);
    font-weight: 700;
}

/* news  */

#news .card {
    border: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.card-news {
    background-position: 50%;
    background-size: cover;
    text-align: center;
	min-height: 350px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
}

.card-news:after  {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    content: "";
    background-color: rgba(0,0,0,.5);
    border-radius: 0;
}

.card-news .card-body {
    position: absolute;
	z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.4rem;
    color: #fff;
    min-height: auto;
}

.card-news .card-body::before,
.card-news .card-body::after {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

.card-news .card-body::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

.card-news .card-body::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}

.card-news:hover .card-body::before,
.card-news:hover .card-body::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.card-news .card-title {
    color: #fff;
    margin-top: 130px;
}

.card-news a {
    color: #fff!important;
}

.card-container .card-content {
    width: 100%;
    float: left;
}

.card-content {
    min-height: 350px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
}

.card-content-first:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    z-index: 2;
    position: absolute;
    pointer-events: none;
    border-color: hsla(0,0%,100%,0);
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.card-content-second:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    z-index: 2;
    position: absolute;
    pointer-events: none;
    border-color: hsla(0,0%,100%,0);
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}

.card-content:not(.card-news) .card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
    width: 85%;
}

.card-content .card-title a {
    color: #859db4 ;
	line-height: 1.5;
}

.card-content .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.4rem;
    font-size: 1em;
    color: #ffc107;
    min-height: auto;
	font-weight: 600;
}

.card-news .card-footer {
    padding: 0.5rem 3rem;
    background-color: transparent;
    border: none;
}

.card-content .card-footer {
    padding: 0.5rem 3rem;
    background-color: #fff;
    border: none;
}

.card-title h5 {
    font-weight: 400;
}

@media screen and (max-width: 991px) {

.card-news .card-title {
    margin-top: 30px;
 }
 
 .card-content:not(.card-news) .card-title {
    position: absolute;
    top: 1rem;
    left: 0%;
    transform: translate(0%,0%);
    text-align: justify;
    width: 100%;
}

.card-content .card-body {
	text-align: center;
}

}

/* modal  */

.modal-backdrop {
  /*  background-color: #fff; */
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem;
}


/* prc 
 * [Article on Codrops](http://tympanus.net/codrops/?p=21991)
 * Read more here: [License](http://tympanus.net/codrops/licensing/)
 */

.prcinput {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1em 0;
	/* max-width: 350px; */
	width: 100%;
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: bold;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #6a7989;
	font-weight: bold;
	font-size: 80%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.input--prc {
	overflow: hidden;
	padding-bottom: 1em;
}

.input__field--prc {
	padding: 0.25em 0.5em;
	margin-top: 1.25em;
	width: 100%;
	background: #f0f0f0;
	color: #2F3238;
	font-size: 1.55em;
	opacity: 0;
}

.input__label--prc {
	width: 100%;
	text-align: left;
	position: absolute;
	top: 0em;
	pointer-events: none;
	overflow: hidden;
	padding: 0 0.25em;
	-webkit-transform: translate3d(1em, 2.75em, 0);
	transform: translate3d(1em, 2.75em, 0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.input__label-content--prc {
	color: #fff;
	padding: 0.4em 0 0.25em;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.input__label-content--prc::after {
	content: attr(data-content);
	position: absolute;
	font-weight: 800;
	top: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	color: rgba(52, 58, 64, 1);
	padding: 0.25em 0;
	letter-spacing: 1px;
/* 	font-size: 0.85em; */
}

.graphic--prc {
	fill: #494E57;
	pointer-events: none;
	top: 1em;
	bottom: 0px;
	height: 4.5em;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.7s, fill 0.7s;
	transition: transform 0.7s, fill 0.7s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
} 

.input__field--prc:focus,
.input--filled .input__field--prc {
	-webkit-transition: opacity 0s 0.35s;
	transition: opacity 0s 0.35s;
	opacity: 1;
}

.input__field--prc:focus + .input__label--prc,
.input--filled .input__label--prc {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.input__field--prc:focus + .input__label--prc .input__label-content--prc,
.input--filled .input__label-content--prc {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.input__field--prc:focus ~ .graphic--prc,
.input--filled .graphic--prc {
	fill: #fff;
	-webkit-transform: translate3d(-66.6%, 0, 0);
	transform: translate3d(-66.6%, 0, 0);
}

/* .textarea-prc   */

.textarea-prc .input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: bold;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.textarea-prc .input__field:focus {
	outline: none;
}

.textarea-prc .input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #6a7989;
	font-weight: bold;
	font-size: 80%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.textarea-prc .input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

.textarea-prc .graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.textarea-prc .input--prc {
	overflow: hidden;
	padding-bottom: 1em;
}

.textarea-prc .input__field--prc {
	padding: 0.25em 0.5em;
	margin-top: 1.25em;
	width: 100%;
	background: #f0f0f0;
	color: #2F3238;
	font-size: 1.55em;
	opacity: 0;
}

.textarea-prc .input__label--prc {
	width: 100%;
	text-align: left;
	position: absolute;
	top: 0em;
	pointer-events: none;
	overflow: hidden;
	padding: 0 0.25em;
	-webkit-transform: translate3d(1em, 2.75em, 0);
	transform: translate3d(1em, 2.75em, 0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.textarea-prc .input__label-content--prc {
	color: #fff;
	padding: 0.4em 0 0.25em;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.textarea-prc .input__label-content--prc::after {
	content: attr(data-content);
	position: absolute;
	font-weight: 800;
	top: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	color: rgba(52, 58, 64, 1);
	padding: 0.25em 0;
	letter-spacing: 1px;
	/* font-size: 0.85em; */
}

.textarea-prc .graphic--prc {
	fill: #494E57;
	pointer-events: none;
	top: -1em;
	bottom: 0px;
	height: 100%;
	z-index: -1;
	-webkit-transition: -webkit-transform 0.7s, fill 0.7s;
	transition: transform 0.7s, fill 0.7s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
	transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
} 

.textarea-prc .input__field--prc:focus,
.textarea-prc .input--filled .input__field--prc {
	-webkit-transition: opacity 0s 0.35s;
	transition: opacity 0s 0.35s;
	opacity: 1;
	outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}

.textarea-prc .input__field--prc:focus + .input__label--prc,
.textarea-prc .input--filled .input__label--prc {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.textarea-prc .input__field--prc:focus + .input__label--prc .input__label-content--prc,
.textarea-prc .input--filled .input__label-content--prc {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.textarea-prc .input__field--prc:focus ~ .graphic--prc,
.textarea-prc .input--filled .graphic--prc {
	fill: #fff;
	-webkit-transform: translate3d(-66.6%, 0, 0);
	transform: translate3d(-66.6%, 0, 0);
}

.contact-info .icon {
    float: left;
    margin-top: 25px;
    margin-right: 20px;
}

.contact-info .icon > svg {
    font-size: 2.1rem;
	color: #ffc107;
	width: 50px;

}

.contact-info .description {
    overflow: hidden;
}

/* end  */

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
    outline: none;
}

/* cooking */

.intro {
    position: absolute;
    top: 30%;
    left: 5em;
    padding: 1em;
}

.intro__title {
	font-size: 5em;
	line-height: 0.9;
	margin: 0 0 1em 0;
	margin-left: -0.1em;
	letter-spacing: -0.025em;
	color: #fff;
}

.intro__subtitle {
	font-size: 1.25em;
	margin: 0.5em 0;
	color: #adc53b;
}

.intro__button {
	font-weight: 600;
	margin: 2em 0 0 0;
	padding: 1em 2.5em;
	letter-spacing: 0.05em;
	color: #adc53b;
	border: 2px solid #adc53b;
	border-radius: 2em;
	background: none;
	-webkit-transition: color 0.2s, background 0.2s;
	transition: color 0.2s, background 0.2s;
}

.intro__button:hover,
.intro__button:focus {
	color: #fff;
	outline: none;
	background: #adc53b;
}

.Background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
    height: 100%;
}

.Background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent 50%, rgba(0, 0, 0, 0.8));
}


@media screen and (max-width: 600px) {
	.Background::after {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
	}
}

@media screen and (max-width: 991px) {	
.intro {
    position: absolute;
    top: 30%;
    left: 0;
    padding: 1em;
    text-align: center;
}

.intro__title {
	font-size: 3em;
	line-height: 0.9;
	margin: 0;
	margin-left: -0.1em;
	letter-spacing: -0.025em;
	color: #fff;
}

.intro__button {
	font-weight: 600;
	margin: 1em 0 0 0;
	padding: .5em 1.5em;
	letter-spacing: 0.05em;
	color: #adc53b;
	border: 2px solid #adc53b;
	border-radius: 2em;
	background: none;
	-webkit-transition: color 0.2s, background 0.2s;
	transition: color 0.2s, background 0.2s;
}

}

/* copyright */

.copyright {
    font-size: 1em;
    color: rgba(52, 58, 64, 1);
    text-align: center;
    padding: 1em;
}

 /* cookiealert */

.cookiealert {
	position: fixed;
	bottom: 50px;
	left: 0;
	height: auto;
	width: 100%;
	transform: translateY(150%);
	margin: 0 !important;
	z-index: 100888;
	opacity: 0;
	transition: all 500ms ease-out;
	color: #527292;
	background: #fff;
	border-radius: 0rem;
	/* border: 1px solid #131822 !important; */
	-webkit-border-radius: 0rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 20px 0px;
}
.cookiealert.show {
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 1000ms;
}

.cookiealert-close {
	color: #0e1111;
	margin-left: 10px;
	cursor: pointer;
	padding: 0;
	background-color: transparent;
	border: none;
	-webkit-appearance: none;
	outline: 0;

}

.cookiealert-close:hover, .cookiealert-close:focus, .cookiealert-close:active {
	border: none;
	outline: 0;
	}

.cookiealert a {
	color: #0e1111;
}


.cookiealert span {
    font-weight: 500;
}

@media screen and (max-width: 576px) {
	.cookiealert {
	border-radius: 0;
   }
}

 /* checkout-form */

.checkout-form {
	padding: 1em;
}



.scroll-down .cbp-spmenu-right.menu--eff {
  transform: translate3d(0, -100%, 0);
}

.scroll-up .cbp-spmenu-right.menu--eff {
  transform: none;
}

.scroll-down .fixed-top-menu {
  transform: translate3d(0, -100%, 0);
}

.scroll-up .fixed-top-menu {
  transform: none;
}

@media screen and (max-width: 990px) {
	.menuopen.scroll-down .fixed-top-menu {
	transform: none;
  }
  .scroll-down .cbp-spmenu-right.menu--eff.cbp-spmenu-open {
	transform: none;
}
}

/* backtotop */
.box-backtotop-line {
width: 50px;
height: 50px;
position: fixed;
bottom: 30px;
right: 30px;
background-color: #fff;
text-align: center;
line-height: 0;
color: #0e1111;
z-index: 100;
display: none;
border-radius: 50%;
/* border: 1px solid #dee2e6; */
box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

.box-backtotop-line::before {
display: inline-block;
content: '';
width: 0;
height: 20px;
border-left: 2px solid #0e1111;
animation: moreLoopY 3.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
top: 15px;
right: 24px;
position: absolute;
}

.backtotoparrow {
width: 50px;
height: 50px;
font-size: 1.5em;
position: fixed;
bottom: 30px;
right: 30px;
background-color: #fff;
text-align: center;
line-height: 50px;
color: #0e1111;
z-index: 100;
display: none;
border-radius: 50%;
box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

@media screen and (max-width: 991px) {
.box-backtotop-line {
bottom: 10px;
right: 10px;
}
}

@keyframes moreLoopY {
0% {
transform: scale(1, 0);
transform-origin: top;
}

47% {
transform: scale(1, 1);
transform-origin: top;
}

48% {
transform: scale(1, 1);
transform-origin: bottom;
}

95% {
transform: scale(1, 0);
transform-origin: bottom;
}

96% {
transform: scale(1, 0);
transform-origin: top;
}

100% {
transform: scale(1, 0);
}
}

.rotate--180 {
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}


