/** ========= GLOBAL STYLES ========= **/
body {
    font-size: 16px;
    line-height: 28px;
    color: #333;
    font-family: 'Epilogue', sans-serif;
    background: #fff;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

img {
    max-width: 100%;
}

input,
textarea {
    font-family: 'Epilogue', sans-serif;
}

.clr {
    clear: both;
}

.clearfix:after {
    display: block;
    content: '';
    width: 100%;
    clear: both;
}

::-webkit-input-placeholder {
    color: #fff;
}

::-moz-placeholder {
    color: #fff;
}

:-ms-input-placeholder {
    color: #fff;
}

:-moz-placeholder {
    color: #fff;
}

input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
    background: rgba(0, 0, 0, 0.2) !important;
}

/** ========= TYPOGRAPHY ========= **/
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #fcb424;
    text-decoration: none;
}

p {
    margin-bottom: 30px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    color: #333;
    margin: 0 0 25px;
    font-weight: 700;
}

.h1,
h1 {
    font-size: 48px;
}

.h2,
h2 {
    font-size: 40px;
}

.h3,
h3 {
    font-size: 36px;
}

.h4,
h4 {
    font-size: 30px;
}

.h5,
h5 {
    font-size: 24px;
}

.h6,
h6 {
    font-size: 21px;
}

.fw-1 {
    font-weight: 100 !important;
}

.fw-2 {
    font-weight: 200 !important;
}

.fw-3 {
    font-weight: 300 !important;
}

.fw-4 {
    font-weight: 400 !important;
}

.fw-5 {
    font-weight: 500 !important;
}

.fw-6 {
    font-weight: 600 !important;
}

.fw-7 {
    font-weight: 700 !important;
}

.fw-8 {
    font-weight: 800 !important;
}

.ff-pacifico {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

.text-medium {
    font-size: 18px;
}

.text-big {
    font-size: 24px;
}

.text-white {
    color: #fff;
}

.text-yellow {
    color: #fcb424;
}

.text-red {
    color: #c5130e;
}

.text-blue {
    color: #1f3174;
}

.btn-normal {
    display: inline-block;
    background: #c5130e;
    border: none;
    padding: 16px 15px;
    min-width: 238px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    border-radius: 0px 30px 0px 30px;
    -moz-border-radius: 0px 30px 0px 30px;
    -webkit-border-radius: 0px 30px 0px 30px;
}

.btn-normal:hover {
    background: #fcb424;
    color: #000;
}


ul.list {
    display: block;
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
}

ul.list li {
    display: block;
    margin-bottom: 17px;
    font-size: 18px;
    line-height: 24px;
    padding-left: 28px;
    position: relative;
}

ul.list li:before {
    position: absolute;
    content: "\f058";
    color: #50be00;
    font-family: "FontAwesome";
    left: 0;
    top: 1px;
}

ul.list.text-white li:before {
    color: #fcb424;
}

header {
    position: relative;
    margin-bottom: -91px;
    z-index: 1;
}

.navbar-brand {
    max-width: 277px;
    background-color: #fff;
    padding: 15px;
    display: inline-block;
    border-radius: 0px 0px 15px 15px;
    -moz-border-radius: 0px 0px 15px 15px;
    -webkit-border-radius: 0px 0px 15px 15px;
}

.main-banner {
    padding: 110px 0 0;
    min-height: 660px;
    background-position: center center;
    overflow: hidden;
}

.banner-text h1 {
    font-size: 72px;
    line-height: 72px;
    text-transform: uppercase;
}

.banner-img {
    max-width: 495px;
    margin: 0 auto;
    position: relative;
}

.banner-img::before {
    position: absolute;
    content: "";
    right: -700px;
    top: 50%;
    transform: translate(0, -50%);
    width: 800px;
    height: 65%;
    background: #fcb424;
}

.banner-img img {
    border-radius: 50%;
    border: #fff 10px solid;
    position: relative;
}

section {
    padding: 60px 0;
}

.bg-food-graphic {
    background-image: url(../images/food-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg-spices-graphic {
    background-image: url(../images/spices-bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.bg-blue {
    background-color: #1f3174;
}

.bg-yellow {
    background-color: #fcb424;
}

.bg-red {
    background-color: #c5130e;
}

.wave-white-top {
    position: relative;
}

.wave-white-top:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: url(../images/wave-white-top.png) repeat-x bottom center;
    background-size: contain;
}

.wave-white-bottom {
    position: relative;
}

.wave-white-bottom:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: url(../images/wave-white-bottom.png) repeat-x bottom center;
    background-size: contain;
}

.wave-red-top {
    position: relative;
}

.wave-red-top:after {
    position: absolute;
    content: "";
    left: 0;
    top: -8px;
    width: 100%;
    height: 8px;
    background: url(../images/wave-red-top.png) repeat-x bottom center;
    background-size: contain;
}

.wave-red-bottom {
    position: relative;
}

.wave-red-bottom:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 8px;
    background: url(../images/wave-red-bottom.png) repeat-x bottom center;
    background-size: contain;
}

.graphic-line-heading-bg {
    position: relative;
    padding-bottom: 55px;
}

.graphic-line-heading-bg:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 255px;
    height: 33px;
    background: url(../images/heading-bg-line.png) left top no-repeat;
    background-size: contain;
}

.graphic-line-heading-bg.glh-yellow:after {
    background: url(../images/heading-bg-line-yellow.png) left top no-repeat;
}

.yellow-heading-line {
    padding-bottom: 20px;
    position: relative;
}

.yellow-heading-line::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 85px;
    height: 5px;
    border-radius: 30px;
    background: #fcb424;
}

