@import url('common.css');

/* ============= header ============== */

header{
	position: fixed;
	left:0;
	right:0;
	padding-right: 3rem;
	z-index: 999;
	background: #fff;
}

header::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height:0;
	background-color: #fff;
	transition: 0.3s;
}

header.sticky::before{
	height: 100%;
	box-shadow: 0 0 4px #eee;
}

header >div{
	position: relative;
}


header .logo img{
	width: 30rem;
	display: block;
}


.site_icons li a img{
	height: 3rem;
}

.site_icons ul li a{
	padding: 0 2rem;
	display: block;
}
.site_navigation ul li a{
	font-size: 2rem;
    padding: 2.7rem 3.5rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-grey);
}

.site_navigation ul li:last-of-type a{
	padding-right: 0
}

/* =============== banner ================*/

.banner_caption{
/* 	justify-content: center;
	position: absolute;
	top: 0;
	left:0;
	display: flex;
	bottom: 0;
	right:0;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 8rem; */
	position: absolute;
    top: 0;
    left: 0;
    display: flex;
    padding-top: 19rem;
    bottom: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: wrap;
}
.bannerBlock h4{
	font-size: 7rem;
	line-height: 6rem;
	margin-bottom: 2rem;
}
.bannerBlock img{
	height: 100vh;
	object-position:bottom;
}
.banner_caption h1{
	color:#473d3e;
}
.bannerBlock h1 span{
	color: var(--orange);
}
.bannerBlock .btn{
	height: 6rem;
	line-height: 6rem;
	min-width: 31rem;
}
.innerbannerBlock h1{
	color:#fff;
}

/* ============== menu ==================*/

.menuItems .item{
	background: var(--light-grey);
	border-radius: 2.5rem;
	padding:3rem 0;
	text-align: center;
}
.menuItems .item img{
	max-width: 100%!important;
	width:unset;
	margin:auto;
}
.menuItems h3{
	font-size: 2.8rem;
	margin-bottom: 0;
	margin-top: .5rem;
}
.mobilemenu {
	display: none
}

.mobilemenu span {
	width: 30px;
	height: 2px;
	background-color: #473d3e;
	margin-bottom: 7px;
	display: block;
	position: relative;
	transition: .2s
}

.main-submenu-mobile {
	display: none
}

.mobilemenu span:last-child {
	margin: 0
}

.menuactive .site_navigation {
	transform: translateX(0)
}

.menuactive .mobilemenu span:first-child {
	transform: rotate(45deg);
	top: 8px
}

.menuactive .mobilemenu span:last-child {
	transform: rotate(-45deg);
	top: -10px
}

.menuactive .mobilemenu span:nth-of-type(2) {
	opacity: 0
}



/* ============== Food Items ==================*/

.foodItems .itemDesc{
	box-shadow: 0 2px 8px #eee;
	padding: 2rem;
     display: flex;
 	justify-content:space-between;
	height: 100%;
}
.foodItems .itemDesc h3{
    padding-right:2rem;
}
.foodList{
	grid-template-columns: 1fr 1fr ;
	grid-gap: 3rem;
}

.foodItems .itemImg{
	position: relative;
}
.foodList .pro-img{
	width: 100%;
	display: block;
	height: 35rem;
}
.foodList h3{
    font-size:2rem;
}
.cartIcon{
	background: var(--green);
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	display: flex;
	text-align: center;
	cursor: pointer;
	position: absolute;
	right:2rem;
	bottom: -2rem;
	border:4px solid #fff;
	box-shadow:0 0px 20px #eee;
}
.d-none{
    display:none;
}
.cartIcon img:first-child {
    max-width: 2.1rem;
}

.cartIcon img{
	width: 3rem;
}
.cartIcon img{
	width: 3rem;
}
.cartIcon:not(.active) img:first-child,
.cartIcon.active img + img{
	display: none;
}


/* ============== Delivery Block ==================*/

.DeliveryBlock{
	background: url(../images/food-delivery-canberra.jpg) right /cover;
	background-size: cover;
	/*-webkit-animation: backgroundScroll 20s linear infinite;*/
 /*   animation: backgroundScroll 5s linear infinite;*/
	height: 63rem;
	/*animation-fill-mode:forwards;*/
}
.deliveryContent h4{
	color:#1c1a1a;
}
.deliveryContent h2{
	background: var(--green);
    color: #fff;
    border-radius: 3rem;
    height: 7rem;
    line-height: 7rem;
    font-size: 4rem;
    margin-bottom: 1rem;
}
.deliveryContent h4{
	font-size: 6rem;
}
.deliveryContent{
	max-width: 70rem;
    text-align: center;
    margin-top: 30px;
}


