@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
.nav_top {
  width: 86%;
  position: absolute !important;
  top: 0;
  left: 7%;
  height: 100px;
  z-index: 99;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  border: solid 1px rgba(0, 0, 0, 0.6);
  border-top: none;
}

.nav_onscroll {
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
  height: 60px !important;
  width: 100%;
  padding: 0 8% !important;
  top: -60px !important;
  position: fixed;
  z-index: 99;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.navbar {
  padding-right: 5%;
  padding-left: 5%;
  background-color: #CF372D;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
}

.navbar a:hover {
  color: #EECE4C;
}

.navbar-brand {
  font-weight: 500 !important;
  font-size: 1.8rem !important;
  color: white !important;
}

.navbar-brand a, .navbar-brand img {
  height: 45px !important;
}

.navbar-brand span {
  color: #242424;
  font-weight: 600 !important;
}

.navbar-nav .nav-item {
  margin-left: 35px;
}

@media screen and (max-width: 506px) {
  .nav_top {
    height: 80px;
  }
  .navbar-brand {
    font-size: 1.3rem !important;
  }
}

aside {
  width: 100vw;
  height: 100vh;
  position: fixed;
  right: 0;
  z-index: 99;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.exit_sidenav {
  width: 30vw;
  height: 100%;
}

.sidenav {
  height: 100%;
  width: 70vw;
  background-color: #CF372D;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidenav .sidenav_brand {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-top: 90px;
  padding-bottom: 60px;
}

.sidenav .sidenav_brand h2 {
  font-weight: 800;
  font-size: 1.3rem;
  color: #242424;
}

.sidenav a {
  width: 90%;
}

.sidenav a:last-of-type div {
  border-bottom: solid 1px rgba(223, 223, 223, 0.5);
}

.sidenav div {
  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;
  width: 100%;
  height: 75px;
  color: white;
}

.sidenav div:not(.sidenav_brand) {
  border-top: solid 1px rgba(223, 223, 223, 0.5);
}

.hero {
  height: 100vh;
  background-image: url(../res/bg.jpg);
  background-position: center bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero h1 {
  z-index: 1;
  color: #f9f9f9;
  font-size: 5rem;
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 0;
  overflow: hidden;
}

.hero h1 span {
  color: #CF372D;
}

.hero h4 {
  z-index: 1;
  color: #9e9e9e;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 80px;
}

.hero button {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  border: none;
  background-color: #CF372D;
  color: white;
  padding: 20px 35px;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
  cursor: pointer;
}

.hero button i {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 5px;
  margin-left: 15px;
}

.hero button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: solid 2px #CF372D;
}

.hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #232323bf;
}

.break {
  display: none;
}

@media screen and (max-width: 950px) {
  .break {
    display: contents;
  }
  .hero h1 {
    font-size: 3rem;
    text-align: center;
  }
  .hero h4 {
    font-size: 1.1rem;
  }
  .hero button {
    padding: 18px 26px;
  }
}

.products_section {
  background-color: #CF372D;
  padding: 50px 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products_title {
  width: 100%;
  padding: 0 8%;
  overflow: hidden;
}

.product_slider_outer {
  width: 100vw;
  position: relative;
}

.products_slider {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.arrows {
  opacity: 90%;
  position: absolute;
  z-index: 1;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -90px;
  left: 1vw;
  width: 96vw;
}

.arrows svg {
  height: 35px;
  cursor: pointer;
  fill: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.arrows svg:first-of-type {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.arrows svg:hover {
  fill: #EECE4C;
}

.product {
  width: 100%;
  padding: 0 8vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto fit-content fit-content auto;
      grid-template-rows: auto -webkit-fit-content -webkit-fit-content auto;
      grid-template-rows: auto fit-content fit-content auto;
      grid-template-areas: " . foto " " titulo foto " " desc foto " " . foto ";
}

.product h3 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: titulo;
  color: #242424;
  font-weight: 200;
  font-size: 2.6rem;
  margin-bottom: 15px;
  cursor: default;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.product h3:hover {
  color: #EECE4C;
}

.product .product_info {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: desc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product .product_info p {
  color: white;
  font-size: 17px;
  line-height: 28px;
  font-weight: 200;
}

.product .product_info ul {
  padding-left: 15px;
}

.product .product_info ul li:last-of-type p {
  margin-bottom: 0;
}

.product .product_info ul li:hover i {
  color: #EECE4C;
}

.product .product_info i {
  font-size: 0.5rem;
  margin-bottom: 2px;
  margin-right: 8px;
  color: #242424;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.product .product_photo {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
  grid-area: foto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product .product_photo img {
  width: 80%;
}

/* Slider Nav */
.radiogroup {
  height: 20px;
  padding: 0px 5px;
  margin: auto;
  margin-top: 18px;
  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;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0.09em solid rgba(0, 0, 0, 0.3);
  background: white;
  cursor: pointer;
  margin-right: 18px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.radio {
  display: none;
}

input[type="radio"]:checked + label {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #EECE4C;
  border-color: #EECE4C;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

input[type="radio"]:not(checked) + label {
  background: #242424;
  border-color: #242424;
}

input[type="radio"]:not(checked) + label:hover {
  background-color: #EECE4C;
  border-color: #EECE4C;
}

@media screen and (max-width: 1000px) {
  .products_section {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 40px 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .products_slider {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .product {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: fit-content fit-content fit-content;
        grid-template-rows: -webkit-fit-content -webkit-fit-content -webkit-fit-content;
        grid-template-rows: fit-content fit-content fit-content;
        grid-template-areas: " titulo " " foto " " desc ";
  }
  .product h3 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: titulo;
    font-size: 1.8rem;
    text-align: center;
  }
  .product .product_info {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: desc;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .product .product_info .product_desc {
    width: 100%;
    font-size: 15px;
  }
  .product .product_info .product_desc span {
    display: none;
  }
  .product .product_info p {
    margin: 2px;
  }
  .product .product_photo {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: foto;
    width: 100%;
    margin: 20px 0 30px;
  }
  .product .product_photo img {
    width: 80%;
  }
  .product_slider_outer {
    margin-top: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .product_slider_outer .arrows {
    margin-top: -160px;
  }
  .products_title {
    margin: 0;
  }
  .radiogroup {
    display: none;
  }
}

.about_section {
  width: 100%;
  padding: 50px 6% 50px 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#about_info {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about_photo {
  width: 50%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#about_photo img {
  width: 100%;
}

.text_box {
  margin-top: 32px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text_box p {
  margin-bottom: 25px;
}

@media screen and (max-width: 1000px) {
  #about_photo {
    display: none;
  }
  #about_info {
    width: 100%;
    margin-top: 20px;
  }
}

.contact_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 70px 5vw 70px 12vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 58%;
  padding-right: 6%;
  height: 100%;
  display: flex;
}

.form_section .title {
  margin-bottom: 24px;
}

.form_group {
  width: 100%;
}

#field-name {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: nombre;
}

#field-company {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: empresa;
}

#field-email {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: mail;
}

#field-number {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: numero;
}

#field-message {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: mensaje;
}

#field-submit {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: enviar;
}

form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 2fr 1fr;
      grid-template-rows: 1fr 1fr 2fr 1fr;
  -webkit-column-gap: 30px;
          column-gap: 30px;
  row-gap: 15px;
      grid-template-areas: " nombre empresa " " mail numero " " mensaje mensaje " " enviar . ";
}

form input {
  color: #ffffffcc !important;
}

form button {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px !important;
  background-color: #CF372D !important;
  border-color: #CF372D !important;
}

form button:hover {
  background-color: #EECE4C !important;
  border-color: #EECE4C !important;
}

form .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffffcc;
  border-radius: 0;
}

form .form-control:focus {
  background-color: transparent;
}

form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

form label {
  color: #CF372D;
  font-weight: 500;
  margin: 0;
}

form textarea {
  color: #ffffffcc !important;
  border: 1px solid #ffffffcc !important;
  border-radius: 2px !important;
}

form textarea:focus {
  border-color: #CF372D !important;
}

.form-control:focus {
  border-color: #CF372D;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.has-error .form-control:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_row div:first-of-type {
  margin-right: 25px;
}

.icon_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  margin-left: 80px;
}

.icon_section a {
  width: 100%;
}

.icon_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.icon_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

.icon_item:hover .icon svg {
  fill: #EECE4C;
}

.icon_item:hover div:last-of-type {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.icon_item div {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.icon_item:nth-child(2) {
  margin-top: 30px;
  margin-bottom: 30px;
}

.icon_item .icon {
  overflow: hidden;
  margin-right: 25px;
}

.icon_item .icon svg {
  fill: #CF372D;
  margin-bottom: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.icon_item h5 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: bold;
}

.icon_item p {
  margin: 0;
  font-size: 0.9rem;
  color: #9e9e9e;
  line-height: 23px;
}

#icon_telefono {
  width: 60px;
}

#icon_mensaje {
  width: 58px;
}

#icon_ubicacion {
  width: 65px;
}

