/* 

Classes Index:
=====================
01. General Classes
02. Navigation Menu Classes
03. Grid Classes
04. Home Page Classes
    A) Header Area
    B) Menu Area
    C) Events Area
    D) About Us Area
    E) Team Area
    F) Schedule Area
    G) Contact Area
05. Menu Page Classes
06. Events Page Classes
07. Gallery Page Classes
08. About Page Classes
09. Contact Page Classes
10. Reservation Page Classes 
11. Footer Classes

*/

/* ===================== 01. General Classes ========================= */
/* =================================================================== */


@font-face{
    font-family: Comfortaa;
    src: url(./fonts/Comfortaa-Regular.ttf);
}

html{
    box-sizing: border-box;
}

*, *:before, *:after{
    box-sizing: inherit;
}

body {
    padding: 0;
    margin: 0;
    font-family: Comfortaa;
    background-color: #db0100;
    color: #170f0a;
    overflow: hidden;
}

img{
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

h1, h2, h3{
    padding: 0;
    margin: 0;
}

h1{
    font-size: 70px;
}

h2{
    font-size: 40px;
}

h3{
    font-size: 30px;
    margin-bottom: 30px;
}
.grid_4 {
    width: 370px;
}

/* ===== Preloader ======= 

#preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #070f0a;
    z-index: 300;
}

#preloaderSVG{
    width: 15%;
    position: fixed;
    top:0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.first{
    animation: first 0.8s infinite;
}

@keyframes first{
    0%{transform: translateX(25%);}
    50%{transform: initial;}
    100%{transform: translateX(25%);}
}

.second{
    animation: second 0.8s infinite;
}

@keyframes second{
    0%{transform: translateX(-25%);}
    50%{transform: initial;}
    100%{transform: translateX(-25%);}
}

.fixed{
    animation: fixed 0.8s infinite;
}

@keyframes fixed{
    0%{opacity: .0;}
    50%{opacity: initial;}
    100%{opacity: .0}
}
*/
/* ================= 02. Navigation Menu Classes ==================== */
/* ================================================================== */

.nav-menu{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 100px 20px 100px;
    z-index: 200;
    background-color: #bb0000;
    /*   box-shadow: 0px 5px #170f0a4f;*/
}

.nav-logo{
    float: left;
    display: flex;
}

.nav-menu li{
    display: inline-block;
    vertical-align: middle;
}

.nav-links{
    float: right;
}

.nav-links ul{
    padding: 0;
}

.nav-logo a{
    font-size: 30px;
    font-weight: bold;
}

.nav-menu a{
    color: white;
    padding: 10px 13px;
}

.nav-button {
    padding: 7px 15px;
    color: #fff;
    background-color: #ec1c24;
    border-radius: 10px;
}

.responsive-nav-link{
    display: none;
}

/* ================= 03. Grid Classes ================= */
/* ==================================================== */

/*
Grid Layout types:
===========================
1) l-two-col:
    6 columns - 6 columns
2) l-four-col
    3 columns - 3 columns - 3 columns - 3 columns
3) l-full
    12 columns
4) l-gallery
    3 columns - 3 columns - 3 column - 3 columns
    NO GUTTER
5) l-form
    2 column (label) - 10 columns (field)

    */

    .grid-container{
        max-width: auto;
        margin-right: 100px;
        margin-left: 100px;
        margin-top: 100px;     
    }

    .grid-item{
        margin-right: 15px;
        margin-left: 15px;
        float: left;
        align-items: center;
        display: flex;
        position: relative;
    }

    /* l-two-col layout classes */

    .l-two-col:after{
        clear: both;
        display: table;
        content: '';
    }

    .l-two-col .grid-item{
        width: calc((100% - 30px * 2) /2);
    }

    .l-two-col .grid-item:nth-child(2n+2){
        float: right;
    }

    /* l-four-col layout classes */
    .l-four-col:after{
        clear: both;
        display: table;
        content: '';
    }

    .l-four-col .grid-item{
        width: calc(((100% - 30px * 4)/12)*3);
    }


    .l-four-col .grid-item:nth-child(4n+4){
        float: right;
    }

    .l-three-col .grid-item{
        width: calc(((100% - 30px * 3)/12)*4);
    }
    .l-three-col .grid-item:nth-child(3n+3){
        float: right;
    }
    .l-three-col:after{
        clear: both;
        display: table;
        content: '';
    }

    /* l-full layout classes */
    .l-full:after{
        clear: both;
        display: table;
        content: '';
    }

    .l-full .grid-item{
        width: calc(100% - 30px);
    }

    .home-bottom .grid-container{
        position: relative;
        top: -200px;
    }

    /* l-gallery layout classes*/

    .l-gallery:after{
        clear: both;
        display: table;
        content: '';
    }

    .l-gallery .grid-item{
        margin: 0;
        width: calc(100% / 4);
        height: 300px;
        position: relative;
        overflow: hidden;
    }

    /* l-form layout classes */

    .l-form{
        display: flex;
    }

    .l-form:after{
        display: table;
        content: '';
        clear: both;
    }

    .l-form .label{
        width: calc(((100% - 30px * 2)/12) * 2);
        padding-top: 20px;
    }

    .l-form .field{
        width: calc(((100% - 30px * 2)/12) * 10);
        padding-bottom: 10px;
        padding-top: 10px;
    }

    /* ================= 04. Home Page classes ================ */
    /* ======================================================== */

    /* ------------- A) Header Area -------------- */

    .header-bg-image{
        width: 100%;
        position: absolute;
        top: 0;
        height: 1300px;
        z-index: -1;

    }

    .home-page-grid{
        overflow: hidden;
    }

    .home-page-grid .grid-item{
        height: 600px;
    }
    .imagen-welcome {
        padding-top: 10px;
        padding-bottom: 150px;
    }
    .call-to-action{
        color: white;
    }

    .call-to-action p{
        font-size: 25px;
        padding: 0px 0px 25px 0px;
    }

    .call-to-action a{
        padding: 15px 25px;
        height: 20px;
        color: #fff;
        background-color: #ec1c24;
        border-radius: 10px;
    }

    .header-image{
        width: 700px;
        /* margin-left: 80px;*/

    }

    .pepper-image{
        width: 1000px;
        position: absolute;
        top: 100px;
        right: 193px;
        z-index: -1;
    }

    .home-menu-image {
        width: 572px;
    }

    /* ---------- B) Menu Area ----------- */
    .menu-info{
        position: absolute;
        right: 0;
        width: 70%;
    }

    .about-info{
        position: relative;
        z-index: 100;
    }

    .contact-info a,
    .about-info a, 
    .menu-info a{
        padding: 15px 2px;
        height: 20px;
        color: #fff;
        background-color: #db0100;
        border-radius: 100px;
        /*box-shadow: 4px 4px #170f0a36;*/
    }

    .contact-info p,
    .about-info p, 
    .menu-info p{
        font-size: 14px;
        line-height: 30px;
        padding: 20px 0px;
    }

    /* ----------- Events Area  ------------- */

    .events-title{
        text-align: center;
        color: #170f0a;
        margin-top: 20px;
    }

    .home-page-event .event-container{
        width: 100%;
        /*height: 60%;*/
        border-radius: 20px;
        background-color: #353434;
        border: 0;
        /* box-shadow: 5px 5px #170f0a3d;*/
        overflow: hidden;
    }

    .home-page-event .event-image{
      /*  height: 70%;*/
      overflow: hidden;
  }

  .home-page-event .event-container img{
    width: 350px;
}

.event-date{
    padding: 0px 10px;
    color: #ec1c24;
    font-size: 14px;
}

.event-info{
    color: #fff;
    font-size: 12px;
}

/* ------------ About Area ------------- */

.about-pic{
    width: 100%;
    text-align: center;
}

.about-pic img{
    width: 400px;
    position: relative;
    bottom: -60px;
    z-index: -1;
}

/* ------------ Team Area ------------- */

.home-bottom{
    width: 100%;
    background-color: #ffffff;
    position: relative;
    /*top: 50px;*/
    margin-bottom: -187px;
    /*box-shadow: 5px 5px #170f0a3d;*/
}

.lower-dark-bg{
    position: relative;
    left: 0;
}

.lower-dark-bg img{
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-bottom: -2px;

}

.team-title,
.schedule-title{
    color: white;
    text-align: center;
}

.team-subtitle,
.schedule-subtitle{
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
}

.schedule-subtitle p,
.team-subtitle p{
    width: 50%;
}

.team-inner{
    height: 100%;
    align-content: center;
    text-align: center;
}
.team-member-container-0{
    width: 200px;
    height: 200px;
    background-color: #353434;
    overflow: hidden;
    border-radius: 100%;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #fdca00;

}

.team-member-container{
    width: 200px;
    height: 200px;
    background-color: #fece2e;
    overflow: hidden;
    border-radius: 100%;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #fece2e;

}
.team-member-containerm{
    width: 200px;
    height: 200px;
    background-color: #fece2e;
    overflow: hidden;
    border-radius: 100%;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #fece2e;

}

.team-member-container-2{
    width: 200px;
    height: 200px;
    background-color: #ea692e;
    overflow: hidden;
    border-radius: 100%;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #ea692e;

}


.team-member-container-3{
    width: 200px;
    height: 200px;
    background-color: #e11321;
    overflow: hidden;
    border-radius: 100%;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    border: 1px solid #e11321;

}



.logos{
    width: 100% !important;
    padding-top: 80px;
}

.team-member-container img{
    width: 500px;
}

.team-member-info{
    color: #000000;
    text-align: center;
}

.team-member-info p{
    font-size: 14px;
    padding: 0 10px;
    line-height: 20px;
}
.logony{
    border: 1px solid;
    border-radius: 100%; 
    padding-top: 5px;
    width: 30px;
    padding-left: 3px;
    padding-right: 3px;
}
.team-member-social {
    width: 100%;
}

.team-member-social i{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: #fff;
    /*background-color: #ec1c24; */
    text-align: center;
    padding-top: 7px;
    margin: 3px;
    font-size: 14px;
    border: 1px solid #fff;
}
.team-member-social i img{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: #fff;
    /*background-color: #ec1c24; */
    text-align: center;
    padding-top: 7px;
    margin: 3px;
    font-size: 14px;
    border: 1px solid #fff;
}

.iteam-member-social i{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: #353434;
    /*background-color: #ec1c24; */
    text-align: center;
    padding-top: 7px;
    margin: 3px;
    font-size: 14px;
    border: 1px solid #353434;
}
/* ------------ Schedule Area ------------- */

.schedule-inner{
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.schedule-table{
    display: inline-block;
    width: 70%;
    margin-top: 40px;
}

.line{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.line:after{
    clear: both;
    display: table;
    content: '';
}

.times{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.time-one{
    position: relative;
    left: 10%;
}

.day{
    float: left;
    width: 10%;
}

.white-bar{
    width: 100%;
    height: 10px;
    background-color: #fff;
    border-radius: 15px;
    float: right;
    margin: 10px;
}

.red-bar{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #ec1c24;
    border-radius: 15px;
}

.start-circle,
.end-circle{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #ec1c24;
    position: absolute;
    bottom: -10px;
}

.start-circle{
    left: 0;
}

.end-circle{
    right: 0;
}

.day-one .red-bar{
    left: 0%;
    width: 85%;
}

.day-two .red-bar{
    left: 0%;
    width: 85%;
}

.day-three .red-bar{
    left: 0%;
    width: 85%;
}

.day-four .red-bar{
    left: 0%;
    width: 85%;
}

.day-five .red-bar{
    left: 0%;
    width: 90%;
}

.day-six .red-bar{
    left: 10%;
    width: 90%;
}

.day-seven .red-bar{
    left: 15%;
    width: 85%;
}

/* --------------- Contact Area Classes ------------------- */

.contact-info p i{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: #fff;
    background-color: #ec1c24;
    align-items: center;
    text-align: center;
    padding: 7px;
    margin: 8px;
}

.contact-grid{
    position: relative;
   /* top: 50px;
   margin-bottom: 50px;*/
}

.contact-grid .grid-container{
    margin-top: 0;
}

.home-page-map #map{
    height: 80%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-shadow: 5px 5px #170f0a3d;
}

/* --------------- Other Classes ------------------- */

.light-separator, .dark-separator{
    text-align: center;
}

.dark-separator div{
    width: 70%;
    height: 1px;
    background-color: #170f0a;
    display: inline-block;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.light-separator div{
    width: 70%;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content{
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: #ffffff;
    color: #fff;
    text-align: center;
}

/*=============== 05. MENU PAGE CLASSES ================== */
/* ======================================================= */

.menu-page-content{
    padding-top: 60px;
    padding-bottom: 50px;
    /*background-image: url(../images/menu-page-bg.png);*/
    background-repeat: repeat-y;
    background-size: 100%;
    position: relative;
    top: 0;
    z-index: -2;
    color: #fff;
}

.menu-page-title{
    color: #170f0a;
    text-align: center;
}

.menu-container{
    position: relative;
    /*background-color: #170f0a;
    box-shadow: 5px 5px #170f0a3d;
    border-radius: 30px;*/
    margin-top: 30px;
    padding: 30px 0px;
}

.menu-name{
    width: 100%;
    text-align: center;
    margin: 20px 0px 20px 0px;
}

.menu-data{
    font-size: 14px;
    padding-right: 50px;
    padding-left: 50px;
}

.ingredients{
    margin-right: 60px;
    margin-bottom: 20px;
}

.menu-image{
    position: absolute;
    bottom: 400px;
    z-index: -1;
    width: 100%;
    text-align: center;
}

.menu-image img{
    width: 500px;
}

/* menu items classes */

.item-title:after{
    display: table;
    clear: both;
    content: '';
}

.item-name{
    float: left;
    width: 100px;
}

.dots{
    float: left;
    width: 60%;
}

.dots div{
    margin: 0px 10px;
    height: 10px;
    border-bottom: 3px dotted #fff;
}

.item-price{
    float: right;
    width: 60px;
    text-align: right;
}

.item-ingredients{
    margin-right: 100px;
    margin-bottom: 20px;
}

/*=============== 06. EVENTS PAGE CLASSES ================== */
/* ========================================================= */

.event{
    width: 100%;
    height: 600px;
    border-radius: 20px;
    background-color: #fff;
    border: 0;
    box-shadow: 5px 5px #170f0a3d;
    margin-bottom: 25px;
}

.event .event-image{
    height: 40%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.event .event-image img{
    width: 500px;
}

.event .event-date{
    background-color: #ec1c24;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    height: 8%;
}

.event .event-info{
    color: #170f0a;
    font-size: 12px;
    text-align: left;
    padding: 10px;
    line-height: 20px; 
}

/*=============== 07. Gallery PAGE CLASSES ================== */
/* ======================================================= */

#smallImage{
    width: 500px;
    padding: 0;
    margin: 0;
}

#smallImage:hover{
    opacity: 0.7;
    cursor: pointer;
}

.image-info{
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    font-size: 12px;
    background-color: #170f0ac0;
    padding: 10px;
    text-align: left;
}

/* Gallery Modal Images Classes */

.modal-image{
    display: none;
    position: fixed;
    z-index: 600;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #170f0aad;
    text-align: center;
}

.modal-content{
    margin: auto;
    display: inline-block;
    width: 80%;
}

#caption{
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 30px 0;
    height: 150px;
    font-size: 18px;
}

#closeBtn{
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 80px;
    font-weight: bold;
    transition: 0.3s;
}

#closeBtn:hover,
#closeBtn:focus{
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*=============== 08. About PAGE CLASSES ================== */
/* ======================================================== */

.about-header-image-responsive{
    display: none;
}

.about-page-info .grid-item:first-child{
    padding: 30px;
    background-color: #ffffff;
    box-shadow: -5px 5px #170f0a3d;
    border-radius: 20px;
}

.about-header-bg{
    position: absolute;
    top: -10px;
    width: 100%;
    z-index: -1;
}

.about-pepper-bg{
    position: absolute;
    top: 150px;
    right: 30px;
    width: 700px;
    z-index: -3;
}

.about-page-info{
    color: #000000;
    padding-top: 30px;
    padding-bottom:60px;
}

.about-page-info p{
    font-size: 14px;
    line-height: 30px;
}

.about-header-image{
    /*position: absolute;*/
    z-index: -2;
    width: 100%;
    top: 120px;
    left: -100px;
}

.about-team-title{
    text-align: right;
    width: 100%;
}

.about-team-title-inner{
    padding-top: 20px;
    display: inline-block;
    width: 50%;
}

.about-page .team-member-container{
    box-shadow: 5px 5px #170f0a3d;
}

.about-page .team-member-info{
    color: #170f0a;
}


.about-lower-bg{
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.contact-lower-bg img,
.about-lower-bg img{
    width: 100%;
}

.about-schedule-area .grid-container{
    padding-top: 40px;
}

.about-schedule-area{
    background-color: #fff;
    padding-bottom: 20px;

    /*box-shadow: 5px -5px #170f0a3d;*/
}
/* ================== 09. Contact Page Classes =================== */
/* =============================================================== */

.contact-page-info {
    color: #fff;
    /*padding-top: 80px;*/
    /* width: 70%;*/
}
.form{
  /*   padding-top: 100px;*/
}
.upper-contact-page{
    padding-top: 10px;
    padding-bottom: 0px;
    text-align: left;
    position: relative;
    background-color: #db0100;
    /*box-shadow: 0px 5px #170f0a3d;*/
    z-index: 50;
}

.lower-contact-page{
    position: relative;
    bottom: 0;
    z-index: 100;
    /* background-color: #170f0a;*/
    /* box-shadow: 0px -5px #170f0a3d;*/
}

.contact-page-map{
    top: 0px;
    height: 400px;
    width: 100%;
    pointer-events: auto;
}
.incontact-page-map{
    height: 900px;
    
}


.contact-page-map #map{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    pointer-events: auto;
}

.contact-form{
    padding-top: 40px;
    color: #fff;
    text-align: center;
    /*font-size: 18px;*/
    margin-left: auto;
    margin-right: auto;
    /*height: 650px;*/
    width: 100%;
}

.contact-form form h2{
    text-align: center;
    /*width: 100%;*/
    padding-bottom: 30px;
}

.contact-form input{
    height: 40px;
    border: none;
    border-radius: 10px;
    /* width: 100%;*/
    font-family: Comfortaa;
    font-size: 16px;
}

.contact-form input[type=submit]{
    height: 40px;
    width: 30%;
    color: #fff;
    background-color: #ec1c24;
    border-radius: 10px;
    padding: 5px 15px;
}

.contact-form textarea{
    width: 100%;
    border: none;
    border-radius: 10px;
}

.label div{
    text-align: right;
    width: 100%;
    height: 100%;
}

.field div{
    text-align: left;
    width: 100%;
    height: 100%;
}

.lower-contact-page .grid-container{
    margin-top: 0;
}

/* ================== 10. Reservation Page Classes =================== */
/* =================================================================== */

.reservation-page-top{
    background-image: url(../images/upper-dark-bg-3.png);
    background-position: 0px 100px;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    color: #fff;
    top: -100px;
    padding-top: 120px;
    text-align: center;
    padding-bottom: 400px;
}

.reservation-page-schedule,
.reservation-form{
    width: 100%;
}

.reservation-page-schedule .schedule-table{
    width: 100%;
    margin: 0px 15px 0px 15px;
}

.reservation-form input{
    height: 40px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-family: Comfortaa;
    font-size: 16px;
}

.reservation-form input[type=submit]{
    height: 40px;
    width: 30%;
    color: #fff;
    background-color: #ec1c24;
    border-radius: 10px;
    cursor: pointer;
}

.reservation-form textarea{
    width: 100%;
    border: none;
    border-radius: 10px;
}

.reservation-form select{
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-family: Comfortaa;
    font-size: 16px;
    margin: 0;      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
    linear-gradient(45deg, transparent 50%, white 50%),
    linear-gradient(135deg, white 50%, transparent 50%),
    linear-gradient(to right, #ec1c24, #ec1c24);
    background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
    background-size:
    5px 5px,
    5px 5px,
    2.5em 2.5em;
    background-repeat: no-repeat;
}

.reservation-page-schedule{
    width: 100%;
}

.select div{
    text-align: left;
    width: 100%;
    height: 100%;
}

.resrvation-bg-image{
    position: absolute;
    top: 400px;
    z-index: -1;
}

.resrvation-bg-image img{
    width: 100%;
}

.reservation-page-bottom{
    position: relative;
    color: #fff;
    padding-top: 50px;
    margin-top: -250px;
    border: 2px solid red;
}
.branch{

 padding-top: 30px;
}
/* =================== 11. Footer Classes ==================== */
/* =========================================================== */

.footer{
    width: 100%;
    background-color: #000000;
    /*box-shadow: 0px -5px #170f0a3d;*/
    position: relative;
    padding-top: 5px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.footer-inner{
    display: inline-block;
    width: 50%;
    padding-bottom: 20px;
}

.footer-inner:after{
    display: table;
    clear: both;
    content: '';
}

.footer a{
    color: #fff;
}

.footer li{
    margin: 15px;
}

.footer ul{
    float: left;
}

.footer-social {
    margin-top: auto;
    margin-bottom: auto;
    width: 50%;
    float: left;
}

.footer-social i{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    color: #fff;
    background-color: #ec1c24;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: 8px;
    font-size: 18px;
}

.footer-button{
    margin-top: 30px;
}

.footer-button a{
    padding: 10px 15px;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    margin: 30px;
}

.footer-links{
    width: 50%;
    float: left;
    border-left: 1px solid #fff;
}

.footer-copyright{
    font-size: 10px;
}

.imagen-front{
	margin-left: -150px !important;
}


.three-cols-table{
	display: table;
    table-layout: fixed; /* optional, for equal spacing */
    border-collapse: collapse;
    width: 100%;
}

.three-cols-table td{
	text-align: center;
    vertical-align: middle;
    word-wrap: break-word;
}



.seb-code{
    margin-bottom: -400px !important;
}

@media (max-width: 768px){

    .seb-code{
        margin-bottom: 0px !important;
    }
}




/*========================================================
                     FORM Styles
                     =========================================================*/


                     .contenedor-formulario-SG {
                      display: grid;
                      grid-template-columns: auto;
                      padding: 10px;
                      width: 300px;
                  }
                  .titulo-form-SG{
                    font-size: 45px;
                    color: #fff;
                    text-align: left;
                }
                .contenedor-input-SG {
                  margin-top: 10px;
                  font-size: 60px;
                  text-align: center;
                  display: flex;
              }
              .label-SG{
                width: 30%;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .titulo-label-SG{
                font-size: 15px;
                color: #fff;
            }
            .input-SG{
                width: 70%;
                height: 50px;
            }
            .textarea-formulario {
              background-color: transparent !important; 
          }
          .contenedor-formulario-SG input{
              width: 100%;
              height: 100%;
              padding: 15px;
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 15px;
          }
          .contenedor-formulario-SG textarea{
              background-color: #EAEAEA;
              width: 100%;
              height: 100%;
              padding: 15px;
              border: none;
              border-radius: 15px;
          }

          .button-form-contact-SG{
            border: none;
            border-radius: 15px;
            font-size: 20px;
            padding: 10px 30px 10px 30px;
            background-color: #ec1c24;
            color: #fff;
            font-weight: 400;
            font-family: "Roboto", sans-serif;
            margin-top: 20px;
            cursor: pointer;
        }
        .button-form-contact-SG:hover{
          color: #ffef00;           
      }
      .avisos-SG{
        color: green;
        font-weight: 500;
      }

      @media (max-width: 768px){
        .titulo-form-SG{
            font-size: 35px;
            color: #fff;
            text-align: center;
        }

    }



