@charset "UTF-8";
/* AYUDAS CSS ----------------------------------------
*   Marca: Banchile
*   Autor: cmunozm
*   Version: 1.0
*   url: www.banchile.cl
/*----------------------------------------------------*/
/*--------------------------------------------------------------
# Variables, colores, tipografías
--------------------------------------------------------------*/
/* Back to top button */
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Open+Sans:300,400,700&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,700&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700|Roboto:300,400,500,700&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700");
.back-to-top {
  position: fixed;
  display: none;
  background: #070b52;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #000;
  font-family: "Source Sans Pro", sans-serif;
}

a {
  color: #070b52;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #070b52;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* import googlefont*/
/*------------------------------------------
font-family: 'Open Sans', sans-serif;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Source Sans Pro', sans-serif;
--------------------------------------------*/
/*  CSS Help Desing
*--------------------------------------------------------------------*/
#border-1b {
  border: 1px dashed #000;
  background: rgba(255, 147, 0, 0.1);
}

#border-2b {
  border: 1px dashed #000;
  background: rgba(128, 0, 128, 0.1);
}

#border-3b {
  border: 1px dashed #000;
  background: rgba(0, 255, 0, 0.1);
}

#border-1 {
  border: 1px dashed deeppink;
}

#border-2 {
  border: 1px dashed navy;
}

#border-3 {
  border: 1px dashed #ff5800;
}

#border-4 {
  border: 1px dashed indigo;
}

/* .container {border: 1px dashed purple;}
.row {border: 1px dashed red;} */
/* CSS tamaños de iconos
*--------------------------------------------------------------------*/
.xxl-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: normal;
  font-size: 7em;
  margin: 0;
  padding: 0;
  color: #000;
}

.xl-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: normal;
  font-size: 5em;
  margin: 0;
  padding: 0;
  color: #000;
}

.lg-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: normal;
  font-size: 2em;
  margin: 0;
  padding: 0;
  color: #000;
}

.md-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: normal;
  font-size: 1.33333em;
  margin: 0;
  padding: 0;
  color: #000;
}

.sm-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: normal;
  font-size: 0.875em;
  margin: 0;
  padding: 0;
  color: #000;
}

.xs-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: normal;
  font-size: 0.75em;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 0.75em;
  vertical-align: -15%;
}

/*  CSS Anchos de tipos web
*--------------------------------------------------------------------*/
#mailing {
  max-width: 650px;
  width: 650px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border: 1px dashed #000;
}

#landing-page {
  max-width: 960px;
  width: 960px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border: 1px dashed #333;
}

.full-width {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border: 1px dashed red;
}

/* Ayudas de maquetación y mixin
*--------------------------------------------------------------------*/
.father {
  position: relative;
}

.center-child {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
}

.element-left {
  text-align: left;
  margin: 10px 0;
  padding: 0;
}

.element-center {
  text-align: center;
  margin: 10px 0;
  padding: 0;
}

.element-right {
  text-align: right;
  margin: 10px 0;
  padding: 0;
}

.air-margin {
  margin: auto;
}

.air-padding {
  padding: auto;
}

.no-margin, .no-padding {
  margin: 0 !important;
  padding: 0 !important;
}

.full-width {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100%;
  width: 100%;
}

