/*-----------------------------------------------------------------------------------------------------*/

/*                                        BASIC SETUP                                                  */

/*-----------------------------------------------------------------------------------------------------*/

html {
    background-color: #ebebeb;
    font-size: 1.2rem;
}

@media (min-width: 320px) and (max-width: 575px) {
    html {
        font-size: 1rem;
    }

    /*
    p {
        text-align: center;
    }
*/
    .navbar li {
        font-size: 1.2rem;
    }

    /*
    h5 {
        text-align: center;
    }

    h5,
    h6 {
        text-align: center
    }
*/
}

@media (min-width: 576px) and (max-width: 768px) {
    html {
        font-size: 1rem;
    }

    /*
    p {
        text-align: center;
    }
*/
    .navbar li {
        font-size: 1.2rem;
    }

    /*
    h5,
    h6 {
        text-align: center;
    }
*/
}

@media (min-width: 769px) and (max-width: 991.98px) {
    html {
        font-size: 1rem;
    }

    .navbar li {
        font-size: 1.2rem;
    }
}



* {
    color: #3d3d3d;
    text-rendering: optimizeLegibility;
}

::selection {
    background: #be4072;
    color: #fff;
}


/*-----------------------------------------------------------------------------------------------------*/

/*                                        REUSABLE COMPONENTS                                          */

/*-----------------------------------------------------------------------------------------------------*/

.row {
    margin: 0 auto;
}

.page-body {
    background-color: #ffffff;
}


.hero2 {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.30));
    color: #fff;
    text-align: center;
}

.hero2-textbox {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.hero2-textbox h1,
.hero2-textbox p {
    color: #fff;
    text-align: center;
    padding: 1% 3% 1% 3%;
}

@media (max-width: 768px) {
    .hero2-header {
        padding-top: 13vh;
        font-size: 3rem;
    }

    .hero2-body {
        font-size: 1.2rem;
    }
}

.figure-caption {
    font-family: 'Roboto';
    font-size: 80%;
}

/*--------------------------------------------NAVIGATION BAR--------------------------------------------*/

.alert {
    margin-bottom: 0;
    border-radius: 0;
    font-family: 'Roboto';
    letter-spacing: 2px;
    text-align: center;
}

.logo {
    max-height: 60px;
    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}

@media (max-width: 337px) {
    .logo {
        max-height: 55px;
    }
}

nav {
    background-color: #ffffff;
}


.navbar li {
    font-family: 'Oswald';
    font-weight: 400;
    letter-spacing: 3px;
    margin-left: 30px;
    padding-bottom: 1%;
    text-align: center;
}

.navbar li:last-child{
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    margin-top: 1.3vh;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.navbar-light:hover .navbar-nav:hover .nav-link:hover,
navbar-light:active .navbar-nav:active .nav-link:active {
    color: #be4274;
}

.navbar-collapse {
    background-color: #fff;
}

.dropdown-menu {
    border: none;
    border-radius: 0px;
}

.dropdown-item {
    text-align: center;
    transition: color 0.3s;
}

.dropdown-item:first-child {
    padding-bottom: 3%;
}

.dropdown-item:hover,
.dropdown-item:active {
    color: #be4274;
    background-color: #fff;
}

.border-bottom {
    /*    border-bottom: 3px solid #dee2e6!important;*/
    border-bottom: none !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.16);
}



/*-------------------------------------------HEADINGS-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald';
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 2rem;
    word-spacing: 4px;
}

h2 {
    font-size: 1.6rem;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}


p {
    font-family: 'Roboto';
    letter-spacing: 1px;
    word-spacing: 2px;
}

textarea {
    height: 120px;
}

/*
input,
textarea {
    box-shadow: inset 2px 2px 2px 2px hsla(0, 0%, 0%, 0.08);
}
*/

.form-control {
    box-shadow: -2px 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.16);
    border: none;
}

/*------------------------------------------GENERIC LINKS------------------------------------------*/