.why-choose-box {
    padding: 30px 15px;
    height: 100%;
    background-color: #1f3174;
    background-image: url(../images/bg-logo.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 95px;
    border-radius: 30px 30px 0px 30px;
    -moz-border-radius: 30px 30px 0px 30px;
    -webkit-border-radius: 30px 30px 0px 30px;
}

#process-steps .col-lg-3:last-child .process-box {
    border-right: none;
}

.process-box {
    padding: 15px 20px;
    height: 100%;
    border-right: #a9a9a9 1px dashed;
}

.process-step {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background-color: #1f3174;
    margin: 0 auto 15px;
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

#get_started {
    padding-bottom: 0;
}

.f-field {
    margin-bottom: 30px;
}

.f-field input,
.f-field select {
    display: block;
    width: 100%;
    height: 50px;
    background: none;
    border: #fff 2px solid;
    border-radius: 30px;
    padding: 0 15px;
    box-shadow: none;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
}

.f-field select option {
    color: #333;
}

.f-field textarea {
    display: block;
    width: 100%;
    height: 148px;
    background: none;
    border: #fff 2px solid;
    border-radius: 30px;
    padding: 15px;
    box-shadow: none;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
}

.send-btn {
    text-align: center;
}

.send-btn button.btn-normal {
    width: 55%;
}

footer#footer {
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

footer#footer p {
    margin-bottom: 15px;
}

footer#footer a {
    color: #fff;
}

.footer-social {
    margin: 25px 0;
}

.footer-social a {
    display: inline-block;
    vertical-align: top;
    font-size: 30px;
    color: #fcb424 !important;
    margin: 0 5px;
}

.alert {
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 30px;
    padding: 12px 10px 10px;
}
.alert-danger {
    background-color: #ff352f;
    color: #fff;
}
.alert-success {
    background-color: #419b00;
    color: #fff;
    border: none;
}

@media only screen and (max-width:1199px) {

    .h1,
    h1 {
        font-size: 40px;
    }

    .h2,
    h2 {
        font-size: 36px;
    }

    .h3,
    h3 {
        font-size: 30px;
    }

    .h4,
    h4 {
        font-size: 24px;
    }

    .h5,
    h5 {
        font-size: 21px;
    }

    .h6,
    h6 {
        font-size: 18px;
    }

    .banner-text h1 {
        font-size: 60px;
        line-height: 65px;
    }

    #get_started {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width:999px) {

    .h1,
    h1 {
        font-size: 36px;
    }

    .h2,
    h2 {
        font-size: 30px;
    }

    .h3,
    h3 {
        font-size: 26px;
    }

    .h4,
    h4 {
        font-size: 22px;
    }

    .h5,
    h5 {
        font-size: 20px;
    }

    .h6,
    h6 {
        font-size: 18px;
    }

    .navbar-brand {
        max-width: 230px;
        padding: 10px;
    }

    .main-banner {
        min-height: 510px;
    }

    .banner-text h1 {
        font-size: 48px;
        line-height: 55px;
    }

    #process-steps .col-lg-3:nth-child(2) .process-box {
        border-right: none;
    }
}

@media only screen and (max-width:767px) {
    .main-banner {
        min-height: 465px;
        padding-top: 150px;
    }

    .btn-normal {
        padding: 10px 25px;
        min-width: inherit;
        font-size: 16px;
        line-height: 16px;
    }

    .process-box {
        border-right: none;
        border-bottom: #a9a9a9 1px dashed;
        padding: 0 0 30px;
    }

    #process-steps .col-lg-3:last-child .process-box {
        border-bottom: none;
    }
}

main {
    overflow: hidden;
}

.animateme {
    opacity: 0;
}