@charset "utf-8";

/* CSS Document */


/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Categories
7. Locations
8. Food
9. How it works
10. CTA
11. CTA 2
12. Clients
13. Footer


******************************/


/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

/*********************************
2. Body and some general stuff
*********************************/

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p {
    white-space: pre-wrap !important;
}

.align-center {
    text-align: center;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #FFFFFF;
    color: #a5a5a5;
}

div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin-bottom: 0px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 2.145;
    font-weight: 400;
    color: #2b2b2b;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
    display: inline;
    position: relative;
    color: inherit;
    border-bottom: solid 1px #ffa07f;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

p:last-of-type {
    margin-bottom: 0;
}

a {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    color: #2b2b2b;
}

a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

a:hover {
    color: #587BBE !important;
}

p a:active {
    position: relative;
    color: #FF6347;
}

p a:hover {
    color: #FFFFFF;
    background: #ffa07f;
}

p a:hover::after {
    opacity: 0.2;
}

::selection {
    background: rgba(255, 165, 75, 0.85);
    color: #FFFFFF;
}

p::selection {}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    font-weight: 600;
    line-height: 1.2;
    color: #2b2b2b;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {}

.w-100 {
    font-weight: 100;
}

.w-200 {
    font-weight: 200;
}

.w-300 {
    font-weight: 300;
}

.w-400 {
    font-weight: 400;
}

.w-500 {
    font-weight: 500;
}

.w-600 {
    font-weight: 600;
}

.w-700 {
    font-weight: 700;
}

.w-800 {
    font-weight: 800;
}

.w-900 {
    font-weight: 900;
}

img {
    max-width: 100%;
}

button:active {
    outline: none;
}