a:hover,
a:active {
    color: #be4274;
}

a {
    color: #fff;
}

/*--------------------------------------------BUTTONS-----------------------------------------------*/

.btn {
    color: #fff;
    background-color: #be4274;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 10px;
    transition: box-shadow 0.3s, background-color 0.3s;
    text-transform: uppercase;
}

.btn:hover,
.btn:active {
    background-color: #8b2e54;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    color: #fff;
}

.btn-link:hover,
.btn-link:active {
    color: #fff;
    background-color: #8b2e54;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

button:focus {
    outline: 5px #be4274;
    cursor: pointer;
}

.btns:focus {
    outline: 5px #be4274;
    cursor: pointer;
}

/*--------------------------------------------DIVIDER------------------------------------------------*/

.hr {}

.hr-pink {
    height: 34px;
    border: 0;
    background: url(imgs/hr-pink.jpg);
    margin: 0;
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                                HOME PAGE                                            */

/*-----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------- Hero Section ------------------------------------------*/

.hero-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30)), url(imgs/tortillas_resized.jpg);
    background-size: cover;
    background-position: center;
    height: 82vh;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
}

.hero-box-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30)), url(imgs/main_carousel_tortillas.jpg);
    background-size: cover;
    background-position: center;
    height: 82vh;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
}

.hero-box-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30)), url(imgs/careers_hero.jpg);
    background-size: cover;
    background-position: center;
    height: 82vh;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) and (min-width: 320px) {
    .hero-box {
        background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30)), url(imgs/tortillas_mobile.jpg);
        background-size: cover;
    }

    .hero-box-2 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30)), url(imgs/main_carousel_tortillas.jpg);
        background-size: cover;
    }

    .hero-box-3 {
        background-image: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30)), url(imgs/careers_hero.jpg);
        background-size: cover;
    }

    .hero-text-box {
        padding-left: 30px;
    }
}

@media (max-width: 1425px) and (min-width: 769px) {
    .hero-text-box {
        padding-left: 40px;
    }
}

.hero-text-box {
    color: #ffffff;
}

.hero-text-box h1 {
    font-weight: 500;
}

.hero-text-box p {
    color: #fff;
    font-family: 'Roboto';
    margin-top: -15px;
    margin-bottom: 20px;
    text-align: left;
}

/*---------------------------------------------Our Tortillas--------------------------------------*/

.main-tortillas-section {
    background-color: #fbfbfb;
    padding: 5% 0;
}

.main-fiesta-provides-body-v2 {
    padding: 3% 18%;
    float: none;
}

@media (min-width: 320px) and (max-width: 745px) {
    .main-fiesta-provides-body-v2 {
        padding: 5% 0%;
    }
}

/*---------------------------------------------Our Chips--------------------------------------*/

.main-chips-section {
    background-color: #f0f0f0;
    padding: 5% 0;
}

/*---------------------------------------------Our Passion-------------------------------------*/

.main-passion-section {
    background-color: #e8e8e8;
    padding: 5% 0;
}

.main-our-story-img {
    text-align: center;
    padding: 0;
}

.main-our-story-button {
    text-align: center;
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                                 OUR STORY                                           */

/*-----------------------------------------------------------------------------------------------------*/

/*------------------------------------------------- Hero Section --------------------------------------*/

.hero-box-our-story {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.60)), url(imgs/our_story_hero.jpg);
    background-size: cover;
    background-position: center;
    height: 80vh;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
    /*    background-attachment: fixed;*/
}

/*
@media (max-width: 768px) {
    .hero-box-our-story {
        background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55)), url(imgs/family_placeholder_mobile.jpg);
        background-size: cover;
        background-position: center;
    }
}
*/

/*------------------------------------------------- Our Story -----------------------------------------*/

.our-story {
    padding: 5% 0;
    background-color: #fbfbfb;
}

.our-story-text {
    margin: 0 10%;
}


