/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#logo {
    margin: 18px auto;
}

#logo a {
    display: block;
    height: 27px;
    background-size: 282px;
    background-repeat: no-repeat;
    text-align: center;
    background-position: center center;
}

.bg-full-width-nav{
    background: #1e1e1e;
}

.bg-full-width-nav.affix{
    top: 0;
    width: 100%;
    z-index: 10;
}

.navbar-collapse{
    padding: 0;
}
    
.bg-full-width-nav.affix a.logo-nav-fixed {
     background: url(images/logo-affix.png) no-repeat center center;
    padding: 4px;
    float: left;
    display: inline-block;
    width: 45px;
    height: 30px;
    margin-top: 8px;
    margin-right: 8px;
    background-size: 45px;
    margin-bottom: 8px;
      -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.content-header span{
    font-size: 30px;
    color: #4b4b4b;
    display: block;
    margin: 10px 0;
    cursor: pointer;
}

.content-header span .fa{
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; 
}

/**
 * Close button sidemenu.
 */

.c-menu--push-left ,
.c-menu--push-right  {
  display: block;
}

.c-menu--push-left .c-menu__close,
.c-menu--push-right .c-menu__close {
  display: block;
  padding: 5px 17px;
  width: 100%;
}

.c-menu__close {
    color: #f3d7cf;
    background-color: #b2300b;
    font-size: 13px;
    border: none;
    border-radius: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.c-menu__close:focus {
  outline: none;
}

/** Side menu left **/ 

ul#menu-menu, ul#menu-menu li ul.sub-menu , ul#menu-menu-header-right{
  list-style: none;
  margin: 0;
  padding: 0;
}

ul#menu-menu li a {
    padding: 8px 18px;
    font-family: 'andabold', arial, sans-serif;
    text-transform: uppercase;
    display: block;
    font-size: 15px;
    line-height: 23px;
    color: #f3d7cf;
      -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-bottom: 1px solid #db390c;
}

ul#menu-menu li a:hover, ul#menu-menu-header-right li a:hover{
    background: #b2300b;
    text-decoration: none;
}

ul#menu-menu li ul.sub-menu{
    list-style: none;
    margin: 0;
    padding: 0;
}

ul#menu-menu li ul.sub-menu li a{
    text-transform: capitalize;
    font-family: 'andalight', arial, sans-serif;
    padding-left: 29px;
}

/** // Side menu left **/ 

/** Side menu right **/ 
ul#menu-menu-header-right li a{
    font-family: 'andalight', arial, sans-serif;
    padding: 8px 18px;
    display: block;
    font-size: 15px;
    line-height: 23px;
    color: #f3d7cf;
      -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-bottom: 1px solid #db390c;
}

#c-menu--push-right h5{
    text-align: right;
    color: #f3d7cf;
    border-bottom: 1px solid #db390c;
    font-family: 'andabold', arial, sans-serif;
    margin: 0;
    padding: 8px 18px;
    line-height: 25px;
    font-size: 16px;
}

#c-menu--push-right .widget_text{
    margin: 40px 0 20px 0;
}

#c-menu--push-right .widget_text p{
    text-align: right;
    color: #f3d7cf;
    padding: 8px 18px;
    font-size: 14px;
    line-height: 26px;
}
#c-menu--push-right .widget_text p a{
    color: #f3d7cf;
}
/** /// Side menu right **/ 

/**
 * Body states.
 *
 * When a menu is active, we want to hide the overflows on the body to prevent
 * awkward document scrolling.
 */
body.has-active-menu {
  overflow: hidden;
}

/**  Menu overview. */