.line-hr {
  margin-top: 10px;
  margin-bottom: 0px;
  clear: both;
  border: 0;
  height: 1px;
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

.no-space { /* no espacios en in-block- aplicar en el div padre */
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
}

/* Mixins efectos css
*--------------------------------------------------------------------*/
/* FUENTES POR DEFECTO DE PLANTILLA */
/* probar font: font-style font-variant font-weight font-size/line-height font-family;*/
.effect-shadow-2 {
  position: relative;
}
.effect-shadow-2:before, .effect-shadow-2:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.effect-shadow-2:after {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.mp-0 {
  margin: 0 !important;
  padding: 0 !important;
}

/* css variables & mixin para fondos
*---------------------------------------*/
/*Ej. @include background(#f1f1f1, 'banner-liberamos.jpg', left, center, no-repeat, fixed, cover); */
/* css para captcha google */
/*
* CSS BOTONES SOLUCIONES GENERALES
*----------------------------------------*/
/* mixin btns
*---------------------------------------*/
/*ej
.btn--red {
    background-color: red;
    border: 1px solid darkred;
    color: #fff;
    @include gradient-btn(to bottom, red, darkred);
        &:hover {
            @include gradient-btn(to-bottom, darkred, red);
            color: #fff;
        }
}*/
/* Reset btn bootstrap */
.btn, .btn:link, .btn:focus, .btn:visited {
  outline: none !important;
  border: none !important;
}

/* css btns
*---------------------------------------*/
.btn-orange {
  background: rgb(255, 109, 31);
  -webkit-box-shadow: 0px 2px 0px 0px rgb(239, 84, 17);
          box-shadow: 0px 2px 0px 0px rgb(239, 84, 17);
}
.btn-orange:link, .btn-orange:focus, .btn-orange:visited {
  border-color: none;
  font: 1em 400/normal "Open sans", Arial, Helvetica, sans-serif;
  /* font-family: 'Open sans', Arial, Helvetica, sans-serif;
   font-weight: $fweight;
   font-size: $fsize;
   color: $fcolor;*/
  text-decoration: none;
  outline-color: none;
}
.btn-orange:hover {
  background-color: rgba(255, 130, 46, 0.8);
}
.btn-orange:active {
  position: relative;
  top: 1px;
}

.btn-white {
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 2px 0px 0px #c3c3c3;
          box-shadow: 0px 2px 0px 0px #c3c3c3;
  border: 1px solid #c3c3c3 !important;
}
.btn-white:link, .btn-white:focus, .btn-white:visited {
  border-color: none;
  font: 1em 400/normal "Open sans", Arial, Helvetica, sans-serif;
  /* font-family: 'Open sans', Arial, Helvetica, sans-serif;
   font-weight: $fweight;
   font-size: $fsize;
   color: $fcolor;*/
  text-decoration: none;
  outline-color: none;
}
.btn-white:hover {
  background-color: rgb(255, 193, 7);
}
.btn-white:active {
  position: relative;
  top: 1px;
}

.btn-orange-red {
  background: rgb(255, 87, 34);
  color: #fff !important;
  -webkit-box-shadow: 0px 4px 0px 0px rgb(216, 74, 30);
          box-shadow: 0px 4px 0px 0px rgb(216, 74, 30);
}
.btn-orange-red:hover {
  background: rgba(255, 87, 34, 0.8);
}

.btn-red {
  background-color: rgb(244, 67, 54);
  border: 1px solid rgb(201, 57, 47);
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 67, 54)), to(rgb(201, 57, 47)));
  background: linear-gradient(to bottom, rgb(244, 67, 54), rgb(201, 57, 47));
  background: -webkit-linear-gradient(to bottom, rgb(244, 67, 54), rgb(201, 57, 47));
}
.btn-red:hover {
  background: -webkit-gradient(linear, to-bottom, from(rgb(201, 57, 47)), to(rgb(244, 67, 54)));
  background: linear-gradient(to-bottom, rgb(201, 57, 47), rgb(244, 67, 54));
  background: -webkit-linear-gradient(to-bottom, rgb(201, 57, 47), rgb(244, 67, 54));
  color: #fff;
}