/*-----------------------------------------------------------------------------------------------------*/

/*                                              OUR PRODUCTS                                           */

/*-----------------------------------------------------------------------------------------------------*/


/*-------Product Listing-------*/

.food-cert-seals {
    text-align: center;
}

.organic-seal {
    margin-top: 20px;
    height: 150px
}

@media (max-width: 991px) and (min-width: 768px) {
    .organic-seal {
        height: 120px;
        padding-left: 2%;
    }
}

@media (max-width: 500px) {
    .organic-seal {
        height: 115px;
        padding-left: 2%;
    }
}

.gmo-seal {
    height: 150px;
    margin-top: 20px;
    padding-left: 2%;
}

@media (max-width: 991px) and (min-width: 768px) {
    .gmo-seal {
        height: 120px;
        padding-left: 2%;
    }
}

@media (max-width: 767px) and (min-width: 300px) {
    .gmo-seal {
        height: 115px;
        padding-top: 10%
    }
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                          Tortillas                                                  */

/*-----------------------------------------------------------------------------------------------------*/

.tortillas-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)), url(imgs/tortillas_hero.jpg);
    background-size: cover;
    background-position: center;
}

.product-tabs {
    background-color: #fbfbfb;
    padding: 5% 0 1% 0;
}

.nav-items {
    margin: 0 1%;
}

.nav-pills .nav-items .active {
    background-color: #752948;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1005px) and (min-width: 400px) {
    .nav-items {
        margin: 1% 3%;
    }
}

@media (max-width: 400px) and (min-width: 300px) {
    .nav-items {
        margin: 1% 3%;
    }

    .product-tabs {
        padding-bottom: 5%;
    }
}

#pills-tabContent {
    padding-top: 0%;
    background-color: #fbfbfb;
}

.tab-pane {
    background-color: #fbfbfb;
    padding: 3%;
}

.available-size ul {
    list-style: none;
}

.available-size li:before {
    content: '- ';
    font-size: 1.2rem;
    padding-bottom: 5px;
}

.list-size {
    padding-left: 0;
}

@media (max-width: 991px) and (min-width: 551px) {
    .nutritional-facts-img {
        height: 75%;
    }

    .nutritional-facts-image {
        text-align: center;
    }

    .available-size li {
        text-align: center;
        padding-left: 0;
    }

    .tortilla-tab-pane {
        background-color: #ffffff;
        padding-top: 10%;
        height: 2100px;
    }
}

@media (max-width: 550px) and (min-width: 300px) {
    .tortilla-tab-pane {
        background-color: #fff;
        padding-top: 10%;
        height: 1625px;
    }
}

@media (max-width: 399px) and (min-width: 320px) {
    /*
    .tortilla-tab-pane {
        background-color: #fff;
        padding-top: 10%;
        height: 1500px;
    }
*/

    .nutritional-facts-img {
        height: 50%;
    }

    .nutritional-facts-image {
        text-align: center;
    }

    .available-size li {
        text-align: center;
    }
}



/*-----------------------------------------------------------------------------------------------------*/

/*                                              CHIPS                                                  */

/*-----------------------------------------------------------------------------------------------------*/

.chips-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)), url(imgs/chips_hero.jpg);
    background-size: cover;
    background-position: center;
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                              FOOD SERVICES                                          */

/*-----------------------------------------------------------------------------------------------------*/

.food-services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)), url(imgs/food_services_hero.jpg);
    background-size: cover;
    background-position: center;
}

/*-----------------------*/

.food-services-box {
    background-color: #fbfbfb;
    padding: 5% 0;
}

.food-services-box-next {
    background-color: #e8e8e8;
    padding: 5% 0 5% 0;
}

.food-services-provided {
    background-color: #f0f0f0;
    padding: 5% 0;
}

.food-service-list {
    padding-left: 0;
}

.food-service-list-next p {
    padding-top: 3%;
    margin: 0 10%;
}

