
@media (max-width: 991px) {
    .desc {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .mob {
        display: none !important;
    }
}


.home-section {   
    position: relative;  
}


.home-section::before {
    content: "";
    background-image: url(../images/design/pizza-bg.svg);
    background-size: cover;
    background-position: left bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
}


.pizzas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }
  
  .pizzas .menu-item {
    border: 1px solid #ccc;
    padding: 16px;
    flex: 1 1 calc(33.33% - 16px);
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 4px;
    text-align: center;
  }
  @media (max-width: 768px) {
    .pizzas .menu-item {
      flex: 1 1 100%; /* Single column on smaller screens */
    }
  }
  .menu-cat {
	text-align: center;
	font-size: 35px;
	margin: 2rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
	text-transform: uppercase;
	color: var(--color-1);
    font-family: var(--text-font) !important;
    font-weight: 700;
    margin-top: 0;
}

.menu-cat::before,
.menu-cat::after {
	content: "";
	border-top: 2px solid;
	margin: 0 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 20px;
	flex: 1 0 20px;
}
.item-title h5 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.last-item {
    max-width: 400px;    
    margin: 0 auto;
    margin-bottom: 30px;
}
.front {
    margin-top: 0 !important;
}
#heroCarousel {
    min-height: 100vh!important;
}