.btn-ok {
  background-color: #7bbf2c;
  border: 1px solid #7bbf2c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #a3de5f), to(#7bbf2c));
  background: linear-gradient(to bottom, #a3de5f 0, #7bbf2c 100%);
  color: #fff;
}
.btn-ok:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #a3de5f), to(#7bbf2c));
  background: linear-gradient(to bottom, #a3de5f 0, #7bbf2c 100%);
  color: #fff;
}

.btn-primario {
  background-color: #0088cf;
  border: 1px solid #0088cf;
  background: -webkit-gradient(linear, left top, left bottom, from(#17a1e6), to(#0088cf));
  background: linear-gradient(to bottom, #17a1e6, #0088cf);
  background: -webkit-linear-gradient(to bottom, #17a1e6, #0088cf);
  color: #fff;
}
.btn-primario:hover {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#0088cf), to(#17a1e6));
  background: linear-gradient(to bottom, #0088cf, #17a1e6);
  background: -webkit-linear-gradient(to bottom, #0088cf, #17a1e6);
}

.btn-secundario {
  background-color: #f77d0e;
  border: 1px solid #f77d0e;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#f77d0e), to(#e8760e));
  background: linear-gradient(to bottom, #f77d0e, #e8760e);
  background: -webkit-linear-gradient(to bottom, #f77d0e, #e8760e);
}
.btn-secundario:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e8760e), to(#f77d0e));
  background: linear-gradient(to bottom, #e8760e, #f77d0e);
  background: -webkit-linear-gradient(to bottom, #e8760e, #f77d0e);
  color: #fff;
}

/* css btn up
*-------------------------------------------------------*/
#btn-up {
  color: #fff;
  margin: 0;
  padding: 20px 15px;
  position: absolute;
  bottom: 0;
  right: 2%;
  text-decoration: none;
  background: #333;
  z-index: 90;
}
#btn-up:link, #btn-up:focus, #btn-up:visited, #btn-up:hover {
  text-decoration: none;
}
#btn-up:hover {
  background: #222;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-arrow_up {
  font-size: 1.8em;
  color: #fff;
}

/*
* wrapper btns
*---------------------------------*/
.wrapper-btn {
  width: 100%;
  text-align: right;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
}

.btn-center {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
  display: block;
}

.btn-left {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
  display: block;
}

.btn-right {
  width: 100%;
  text-align: right;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
  display: block;
}

/* size btns
*----------------------------------------------*/
.btn-large {
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 1.2em;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* 
* Font MyriadPro 
*----------------------------------------------------------------*/
/*@font-face {
	font-family: 'Myriad Pro';
	src: url('../css/face_font/subset-MyriadPro-Bold.eot');
	src: url('../css/face_font/subset-MyriadPro-Bold.eot?#iefix') format('embedded-opentype'),
		url('../css/face_font/subset-MyriadPro-Bold.woff') format('woff'),
		url('../css/face_font/subset-MyriadPro-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Myriad Pro';
	src: url('../css/face_font/subset-MyriadPro-Light.eot');
	src: url('../css/face_font/subset-MyriadPro-Light.eot?#iefix') format('embedded-opentype'),
		url('../css/face_font/subset-MyriadPro-Light.woff') format('woff'),
		url('../css/face_font/subset-MyriadPro-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Myriad Pro';
	src: url('../css/face_font/subset-MyriadPro-Regular.eot');
	src: url('../css/face_font/subset-MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
		url('../css/face_font/subset-MyriadPro-Regular.woff') format('woff'),
		url('../css/face_font/subset-MyriadPro-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}*/
/*
* colores redes sociales
*-------------------------------------------------------*/
/*
*  CSS COLORS
*--------------------------------------*/
.background-1 {
  background: rgb(11, 55, 86);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(11, 55, 86)), color-stop(51%, rgb(15, 120, 168)), color-stop(100%, rgb(25, 165, 230)));
  background: linear-gradient(45deg, rgb(11, 55, 86) 0%, rgb(15, 120, 168) 51%, rgb(25, 165, 230) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0b3756", endColorstr="#19a5e6", GradientType=1 );
}

.background-2 {
  background: #161e2c;
  margin: 0;
  padding: 15px 0;
}

/*
*  COLORES CORPORATIVOS VARIALES
*--------------------------------------*/
/* name                hex         rgb */
@font-face {
  font-family: "bercometal";
  src: url("../css/fonts/bercometal.eot?958kwx");
  src: url("../css/fonts/bercometal.eot?958kwx#iefix") format("embedded-opentype"), url("../css/fonts/bercometal.ttf?958kwx") format("truetype"), url("../css/fonts/bercometal.woff?958kwx") format("woff"), url("../css/fonts/bercometal.svg?958kwx#bercometal") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "bercometal" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-compass:before {
  content: "\e900";
}

.icon-eye:before {
  content: "\e902";
}

.icon-puzzle:before {
  content: "\e903";
}

.icon-value:before {
  content: "\e904";
}

.icon-building-1:before {
  content: "\e901";
}

.icon-building-2:before {
  content: "\e905";
}

.icon-beam:before {
  content: "\e906";
}

.icon-blueprint:before {
  content: "\e907";
}

.icon-building-3:before {
  content: "\e908";
}

.icon-ceiling-lamp:before {
  content: "\e909";
}

.icon-economic-architecture-building-of-stacked-containers:before {
  content: "\e90a";
}

.icon-glass-wall:before {
  content: "\e90b";
}

.icon-house-1:before {
  content: "\e90c";
}

.icon-house:before {
  content: "\e910";
}

.icon-lamp:before {
  content: "\e911";
}

.icon-modern-house:before {
  content: "\e912";
}

.icon-parquet:before {
  content: "\e913";
}

.icon-ruler:before {
  content: "\e90d";
}

.icon-sketch:before {
  content: "\e90e";
}

.icon-tools:before {
  content: "\e90f";
}

.icon-economic-architecture-building-of-stacked-containers1:before {
  content: "\e914";
}

/* 
* INICIO DE PROYECTO CSS
* ----------------------------------------------------*/
/* css Generales ----------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* css proyecto ----------------------------------------------------*/
/*-------------------------------------------------------------- 
# Sections 
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: rgb(93, 93, 93);
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: rgb(226, 226, 226);
  bottom: 1px;
  left: calc(50% - 80px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: #070b52;
  bottom: 0;
  left: calc(50% - 35px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* contrast-white*/
.section-header-contrast h3 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header-contrast h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: rgb(226, 226, 226);
  bottom: 1px;
  left: calc(50% - 80px);
}

.section-header-contrast h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 35px);
}

.section-header-contrast p {
  text-align: center;
  padding-bottom: 30px;
  color: #fff;
}

/* contrast-orange*/
.section-header-contrastOrange h3 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header-contrastOrange h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: rgb(226, 226, 226);
  bottom: 1px;
  left: calc(50% - 80px);
}

.section-header-contrastOrange h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: #070b52;
  bottom: 0;
  left: calc(50% - 35px);
}

.section-header-contrastOrange p {
  text-align: center;
  padding-bottom: 30px;
  color: #fff;
}

/* seccion header page */
#wrapper-title-page {
  background-color: #fff;
  padding: 35px 0;
}
#wrapper-title-page .header-title,
#wrapper-title-page h3 {
  font: 700 30px/normal "Source Sans Pro", Arial, Helvetica, sans-serif;
  /* font-family: 'Open sans', Arial, Helvetica, sans-serif;
  font-weight: $fweight;
  font-size: $fsize;
  */
  color: rgb(93, 93, 93);
  margin: 0;
  padding-bottom: 6px;
  line-height: normal;
  text-transform: uppercase;
}
#wrapper-title-page .header-title::after,
#wrapper-title-page h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 3px;
  background: #070b52;
  bottom: 0;
  left: calc(50% - 0);
}
#wrapper-title-page .header-title::before,
#wrapper-title-page h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 380px;
  height: 1px;
  background: rgb(226, 226, 226);
  bottom: 1px;
  left: calc(50% - 0);
}

