@charset "UTF-8";
/* ==========================================================================
   $Table of Contents
   ========================================================================== */
/**
 *
 * $Variables
 * 		$Colors
 *		$Fonts
 * $Mixins
 * $Global
 *		$Typography
 * $Animations
 * $Buttons
 * $Main Nav
 *
 */
/* ==========================================================================
   $Variables
   ========================================================================== */
/* $Colors
   ========================================================================== */
/* $Fonts
   ========================================================================== */
/* $Radius
   ========================================================================== */
/* $Ease
   ========================================================================== */
/* ==========================================================================
   $Mixins
   ========================================================================== */
/* ==========================================================================
   $Partials
   ========================================================================== */
/* $Clearfix
   ========================================================================== */
.main-nav-wrap:before, .main-nav-wrap:after {
  content: "";
  display: table;
}
.main-nav-wrap:after {
  clear: both;
}

/* ==========================================================================
   $Global
   ========================================================================== */

/**
 * 1. Pixels in responsive design is weird, right?
 * 	  I've had to re-adjust my mobile/desktop sizes anyways.
 * 	  Because EM's and REM's don't scale to my liking. ¯\_(ツ)_/¯
 * 	  Browser zooming ensures that it scales on zoom in/out.
 */


.main-nav-wrap a {
  color: white;
}



.main-nav-wrap img {
  max-width: 100%;
  height: auto;
}

.opciones_mobile
{
	display: none;
}

/* ==========================================================================
   $Animations
   ========================================================================== */
@-webkit-keyframes fly-in--up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fly-in--up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ==========================================================================
   $Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  background-color: transparent;
  border-radius: 5px;
  border: none;
  margin-bottom: 24px;
  padding: 6px 24px;
  text-align: center;
  -webkit-transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn [class^="ion-"] {
  color: #fff;
}

.btn-primary {
  background-color: #5bc471;
  color: #fff;
  width: 100%;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #1a936f;
}

/* ==========================================================================
   $Main Nav
   ========================================================================== */
.is-hidden {
  display: none;
  position: absolute;
  opacity: 0;
  -webkit-transform: translateX(140%);
          transform: translateX(140%);
}

.main-nav-wrap {
  overflow: hidden;
}

.main-nav-trigger.active {
  background-color: #1a936f;
}

.main-nav,
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 20;
}

.js .main-nav {
  display: none;

}

.main-nav {
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0 0 6px 1px black);
          filter: drop-shadow(0 0 6px 1px black);
  color: #fff;
  position: relative;
}
.main-nav:before {
  border: 8px solid transparent;
  border-bottom-color: ffffff;
  content: "";
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 100%;
  height: 0;
  width: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.main-nav.active:before {
  -webkit-animation: fly-in--up 0.26s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
          animation: fly-in--up 0.26s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

.main-nav a {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
}

/* 2nd Level Links
   ========================================================================== */
.main-dropdown {
  font-size: 14px;
}

.moves-in > li:not(.subnav-promo) > a {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  position: absolute;
  opacity: 0;
}

.nav-in {
  /* -webkit-animation: fly-in--up 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: fly-in--up 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;*/
}

.nav-out {
    animation: fly-in--up 0.24s cubic-bezier(0.165, 0.84, 0.44, 1) reverse;
}

.subnav,
.subnav a {
 /* -webkit-transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1); */
}

.subnav a {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.has-subnav-link {
 /* -webkit-transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);*/
}
.has-subnav-link:after {
  
    content: url(../img/ico2.svg);
    width: 13px;
    float: right;
}

.go-back {
    color: #ffffff61;
}

.subnav-promo {
  background-color: #1058ab;
  border-top: 1px solid #1058ab;
  padding-top: 14px;
}

.promo-img {
  display: block;
  margin: auto;
}

.promo-body {
  padding: 0 24px 12px;
}

.promo-body a {
  display: inline-block;
  padding: 0;
}

@media (min-width: 740px) {
  .main-nav-wrap {
    overflow: visible;
    box-shadow: 2px 2px 4px #cacacab8;
  }


  .main-nav-trigger {
    display: none !important;
  }

  .js .main-nav {
      display: flex;
      width: 1100px; 
      max-width: 80em;
      margin: 0 auto;
      justify-content: space-between;
      padding: 0em 1em;
      align-items: center;
    
  }

  .main-nav {
    background-color: transparent;
  }
  .main-nav:before {
    content: none;
  }

  .main-nav > li {
    float: left;
   
  }

  .main-nav > li > a {
    display: flex;
    color: #343434;
    text-align: center;
    align-items: center;
    font-size: 14px !important;

  }

  .main-nav > .has-subnav > a:after {
    content: "";
    margin-left: 6px;
    float: none;
    font-size: 75%;
    display: none;
  }

  .main-dropdown {
    background-color: #2675cf;
    border: 1px solid #2675cf;
    color: #fff;
    display: flex;
    opacity: 0;
    position: absolute;
    right: 0;
    left: 0;
    /*-webkit-transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translateY(15%);
            transform: translateY(15%);*/
    visibility: hidden;
  }

  .main-dropdown > li {
    display: table-cell;
    vertical-align: top;
  }

  .hover > .has-subnav-link {
    background-color: #2675cf;
    color: #fff;
  }

  .hover .main-dropdown {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }

  .nav-col {
    border-right: 1px solid #2675cf;
    margin: 12px 0;
    padding: 12px 24px;
    width: 21%;
  }

  .nav-col .has-subnav + .has-subnav {
    margin-top: 24px;
  }

  .subnav-header {
    font-weight: 700;
    border-bottom: 1px solid;
    margin-bottom: 6px;
  }
  .subnav-header:after {
    content: none;
  }

  .subnav a {
    padding: 1px 0;
    vertical-align: top;
    font-size: 13px !important;
  }

  .go-back,
  .view-all {
    display: none !important;
  }

  .subnav-promo {
    border: none;
  }
}

@media screen and (max-width: 760px) { 
  
    .main-nav
    {
    display: block;
    max-height: calc(100% - 150px);
    position: fixed;
    overflow-y: scroll;
    }
    li.has-subnav {
    background-color: white;
    height: fit-content;
    z-index: 1;
    position: relative;
    }
  
    li.has-subnav:nth-of-type(1)
    {
    margin-top: 193px;
    }
  
    .main-nav-wrap a
    {
     color: #3c3c3c;
    }
    .opciones_mobile
	{
	display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 2;
    background: #fff;
    padding-top: 10px;

	}
  .main-nav {
    position: fixed;
    flex-direction: column;
    width: 100%;
    z-index: 105;
  }
  #fondo_menu {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000082;
    position: fixed; 
    z-index: 10;
  }
  .text-primary{
     color: #2675cf !important;
    font-weight: 600;
  }
   b
  {
    color: #2675cf;
    font-size: 17px;
  }
 
  .ion-arrow-left-c
  {
    content: url(../img/ico1.svg);
    width: 13px;
  
        
  }
  .main-nav a {
 
   padding: 6px 25px;

   }
   img
   {
  
    margin-right: 15px;
     
    }
  
}