.food-service-list col-6 {
    padding-left: 0;
}

.food-service-list li {
    padding-top: 7%;
    margin: 0 10%;
}

.food-service-list ul {
    list-style: none;
}

.food-service-list li:before {
    color: #00ba00;
    content: '✓ ';
    font-size: 1.2rem;
}


@media (max-width: 767px) and (min-width: 1px) {
    .food-service-list {
        display: none;
    }
}

@media (min-width: 767px) {
    .food-service-list-mobile {
        display: none;
    }
}

/*--------------Mobile Food Service List -----------*/

.food-service-list-mobile li {
    padding-top: 3%;
}

.food-service-list-mobile ul {
    list-style: none;
    padding-left: 3%;
}

.food-service-list-mobile li:before {
    color: #00ba00;
    content: '✓ ';
    font-size: 1.2rem;
}

/*-----------------------*/



.food-service-tabs {
    padding: 2%;
    background-color: #efefef;
}

.nav-tabs {
    background-color: #efefef;
    border: none;
}

.nav-tabs .active {
    background-color: #752948;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.10);
}

.tab-content {
    background-color: #efefef;
    padding: 2% 2%;
}

.food-service-pane {
    background-color: #efefef;
}

.services-tab {
    background-color: #efefef;
    padding: 2% 5% 0 2%;
}

.food-tab-para {
    margin: 0%;
}

@media (max-width: 767px) {
    .food-tab-para {
        padding-top: 5%;
    }
}

@media (max-width: 767px) and (min-width: 1px) {
    .food-service-list-next {
        display: none;
    }
}

@media (min-width: 767px) {
    .food-service-list-next-mobile {
        display: none;
    }
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                              CONTACT US                                             */

/*-----------------------------------------------------------------------------------------------------*/

#map {
    height: 70vh;
    width: auto;
}

.contact-us-body {
    background-color: #f7f7f7;
}

.contact-us-head {
    padding: 8vh 0 5vh 0;
}

.contact-us-head h1 {
    color: #363636;
    font-size: 2.5rem;
    margin-bottom: 1%;
}

.contact-us-head h2 {
    color: #3d3d3d;
    font-size: 2rem;
    margin-bottom: 1%;
    text-align: inherit;
}

.contact-us-left {
    padding: 0;
}

.contact-us-para {
    padding-bottom: 10%;
}

.contact-us-information {
    text-align: center;
}

.contact-us-form-head h2 {
    font-size: 1.8rem;
    text-align: center;
    padding-top: 2vh;
}

.contact-us-info {
    padding-bottom: 5%;
}

.contact-us-info-text {
    color: #858585;
}

.contact-us-phone {
    color: #3d3d3d;
    font-family: 'Roboto';
}

.contact-us-phone:hover {
    text-decoration: none;
}

.contact-us-time ul {
    list-style: none;
    padding-left: 0px;
}


.contact-us-time li {
    text-align: center;
    padding-bottom: 5px;
    font-size: 1.2rem;
}

.contact-us-form {
    background-color: #f7f7f7;
    padding-bottom: 1vh;
}

input {
    margin-bottom: 4vh;
}

.send-icon {
    color: #fff;
    transform: translate(1px, 5px)
}

.contact-us-button {
    margin-top: 10%;
    text-align: center;
}

.contact-form {
    padding: 5% 0 0 0;
}


/*-----------------------------------------------------------------------------------------------------*/

/*                                                 CAREERS                                              */

/*-----------------------------------------------------------------------------------------------------*/

.careers-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)), url(imgs/careers_hero.jpg);
    background-size: cover;
    background-position: center;
}

/*---------Career Video----------*/

.career-video-body {
    background-color: #fff;
    padding: 5% 0;
}

.career-video-text {
    text-align: center;
}

/*----------Career Accordion-----*/

.job-opennings {
    background-color: #f4f4f4;
    padding: 5% 0;
}

.job-opennings-text {
    text-align: center;
}