.page-heading {
  padding-top: 35px;
  padding-bottom: 35px;
  margin-top: 0;
  margin-bottom: 0 !important;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
  border-top: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.page-heading.title-bg {
  background-color: #fff;
}
.page-heading .heading-text .entry-title {
  font: 400 40px/normal "Source Sans Pro", Arial, Helvetica, sans-serif;
  /* font-family: 'Open sans', Arial, Helvetica, sans-serif;
  font-weight: $fweight;
  font-size: $fsize;
  */
  color: rgb(93, 93, 93);
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: rgba(0, 0, 0, 0);
  background-color: #ffffff;
  padding: 15px 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 60px;
  margin-right: 8px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.scrolled .header {
  -webkit-box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: rgba(7, 11, 82, 0.85);
  padding: 10px 0;
}
.scrolled .header .navmenu ul > li.menu-item a,
.scrolled .header .navmenu ul > li.menu-item a:focus {
  color: #ffffff;
}
.scrolled .header .navmenu ul > li.menu-item a i,
.scrolled .header .navmenu ul > li.menu-item a:focus i {
  color: #ffffff;
}
.scrolled .header .navmenu ul > li.menu-item.dropdown ul.dropdown-menu li.menu-item a {
  color: #070b52;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}
.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}
.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 3;
}
.hero h2 {
  color: #fff;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  -webkit-animation: fadeInDown 1s both;
          animation: fadeInDown 1s both;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}
.hero p {
  -webkit-animation: fadeInDown 1s both 0.2s;
          animation: fadeInDown 1s both 0.2s;
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 10px;
  -webkit-animation: fadeInUp 1s both 0.4s;
          animation: fadeInUp 1s both 0.4s;
}
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.5;
}
.hero .carousel-control-prev:focus, .hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}
.hero .carousel-control-prev:hover, .hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}
@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #070b52;
    padding: 18px 15px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #428bca;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #444444;
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #428bca;
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 9998;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: #444444;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: color-mix(in srgb, #428bca, transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #428bca;
    color: #ffffff;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #428bca;
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #428bca;
    color: #ffffff;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    border: 1px solid color-mix(in srgb, #ffffff, transparent 90%);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/* Featured Services Section
--------------------------------*/
/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #f7f7f7;
}
#featured-services .box {
  padding: 30px 20px;
  text-align: center;
  color: #070b52;
}
#featured-services .box:hover {
  background-color: #070b52;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-box-shadow: 0px 10px 6px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 6px -6px rgba(0, 0, 0, 0.3);
}
#featured-services i {
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}
#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}
#featured-services h4 a {
  color: initial;
}
#featured-services p {
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}
#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}
#about .container {
  position: relative;
  z-index: 10;
}
#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  min-height: 430px;
}
@media only screen and (max-width: 640px) and (min-width: 300px) {
  #about .about-col {
    width: 80%;
    margin: 15px auto;
  }
}
#about .about-col:hover .icon {
  background-color: #fff;
}
#about .about-col:hover i {
  color: #070b52;
}
#about .about-col .img {
  position: relative;
}
#about .about-col .img img {
  border-radius: 4px 4px 0 0;
  width: 350px;
  height: 205px;
}
#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #070b52;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#about .about-col h2 {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}
#about .about-col h2 a {
  color: rgb(93, 93, 93);
  text-transform: uppercase;
}
#about .about-col h2 a:hover {
  color: #070b52;
}
#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: rgb(93, 93, 93);
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}
#about i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .wrapper-title {
  padding: 2% 0;
  text-align: center;
}

#services .wrapper-title .title {
  font-size: 25px;
  color: #5d5d5d;
  font-weight: 600;
  margin: 0;
  line-height: normal;
  text-transform: uppercase;
}

#services .box {
  margin-bottom: 30px;
}

#services .box:hover .title a {
  color: #070b52;
}

#services .description {
  font-size: 14px;
  margin-left: 70px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5d5d5d;
}

#services .link-service {
  border: 1px solid #e9e9e9;
  background-color: #fff;
  border-radius: 8px;
  padding: 3%;
  width: 100%;
  min-height: 220px;
  display: inline-block;
  color: #444;
}

#services .link-service:hover {
  background-color: #070b52;
  color: #fff;
}

#services .link-service .title {
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 15px;
}

@media (max-width: 640px) {
  #services .link-service .title {
    display: block;
    text-align: center;
    padding: 0;
    margin: 2% 0;
  }
}
#services .link-service .icon {
  display: inline-block;
  vertical-align: middle;
}

#services .link-service .icon i {
  font-size: 60px;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 640px) {
  #services .link-service .icon {
    display: block;
    text-align: center;
    padding: 2%;
  }
}
#services .link-service .list-service {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 2rem;
}

@media (max-width: 640px) {
  #services .link-service .list-service {
    padding: 0;
    margin: 5% 0;
  }
}
#services .link-service .list-service li {
  font-size: 1.2rem;
}

#services .link-service .list-service li:before {
  content: "\f058";
  font: normal normal normal 1.2rem/1 FontAwesome;
  margin: 0 15px 0 0;
  color: --success;
}

.callToAction {
  padding: 15px 0;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-image: url("https://bercometal.cl/wp-content/uploads/2019/05/banner-home-4-1.jpg");
  z-index: 10;
}
.callToAction::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 11, 82, 0.5);
  pointer-events: none;
  z-index: 20;
}
.callToAction .wrapp-content {
  z-index: 30;
}

