body * {
  font-family: 'Roboto', sans-serif;
  line-height: 1.2; }

.container {
  max-width: 1000px; }

*:focus {
  outline: 1px dashed #000000;
  outline-offset: 2px; }

.row {
  margin-bottom: 0 !important; }

.tittle {
  display: flex;
  align-items: center;
  margin-bottom: 24px; }
  .tittle h3 {
    font-size: 32px;
    font-weight: 100;
    line-height: 1.2;
    margin: 0 0 0 16px; }

.img_wrapper {
  height: calc(100vh + 200px);
  width: 100%;
  overflow: hidden;
  background: url("../images/test.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 328px; }

#nav-icon {
  width: 25px;
  height: 16px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  top: 35px;
  left: 17px;
  display: none; }
  @media screen and (max-width: 1023px) {
    #nav-icon {
      display: block; } }

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333333;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

#nav-icon span:nth-child(1) {
  top: 0px; }

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 6px; }

#nav-icon span:nth-child(4) {
  top: 12px; }

.active #nav-icon span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%; }

.active #nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.active #nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.active #nav-icon span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%; }

.wrapper {
  width: 100%;
  display: block;
  margin: 0 auto; }
  .wrapper .menu {
    width: 100%;
    height: 74px;
    position: relative;
    display: block;
    z-index: 100000;
    transition: all .2s ease-out;
    padding: 0 0 5px;
    background: #F1F2F2; }
    @media screen and (max-width: 1023px) {
      .wrapper .menu {
        display: flex;
        justify-content: center;
        align-items: center; } }
    .wrapper .menu .logo {
      display: block;
      float: left;
      width: 166px;
      height: 59px;
      margin: 9px 0 0 5px;
      z-index: 10;
      background: url("../images/Eco_logo_1_Color-3.svg") no-repeat 0 0;
      background-size: contain; }
      @media screen and (max-width: 1439px) {
        .wrapper .menu .logo {
          width: 150px;
          margin: 10px 0 0 2.5%; } }
      @media screen and (max-width: 1300px) {
        .wrapper .menu .logo {
          width: 130px; } }
      @media screen and (max-width: 1023px) {
        .wrapper .menu .logo {
          width: 128px;
          display: block;
          float: none; } }
      .wrapper .menu .logo img {
        width: 100%; }
    .wrapper .menu > ul {
      float: right;
      margin: 0;
      list-style: none;
      padding: 0;
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      width: calc(100% - 216px);
      height: 74px; }
      .wrapper .menu > ul.open {
        border-radius: 7px 7px 0 0; }
        @media screen and (max-width: 1023px) {
          .wrapper .menu > ul.open {
            border-radius: 0; } }
      @media screen and (max-width: 1023px) {
        .wrapper .menu > ul {
          display: none; } }
      .wrapper .menu > ul > li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1; }
        @media screen and (max-width: 1023px) {
          .wrapper .menu > ul > li {
            overflow: hidden;
            padding: 0 !important; } }
        .wrapper .menu > ul > li.selected {
          background-color: #F1F2F2; }
          @media screen and (max-width: 1023px) {
            .wrapper .menu > ul > li.selected {
              background-color: #E6E6E6; }
              .wrapper .menu > ul > li.selected ul {
                margin-top: 0 !important;
                padding-top: 0 !important; } }
          .wrapper .menu > ul > li.selected > a {
            font-weight: bold; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li.selected > a {
                background: url("../images/arrow_up.png") no-repeat 95% center;
                background-size: 10px; } }
        .wrapper .menu > ul > li > a {
          color: #333333;
          font-size: 14px;
          text-decoration: none;
          display: flex;
          height: 74px;
          border-top: 4px solid transparent;
          flex-direction: column;
          justify-content: center;
          align-content: center;
          text-align: center;
          padding: 0 8px; }
          .wrapper .menu > ul > li > a.active {
            background: #F1F2F2;
            font-weight: bold; }
          .wrapper .menu > ul > li > a.last_link {
            font-weight: 100;
            font-size: 12px;
            line-height: 16px; }
          .wrapper .menu > ul > li > a:focus {
            background: #E6E6E6; }
          .wrapper .menu > ul > li > a:hover {
            border-top: 4px solid #BAD405;
            background: #E6E6E6; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li > a:hover {
                border-top: 4px solid transparent;
                font-weight: 600;
                background: url("../images/arrow_up.png") no-repeat 95% center;
                background-size: 10px; } }
          @media screen and (max-width: 1023px) {
            .wrapper .menu > ul > li > a {
              font-size: 14px;
              font-weight: 100;
              text-align: left;
              background: url("../images/arrow_down.png") no-repeat 95% center;
              background-size: 10px;
              padding-left: 24px !important;
              margin: 0;
              height: 46px; }
              .wrapper .menu > ul > li > a.active {
                background: #E6E6E6 url(../images/arrow_up.png) no-repeat 95% center !important;
                font-weight: bold;
                background-size: 10px !important; } }
        .wrapper .menu > ul > li .content_submenu.show {
          display: flex; }
          .wrapper .menu > ul > li .content_submenu.show .bg_submenu {
            display: block; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu.show .bg_submenu {
                display: none; } }
          .wrapper .menu > ul > li .content_submenu.show > ul {
            display: flex;
            flex-direction: column; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu.show > ul > li.selected > a {
                background: url(../images/arrow_up.png) no-repeat center right;
                background-size: 10px; } }
            .wrapper .menu > ul > li .content_submenu.show > ul > li > ul {
              display: none; }
        .wrapper .menu > ul > li .content_submenu {
          display: none;
          position: absolute;
          margin: 0 auto;
          width: 830px;
          left: 0;
          top: 74px;
          height: 268px;
          background: #E6E6E6;
          border-radius: 0 0 7px 7px; }
          .wrapper .menu > ul > li .content_submenu.show {
            display: flex;
            height: 268px; }
          .wrapper .menu > ul > li .content_submenu.hide {
            display: none; }
          @media screen and (max-width: 1023px) {
            .wrapper .menu > ul > li .content_submenu {
              position: relative;
              float: left;
              overflow: hidden;
              background: #E6E6E6;
              top: 0px;
              max-height: initial;
              height: auto !important;
              width: 100%; } }
          .wrapper .menu > ul > li .content_submenu .bg_submenu {
            max-height: 486px;
            position: absolute;
            left: 0;
            background: url("../images/test_bg.png") no-repeat center;
            background-size: cover;
            display: none;
            height: 391px;
            width: 375px; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu .bg_submenu {
                display: none; } }
          .wrapper .menu > ul > li .content_submenu h3, .wrapper .menu > ul > li .content_submenu h2 {
            padding: 0 0 0 3.2%;
            font-size: 20px;
            margin: 0; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu h3, .wrapper .menu > ul > li .content_submenu h2 {
                padding: 15px 0;
                text-align: left;
                height: auto;
                font-size: 14px; } }
          .wrapper .menu > ul > li .content_submenu h3 {
            font-size: 16px;
            font-weight: bold;
            line-height: 32px; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu h3 {
                display: none; } }
          .wrapper .menu > ul > li .content_submenu h2 {
            font-size: 21px;
            font-weight: bold;
            line-height: 32px; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu h2 {
                display: none; } }
          .wrapper .menu > ul > li .content_submenu > ul {
            display: none;
            padding: 16px 0 0;
            margin: 0;
            width: 100%;
            height: 100%; }
            @media screen and (max-width: 1023px) {
              .wrapper .menu > ul > li .content_submenu > ul {
                position: relative;
                top: 0;
                background: transparent;
                margin: 8px 0 16px 5%;
                padding: 10px 0 0;
                width: 95%; } }
            .wrapper .menu > ul > li .content_submenu > ul li {
              width: 32%;
              display: block;
              float: none;
              border: none;
              margin: 16px 0 0 3%;
              text-align: left; }
              @media screen and (max-width: 1023px) {
                .wrapper .menu > ul > li .content_submenu > ul li {
                  padding: 0;
                  width: 100%;
                  margin: 16px 0 0 0; } }
              .wrapper .menu > ul > li .content_submenu > ul li a {
                background: #fff;
                background-size: 6px;
                padding: 0 10px;
                width: 100%;
                color: #333333;
                border-bottom: none;
                font-size: 16px;
                border: none;
                background: url("../images/arrow_decor.png") no-repeat left;
                background-size: 4px;
                font-weight: 400; }
                @media screen and (max-width: 1023px) {
                  .wrapper .menu > ul > li .content_submenu > ul li a {
                    font-size: 12px;
                    font-weight: bold;
                    line-height: 16px;
                    background: url("../images/arrow_down.png") no-repeat right;
                    background-size: 10px;
                    padding-right: 15px;
                    width: 82%;
                    display: block; } }
                .wrapper .menu > ul > li .content_submenu > ul li a:hover {
                  background: url("../images/arrow_decor_g.png") no-repeat left;
                  background-size: 4px;
                  border-bottom: none;
                  border-top: none;
                  color: #ADC200;
                  text-decoration: underline;
                  font-weight: 600; }
                  @media screen and (max-width: 1023px) {
                    .wrapper .menu > ul > li .content_submenu > ul li a:hover {
                      background: url("../images/arrow_up.png") no-repeat right;
                      background-size: 10px;
                      padding-right: 15px;
                      width: 82%;
                      display: block;
                      color: #333333;
                      text-decoration: none; } }
              .wrapper .menu > ul > li .content_submenu > ul li ul.submenu {
                width: 65%;
                padding: 0px 0 0 3%;
                right: 0px;
                display: none;
                top: 16px;
                background: url("../images/decor_ul.png") no-repeat left center;
                background-size: 13px;
                position: absolute;
                height: 240px;
                list-style: none;
                flex-direction: column; }
                @media screen and (max-width: 1023px) {
                  .wrapper .menu > ul > li .content_submenu > ul li ul.submenu {
                    position: relative;
                    top: 0;
                    background: transparent;
                    margin: 0px 0 0 5%;
                    padding: 10px 0 0;
                    width: 100%;
                    height: auto; }
                    .wrapper .menu > ul > li .content_submenu > ul li ul.submenu a {
                      background: url("../images/arrow_decor.png") no-repeat left;
                      background-size: 4px;
                      border-bottom: none;
                      border-top: none;
                      color: #333333;
                      text-decoration: underline;
                      font-weight: 400;
                      text-decoration: none; } }
              .wrapper .menu > ul > li .content_submenu > ul li .submenu, .wrapper .menu > ul > li .content_submenu > ul li .submenu.show {
                display: flex; }

.options_contact {
  height: 74px;
  cursor: pointer; }
  @media screen and (max-width: 1023px) {
    .options_contact.desktop {
      display: none !important; } }
  @media screen and (max-width: 1023px) {
    .options_contact {
      display: none; } }
  .options_contact a, .options_contact .select {
    color: #333333;
    font-size: 20px; }
    .options_contact a:hover, .options_contact .select:hover {
      font-weight: bold; }
  .options_contact a {
    text-transform: uppercase;
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    line-height: 19px; }
  .options_contact .select {
    background: url("../images/arrow_idioma.png") no-repeat right center;
    background-size: 10px;
    display: flex;
    height: 74px;
    margin-right: 15px;
    justify-content: center;
    align-items: center; }
    @media screen and (max-width: 1023px) {
      .options_contact .select {
        border-left: 1px solid transparent;
        background: none;
        margin-right: 8px; } }
    .options_contact .select .language {
      font-size: 10px;
      color: #fff;
      padding: 0 15px;
      position: relative;
      display: flex;
      align-items: center;
      border-left: 1px solid #333333;
      height: 20px; }
      @media screen and (max-width: 1023px) {
        .options_contact .select .language {
          border-left: 0;
          padding: 0; } }
      .options_contact .select .language img {
        height: 20px;
        width: 20px;
        margin: 0 8px 0 0; }
      .options_contact .select .language span {
        font-size: 14px;
        line-height: 1;
        margin-right: 8px;
        color: #333333; }
        @media screen and (max-width: 1023px) {
          .options_contact .select .language span {
            display: none; } }
    .options_contact .select .select_language {
      position: absolute;
      display: none;
      text-align: center;
      background: #BAD405;
      z-index: 100;
      width: 253px;
      border-radius: 10px 0 0 10px;
      top: 74px;
      height: 40px;
      right: 0;
      list-style: none;
      justify-content: flex-end;
      padding-left: 50px; }
      .options_contact .select .select_language.show {
        display: flex; }
      @media screen and (max-width: 1023px) {
        .options_contact .select .select_language {
          width: 100%;
          position: fixed !important;
          left: 0;
          border-radius: 0;
          z-index: 1001; } }
      .options_contact .select .select_language > li {
        padding-right: 16px;
        display: flex;
        align-items: center; }
        .options_contact .select .select_language > li > a {
          height: 40px;
          padding: 6px;
          border-top: 4px solid transparent;
          color: #333333;
          font-size: 16px;
          font-weight: bold;
          line-height: 19px;
          font-family: 'Roboto', sans-serif; }
          @media screen and (max-width: 1023px) {
            .options_contact .select .select_language > li > a {
              background: none; } }
          .options_contact .select .select_language > li > a.active, .options_contact .select .select_language > li > a:hover {
            border-top: 4px solid #333;
            text-decoration: none; }
  .options_contact.mobile {
    display: none; }
    @media screen and (max-width: 1023px) {
      .options_contact.mobile {
        display: block;
        border: none;
        width: auto;
        position: absolute;
        right: 0;
        top: 0px;
        padding: 30px 0 30px 0 !important; } }
    .options_contact.mobile a {
      display: block;
      text-align: center;
      font-family: 'Roboto-Medium';
      text-transform: normal;
      padding: 10px 0;
      font-size: 15px; }
      .options_contact.mobile a:hover {
        font-family: 'Roboto-Medium'; }
    .options_contact.mobile .select {
      display: block;
      padding: 0;
      font-family: 'Roboto-Medium' !important;
      font-size: 15px; }
      .options_contact.mobile .select us
span {
        display: none;
        text-align: center; }
      .options_contact.mobile .select > ul > li {
        border: none !important; }
      .options_contact.mobile .select .select_language {
        display: none !important; }
        .options_contact.mobile .select .select_language.show {
          display: flex !important; }
      .options_contact.mobile .select .select_language.show {
        display: flex !important; }

.box_search {
  width: 100%;
  position: absolute;
  height: 75px;
  top: 0;
  background-color: #F1F2F2;
  box-shadow: 0px 5px 10px #ccc;
  z-index: 10;
  display: none; }
  .box_search.show {
    display: block; }
  .box_search .closed_search {
    height: 16px;
    width: 16px;
    background: url("../images/closed.png") no-repeat center;
    background-size: contain;
    margin: 21px 1px;
    position: absolute;
    right: 24px;
    top: 6px; }
  .box_search input {
    height: 50px;
    width: calc(100% - 30px);
    margin: 10px 15px;
    float: left;
    padding: 0 20px;
    border-radius: 7px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
    border: 0; }

.search_icon {
  width: 30px;
  height: 20px;
  background: url("../images/icon_search.png") no-repeat center;
  background-size: contain;
  margin: 21px 1px;
  position: absolute;
  top: 8px;
  right: 39px;
  display: none; }
  .search_icon.show {
    display: block; }

.active {
  overflow: hidden; }

.active.menu {
  overflow: initial; }

.active.menu > ul {
  float: none;
  display: block !important;
  width: 100%;
  margin: 0;
  text-align: center;
  background: #F1F2F2;
  height: 100vh;
  z-index: 1000;
  position: absolute;
  padding: 0;
  flex-direction: column;
  top: 74px; }
  .active.menu > ul.new_position {
    top: 114px; }
    @media screen and (max-width: 1023px) {
      .active.menu > ul.new_position {
        top: 104px; } }
  .active.menu > ul.select_language {
    display: none; }
    .active.menu > ul.select_language:hover {
      display: block; }

.active.menu > ul > li {
  width: 100%;
  float: none;
  display: block;
  padding: 10px 0;
  margin: 0px 0 0; }