.form-control {
    color: #db5246;
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

.super_container_inner {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.super_container_inner.active {
    -webkit-transform: translateX(-350px);
    -moz-transform: translateX(-350px);
    -ms-transform: translateX(-350px);
    -o-transform: translateX(-350px);
    transform: translateX(-350px);
}

.super_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.super_container_inner.active .super_overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.prlx_parent {
    overflow: hidden;
}

.prlx {
    height: 130% !important;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.parallax_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.nopadding {
    padding: 0px !important;
}

.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
    height: 100%;
}

.slide {
    height: 100%;
}

.centered {
    text-align: center;
}

.align-right {
    text-align: right;
}

.hidden {
    display: none;
}

.section_title {
    padding-top: 14px;
}

.section_title h1 {
    font-size: 30px;
}

.section_title h1 span {
    color: #587BBE;
}

.section_title::after {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 34px;
    height: 2px;
    background: #587BBE;
    content: '';
}

.container_custom .container {
    max-width: 1600px;
}

.container-100 {
    max-width: 100%;
    padding: 0px;
    height: 100%;
}

.container-100 .row {
    height: 100%;
}

.bg_estructura_left {
    background: url('../images/avelas/card_blanco_izq_ok.png');
    background-size: 100% 100%;
}

.bg_estructura_right {
    background: url('../images/avelas/card_blanco_der_ok.png');
    background-size: 100% 100%;
}

.carousel-indicators {
    padding-top: 20px;
    position: sticky;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #ddd;
}

.carousel-indicators li.active {
    background-color: #777;
}

.hamburger i {
    color: #4C4C4C !important;
}

.openMaps {
    width: 100%;
    height: 50vh;
}

.contact_button {
    background: #777 !important;
}

@media only screen and (max-width: 1200px) {
    .home .bg_estructura_left {
        background: url('../images/avelas/card_blanco_responsive.png');
        background-size: 100% 100%;
    }
    #blog-section,
    #servicios-finalizados-section,
    #servicios-section {
        padding: 0 10vw;
    }
    /*
    #blog-section .carousel-indicators,
    #servicios-section .carousel-indicators {
        position: static;
        padding-top: 10px;
    }
    #blog-section .carousel-indicators li,
    #servicios-section .carousel-indicators li {
        width: 10px;
        height: 10px;
        border-radius: 10px;
        background-color: #c0d2e9;
    }
    #blog-section .carousel-indicators li.active,
    #servicios-section .carousel-indicators li.active {
        background-color: #0a50aa;
    }
    .page-servicio .carousel-indicators li.active {
        background-color: #fff !important;
    }
    #como-trabajamos-section .tab-text {
        text-align: center;
    }
    .hamburger i {
        color: #4C4C4C !important;
    }
    */
}

.button {
    /*background: #02a0e9;*/
    background: #777;
    border-radius: 5px;
    transition: all 200ms ease;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    line-height: 57px;
    padding: 10px 20px;
}

.button:hover {
    background: rgb(6, 124, 179);
}

.button.button-inverse {
    background: #FFFFFF;
    color: #02a0e9;
}

.button.button-inverse:hover {
    background: #eee;
}

.contact {
    background: #efefef;
}


/*********************************
3. Header
*********************************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    background: rgba(255, 255, 255, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
}

.header.active {
    -webkit-transform: translateX(-350px);
    -moz-transform: translateX(-350px);
    -ms-transform: translateX(-350px);
    -o-transform: translateX(-350px);
    transform: translateX(-350px);
}

.header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.header.active .header_overlay {
    visibility: visible;
    opacity: 1;
}

.header_content {
    width: 100%;
    height: 128px;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.header.scrolled .header_content {
    height: 90px;
}

.logo a {
    font-size: 24px;
    color: #FFFFFF;
}

.logo a span {
    color: #587BBE;
}

.logo a span:last-child {
    font-weight: 700;
}

.main_nav ul li:not(:last-of-type) {
    margin-right: 59px;
}

.main_nav ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #272430;
}

.main_nav ul li.active a {
    color: #587BBE;
}

.log_reg {
    margin-left: 28px;
}

.log_reg ul li:not(:last-of-type)::after {
    display: inline-block;
    content: '/';
    margin-left: 6px;
    margin-right: 6px;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
}

.log_reg ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
}

.log_reg ul li:first-child a {
    color: #587BBE;
}

.add_listing {
    width: 142px;
    height: 40px;
    border: solid 2px #587BBE;
    border-radius: 5px;
    margin-left: 41px;
}

.add_listing a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 36px;
    font-size: 16px;
    color: #587BBE;
    font-weight: 300;
}

.add_listing:hover {
    border-color: #FFFFFF;
}

.add_listing:hover a {
    color: #FFFFFF !important;
}

.hamburger {
    display: none;
    margin-left: 30px;
    cursor: pointer;
}

.hamburger i {
    font-size: 20px;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.hamburger:hover i {
    color: #587BBE;
}


/*********************************
4. Menu
*********************************/

.menu {
    position: fixed;
    top: 0;
    right: -350px;
    background: #FFFFFF;
    width: 350px;
    height: 100vh;
    z-index: 101;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.menu.active {
    right: 0;
}

.menu .logo {
    position: absolute;
    left: 30px;
    top: 30px;
}

.menu .logo img {}

.menu_container {
    padding-top: 57px;
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
    height: 100%;
    background: #333;
}

.menu_container .fab {
    color: #fff;
    font-size: 20px;
}

.menu_close {
    display: inline-block;
    color: #fff;
    cursor: pointer;
}

.menu_close:hover {
    color: #587BBE;
}

.menu_nav {
    margin-top: 107px;
}

.menu_nav ul li:not(:last-of-type) {
    margin-bottom: 1px;
}

.menu_nav ul li {
    text-align: center;
    padding-bottom: 10px;
}

.menu_nav ul li a {
    font-size: 24px;
    color: #fff;
}

.menu_link {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.menu_link a {
    font-size: 14px;
    font-weight: 500;
    color: #587BBE;
}


/*********************************
5. Home
*********************************/

.home {
    /*height: 857px;*/
    height: 650px;
    background: #fff;
    overflow: hidden;
}

.section-promo .home {
    height: auto !important;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .section-promo .home img {
        min-height: 70vh;
        max-height: 70vh;
        /*max-height: 70vh;
        z-index: -1;*/
    }
    .section-promo .home {
        padding-top: 128px;
    }
}

@media only screen and (max-width: 600px) {
    .section-promo .home img {
        width: 100%;
        /*max-height: 70vh;
        z-index: -1;*/
    }
    .section-promo .home {
        padding-top: 90px;
    }
}

.section-promo .home .home_container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.2);
}

.home_slider_container {
    width: 100%;
    height: 100%;
}

.home_slider_dots {
    position: absolute;
    top: 44%;
    left: 53px;
    z-index: 1;
}

.home_slider .owl-dots {
    display: none;
}

.home_slider_custom_dot {
    position: relative;
    width: 100%;
    text-align: center;
    background: transparent;
    line-height: 35px;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.home_slider_custom_dot:hover,
.home_slider_custom_dot.active {
    color: #587BBE;
}

.home_slider_custom_dot:not(:last-child) {
    margin-bottom: 15px;
}

.home_container {
    position: absolute;
    left: 0;
    /*top: 36.2%;*/
    width: 100%;
    height: 100%;
}

.home_content {}

.home_title {
    display: inline-block;
    padding-top: 25%;
    padding-left: 8%;
    text-align: center;
}

.home_title h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.home_title h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .home_title h2 br {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .home_content.text-center {
        text-align: left !important;
    }
}


/*********************************
6. HOME / SERVICIOS
*********************************/

.explicaciones p {
    text-align: center;
}

.servicios h2 {
    font-weight: 300;
    font-size: 35px;
    text-align: center;
}

.servicios h4 {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
}

.servicios .card {
    border: 1px solid #f1f1f1;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.servicios .card .card-header {
    height: 150px;
}

.servicios .card .the-border {
    z-index: 100;
    width: 100%;
    height: 20px;
}

.page-servicio .servicio_marketing .home .home_container {
    background: rgba(0, 191, 255, 0.3);
}

.page-servicio .servicio_web .home .home_container {
    background: rgba(0, 206, 209, 0.3);
}

.page-servicio .servicio_video .home .home_container {}

.page-articulo .home .home_container {
    background: rgba(255, 255, 255, 0.6);
}

.servicios .card-body {
    padding: 0px;
}

.servicios .card-text {
    text-align: left;
    padding: 20px 30px 20px 30px;
}

.servicios .card-text h4 {
    text-align: left;
}

.servicios .card-text p {
    font-size: 14px;
    line-height: 14px;
    min-height: 150px;
}


/*********************************
6. HOME / PROYECTOS
*********************************/

.proyectos h2 {
    font-weight: 300;
    font-size: 35px;
    text-align: center;
}

.proyectos h4 {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
}

.proyectos .card-group .card {
    margin: 10px;
    border: 0px;
}

.proyectos .card-group .card .card-header {
    height: 40vh;
}

.proyectos .card-group .card .card-body .card-text h2 {
    text-align: left;
    font-weight: 600;
    font-size: 30px;
}

.proyectos .card-group .card .card-body .card-text p {
    color: #000;
}

.proyectos .card-group .card .card-body .card-text .button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: #587BBE;
    background: transparent;
}


/*********************************
6. HOME / PROYECTOS
*********************************/

.ultimas-entradas h2 {
    font-weight: 300;
    font-size: 35px;
    text-align: center;
}

.ultimas-entradas h4 {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
}

.ultimas-entradas .card {
    margin: 10px;
    border: 0px;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.25);
}