#breadcrumb-page {
  line-height: 50px;
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 0;
  display: table;
  text-align: right;
  background-color: transparent;
}
#breadcrumb-page li {
  display: inline-block;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-filters li:hover, .portfolio .portfolio-filters li.filter-active {
  color: #ffffff;
  background: #070b52;
}
.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}
.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.btn-category {
  background-color: #070b52;
  color: #fff;
}
@media (max-width: 640px) {
  .btn-category {
    width: 100%;
  }
}
.btn-category:visited {
  color: #fff;
}
.btn-category:hover {
  background-color: #070b52;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, #ffffff, transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, #000, transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, #000, transparent 30%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #000;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
  background: #070b52;
}
#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
}
#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #ffffff;
}
#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
}
#contact .contact-info a {
  color: #ffffff;
}
#contact .contact-info a:hover {
  color: #eee;
}
#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}
#contact .form #sendmessage {
  color: #18d26e;
  border: 1px solid #18d26e;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}
#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

/* #contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
} */
#contact .form .btn-costaaustral {
  color: #fff;
  background: transparent;
  border: 2px solid #fff !important;
  border-radius: 18px;
  padding: 1rem 2rem;
  width: 100%;
  font-size: 1.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
#contact .form .btn-costaaustral:hover {
  background: #050735;
  color: #fff;
  border: 2px solid #050735;
}

/* mensajes contact 7 */
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid #f7e700;
  background-color: #f7e700;
  text-align: center;
  padding: 1rem;
  margin: 0;
  border-radius: 8px;
  font-weight: bold;
  color: #716a02;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14;
  background-color: #398f14;
  text-align: center;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  margin: 0;
}

.wpcf7-response-output {
  border: 1px solid #a27700 !important;
  background-color: #ffb900 !important;
  text-align: center;
  padding: 1rem !important;
  margin: 0;
  border-radius: 8px;
  font-weight: bold;
  color: #716a02;
}

.form p {
  margin: 0;
}
.form .contactForm .form-group {
  margin-bottom: 1.5rem;
}
.form .contactForm .form-group .form-control {
  background-color: #ffffff;
  min-height: 50px;
  border: 1px solid #ffffff;
  color: #050735;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.form .contactForm .form-group .wpcf7-not-valid-tip {
  color: #ffffff;
  background-color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: inline-block;
  padding: 0.5rem 1rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(2, 2, 2);
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: #2A2C2E;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font: 700 34px/normal "Source Sans Pro", Arial, Helvetica, sans-serif;
  /* font-family: 'Open sans', Arial, Helvetica, sans-serif;
  font-weight: $fweight;
  font-size: $fsize;
  */
  color: #fff;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  letter-spacing: 3px;
  border-left: 4px solid #070b52;
}
#footer .footer-top .footer-info p {
  line-height: 24px;
  margin-bottom: 0;
  font: 400 14px/normal "Source Sans Pro", Arial, Helvetica, sans-serif;
  /* font-family: 'Open sans', Arial, Helvetica, sans-serif;
  font-weight: $fweight;
  font-size: $fsize;
  */
  color: #fff;
  text-align: justify;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #070b52;
  color: #fff;
}
#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
#footer .footer-top h4::before {
  right: 0;
  background: #555;
  height: 1px;
}
#footer .footer-top h4::after {
  background: #070b52;
  width: 60px;
  height: 2px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #18d26e;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #18d26e;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

#page-content {
  background: #f3f3f3;
  padding: 60px 0;
}
#page-content .post-area {
  background-color: #fff;
}
#page-content .post-area .post-page img {
  width: 95%;
  height: auto;
  display: block;
  margin: 15px auto;
}
#page-content .post-area .post-page h1,
#page-content .post-area .post-page h2,
#page-content .post-area .post-page h3,
#page-content .post-area .post-page h4,
#page-content .post-area .post-page h5,
#page-content .post-area .post-page h6,
#page-content .post-area .post-page p {
  color: #444;
}
#page-content .post-area .post-page p {
  font-size: 1.3rem;
  line-height: 1.8rem;
}
#page-content .post-area .post-page ul {
  margin: 0 0 1.5rem 0;
}
#page-content .post-area .post-page ul li {
  font-size: 1.3rem;
}

/* =================================== */
/*  Blog Styles
/* =================================== */
/* banner*/
#banner-page {
  min-height: 350px;
  background-image: url(../img/intro-carousel/1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  background-size: cover;
}
#banner-page::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*============ Start Blog Home Styles  =============*/
.blog-home-banner {
  background: url(../img/blog/blog-home-banner.jpg) bottom;
  background-size: cover;
  padding: 130px 0px;
}
.blog-home-banner h1 span {
  color: #444;
}
.blog-home-banner .primary-btn {
  color: #fff;
  background: #444;
}
.blog-home-banner .primary-btn:hover {
  color: #444;
  background: #fff;
}
.blog-home-banner .overlay-bg {
  background: rgba(0, 0, 0, 0.3);
}

.blog-page {
  background: #f9f9ff;
}

