#header_section {
    background: #ec2321;
    padding: 10px;
}

.logo {
    display: block;
    width: 60%;
    height: auto;
    margin: 5px auto;
}

.heading_title {
    width: 100%;
    text-align: center;
    color: #ec2321;
    font-size: 25px;
    font-weight: 500;
}

.main_btns {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.main_btn,
.main_btn:hover,
.main_btn:focus {
    background-color: #ec2321;
    color: #ffffff;
    margin: 5px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

#slogan_section {
    background-image: url("../img/slogan_section_bg.webp");
    background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    border-top: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
}

.slogan_box {
    position: relative;
    display: block;
    width: 60%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 30px;
    margin: 20px auto;
}

.slogan_title {
    color: #ec2321;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    line-height: 1;
    margin-bottom: 10px;
}

.slogan_subtitle {
    color: #ec2321;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.visa_img {
    display: block;
    height: 60px;
    margin: 20px auto;
}

#delivery_section,
#pickup_section {
    background: #ec2321;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.delivery_btns,
.pickup_btns {
    display: flex;
    justify-content: center;
}

.delivery_btn,
.delivery_btn:hover,
.delivery_btn:focus,
.pickup_btn,
.pickup_btn:hover,
.pickup_btn:focus {
    background-color: #2d2d2d;
    color: #ffffff;
    margin: 10px 5px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

#product_section {
    background-color: #2d2d2d;
}

.product_items {
    position: relative;
    text-align: center;
    margin: 50px auto;
    overflow: hidden;
}

.product_item {
    height: 300px;
    padding: 0;
    border: solid 2px white;
    overflow: hidden;
}

.product_img {
    display: block;
    width: 100%;
    height: 300px;
}

.product_img:hover {
    -webkit-animation: zoomin 10s ease-in infinite;
    animation: zoomin 10s ease-in infinite;
    transition: all 0.5s ease-in-out;
}

#img1 {
    background-image: url("../img/product1.png");
    background-size: cover;
    background-position: center;
}

#img2 {
    background-image: url("../img/product2.png");
    background-size: cover;
    background-position: center;
}

#img3 {
    background-image: url("../img/product3.png");
    background-size: cover;
    background-position: center;
}

#img4 {
    background-image: url("../img/product4.png");
    background-size: cover;
    background-position: center;
}

#info_section {
    background-color: #ffffff;
}

.info_box {
    position: relative;
    display: block;
    width: 60%;
    background: #ffffff;
    text-align: center;
    margin: 50px auto;
}

.info_title {
    color: #ec2321;
    margin-top: 10px;
	font-size: 2.5rem;
}

.info_subtitle {
    color: #ec2321;
    margin-top: 10px;
	
}

.info_divider {
    width: 40px; 
    height: 2px !important;
    text-align: center;
    opacity: 1;
    color: #000;
    margin: 10px auto;
}

.info_text {
    padding: 20px;
}

.info_description {
    color: #000000;
}

#footer_section {
    background-color: #2d2d2d;
    color: #ffffff;
}

.footer_box {
    text-align: center;
    padding: 30px;
    margin: 10px auto;
}

.footer_logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 15px auto;
}

.footer_title {
    width: 100%;
	text-align: center;
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
	margin-top: 10px;
}

.footer_subtitle {
    width: 100%;
    color: #ec2321;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer_description {
    width: 100%;
    color: #ec2321;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: bold;
}

.footer_text {
    width: 100%;
    text-align: center;
    color: #ec2321;
    font-size: 20px;
}

.disclaimer {
	font-size: 10px;
	text-align: center;
}
	
.rating_img {
    width: 170px;
	ertical-align: middle;
}

#copyright_section {
    background: #ec2321;
    padding: 10px;
    text-align: center;
}

.copyright_text {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 0;
}

.link {
    text-decoration: none;
    color: inherit;
}

@media only screen and (max-width: 768px) {
	.logo { width: 70%; }
	#map iframe { min-height: 300px; }
	.slogan_title { font-size: 50%; }
	.slogan_subtitle { font-size: 50%; }
}

@media only screen and (max-width: 320px) {
		.logo { width: 50%; }
		.slogan_title { font-size: 50%; }
		.slogan_subtitle { font-size: 50%; }
}

#cookies {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #333333;
    color: #fff;
    padding: 10px;
    z-index: 1;
}

.cookies_text {
    margin-bottom: 0;
}

#cookies_text,
#cookies_btn {
    display: flex;
    align-items: center;
}

#cookies_btn {
    justify-content: right;
}

.cookies_btn, .cookies_btn:hover {
    background: #ec2321;
    color: #ffffff;
    border-color: #ec2321;
}

.scroll_top_btn, .scroll_top_btn:hover {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: none;
    border-color: transparent;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .order-btn {
        font-size: 16px;
    }
    .slogan_box {
        width: 90%;
        padding: 10px;
    }
    .info_box {
        width: 90%;
    }
    .slogan_title {
        font-size: 2rem;
    }
    #footer_content {
        padding: 25px;
    }
}

@media only screen and (max-width: 320px) {
    .order-btn {
        font-size: 16px;
    }
}

/* Animations */
@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes zoomin {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

.animate {
    opacity: 0;
}

.fadeInLeft.active {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight.active {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown.active {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}