.c-menu {
  position: fixed;
  z-index: 200;
  background-color: #c3370f;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}


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

  SLIDE AND PUSH MENUS COMPONENT
  
----------------------------------------------------------------------------- */

.c-menu--push-left, .c-menu--push-right {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media all and (min-width: 320px) {
  .c-menu--push-left,
  .c-menu--push-right {
    width: 290px;
  }
}

/** * Slide/Push Menu Left. */

.c-menu--push-left {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media all and (min-width: 320px) {
  .c-menu--slide-left,
  .c-menu--push-left {
    -webkit-transform: translateX(-290px);
        -ms-transform: translateX(-290px);
            transform: translateX(-290px);
  }
}

.c-menu--push-left.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/**  Slide/Push Menu Right. */
.c-menu--push-right {
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
@media all and (min-width: 320px) {
  .c-menu--push-right {
    -webkit-transform: translateX(290px);
        -ms-transform: translateX(290px);
            transform: translateX(290px);
  }
}

.c-menu--push-right.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}


/**
 * Wrapper states.
 *
 * Various wrapper states occur depending on if a menu is pushing into view, in
 * which case, the wrapper has to be pushed by the respective distance.
 */
.o-wrapper.has-push-left {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
@media all and (min-width: 320px) {
  .o-wrapper.has-push-left {
    -webkit-transform: translateX(290px);
        -ms-transform: translateX(290px);
            transform: translateX(290px);
  }
}

.o-wrapper.has-push-right {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media all and (min-width: 320px) {
  .o-wrapper.has-push-right {
    -webkit-transform: translateX(-290px);
        -ms-transform: translateX(-290px);
            transform: translateX(-290px);
  }
}

/*--------------------------------------------------------------
# /// Header
--------------------------------------------------------------*/

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

  MASK COMPONENT
  
----------------------------------------------------------------------------- */
.c-mask {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  background-color: #1e1e1e;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
          transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

.c-mask.is-active {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}


@media (max-width: 520px){
    #logo a {
        height: 25px;
        background-size: 178px;
    }
    .content-header .col-xs-2, .content-header .col-xs-8{
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Header Desktop
--------------------------------------------------------------*/

.social-menu-header-desktop{
    float: right;
}

.social-menu-header-desktop .widget-social-icons, .social-menu-header-desktop .btn-contacto, .social-menu-header-desktop .widget_search{
    float: left;
}
.social-menu-header-desktop .widget-social-icons h3{
   float: left;
    color: #666464;
    font-family: 'andalight', arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin: 23px 10px 0 0;
    position: relative;
    padding-right: 21px;
}

.social-menu-header-desktop .widget-social-icons h3:after, .social-menu-header-desktop .widget-social-icons ul:after{
    content: " ";
    position: absolute;
    height: 25px;
    width: 1px;
    background: #666464;
    right: 0;
    top: -4px;
}

.social-menu-header-desktop .widget-social-icons ul{
    float: left;
    position: relative;
    padding-right: 15px;
    margin: 23px 19px 0 0;
}

.social-menu-header-desktop .widget-social-icons ul li a{
    font-size: 15px;
    margin: 0 4px;
      -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.social-menu-header-desktop .btn-contacto{
    background: none;
    border: none;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    color: #878686;
    margin: 23px 0 0 0;
}

.social-menu-header-desktop .widget_search{
    margin-top: 18px;
    position: relative;
    padding-left: 27px;
    margin-left: 20px;
}

.social-menu-header-desktop .widget_search:after{
    content: " ";
    position: absolute;
    height: 25px;
    width: 1px;
    background: #666464;
    left: 0;
    top: 1px;
}
.social-menu-header-desktop .widget_search .inp-search{
    border: 1px solid #666464;
    background: #222;
    padding: 4px 10px;
    width: 120px;
    color: #fefefe;
    font-size: 13px;
    font-family: 'andabook', arial, sans-serif;
}

.social-menu-header-desktop .widget_search button#searchsubmit{
    background: #1e1e1e;
    border: none;
    color: #a5a5a5;
    font-size: 22px;
    line-height: 27px;
    vertical-align: middle;   
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.modal-header {
    border-bottom: none;
}

.close{opacity: 1;}

.close span{
    color: #1f1f1f;
    opacity: 0.9;
}
.modal-title{
    color: #3c3c3c;
    text-align: center;
    text-transform: uppercase;
    font-family: 'andabold', arial, sans-serif;
    font-size: 28px;
    line-height: 35px;
    margin: 10px 0 0 0;
}
.mc4wp-form input, .frm_pro_form textarea, .frm_pro_form input {
    width: 100%;
    border: 1px solid #b2b5b9;
    background: rgba(255, 255, 255, 0.1);
    font-size: 17px;
    color: #3c3c3c;
    margin-bottom: 8px;
    padding: 9px;
    height: 49px;
    font-family: 'andasemibold', arial, sans-serif;
}

.frm_pro_form textarea {
    resize: none;
    height: 80px;
}

.mc4wp-form {
   margin: 30px auto;
}
.mc4wp-form input[type=submit], .frm_pro_form .frm_button_submit{
height: 39px;
    font-family: 'andabold', arial, sans-serif;
    text-transform: uppercase;
    color: #fff;
    padding: 10px;
    background: #d4451d;
    border: none;
    margin: auto;
    display: block;    
}

.frm_pro_form .frm_button_submit{
    margin-top: 20px;  
}
    
/*--------------------------------------------------------------
# //// Header Desktop
--------------------------------------------------------------*/

@media (max-width: 1138px){
    
    .social-menu-header-desktop .widget_search{
        display: none;
    }
    
}