.blog-header-content h1 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 414px) {
  .blog-header-content h1 {
    font-size: 30px;
  }
}
.blog-header-content p {
  margin: 20px 0px;
}

.top-category-widget-area {
  background-color: #f9f9ff;
}
.top-category-widget-area .single-cat-widget {
  position: relative;
  text-align: center;
}
.top-category-widget-area .single-cat-widget .overlay-bg {
  background: rgba(0, 0, 0, 0.85);
  margin: 7%;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.top-category-widget-area .single-cat-widget img {
  width: 100%;
}
.top-category-widget-area .single-cat-widget .content-details {
  top: 32%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  bottom: 0px;
  position: absolute;
}
.top-category-widget-area .single-cat-widget .content-details h4 {
  color: #fff;
}
.top-category-widget-area .single-cat-widget .content-details span {
  display: inline-block;
  background: #fff;
  width: 60%;
  height: 1%;
}
.top-category-widget-area .single-cat-widget:hover .overlay-bg {
  background: rgba(68, 68, 68, 0.85);
  margin: 7%;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .top-category-widget-area .single-cat-widget {
    margin-bottom: 50px;
  }
}

.post-content-area {
  background: rgb(243, 243, 243);
  padding: 60px 0;
}
.post-content-area .single-post {
  margin-bottom: 50px;
}
.post-content-area .single-post .meta-details {
  text-align: right;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .post-content-area .single-post .meta-details {
    text-align: left;
  }
}
.post-content-area .single-post .meta-details .tags {
  margin-bottom: 30px;
}
.post-content-area .single-post .meta-details .tags li {
  display: inline-block;
  font-size: 14px;
}
.post-content-area .single-post .meta-details .tags li a {
  color: #444;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.post-content-area .single-post .meta-details .tags li a:hover {
  color: #444;
}
@media (max-width: 1024px) {
  .post-content-area .single-post .meta-details {
    margin-top: 0px;
  }
}
.post-content-area .single-post .user-name a,
.post-content-area .single-post .date a,
.post-content-area .single-post .view a,
.post-content-area .single-post .comments a,
.post-content-area .single-post .tags a {
  color: #444;
  margin-right: 10px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.post-content-area .single-post .user-name a:hover,
.post-content-area .single-post .date a:hover,
.post-content-area .single-post .view a:hover,
.post-content-area .single-post .comments a:hover,
.post-content-area .single-post .tags a:hover {
  color: #444;
}
.post-content-area .single-post .user-name .lnr,
.post-content-area .single-post .date .lnr,
.post-content-area .single-post .view .lnr,
.post-content-area .single-post .comments .lnr,
.post-content-area .single-post .tags .lnr {
  font-weight: 900;
  color: #444;
}
.post-content-area .single-post .article-detail {
  padding: 15px;
  background-color: #fff;
}
.post-content-area .single-post .article-detail .feature-img img {
  width: 100%;
}
.post-content-area .single-post .article-detail .posts-title h3 {
  margin: 20px 0px;
}
.post-content-area .single-post .article-detail .excert {
  margin-bottom: 20px;
}
.post-content-area .single-post .article-detail .primary-btn {
  background: #fff !important;
  color: #444 !important;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 0px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.post-content-area .single-post .article-detail .primary-btn:hover {
  background: #444 !important;
  color: #fff !important;
}

.posts-list .posts-title h3 {
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.posts-list .posts-title h3:hover {
  color: #444;
}

.blog-pagination {
  padding-top: 60px;
  padding-bottom: 120px;
}
.blog-pagination .page-link {
  border-radius: 0;
}
.blog-pagination .page-item {
  border: none;
}

.page-link {
  background: transparent;
  font-weight: 400;
}

.blog-pagination .page-item.active .page-link {
  background-color: #444;
  border-color: transparent;
  color: #fff;
}

.blog-pagination .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #444;
  border: none;
}

.blog-pagination .page-link .lnr {
  font-weight: 600;
}

.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
  border-radius: 0;
}

.blog-pagination .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #444;
  border-color: #eee;
}

.sidebar-widgets {
  padding-bottom: 120px;
}

.widget-wrap {
  background: #fafaff;
  padding: 20px 0px;
  border: 1px solid #eee;
}
@media (max-width: 991px) {
  .widget-wrap {
    margin-top: 50px;
  }
}
.widget-wrap .single-sidebar-widget {
  margin: 30px 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.widget-wrap .single-sidebar-widget:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}
