* {
  margin: 0;
  padding: 0;
}

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

/* Fuentes
/*-------------------------------------------------------*/

@font-face {
  font-family: "Neue Bold Italic";
  src: url("/fonts/Neue/Neue-Haas-Grotesk-Display W02-Bold-Italic.ttf") format("opentype");
  font-weight: normal;
  font-style: bold;
}

@font-face {
  font-family: "Neue Bold";
  src: url("/fonts/Neue/Neue Haas Grotesk Display W02 Bold.ttf") format("opentype");
  font-weight: normal;
  font-style: bold;
}

@font-face {
  font-family: "Neue Medium Italic";
  src: url("/fonts/Neue/Neue-Haas-Grotesk-Display W02-Lt-It.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Neue Medium";
  src: url("/fonts/Neue/Neue-Haas-Grotesk-Display W02-Lt.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* nuevos */

body {
  font-family: "Neue Medium";
}

body p {
  font-family: "Neue Medium";
  margin-top: 20px;
}

h1 {
  font-size: 45px;
  line-height: 89.5%;
  font-family: "Neue Medium Italic";
  color: #0f4f3e;
  /* font-size: 29px; */
  line-height: 109.1%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-family: "Neue Medium";
  color: #0f4f3e;
}

.inspiracion-h2 {
  font-family: "Neue Medium Italic";
}

h1 span {
  font-family: "Neue Bold";
}

h2 {
  color: #0f4f3e;
  font-size: 40px;
  line-height: 129.7%;
  padding-left: 25px;
}

h3 {
  font-family: "Neue Medium";
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 109.1%;
  color: #0f4f3e;
  margin-top: 15px;
}

p, li {
  margin-bottom: 15px;
  color: #0f4f3e;
}

body {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  background: #f2f1ed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "DIN Pro";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
}

img {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

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

/* Contenedores
/*-------------------------------------------------------*/

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 770px) and (max-width: 1420px) {
  .mainmenu li {
    margin: 0px 35px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 90%;
    /*height: 15vh;*/
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section-wrap {
  padding: 60px 0;
  overflow: hidden;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
  height: 15vh;
}

/* columnas */

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

@media (min-width: 992px) {
  .col-md-12 {
    width: 100%;
  }
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

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

/* Centrar vertical y horizontalmente
/*-------------------------------------------------------*/

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vertical-horizontal-center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

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

/* Enlaces
/*-------------------------------------------------------*/

a {
  color: #337ab7;
  text-decoration: none;
}

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

/* Buttons
/*-------------------------------------------------------*/

.btn-sin-fondo {
  vertical-align: middle;
  line-height: 1.375;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: none;
  color: #ffffff;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-bottom: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.42857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-sin-fondo:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #2d7d5c;
}

.btn {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  line-height: 1.375;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: none;
  color: #fff;
  background: #f0f0f0;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-bottom: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.42857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn:hover, .btn:focus, .btn.focus {
  text-decoration: none;
}

.btn:active, .btn.active {
  outline: 0;
  background-image: none;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  background-color: #2d7d5c;
}

.btn:focus {
  outline: none !important;
}

.btn span {
  position: relative;
  z-index: 3;
  -webkit-transition: color 0.3s !important;
  -moz-transition: color 0.3s !important;
  -ms-transition: color 0.3s !important;
  -o-transition: color 0.3s !important;
  transition: color 0.3s !important;
}

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

/* Img ------------------------------------------------------- */

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
}

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

/* Otros -------------------------------------------------------*/

.oh {
  overflow: hidden;
}

.ov {
  overflow: visible;
}

.relative {
  position: relative;
}

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

/* Flexbox -------------------------------------------------------*/

.flex-parent {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.flex-child {
  flex: 1;
}

.flex-center {
  -ms-flex-pack: justify;
  align-items: center;
  justify-content: center;
}

.flex-childV {
  flex: 1;
  width: 28%;
  margin-right: 3%;
}

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

/* Alineaciones -------------------------------------------------------*/

.center-content {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.float-left {
  float: left;
  width: 28%;
  margin-right: 3%;
  margin-top: 20px;
  margin-bottom: 30px;
}

select {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  box-shadow: none !important;
  outline: none;
  font-weight: inherit;
}

.radioBtn {
  -webkit-appearance: radio;
  font-weight: inherit;
}

textArea {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

a {
  text-decoration: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  width: 97%;
}

/* Background -------------------------------------------------------*/

.fullBackground {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}

.fullRelative {
  position: relative;
  width: 100%;
  height: 100%;
}

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

/* Spacings -------------------------------------------------------*/

.nomargin {
  margin: 0 !important;
}

.nopadding {
  padding: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-200 {
  margin-bottom: 200px;
}

.pt-0 {
  padding-top: 0;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

/* Header - menu */

.active {
  color: #FF5757!important;
}

header.smaller {
  position: fixed;
  border-bottom: solid 1px #eeeeee;
}

header.transparent {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  height: 11vh;
  box-shadow: 0px 4px 44px rgba(129, 93, 93, 0);
  padding-top: .5rem;
}

.sticky {
  background-color: white;
  padding-bottom: 12px;
  position: fixed;
  top: 0;
  height: 10vh;
  transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, top 0.4s ease-in-out;
}

header.sticky {
  border-bottom: solid 1px #eeeeee;
  background: #f2f1ed;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.04);
}

header.sticky a {
  color: #4b4b4b;
}

.white-color {
  background: #ffffff;
}

header.autoshow {
  top: -120px;
  height: 70px !important;
}

header.autoshow.scrollOn, header.autoshow.scrollOff {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

header.autoshow.scrollOn {
  top: 0;
}

header.autoshow.scrollOff {
  top: -120px;
}

/* ----- */

header {
  position: fixed;
  top: 0px;
  /* top: 20px; */
  width: 100%;
  height: 80px;
  z-index: 2;
}

header div {
  height: 65%;
}

.row>div {
  display: flex;
  align-items: center;
}

.logo {
  float: left;
  display: flex;
  align-items: center;
}

#logoHeader {
  width: 120px;
}

nav {
  color: #0f4f3e;
  font-family: "Neue Medium";
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 2px;
  font-weight: 600;
  height: 100%;
  right: 45px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.mainmenu li {
  margin: 0px 95px;
  padding: 0px 0px;
  display: inline;
  list-style: none;
}

.mainmenu li a {
  position: relative;
  line-height: 17px;
  cursor: pointer;
  padding: 35px 0px;
  color: #0f4f3e;
  transition: .5s all ease-in-out;
  font-size: 16px;
}

.mainmenu li a:hover {
  color: #FF5757;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, section, summary {
  display: block;
}

/* Burger Menú */

#main-container-responsive {
  display: none;
}

#container-menu-responsive nav {
  display: none;
}

/* Footer */

footer {
  border-top: 2px solid #0f4f3e;
  background: #f2f1ed;
}

footer h1 {
  font-family: "Neue Medium";
  color: #0f4f3e;
  font-weight: 900;
  text-align: center;
  margin: 3rem 0;
}

footer img {
  width: 9%;
}

#containerEmail {
  display: flex;
  justify-content: center;
  margin: 0 0 3rem;
}

#containerEmail input:nth-of-type(1) {
  height: 47px;
  width: 360.05px;
  border: 1px solid #0f4f3e;
  box-sizing: border-box;
  font-family: "Neue Medium";
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #0f4f3e;
  background-color: #f2f1ed;
}

input[placeholder="Ingresá tu correo"] {
  padding-left: 1rem;
}

#containerEmail input:nth-of-type(2) {
  height: 47px;
  width: 151.63px;
  background: #0f4f3e;
  font-family: "Neue Medium";
  font-size: 15px;
  color: #f2f1ed;
  text-transform: uppercase;
  transition: 0.5s all ease-in-out;
  cursor: pointer;
}

#containerEmail input:nth-of-type(2):hover {
  background: #ff5757;
  border: 1px #ff5757;
}

#containerNavFooter {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

#containerNavFooter nav ul {
  display: flex;
  justify-content: space-evenly;
  margin: 0 0 1.5rem;
}

#containerSpanFooter {
  width: 100%;
  height: 30px;
  background: #0f4f3e;
  display: flex;
  justify-content: center;
  font-size: 13px;
  line-height: 17px;
}

#containerSpanFooter span {
  padding-top: 8px;
  color: #ffffff;
  font-family: "Neue Medium";
  font-weight: 400;
}

/* articulos comunes */

.container-article {
  width: 80%;
}

.white-container {
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.white-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.white-container.flex-parent {
  align-content: inherit;
  align-items: inherit;
}

.title-paragraph-container {
  padding: 60px;
}

.title-paragraph-container>.flex-parent {
  flex-direction: column;
  align-content: center;
  align-items: center;
}

footer .flex-parent>div:first-of-type {
  flex: 2;
}

/* //////////// nuevos */

/* General Boxes
/*-------------------------------------------------------*/

.containerResponsive {
  margin: 0 auto;
  max-width: 90%;
}

.containerBlueNews {
  width: 70%;
  margin: 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
}

.section-wrap {
  padding: 50px 0;
  overflow: hidden;
}

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

/* Flexbox
/*-------------------------------------------------------*/

.flex-parent {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.flex-child {
  flex: 1;
}

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

/* Web first layout */

.mobileElement {
  display: none !important;
}

.flex-a {
  display: flex;
  align-items: center;
  justify-items: center;
}

.img-desktop-avatar {
  margin-right: 5px;
}

.headerResponsiveBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

#headerDummy {
  position: relative;
  width: 100%;
  height: 80px;
  display: none;
}

#footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  background: #143350;
}

.enlaces {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  font-size: 15px;
  padding-right: 50px;
}

/* ------- RESPONSIVE --------*/

@media screen and (max-width: 768px) {
  /* Mientras tanto */
  header .row nav {
    display: none;
  }
  header.transparent {
    height: 14vh;
    margin-top: 0;
  }
  .sticky {
    height: 10vh;
  }
  /* Header */
  #index-container {
    width: 100%;
  }
  /* Footer */
  footer img {
    width: 30%;
  }
  #containerNavFooter nav ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 5px;
  }
  #containerEmail {
    width: 90%;
    margin: 2rem auto;
  }
  .mainmenu li a {
    font-size: 16px;
    letter-spacing: 1px;
  }
  #containerEmail input:nth-of-type(1) {
    width: 230px;
    border-radius: 0;
  }
  #containerEmail input:nth-of-type(2) {
    font-size: 17px;
    letter-spacing: 1px;
    width: 115px;
    border-radius: 0;
  }
  #containerSpanFooter {
    height: 25px;
    font-size: 11px;
  }
  #containerSpanFooter span {
    padding-top: 5px;
  }
  /* Header */
  .row {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    height: 10vh;
  }
  .deskopt-menu {
    width: 155px;
    margin-left: auto;
    margin-right: auto;
  }
  #logoHeader {
    width: 100px;
    margin-left: 10px;
  }
  /* Burger icon */
  #main-container-responsive {
    display: block;
    height: auto;
  }
  #hamburger button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    margin-left: -10px;
  }
  #hamburger button span {
    border-radius: 5px;
    background: #0f4f3e;
    display: block;
    height: 3px;
    width: 100%;
    margin: 6px auto;
    animation: 1s;
    animation-fill-mode: forwards;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }


  #hamburger button.open span{
    margin: 0;
  }


  #hamburger button span:nth-child(3) {
    top: 31px;
  }

  #hamburger button.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-bottom: -5px;
  }

  #hamburger button.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  #hamburger button.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* Burger menu */
  #container-menu-responsive.open {
    background: #f2f1ed;
    display: flex !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    height: auto;
    margin-top: 2em;
  }
  #container-menu-responsive nav.open {
    display: block;
  }
  #container-menu-responsive, #container-menu-responsive nav {
    text-align: center;
  }
  #container-menu-responsive nav ul {
    display: flex;
    flex-direction: column;
    margin: 2em 0;
  }
  .item-menu-responsive {
    margin: 1em 0 !important;
  }
  #container-menu-responsive .item-menu-responsive {
    color: #0f4f3e;
    font-size: 18px;
    letter-spacing: 1px;
  }
  #container-menu-responsive.open {
    animation: menu-animation 0.7s ease 0s 1 normal forwards;
  }
  #container-menu-responsive nav.open {
    animation: menu-animation 0.7s ease 0s 1 normal forwards;
  }
  @keyframes menu-animation {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Redes menu */
  .redes {
    flex-direction: row !important;
    justify-content: center;
  }
  .redes li {
    margin: 0 0.8rem !important;
  }
  .redes a {
    background-size: cover !important;
    font-size: 28px !important;
  }
  .icon-facebook {
    background: url("/files/layouts/facebook.svg");
  }
  .icon-instagram {
    background: url("/files/layouts/instagram.svg");
  }
  .icon-linkedin {
    background: url("/files/layouts/linkedin.svg");
  }
  .icon-facebook svg:hover, .icon-instagram svg:hover, .icon-linkedin svg:hover {
    color: red;
  }
  /* Nuestros trabajos */
  .nuestros-trabajos-section h1 {
    font-size: 25px;
  }

  .nuestros-trabajos-section{
    margin-bottom: 0;
  }
  /*Lo que nos inspira */
  .inspiracion-responsive-h2 {
    padding: 0;
  }
  .info-inspiracion-container h3 {
    font-size: 20px;
  }
  .info-inspiracion-container p {
    font-size: 15px;
    line-height: 19px;
  }
  body p {
    margin-top: 30px;
  }
}