#accordion {
    padding-top: 3%
}

.accordian-card-body {
    background-color: #ffffff;
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
    margin: 0;
    padding: 3% 3%;
}

.accordian-card-body h6 {
    font-size: 1.2rem;
}

.accordian-card-body p,
li {
    font-family: 'Roboto';
    font-size: .9rem;
}

.accordian-button {
    color: #505050;
    background-color: #ffffff;
    border: none;
    font-size: 1.2rem;
    width: 100%;
    cursor: pointer;
}

.card-header {
    background-color: #ffffff;
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
    border-bottom: none;
}

.card-header:first-child {
    border-radius: 0px;
}

.accordian-card:last-child {
    border-bottom: 1px solid #dedede;
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                          PRIVACY POLICY                                             */

/*-----------------------------------------------------------------------------------------------------*/

.privacy-hero {
    background-color: #06bea8;
}

.privacy-policy-header {
    color: #3d3d3d;
}

.privacy-policy-body {
    background-color: #fbfbfb;
    margin: 3% 10%;
}

.privacy-body-header {
    padding-top: 3%;
}

@media (min-width: 320px) and (max-width: 768px) {
    .privacy-body-header {
        text-align: center;
    }
}

.privacy-body-text {
    font-size: 90%;
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                          PRODUCT PAGES                                             */

/*-----------------------------------------------------------------------------------------------------*/

.product-image {
    text-align: center;
    padding-bottom: 8%;
}

@media (max-width: 991px) and (min-width: 320px) {
    .product-image {
        padding-bottom: 0%;
    }
}

.product-gallery {
    padding-top: 6%;
}

.product-page-descript {
    padding-top: 3%;
}


.product-page-descript h4 {
    text-align: center;
    padding: 5% 0;
}

.food-certificates {
    margin-bottom: 5%;
}

.nutritional-body {
    margin-top: 5%;
}


/*-----------------------------------------------------------------------------------------------------*/

/*                                                 ERROR                                               */

/*-----------------------------------------------------------------------------------------------------*/


.error-hero {
    background: #f7f7f7;
    background-size: cover;
    background-position: center;
}

.error-hero-text h1 {
    color: #3d3d3d !important;
}

.error-hero-text h2 {
    margin-bottom: 2%;
}

/*-----------------------------------------------------------------------------------------------------*/

/*                                          ONLINE ORDER                                               */

/*-----------------------------------------------------------------------------------------------------*/

/*
.main-body{
    background-color: #f7f7f7;
    padding: 5% 0%;
}

.main-body p {=
}

.main-body a{
    text-align: center;
    color: #fff;
}

.order-button{
    padding-top: 3%
}

.order-btn {
   padding: 2% 10% 2% 10%; 
}

.main-body small{
    padding-top: 2%;
}
*/

/*-----------------------------------------------------------------------------------------------------*/

/*                                                 FOOTER                                              */

/*-----------------------------------------------------------------------------------------------------*/

.footer-top {
    background-color: #bd4f7c;
    padding: 3% 0;
    text-align: center;
}

.logo-footer {
    max-height: 100px;
    margin-bottom: 5%;
}

.footer-top h6 {
    color: #fff;
    padding-bottom: 3%;
}

.footer-top p {
    color: #fff;
}

.footer-links a {
    font-family: 'Roboto';
    color: #fff;
    font-size: 100%;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ececec;
    text-decoration: none;
}

.footer-bottom {
    background-color: #ad4a74;
    padding-top: 2%;
}

.footer-bottom p {
    color: #fff;
    font-family: 'Roboto';
    font-size: 100%;
    font-weight: 300;
}

.copyright {
    font-size: 85%;
    text-align: center;
}

.footer-social i {
    color: #ff96c1;
    padding: 0 5%;
    transition: color 0.3s;
}

.footer-social i:hover {
    color: #fff;
}

.nav-item:hover .nav-order:hover {
    color: #fff;
}