.ultimas-entradas .card .card-header {
    height: 25vh;
}

.ultimas-entradas .card .card-body .card-text h4 {
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

.ultimas-entradas .card .card-body .card-text p {
    color: #000;
}

.ultimas-entradas .card .card-body .card-text .button-on-rigth {
    text-align: right;
}

.ultimas-entradas .card .card-body .card-text .button {
    width: 100%;
    text-align: right;
    color: #587BBE;
    background: transparent;
}


/*********************************
6. HOME / TRABAJAMOS
*********************************/

.trabajamos {
    background: #efefef;
}

.dakar h2,
.trabajamos h2 {
    font-weight: 300;
    font-size: 35px;
    text-align: center;
}

.dakar h4,
.trabajamos h4 {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
}

.trabajamos .nav-tabs {
    border-bottom: 1px solid #5e7cba;
}

.trabajamos .nav-tabs .nav-link {
    color: #000000;
    font-size: 25px;
    font-weight: 300;
}

.trabajamos .nav-tabs .nav-link.active {
    border-color: #fff;
    border-bottom-color: #5e7cba;
    color: #5e7cba;
    font-weight: 500;
}


/*********************************
6. Categories
*********************************/

.categories {
    z-index: 2;
}

.categories_container {
    border-radius: 5px;
    box-shadow: 0px 32px 114px rgba(0, 0, 0, 0.35);
    margin-top: -132px;
    background: #FFFFFF;
}

.category {
    width: 20%;
}

.category:not(:last-child)::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -1px;
    width: 2px;
    height: 50%;
    background: #e1ecf4;
    content: '';
}

