body {
	background:url(../images/creambg.jpg) center center;
	background-size:cover;
	background-attachment: fixed;
}


hr.double-line {
  border: 0;
  height: 6px;
  position: relative;
  margin: 2rem 0;
}

hr.double-line::before,
hr.double-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(115, 45, 30, 0.65);
}

hr.double-line::before {
  top: 0;
}

hr.double-line::after {
  bottom: 0;
}

h2,h3,h4 {
	font-family:"Oswald",sans-serif;
	font-weight:bold;
}

h1 {
	font-family:"Oleo Script", serif;
	font-weight:bold;
	color:#732e1e;
}

.orderbtn {
	font-family:"Oleo Script", serif;
	font-weight:bold;
	color:#732e1e;
	font-size:23px;
	text-decoration:none;
	display:inline-block;
	padding:12px 24px;
	border:2px solid #732e1e;
	background-color:transparent;
	transition:background-color .3s, color .3s!important;
	cursor:pointer;
}

.orderbtn:hover {
	color:#fff;
	background-color:#732e1e;
}

#logo-top {
	max-height:220px;
}

.jwb-carousel {
	--carousel-height: 700px;

	position: relative;
	width: 100%;
	overflow: hidden;
	background:#fff6f1;
}

.jwb-carousel__viewport {
	width: 100%;
	overflow: hidden;
}

.jwb-carousel__track {
	display: flex;
	align-items: center;
	gap: 0;
	transition: transform 450ms ease;
	will-change: transform;
}

.jwb-carousel__track.no-transition {
	transition: none;
}

.jwb-carousel__track.no-transition .jwb-carousel__slide {
	transition: none;
}

.jwb-carousel__slide {
	flex: 0 0 auto;
	height: var(--carousel-height);
	opacity: 0.4;
	filter: saturate(45%);
	transition:
		opacity 300ms ease,
		filter 300ms ease;
}

.jwb-carousel__slide.is-active {
	opacity: 1;
	filter: saturate(100%);
}

.jwb-carousel__slide img {
	display: block;
	height: 100%;
	width: auto;
	max-width: none;
	object-fit: contain;
	border-radius: 0;
}

.jwb-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
}

.jwb-carousel__arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}

.jwb-carousel__arrow--prev {
	left: 16px;
}

.jwb-carousel__arrow--next {
	right: 16px;
}

@media (max-width: 767px) {
	.jwb-carousel {
		--carousel-height: 240px;
	}

	.jwb-carousel__arrow {
		width: 38px;
		height: 38px;
		font-size: 1.25rem;
	}
}

.card-flip {
  width: min(100%, 600px); /* responsive width with max size */
  perspective: 1200px;
}

.card-flip-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.65,.05,.35,1);
}

/* standard card flip */
.card-flip:hover .card-flip-inner {
  transform: rotateY(-180deg);
}

.card-face {
  grid-area: 1 / 1;

  width: 100%;
  height: auto;
  display: block;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  box-shadow: 0 20px 45px rgba(0,0,0,.28);
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(-180deg);
}

#footer-outer {
	background:url(../images/topbg.jpg) no-repeat center center;
	background-size:cover;
}

#copyrow {
	background:#000;
	color:#FFF;
	font-family:"Oswald", sans-serif;
}

