:root {
    --main-color: #00A9FF;
    --section-text-color: #2E2C2C;
    --food-restaurants-color: #2ECC71;
    --shops-color: #F9CA24;
    --pos-color: #54A0FF;
    --inventory-color: #FF6464;
    --purchases-color: #FF9C64;
    --reports-color: #333333;
    --faq-color: #54A0FF;
}

body {
    margin: 0;
    font-family: 'Inter', cursive;
}

.inter {
    font-family: 'Inter', cursive;
}

.anton {
    font-family: 'Anton', cursive;
    letter-spacing: 0.05rem;
}

header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;

}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/********************* HEADER ********************/

#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

#logo img {
    height: 2rem;
}

#logo a {
    font-weight: 900;
}

header ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header li {
    margin: 0 1rem;
}

a:visited {
    color: black;
}

.btn-primary {
    background-color: var(--main-color);
    color: white !important;
    border-radius: 3rem;
    padding: 0.3rem 2rem 0.3rem 2rem;
    font-weight: bold;
}

/********************* INTRO ********************/

#header-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#header-section div {
    width: 50%;
    text-align: center;
}

#header-section div:first-child {
    display: flex;
    flex-flow: column;
    align-items: center;
}

#header-section div:first-child img {
    height: 2.2rem;
    margin-top: 1rem;
}

#header-section img {
    height: 50vh;
}

#contact-button {
    font-size: 1.5rem;
}

/********************* FOOD RESTAURANTS SECTION ********************/

#food-restaurants-section {
    color: var(--section-text-color);
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    position: relative;
    height: 50vh;
}

#food-restaurants-section div {
    background-color: var(--food-restaurants-color);
    border-radius: 0rem 1.2rem 1.2rem 0rem;
    padding: 1rem;
}

#food-image {
    width: 51%;
    margin-left: 5rem;
    object-fit: cover;
    border-radius: 1.2rem 0rem 0rem 1.2rem;
}

#food-section {
    width: 49%;
    margin-right: 5rem;
}

#food-restaurants-section li {
    margin-top: 0.3rem;
}

.section-alignment {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.angle-right {
    height: 1rem;
}

.gray-text {
    color: var(--section-text-color) !important;
}

.see-more {
    display: flex;
    gap: 1rem;
    justify-content: end;
    align-items: center;
    padding: 0px !important;
}


/********************* SHOPS SECTION ********************/

#shops-section {
    color: var(--section-text-color);
    margin-top: 5vh;
    display: flex;
    justify-content: center;
    position: relative;
    height: 50vh;
}

#shops-section div {
    background-color: var(--shops-color);
    border-radius: 1.2rem 0rem 0rem 1.2rem;
    padding: 1rem;
}

#shops-section li {
    margin-top: 0.3rem;
}

#shop-image {
    width: 51%;
    margin-right: 5rem;
    object-fit: cover;
    border-radius: 0rem 1.2rem 1.2rem 0rem;
}

#shop-section {
    width: 49%;
    margin-left: 5rem;
}

/********************* POS SECTION ********************/

#pos-section {
    background-color: var(--pos-color);
    margin-top: 25vh;
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

#pos-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
}

#pos-section ul li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

#pos-section ul img {
    height: 2.5rem;
}

#delivery-services {
    text-align: end;
    align-self: center;
}

#pos-section .see-more {
    display: flex;
    margin: 0rem 1rem 2rem auto;
}

#delivery-services img {
    height: 2rem;
}

.white {
    color: white !important;
}

.monitor {
    position: absolute;
    left: 0;
    top: -8rem;
}

.monitor img {
    height: 20rem;
}

.monitor p {
    color: black;
    font-weight: 900;
    position: absolute;
    top: 4rem;
    left: 4.5rem;
}


/********************* INVENTORY SECTION ********************/

#inventory-section {
    background-color: var(--inventory-color);
    margin-top: 20vh;
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

#inventory-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
}

#inventory-section ul li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

#inventory-section ul img {
    height: 2.5rem;
}

#inventory-section .see-more {
    margin: 0rem 1rem 1rem auto;
}

.section-top-right {
    position: absolute;
    height: 15rem;
    right: 0;
    top: -10rem;
}

.section-top-left {
    position: absolute;
    height: 15rem;
    left: 0;
    top: -10rem;
}


/********************* PURCHASES SECTION ********************/

#purchases-section {
    background-color: var(--purchases-color);
    margin-top: 20vh;
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

#purchases-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
}

#purchases-section ul li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

#purchases-section ul img {
    height: 2.5rem;
}

#purchases-section .see-more {
    margin: 0rem 1rem 1rem auto;
}


/********************* REPORTS SECTION ********************/

#reports-section {
    background-color: var(--reports-color);
    margin-top: 20vh;
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

#reports-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
}

#reports-section ul li {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

#reports-section ul img {
    height: 2.5rem;
}

#reports-section .see-more {
    margin: 0rem 1rem 1rem auto;
}

/********************* FAQ SECTION ********************/

#faq-section {
    padding: 0 0.5rem;
    margin-top: 2rem;
    background-color: var(--faq-color);
    padding-top: 0.2rem;
    padding-bottom: 2rem;
    color: white;
}

#faq-section h1 {
    font-family: Anton;
    font-weight: lighter;
    font-size: 2.5rem;
    margin: 1rem 0;
    margin-bottom: 1rem;
}

#faq-section h3 {
    font-size: 1.5rem;
    font-family: Anton;
    font-weight: lighter;
}

.black {
    color: black;
}

#faq-section hr {
    color: white;
}


/********************* CUSTOMERS SECTION ********************/

#customers-section {
    text-align: center;
}

#customers-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#customers-section ul li img {
    height: 8rem;
}

#customers-section h1 {
    font-family: Anton, cursive;
    font-size: 3rem;
    font-weight: lighter;
}


/********************* IMPULSE SECTION ********************/

#impulse-section {
    background-image: url('../images/vendix-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 1rem 0 1.8rem 0;
}

#impulse-section h2 {
    font-family: Anton;
    font-weight: lighter;
}

#impulse-section p {
    padding: 1rem 0;
}

#impulse-section a {
    font-family: Anton;
    letter-spacing: 0.05rem;
    font-weight: lighter;
}

footer {
    padding: 2rem 1rem;
    background-color: black;
    display: flex;
    color: white;
}

footer div {
    width: 25%;
    text-align: start;
    display: flex;
    flex-flow: column;
}

footer div:first-child #footer-logo {
    flex-flow: row !important;
    align-items: center !important;
    gap: 0.5rem;
}

#footer-logo a {
    color: white;
    font-weight: bolder;
    font-size: 1.5rem;
}

footer a {
    color: white !important;
    font-size: 0.7rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

#footer-logo img {
    height: 6rem;
}