#icon_sinergias {
  width: 65px;
}

@media screen and (max-width: 768px) {
  #field-name {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: nombre;
  }
  #field-company {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: empresa;
  }
  #field-email {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: mail;
  }
  #field-number {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: numero;
  }
  #field-message {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: mensaje;
  }
  #field-submit {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    grid-area: enviar;
  }
  .contact_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 6% 65px;
  }
  .form_section {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  .form_section form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr 2fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 2fr 1fr;
    -webkit-column-gap: 30px;
            column-gap: 30px;
    row-gap: 15px;
        grid-template-areas: " nombre " " empresa " " mail " " numero " " mensaje "    " enviar ";
  }
  .icon_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .icon_row:first-of-type {
    margin-bottom: 35px;
  }
  .icon_section {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .icon_section .icon_item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .icon_section .icon_item h5 {
    display: none;
  }
  .icon_section .icon_item p {
    text-align: center;
  }
  .icon_section .icon_item .icon {
    margin-right: 0;
  }
}

.companies_section {
  height: 200px;
  width: 100vw;
  position: relative;
  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;
  padding: 20px 4%;
}

.companies_section .tns-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.companies_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}

.companies_slider div img {
  width: 120px;
  position: relative;
  cursor: default;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.companies_hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

#tns1-ow > button, #tns1-ow > div.tns-liveregion.tns-visually-hidden {
  display: none;
}