/*============== animations ===========*/

@-webkit-keyframes backgroundScroll {
    from {background-position: 0 0;}
    to {background-position: -2200px 0;}
}
        
@keyframes backgroundScroll {
    from {background-position: 0 0;}
    to {background-position: -400px 0;}
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 50% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}


/*============= About Block  =====================*/
.aboutBlock h2{
    font-size: 4rem;
    line-height: 5rem;
}
/* ============== Testimonials Block ==================*/

.testimonialBlock{
	position: relative;
}
.testimonialBlock .item_bg{
	position: absolute;
	z-index: -1;
}
.testimonialsItems .item{
	max-width: 55rem;
	background: var(--light-grey);
	padding: 2rem;
}
.item_bg:nth-of-type(2){
	bottom:6rem;
	right:0;
}
.item_bg:nth-of-type(1){
	top:-4rem;
}
.testimonialsItems .item:nth-of-type(1){
	margin: 0 auto 3rem auto;
}
.testimonialsItems .item h5{
	text-align: right;
}
.site_footer{
	background: url(../images/footer-bg.jpg);
	background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9)),url(../images/footer.jpg);
	/*background-color:#473d3e;*/
	color:#aaaaaa;
	background-size: cover;
	background-attachment:fixed;
}
.site_footer h3{
    color:#fff;
	margin-bottom:2rem;
}
.ft-timings{
    padding: 1.5rem 0;
}
.footer_bottom{
	padding-top:2rem;
}
.socialIcon li{
	line-height:unset;
}
.copyright{
    border-top: 1px solid #5c5b5b;
    padding-top: 2rem;
}
.timing-block{
     text-align: center;
    border-top: 3px dotted #fff;
    border-bottom:3px dotted #fff;
    margin-bottom:1rem;
}
.ft-timings:nth-of-type(2){
    padding-top:0;
}
.ft-timings h5{
    color:#fff;
}
.hoursList{
	margin: 2rem 0;
}
.footerLeft{
    padding:4rem 0;
}
.openingHours h4{
	color:#fff;
	font-size: 3rem;
	line-height:3rem;
	text-align: center;
}
.footerInner{
	grid-gap: 0 3rem;
	grid-template-columns: 3fr 1fr;
}

.contactInfo img{
	padding-right: 1rem;
	vertical-align: middle;
}
.contactBlock{
    padding-bottom:0;
}
.f-item{
	grid-gap: 0 7rem;
}
.footerLinks{
	grid-gap: .5rem 0;
}
.footerLinks img{
	width:30px;
}
.contactInfo{
	margin:2rem 0;
}
.contactInfo ul{
	display:grid;
	justify-content:flex-start;
	grid-gap: 0 2rem;
	grid-template-columns:auto auto;
}
.contactInfo ul li:first-of-type{
	border-right:1px solid #ccc;
	padding-right: 2rem;
}
.socialIcon li{
	padding-right: 1.5rem;
}
.openingHours{
	background: var(--orange);
	padding: 1rem;
    color: #fff;
    font-weight: 300;
}
.innerHours{
	border:2px solid #fff;
	height: 100%;
	padding: 2rem;
	display: grid;
    align-items: center;
}

/* form*/

.checkout-form p{
    padding-bottom:0.5rem;
}
.checkout-form input[type="radio"]{
    height: 3rem;
    width: 2rem;
    margin-left: 2rem;
}
.checkout-form label{
    display:flex;
    align-items:center;
}
.innerbannerBlock{
    background:url("../images/about.jpg")no-repeat right/cover;
    height:40rem;
    display: flex;
    align-items: center;
    padding-top: 60px;
}



.sidebar-categories li img {
  width: 1.4rem;
  position: absolute;
  right: 1.5rem;
  top: 1.7rem;
}

.sidebar-categories {
  background: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 0 4px #ddd;
  position: sticky;
  top: 10rem;
  z-index: 100;
}

.sidebar-categories li a.active {
  color: var(--orange);
}

.sidebar-categories li {
  list-style-type: none;
}

.sidebar-categories li a {
  display: block;
  padding: 0.8rem 2.5rem;
  position: relative;
}


.titleBlock {
  text-align: center;
}

.shop-row {
  display: grid;
  grid-template-columns: 30rem 1fr;
  grid-gap: 5rem;
  align-items: flex-start;
}

.FormBlock .row{
	grid-gap: 0 8rem;
}


.storyBlock .rightItem img{
    width: 15rem;
    margin: 0 auto 3rem;
}


/*Search Widget */

.searchModal {
   position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; 
  display: none; 
  z-index: 50000; 
  background: rgba(255,255,255,0.98); 
}

.modal-content {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center; 
  justify-content: center;
  padding-bottom: 10rem;
}

.search-wrapper {
  width: 100%;
  max-width: 80rem;
  position: relative;
}

.search-wrapper p{
  margin-top: 2rem;
}

.search-wrapper input {
  height: 6rem;
  font-size: 4rem;
  letter-spacing: 0.7px;
  padding: 0;
  padding-right: 6rem;
  font-weight: 900;
  display: block;
  width: 100%;
  border: navajowhite;
  border-bottom:2px solid #c3c2c2;
	background:transparent
}

.search-wrapper ul {
  padding: 1rem 0;
  box-shadow: 0 0 4px #ddd;
  margin: 1.5rem 0;
}
.search-wrapper ul a {
  display: block;
  padding: .5rem 2rem;
  font-weight: 400;
  font-size: 1.8rem;
}
.search-wrapper ul a:hover {
  color:var(--orange);
}


.close-modal {
  position: absolute;
  right: 0;
  top: 0.5rem;
  z-index: 22;
  cursor: pointer;
  width: 5rem;
  text-align: center;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.close-modal img{
  width: 3rem;
}

/*Checkout CSS*/

.checkTable table,
.checkTable th,
.checkTable td {
  border: 0.1rem solid #ddd;
  border-collapse: collapse;
  margin: 0;
  user-select: none;
  padding: 1rem 2rem;
}

.checkTable table {
  width: 100%;
  margin: 0 auto;
}

.checkTable tr td img {
  max-width: 4rem;
  border-radius: 50%;
  height: 4rem;
  vertical-align: middle;
  margin-right: 1.5rem;
  object-fit: cover;
}

.checkTable .profile {
  display: flex;
  align-items: center;
}

.checkTable h6 {
  font-size: 1.8rem;
  padding-left: 2.5rem;
}

.checkTable .removeItem {
  background-color: #ff5d5d;
  color: #fff;
  padding: 0.4rem 1.5rem;
  cursor: pointer;
  border-radius: 0.4rem;
  text-align: center;
}

.checkTable tr td:last-child {
  text-align: center;
}

.total {
  margin-top: 2rem;
  text-align: right;
}

.total h5{
  font-size: 3.4rem;
  margin: 3rem 0 3rem;
  color: var(--dark-grey);
}

.proceedBtn {
  display: flex;
  justify-content: space-between;
}

.proceedBtn {
  margin-top: 1rem;
}

.proceedBtn .btn {
  margin-top: 0;
}

.proceedBtn .proceedBtn {
  border-radius: 0;
  width: 35rem;
  text-align: center;
  display: block;
  max-width: 100%;
}

.checkTable h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.checkTable span.quantity,
  .checkTable span.subtotal {
  min-width: 4rem;
  display:inline-block;
  text-align: center;
}


.checkTable span.subtotal {
  min-width: 6rem;
}


.checkTable .icon {
  width: 3rem;
  text-align: center;
  height: 3rem;
  margin: 0 2rem;
  border: 0.1rem solid #ccc;
  display: inline-flex;
  align-items: center;
  font-size: 2.3rem;
  cursor: pointer;
  justify-content: center;
}



.checkout-handler{
	display: none;
}
.checkout-handler h2{
	text-align: center;
}

.checkout-handler form{
	max-width: 750px;
	margin: auto;
}

.success-message{
	text-align: center;font-size: 20px;border: 1px solid;padding: 20px 10px;max-width: 600px;margin: auto;
}



.single-product .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 6rem;
}

.single-product .row >div{
    overflow: hidden;
}

.single-product h1{
    font-size: 3rem;
    line-height: 4rem;
    margin:-0.5rem 0 2rem;
}
.foodList .itemImg a img{
    height: 250px;
    width:100%;
    object-fit: cover;
}
.pro-desc{
    margin-bottom: 3rem;
}
.single-product img{
    width: 100%;
    height:600px;
    object-fit: cover;
}
.innerbannerBlock{
    height:40rem;
}
.cartBtn{
	cursor: pointer;
}

.pro-desc::before{
    content:'Description: ';
}

.price span, .pro-desc::before{
    color: initial;
    font-weight:normal;
    vertical-align: middle;
    font-size: 1.6rem;
    margin-right: .3rem;
}
.contact-details h3{
	font-size:3.5rem;
}
.contactBlock h2{
	margin-bottom:3rem;
}
.shop-items{
	display:none;
}