@charset "utf-8";


body {
	
}

header {
	background-image: url("images/img1.webp");
	background-size: cover;
	background-position: center center;
}


.block01 {
	position: relative;
	z-index: 1;
}

.block01 video {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	object-fit: cover;
	object-position: center center;
	height: 100%;
	width: 100%;
}


.bgWhite {
	background-color: rgba(255,255,255,.9);
}

.color {
	color: #ed1c24;
}
.bgRed {
	background-color: rgba(237,28,36,.8);
	backdrop-filter: saturate(180%) blur(10px);
}

.arrowBox {
  position: relative;  
  overflow: hidden;
	z-index: 1;
  font-size: 14px;
}
.arrowBox::before {
  content: '';
  position: absolute;
  top: 0;
	right: 50px;
  width: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #ffc600, #ffa800);
	z-index: -1;
}

.arrowBox::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
	right: -50px;
  border-width: 50px;
	border-style: solid;
  border-color: transparent transparent transparent #ffa800;
	z-index: -1;
}

.roundImg {
	border-radius: 50%;
	padding: .5rem;
	border: solid #ed1c24 2px;
	height: 260px;
	width: 260px;
	display: inline-block;
	background-color: #fff;
}
.ingredients .roundImg {
	border-radius: 50%;
	padding: .5rem;
	border: solid #ed1c24 2px;
	height: 140px;
	width: 140px;
	display: inline-block;
	background-color: #fff;
}


.circles {
	position: relative;
	z-index: 1;
}

.circles::before {
	content: "";
	height: 2px;
	width: calc(100% - 8rem);
	background-color: #ed1c24;
	position: absolute;
	top: calc(130px + 3rem);
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	
}


.bottomDiv {
	background-image: url("images/img13.webp");
	background-size: cover;
	background-position: center center;
}

.check {
	position: relative;
	z-index: 1;
	padding-left: 40px;
}

.check::before {
	content: "";
	height: 32px;
	width: 32px;
	background-image: url("images/check.webp");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.btn1 {
	
	color: #fff;
	transition: .4s;
	font-weight: 700;
	letter-spacing: .1rem;
	position: relative;
	z-index: 1;
	border: solid #ed1c24 3px;
}
.btn1::before {
	content: "";
	background-color: #ed1c24;
	height: calc(100% - 10px);
	width: calc(100% - 10px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .4s;
	font-weight: 700;
	letter-spacing: .1rem;
	z-index: -1;
	border-radius: 4px;
}
.btn1:hover {
	background-color: #ed1c24;
	color: #fff;
}



footer p {
	font-size: 12px;
}

footer a {
	color: #fff;
	font-weight: 500;
	letter-spacing: .05rem;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 12px;
	transition: .2s;
}

footer a:hover {
	color: #ff9000;	
	text-decoration: none;
}

.offcanvas {
	--bs-offcanvas-width: 50vw;
}


.prodBox {
	position: relative;
	z-index: 1;
	color: #fff!important;
	transition: .4s;
}

.prodBox:hover {
	color: #fff!important;
}

.prodBox::before {
	content: "";
	background-color: #ffa800;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	z-index: -1;
	transition: .4s;
}

.prodBox:hover::before {
	background-color: #ed1c24;
	box-shadow: 0 15px 30px rgba(0,0,0,.2);
}


.btn-2 {	
	border: solid #ffa800 2px;
	color: #ffa800;
	font-weight: 600;
	background-color: #fff;
	font-size: 1.4rem;
	letter-spacing: .1rem;
	line-height: 1.4rem;
}

.prodBox:hover .btn-2 {	
	border: solid #ed1c24 2px;
	color: #ed1c24;
}



.btn-2::before {
	border: solid #ffa800 2px;
	background: transparent;
}

.btn-2:hover::before {
	background: #fff;
}
.btn-2:hover {
	color: #fff!important;
	background-color: #ffa800;
}