@charset "utf-8";
/* CSS Document */

/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #f1f1f1;
    font-size: 14px;
    line-height: 1.6;
    color: #1f1f1f;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --green: #028e73;
    --dark-green: #424444;
    --bronze: #bb6f39;
    --orange: #dd9d31;
    --blue: #2496ba;
    --purple: #4b215e;
    --light-grey: #f1f1f1;
    --grey: #7c7a78;
    --form-grey: #707582;
    --white: #FFFFFF;
    --black: #1f1f1f;
}

/*********************** Fonts ************************/
h1 {
    font-style: normal;
    font-size: 52px;
    line-height: 1.3;
    margin-top: 0;
}

@media (max-width: 650px) {
    h1 {
        font-size: 48px;
    }
}

h2 {
    font-style: normal;
    font-size: 40px;
}

h3 {
    font-style: normal;
    font-size: 26px;
}

h4 {
    font-style: normal;
}

p {
    font-size: 16px;
    font-weight: 400;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
    font-size: 14px;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/*********************** Wrappers ************************/
.wrapper_full {
    position: relative;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    z-index: 4;
}

.wrapper_large, .wrapper_small {
    position: relative;
    max-width: calc(100% - 240px);
    margin: 0 auto;
    z-index: 4;
}

.wrapper_large {
    width: 1500px;
}

.wrapper_small {
    max-width: 45%;
    width: 900px;
}

.wrapper_heading {
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .wrapper_large {
        max-width: calc(100% - 40px);
    }

    .wrapper_small {
        max-width: 60%;
    }
}

@media (max-width: 950px) {
    .wrapper_small {
        max-width: 73%;
    }
}

@media (max-width: 650px) {
    .wrapper_large,
    .wrapper_small {
        max-width: calc(100% - 40px);
    }
}

.wrapper_small h1,
.text_block h1 {
    text-align: center;
}

.page {
    width: 100%;
}

/*********************** Buttons ************************/
.buttons_container {
    display: flex;
    align-items: stretch;
}

.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 46px !important;
    background-color: var(--green);
    text-align: center;
    color: var(--white) !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.bronze {
    background-color: var(--bronze);
}

.button i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 10px;
}

.button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: #0cab8b;
    transition: 0.15s all ease-in-out;
}

.bronze:hover {
    background-color: #cd7d44;
}

.button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    transform: scale(0.96);
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

@media (max-width: 400px) {
    .buttons_container {
        display: block;
    }

    .button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 100%;
        margin-left: 0;
    }
}

/*********************** Main Bodies ************************/
.food_support_body img {
    border-radius: 10px;
    margin: 10px auto;
}

.food_support_body p a {
    color: var(--green);
    font-weight: 500;
}

.food_support_body .button {
    margin-top: 25px;
    margin-bottom: 25px;
}

.food_support_body ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
    padding: 0 10px 0 0;
    color: var(--bronze);
    font-size: 16px;
}

.food_support_body ul li {
    margin-bottom: 15px;
    display: flex;
    font-size: 16px;
}

.food_support_body ol {
    padding-left: 0;
}

.food_support_body ol li::marker {
    padding-left: 0;
    font-size: 16px;
}

.food_support_body ol li {
    display: flex;
    list-style: inside decimal;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

.food_support_body ol li span {
    padding-left: 10px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .food_support_body .button {
        width: 100%;
    }
}

.error_page {
    text-align: center;
}

.connect_with_us {
    text-align: center;
    margin-top: 40px;
}