#tns2-ow > button, #tns2-ow > div.tns-liveregion.tns-visually-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .companies_section {
    height: 150px;
    padding: 0;
  }
  .companies_slider div img {
    width: 90px;
  }
}

.prefooter {
  background-color: #2b2b2b;
}

footer {
  background-color: #1d1d1d;
  height: 100px;
  padding: 0 8%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
}

footer div {
  width: 33%;
}

footer .footer_left {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

footer .footer_left .logo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_left .logo h2 {
  font-size: 1.3rem;
  overflow: hidden;
}

footer .footer_left .logo h2 span {
  color: rgba(255, 255, 255, 0.5);
}

footer .footer_left .rights {
  width: 100%;
  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;
  font-size: 0.9rem;
}

footer .footer_left .rights p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

footer a {
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
  color: #CF372D;
}

footer a:hover {
  color: #EECE4C;
  text-decoration: none;
}

footer h2, footer p {
  margin: 0;
}

footer #to_top {
  text-align: right;
  text-transform: uppercase;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 30px 6%;
    height: 130px;
  }
  .footer_left {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    height: 100%;
  }
  .footer_left .logo {
    width: 100%;
  }
  .footer_left .logo h2 {
    font-size: 1.1rem !important;
  }
  .footer_left .rights {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    width: 100%;
    margin: 0 !important;
    font-size: 0.8rem !important;
  }
  .footer_left .rights p {
    text-align: left !important;
  }
}

* {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  background-color: white;
}

::-moz-selection {
  background: #EECE4C;
}

::selection {
  background: #EECE4C;
}

p {
  font-weight: 400;
  color: #333;
}

.title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  overflow: hidden;
}

.white {
  color: white;
}

.red {
  color: #CF372D;
}

.section_title {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  text-transform: lowercase;
}

.subtitle {
  font-size: 1.2rem;
  color: #333;
  font-weight: 400;
}

.texto {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 0.95rem;
}

.mobile {
  display: none;
}

@media screen and (max-width: 506px) {
  .mobile {
    display: contents !important;
  }
  .title {
    font-size: 2rem;
  }
  .desktop {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */