* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    list-style: none;
    font-weight: 600;
}
:root {
    --mainColor: #C1181F;
    --secondaryColor: #fdaf28;
    --instagram: #e95950;
    --tiktok: black;
    --phone: #5BC236;
    --bgColor: #eee;
    --bgSecondaryColor:#333;
    --white: #ffffff;
    --black: #000000;
}
html {
    scroll-behavior: smooth;
    width: 100%;
}
body {
    width: 100%;
    background: var(--white) !important;
}
.wrapper {
    margin: 0 auto;
    overflow: hidden;
    min-height: 100vh;
}
.powered {
    z-index: 1000;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0px;
    position: fixed;
    border-radius: 5px 5px 0px 0px;
    bottom: 0;left: 0;
}
.powered h3 {
    text-align: center;
    color: var(--black);
    font-weight: 400;
    font-size: 13px;
}
.powered h3 a {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}
main {
    width: 100%;
}
header {
    width: 100%;
    overflow: hidden;
    height: 100vh;
    /* background-image: url(../img/mainBg.jpg);
    background-position: center;   
    background-size: cover;
    background-repeat: no-repeat; */
    position: relative;
}
header .meal {
    position: absolute;
    left: 50%;
    top: -15%;
    width: 250px;
    transform: translateX(-50%);
}
.header_container {
    height: 100%;
    margin: 0 auto;
    max-width: 767px;
    z-index: 1;
    display: flex;flex-direction: column;
    align-items: center;justify-content: center;
}
/* .shadow {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(1.5px);
    position: absolute;
    top: 0;left: 50%;transform: translateX(-50%);
    z-index: 0;
} */
h1 {
    margin: 20px 0px 20px 0px;
    /* color: var(--white); */
    text-align: center;
    font-size: 35px;
    z-index: 2;
}
.header_btns_container {
    z-index: 2;
    display: flex;flex-direction: column;
    align-items: center;
    margin: 0px 0px 0px 0px;
}
.header_btns_container h3 {
    font-weight: 700;
}
.header_btns_container > a {
    width: 100%;
    display: flex;align-items: center;justify-content: center;
    padding: 13px 20px;
    background: var(--mainColor);
    border: 2px solid var(--mainColor);
    color: var(--white);
    border-radius: 5px;
    transition: 300ms;
    margin: 15px 0px 0px 0px;
    z-index: 2;
}
.header_btns_container > a:hover {
    background: transparent;
    color: var(--mainColor);
}
strong {
    color: var(--mainColor);
    font-weight: 800;
}
.socials {
    margin: 20px 0px 0px 0px;
    width: 100%;
    display: flex;align-items: center;justify-content: space-between;
}
.socials a{
    padding: 10px;
    background: var(--mainColor);
    color: var(--white);
    border-radius: 5px;
}
.logo {
    width: 90%;
    max-width: 250px;
    opacity: .9;
    z-index: 2;
    margin: 0px 0px 10px 0px;
    position: relative;
}
.logo::after {
    content: '';
    position: absolute;
    width: 50%;
    left: 50%;
    transform: translate(-50%);
    bottom: -2px;
    height: 3px;
    background: var(--mainColor);
}
#instagram {
    background: var(--instagram);
}
#tiktok {
    background: var(--tiktok);
}
#phone {
    background: var(--phone);
}
footer {
    background: var(--white);
    position: relative;
    padding: 0px 0px 70px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer h2 {
    margin: 0px 0px 30px 0px;
    font-weight: 700;
    background: var(--mainColor);
    color: var(--white);
    text-align: center;
    width: 100%;
    padding: 15px 0px;
}
.footer_container {
    width: 100%;
    padding: 0px 10px;
    max-width: 767px;
}
.footer_nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_nav * {
    text-align: center;
}
.footer_nav li {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_nav h3 {
    font-weight: 700;
    color: var(--mainColor);
}
.footer_nav li a, h4{ 
    display: inline-block;
    font-size: 22px;
    margin: 5px 0px;
    color: var(--black);
}

.scroll-down{
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-down span{
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 2px solid var(--mainColor);
	border-right: 2px solid var(--mainColor);
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}

.scroll-down span:nth-child(2)
{
	animation-delay: -0.2s;
}

.scroll-down span:nth-child(3)
{
	animation-delay: -0.4s;
}

@keyframes animate{
	
	0%{
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}
@media(max-width:500px) {
    /* header {
        width: 100%;
        background-image: url(../img/mainBg2.jpg);
        background-position: center center;   
        background-size: cover;
        background-repeat: no-repeat;
    } */
    h1 {
        font-size: 30px;
        padding: 0px 10px;
    }
}
@media(max-width:350px) {
    h1 {
        font-size: 25px;
    }
}