.category a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 36px;
    padding-bottom: 57px;
}

.cat_icon {
    width: 70px;
    height: 70px;
}

.cat_icon img {
    max-height: 100%;
}

.cat_icon svg {
    max-width: 100%;
    max-height: 100%;
}

.svg path,
.svg rect,
.svg polygon {
    fill: #c7d6db;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.category:hover .svg path,
.category:hover .svg rect,
.category:hover .svg polygon {
    fill: #587BBE;
}

.cat_title {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 0.75;
    margin-top: 26px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.category:hover .cat_title {
    color: #587BBE;
}


/*********************************
7. INSTAGRAM
*********************************/

.instagram h3 {
    text-align: center;
}


/*********************************
7. Locations
*********************************/

.locations {
    background: #FFFFFF;
    padding-top: 95px;
    z-index: 1;
}

.locations_container {
    margin-top: 86px;
}

.location {
    width: calc((100% - 100px) / 3);
    border: solid 2px transparent;
    margin-bottom: 25px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.location:hover {
    border-color: #587BBE;
    box-shadow: 0px 35px 43px rgba(0, 0, 0, 0.35);
}

.location_title {
    position: absolute;
    left: 20px;
    bottom: 48px;
    width: calc(100% - 38px);
    height: 45px;
    background: #FFFFFF;
    border-radius: 5px;
}

.location_title>div {
    width: 100%;
    height: 100%;
}

.location_title>div a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 45px;
}

.location_title>div a>div {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -27px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #587BBE;
    line-height: 35px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}


/*********************************
8. Food
*********************************/

.food {
    background: #FFFFFF;
    padding-top: 71px;
    padding-bottom: 74px;
}

.grid_container {
    left: -10px;
    width: calc(100% + 20px);
    margin-top: 94px;
}

.grid-item {
    height: 431px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.food_item {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.food_item:hover {
    box-shadow: 0px 35px 43px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.grid-item>div {
    width: 100%;
    height: 100%;
}

.grid_large {
    width: 45%;
}

.grid_medium {
    width: 30%;
}

.grid_small {
    width: 25%;
}

.grid_half {
    height: 50%;
}

.grid_half:first-child {
    padding-bottom: 10px;
}

.grid_half:last-child {
    padding-top: 10px;
}

.grid_half>div {
    width: 100%;
    height: 100%;
}

.food_item::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 6, 67, 0.72);
    content: '';
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    border: solid 2px #587BBE;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.food_item:hover::after {
    visibility: visible;
    opacity: 1;
}

.food_item_tag {
    position: absolute;
    top: 25px;
    left: 33px;
    /*width: 118px;
	height: 46px;*/
    max-width: calc(100% - 66px);
    border-radius: 5px;
    background: #587BBE;
    text-align: center;
    z-index: 1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.food_item_tag a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 20px;
    font-size: 18px;
    padding: 10px 5px;
    font-weight: 600;
    color: #FFFFFF;
}

.food_item_tag:hover {
    background: #FFFFFF;
}

.food_item_tag:hover a {
    color: #587BBE;
}


/*********************************
9. How it works
*********************************/

.how {
    background: #e1ecf4;
    padding-top: 94px;
    padding-bottom: 42px;
}

.icon_box_container {
    margin-top: 86px;
}

.icon_box {
    width: calc((100% - 106px) / 3);
    background: #FFFFFF;
    padding-top: 61px;
    padding-bottom: 66px;
    padding-left: 40px;
    padding-right: 40px;
    border: solid 2px #FFFFFF;
    margin-bottom: 53px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.icon_box:hover {
    border-color: #587BBE;
    box-shadow: 0px 35px 43px rgba(0, 0, 0, 0.35);
}

.icon_box_icon {
    width: 206px;
    height: 206px;
}

.icon_box_icon img {
    position: relative;
    max-height: 100%;
    z-index: 1;
}

.icon_box_icon::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 156px;
    height: 156px;
    border-radius: 50%;
    border: solid 2px #587BBE;
    background: #fff3d6;
    content: '';
    z-index: 0;
}

.icon_box_title {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin-top: 38px;
}

.icon_box_text {
    width: 100%;
    margin-top: 17px;
}

.icon_box_num {
    position: absolute;
    top: -23px;
    left: 39px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #587BBE;
    line-height: 62px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
}


/*********************************
10. CTA
*********************************/

.cta {
    padding-top: 96px;
    padding-bottom: 112px;
}

.cta_content {
    max-width: 880px;
}

.cta_title h1 {
    font-size: 60px;
    font-weight: 600;
    color: #FFFFFF;
}

.cta_text {
    margin-top: 11px;
}

.cta_text p {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 2;
}

.cta_button {
    margin-top: 23px;
}


/*********************************
11. CTA 2
*********************************/

.cta_2 {
    background: #FFFFFF;
}

.cta_2_col:first-child {
    z-index: 1;
}

.cta_2_content {
    padding-right: 50px;
    padding-top: 127px;
    padding-bottom: 151px;
}

.cta_2_title h1 {
    font-size: 48px;
    font-weight: 500;
    color: #000000;
}

.cta_2_title h1 span {
    color: #587BBE;
}

.cta_2_text {
    margin-top: -1px;
}

.store_links {
    margin-top: 41px;
}

.store_link:not(:last-child) {
    margin-right: 19px;
}

.cta_2_image {
    height: 100%;
}

.cta_2_image img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: none;
    max-height: 100%;
}


/*********************************
12. Clients
*********************************/

.clients {
    background: #fff;
}

.clients_slider_container {
    height: 111px;
}

.client_image {
    width: 111px;
    height: 111px;
    margin-left: auto;
    margin-right: auto;
}


/*********************************
13. Footer
*********************************/

.footer {
    background: #efefef;
}

.footer .logo img {}

.footer a {
    color: #333 !important;
}

.footer a:hover {
    color: #333;
}

.footer a .fab {
    font-size: 20px;
}

.footer hr {
    background: #333;
}


/***************************
14. ARTICULO
****************************/

.page-articulo .home {
    height: 400px;
}

.page-articulo .home .home_title {
    padding-top: 150px;
}


/***************************
15. MODAL VIMEO
****************************/

.modal-vimeo {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-vimeo h3 {
    color: #fff;
}

.modal-vimeo a {
    color: #fff;
}

.modal-vimeo iframe {
    width: 100%;
    height: 80vh;
}

#proyectos-section .proyecto {}

#proyectos-section .proyecto i {
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 30px);
    z-index: 5;
    font-size: 60px;
    line-height: 60px;
    cursor: pointer;
    color: rgba(1, 76, 176, 0.9);
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    transition: 0.3s;
}

#proyectos-section .proyecto i:hover {
    color: rgba(255, 255, 255, 1);
}

.ui-loader-default {
    display: none !important;
}

#extras-section h3 {
    border-bottom: 1px solid #777;
    text-align: left;
    padding: 20px;
}

.tabla-explicaciones table {
    border: 1px solid #fff;
    width: 100% !important;
}

.tabla-explicaciones table td {
    padding: 10px 4px;
    hyphens: auto;
}

.tabla-explicaciones table tr:first-child {
    background-color: #a0a0a0;
    color: #fff;
    font-weight: bold;
}

.tabla-explicaciones table tr:nth-child(2n) {
    background-color: #efefef;
}