.widget-wrap .search-widget form.search-form input[type=text] {
  color: #fff;
  padding: 10px 22px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  background: #444;
}
.widget-wrap .search-widget ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.widget-wrap .search-widget ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.widget-wrap .search-widget :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.widget-wrap .search-widget :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.widget-wrap .search-widget form.search-form button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #444;
  color: #fff;
  font-size: 17px;
  border: none;
  cursor: pointer;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.widget-wrap .search-widget form.search-form::after {
  content: "";
  clear: both;
  display: table;
}
.widget-wrap .user-info-widget {
  text-align: center;
}
.widget-wrap .user-info-widget a h4 {
  margin-top: 40px;
  margin-bottom: 5px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-wrap .user-info-widget .social-links li {
  display: inline-block;
  margin-bottom: 10px;
}
.widget-wrap .user-info-widget .social-links li a {
  color: #444;
  padding: 10px;
  font-size: 14px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-wrap .user-info-widget .social-links li a:hover {
  color: #444;
}
.widget-wrap .popular-post-widget .popular-title {
  background: #444;
  color: #fff;
  text-align: center;
  padding: 12px 0px;
}
.widget-wrap .popular-post-widget .popular-post-list {
  margin-top: 30px;
}
.widget-wrap .popular-post-widget .popular-post-list .thumb img {
  width: 100%;
}
.widget-wrap .popular-post-widget .single-post-list {
  margin-bottom: 20px;
}
.widget-wrap .popular-post-widget .single-post-list .details {
  margin-left: 12px;
}
.widget-wrap .popular-post-widget .single-post-list .details h6 {
  font-weight: 600;
  margin-bottom: 10px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-wrap .popular-post-widget .single-post-list .details h6:hover {
  color: #444;
}
.widget-wrap .popular-post-widget .single-post-list .details p {
  margin-bottom: 0px;
}
.widget-wrap .ads-widget img {
  width: 100%;
}
.widget-wrap .post-category-widget .category-title {
  background: #444;
  color: #fff;
  text-align: center;
  padding: 12px 0px;
}
.widget-wrap .post-category-widget .cat-list li {
  padding-top: 15px;
  padding-bottom: 8px;
  border-bottom: 2px dotted #eee;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-wrap .post-category-widget .cat-list li p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-wrap .post-category-widget .cat-list li a {
  color: #444;
}
.widget-wrap .post-category-widget .cat-list li:hover {
  border-color: #444;
}
.widget-wrap .post-category-widget .cat-list li:hover p {
  color: #444;
}
.widget-wrap .newsletter-widget .newsletter-title {
  background: #444;
  color: #fff;
  text-align: center;
  padding: 12px 0px;
}
.widget-wrap .newsletter-widget .col-autos {
  width: 100%;
}
.widget-wrap .newsletter-widget p {
  text-align: center;
  margin: 20px 0px;
}
.widget-wrap .newsletter-widget .bbtns {
  background: #444;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 0;
}
.widget-wrap .newsletter-widget .input-group-text {
  background: #fff;
  border-radius: 0px;
  vertical-align: top;
}
.widget-wrap .newsletter-widget .input-group-text i {
  color: #ccc;
  margin-top: -1px;
}
.widget-wrap .newsletter-widget .form-control {
  border-left: none !important;
  border-right: none !important;
  border-radius: 0px;
  font-size: 13px;
  color: #ccc;
  padding: 9px;
  padding-left: 0px;
}
.widget-wrap .newsletter-widget .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ccc;
}
.widget-wrap .newsletter-widget ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 13px;
  color: #ccc;
}
.widget-wrap .newsletter-widget ::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 13px;
  color: #ccc;
}
.widget-wrap .newsletter-widget :-ms-input-placeholder {
  /* IE 10+ */
  font-size: 13px;
  color: #ccc;
}
.widget-wrap .newsletter-widget :-moz-placeholder {
  /* Firefox 18- */
  font-size: 13px;
  color: #ccc;
}
.widget-wrap .newsletter-widget .text-bottom {
  margin-bottom: 0px;
}
.widget-wrap .tag-cloud-widget .tagcloud-title {
  background: #444;
  color: #fff;
  text-align: center;
  padding: 12px 0px;
  margin-bottom: 30px;
}
.widget-wrap .tag-cloud-widget ul li {
  display: inline-block;
  border: 1px solid #eee;
  background: #fff;
  padding: 4px 14px;
  margin-bottom: 10px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.widget-wrap .tag-cloud-widget ul li:hover {
  background: #444;
}
.widget-wrap .tag-cloud-widget ul li:hover a {
  color: #fff;
}
.widget-wrap .tag-cloud-widget ul li a {
  font-size: 12px;
  color: #444;
}

/*============ End Blog Home Styles  =============*/
/*============ Start Blog Single Styles  =============*/
.single-post-area {
  padding-top: 80px;
  padding-bottom: 80px;
}
.single-post-area .meta-details {
  margin-top: 20px !important;
}
.single-post-area .social-links li {
  display: inline-block;
  margin-bottom: 10px;
}
.single-post-area .social-links li a {
  color: #444;
  padding: 7px;
  font-size: 14px;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single-post-area .social-links li a:hover {
  color: #444;
}
.single-post-area .quotes {
  margin-top: 20px;
  padding: 30px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
          box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
}
.single-post-area .arrow {
  position: absolute;
}
.single-post-area .arrow .lnr {
  font-size: 20px;
  font-weight: 600;
}
.single-post-area .thumb .overlay-bg {
  background: rgba(0, 0, 0, 0.8);
}
.single-post-area .navigation-area {
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.single-post-area .navigation-area .nav-left {
  text-align: left;
}
.single-post-area .navigation-area .nav-left .thumb {
  margin-right: 20px;
  background: #000;
}
.single-post-area .navigation-area .nav-left .thumb img {
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single-post-area .navigation-area .nav-left .lnr {
  margin-left: 20px;
  opacity: 0;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single-post-area .navigation-area .nav-left:hover .lnr {
  opacity: 1;
}
.single-post-area .navigation-area .nav-left:hover .thumb img {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .single-post-area .navigation-area .nav-left {
    margin-bottom: 30px;
  }
}
.single-post-area .navigation-area .nav-right {
  text-align: right;
}
.single-post-area .navigation-area .nav-right .thumb {
  margin-left: 20px;
  background: #000;
}
.single-post-area .navigation-area .nav-right .thumb img {
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single-post-area .navigation-area .nav-right .lnr {
  margin-right: 20px;
  opacity: 0;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single-post-area .navigation-area .nav-right:hover .lnr {
  opacity: 1;
}
.single-post-area .navigation-area .nav-right:hover .thumb img {
  opacity: 0.5;
}
@media (max-width: 991px) {
  .single-post-area .sidebar-widgets {
    padding-bottom: 0px;
  }
}

.comments-area {
  background: #fafaff;
  border: 1px solid #eee;
  padding: 50px 20px;
  margin-top: 50px;
}
@media (max-width: 414px) {
  .comments-area {
    padding: 50px 8px;
  }
}
.comments-area h4 {
  text-align: center;
  margin-bottom: 50px;
}
.comments-area a {
  color: #444;
}
.comments-area .comment-list {
  padding-bottom: 30px;
}
.comments-area .comment-list:last-child {
  padding-bottom: 0px;
}
.comments-area .comment-list.left-padding {
  padding-left: 25px;
}
@media (max-width: 413px) {
  .comments-area .comment-list .single-comment h5 {
    font-size: 12px;
  }
  .comments-area .comment-list .single-comment .date {
    font-size: 11px;
  }
  .comments-area .comment-list .single-comment .comment {
    font-size: 10px;
  }
}
.comments-area .thumb {
  margin-right: 20px;
}
.comments-area .date {
  font-size: 13px;
  color: #cccccc;
}
.comments-area .comment {
  color: #777777;
}
.comments-area .btn-reply {
  background-color: #fff;
  color: #444;
  border: 1px solid #eee;
  padding: 8px 30px;
  display: block;
  font-weight: 600;
  /*ej. transition: all .2s ease-in-out;*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.comments-area .btn-reply:hover {
  background-color: #444;
  color: #fff;
}

.comment-form {
  background: #fafaff;
  text-align: center;
  border: 1px solid #eee;
  padding: 50px 20px;
  margin-top: 50px;
}
.comment-form h4 {
  text-align: center;
  margin-bottom: 50px;
}
.comment-form .name {
  padding-left: 0px;
}
@media (max-width: 991px) {
  .comment-form .name {
    padding-right: 0px;
  }
}
.comment-form .email {
  padding-right: 0px;
}
@media (max-width: 991px) {
  .comment-form .email {
    padding-left: 0px;
  }
}
.comment-form .form-control {
  padding: 12px;
  background: #fff;
  border: none;
  border-radius: 0px;
  width: 100%;
  font-size: 13px;
  color: #777777;
}
.comment-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #eee;
}
.comment-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 13px;
  color: #777;
}
.comment-form ::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 13px;
  color: #777;
}
.comment-form :-ms-input-placeholder {
  /* IE 10+ */
  font-size: 13px;
  color: #777;
}
.comment-form :-moz-placeholder {
  /* Firefox 18- */
  font-size: 13px;
  color: #777;
}
.comment-form .primary-btn {
  border-radius: 0px !important;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 600;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.comment-form .primary-btn:hover {
  background: transparent;
  border-color: #444 !important;
  color: #444 !important;
}

/*============ End Blog Single Styles  =============*/
/* versiones 2*/
.single-post {
  margin-bottom: 15px;
}
.single-post .article-media .feature-img {
  border: 1px dashed #000;
}
.single-post .article-footer {
  padding: 36px;
  border-top: 1px solid #e5e5e5;
  background-color: #fff;
  overflow: hidden;
}
.single-post .article-footer .author-meta {
  float: left;
}
.single-post .article-footer .author-meta li {
  display: inline-block;
}
.single-post .article-footer .author-meta .author-meta li {
  font-size: 14px;
  line-height: 14px;
  margin: 0 13px 0 0;
  font-weight: 300;
}
.single-post .article-footer .article-footer-right {
  float: right;
  line-height: 36px;
}

/* Media Querys ---------------------------------------------------*/
/* @media [not | only] screen [and] (expression) {...} */
/* Custom, iPhone Retina */
@media only screen and (min-width: 300px) and (max-width: 320px) {
  .prueba {
    background-color: indigo;
  }
}
/*Hasta smartphones de 480px*/
@media only screen and (min-width: 321px) and (max-width: 480px) {
  .prueba {
    background-color: magenta;
  }
}
/* de Smartphones a Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .prueba {
    background-color: cyan;
  }
}
/* de Tablets a pantallas de desktops */
@media only screen and (min-width: 769px) and (max-width: 980px) {
  .prueba {
    background-color: tomato;
  }
}
/* Pantallas anchas (desktops) */
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .prueba {
    background-color: teal;
  }
}
@media only screen and (min-width: 1920px) {
  .prueba {
    background-color: deeppink;
  }
}