.menu-item-has-children > a > i, .submenu-toggle .bi {
	font-size: .7rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #fff;
	clip: auto !important;
	clip-path: none;
	color: #000;
	display: block;
	font-size: 1rem;
	height: auto;
	left: 1rem;
	line-height: normal;
	padding: 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

#navbtn,
.submenu-toggle {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

#navbtn,
.submenu-toggle {
	display: none;
}

/************************/
/**SIZE SPECIFIC STYLES**/
/************************/
/**COMBINATIONS**/
/**SM & DOWN*/
@media (max-width: 767px) {
	#page-wrap {
		transition: filter .3s;
	}
	#page-wrap.navactive {
		filter: blur(5px);
	}
	#main-nav {
		transition: .3s;
		z-index: 1000;
	}
	#nav-wrap {
		position: fixed;
		top: 0;
		right: -100%;
		left: 100%;
		bottom: 0;
		transition: .3s;
		background: rgba(0, 0, 0, .85);
		z-index: 2000;
		padding-top: 45px;
	}
	.topnav_ul {
		margin: 0;
		padding: 0;
	}
	.topnav_ul li {
		list-style: none;
	}
	.topnav_ul li a {
		font-family:"Oswald",sans-serif;
		text-decoration:none;
		display: block;
		font-size: 19px;
		color: #fff;
		padding: 8px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		transition: .3s;
	}
	.topnav_ul li a:hover {
		text-decoration: none;
		background: rgba(0, 0, 0, .5);
	}
	#navbtn {
		display: block;
		width: 25px;
		height: 25px;
		position: absolute;
		z-index: 9000000;
		right: 15px;
		top: 15px;
		cursor: pointer;
		transition: .3s;
	}
	#navbtn .bar1, #navbtn .bar2, #navbtn .bar3 {
		content: "";
		display: block;
		height: 2px;
		width: 100%;
		position: absolute;
		background: #FFF;
		transition: .3s;
		outline: 1px solid #00542b;
	}
	#navbtn .bar1 {
		top: 2px;
	}
	#navbtn .bar2 {
		top: 12px;
		opacity: 1;
	}
	#navbtn .bar3 {
		bottom: 1px;
	}
	.navactive #navbtn .bar2 {
		opacity: 0;
	}
	.navactive #navbtn .bar1 {
		transform: rotate(45deg) translateY(8px) translateX(6px);
		outline: none;
	}
	.navactive #navbtn .bar3 {
		transform: rotate(-45deg) translateY(-8px) translateX(6px);
		outline: none;
	}
	.navactive #navbtn {
		display: block;
	}
	.navactive #nav-wrap {
		right: 0;
		left: 0;
	}
	.sub-wrap {
		display: grid;
		grid-template-rows: 0fr;
		transition: .3s;
	}
	.sub-menu {
		overflow: hidden;
		padding-left: 0;
	}
	.sub-menu a {
		padding-left: 1.5rem;
	}
	.menu-item-has-children.is-sub-open > .sub-wrap {
		grid-template-rows: 1fr;
	}

	.menu-item-has-children {
		position: relative;
	}

	.menu-item-has-children > a {
		padding-right: 3.25rem;
	}

	.submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		right: 0;
		width: 44px;
		height: 44px;
		color: #fff;
		cursor: pointer;
		z-index: 1;
	}

	.submenu-toggle .bi {
		font-size: .8rem;
		pointer-events: none;
	}

}
/**MD & DOWN*/
@media (max-width: 991px) {}
/**LG & DOWN**/
@media (max-width: 1199px) {}
/**MD & UP*/
@media (min-width: 768px) {
	#main-nav {
		position:relative;
		z-index:1000;
		background:url(../images/topbg.jpg) no-repeat center center;
		background-size:cover;
		transition:.3s;
		display:block;
	}
	.topnav_ul {
		margin:0;
		padding:0;
		overflow:hidden;
	}
	
	.topnav_ul:hover {
		overflow:visible;
	}
	
	.topnav_ul>li {
		margin:0;
		padding:0;
		display:inline-block!important;
		list-style:none;
		position:relative;
	}

	.topnav_ul>li>a {
		font-family:"Oswald",sans-serif;
		display:block;
		position:relative;
		font-size:20px;
		font-weight:600;
		color:#FFF;
		text-align:center;
		transition:.3s;
		padding:8px 15px;
		text-decoration:none;
	}
	
	.topnav_ul>li:hover>a {
		text-decoration:none;
		color:#bf5d49;
	}
	
	
	.sub-wrap {
		display:block;
		position:absolute;
		top:100%;
		left:0;	
		z-index:-100;
		opacity:0;
		transition:opacity .3s;
		min-width:105%;
	}
	
	.sub-menu {
		margin:0;
		padding:0;
	}
	
	.sub-menu>li {
		display:block;
		list-style:none;
		margin:0;
		padding:0;
	}
	
	.sub-menu>li>a {
		display:block;
		padding:5px 17px;
		color:#000;
		background:#DDD;
		white-space: nowrap;
		text-align:left;
		text-decoration:none;
	}
	
	.sub-menu>li>a:hover {
		text-decoration:none;
		color:#00F;
	}
	
	.topnav_ul>li:hover>.sub-wrap {
		z-index:10000000;
		opacity:1;
	}
	
	.nav-fill {
		display:flex;
	}
	
	.nav-fill>li {
		flex: 1 1 auto;
		text-align: center;
	}

	.nav-fill>li>a{
		width: 100%;
	}
}
/**LG & UP**/
@media (min-width: 992px) {}
/**XLG & UP**/
@media (min-width: 1200px) {}
/**XXLG & UP**/
@media (min-width: 1400px) {}
/**INDIVIDUAL SIZES**/
/**XS**/
@media (max-width: 575px) {}
/**SM**/
@media (min-width: 576px) and (max-width: 767px) {}
/**MD**/
@media (min-width: 768px) and (max-width: 991px) {}
/**LG**/
@media (min-width: 992px) and (max-width: 1199px) {}
/**XLG**/
@media (min-width: 1200px) and (max-width: 1399px) {}
/**XXLG**/
@media (min-width: 1400px) {}