/*VARIABLES PARA TODO EL SITIO*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/*ANIMATION*/
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

@-webkit-keyframes rotationInverted {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes rotationInverted {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes conveying {
  from {
    -webkit-transform: translatex(-850px);
            transform: translatex(-850px);
  }
  to {
    -webkit-transform: translatex(100vw);
            transform: translatex(100vw);
  }
}

@keyframes conveying {
  from {
    -webkit-transform: translatex(-850px);
            transform: translatex(-850px);
  }
  to {
    -webkit-transform: translatex(100vw);
            transform: translatex(100vw);
  }
}

/*******************
RESET
******************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  line-height: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Montserrat", sans-serif;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Roboto", sans-serif;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
}

header, main {
  width: 100%;
}

abbr {
  cursor: help;
}

::-moz-selection {
  background-color: #0D659B;
  color: #f1f1f1;
}

::selection {
  background-color: #0D659B;
  color: #f1f1f1;
}

/************************
MIXIN
************************/
/* MENU */
/******************************
ESTILOS PARA COMPONENTES
******************************/
.btn {
  border-radius: 10px;
  padding: 15px 50px;
  background-color: transparent;
  border: 1px solid #f1f1f1;
  text-decoration: none;
  text-transform: uppercase;
  color: #f1f1f1;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.btn:hover {
  background-color: #0a518e;
  border: 1px solid #0a518e;
  -webkit-box-shadow: 0 0 20px #0a518e;
          box-shadow: 0 0 20px #0a518e;
}

.btn.primary-btn {
  background-color: #1072BA;
  border: 1px solid #0a518e;
}

.btn.primary-btn span {
  vertical-align: middle;
}

.btn.primary-btn ion-icon {
  vertical-align: middle;
}

.btn.primary-btn:hover {
  background-color: #0a518e;
  border: 1px solid #0a518e;
  -webkit-box-shadow: 0 0 30px #1b1b1b;
          box-shadow: 0 0 30px #1b1b1b;
}

.btn-link {
  font-size: 14px;
  border: none;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}

.btn-link span {
  font-weight: 700;
  vertical-align: middle;
  color: #2d2d2d;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a518e), to(#2AAAE2)), -webkit-gradient(linear, left top, right top, from(transparent), to(transparent));
  background-image: linear-gradient(90deg, #0a518e, #2AAAE2), linear-gradient(90deg, transparent, transparent);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position-x: -200px,0;
  background-position-y: 100%;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.btn-link ion-icon {
  vertical-align: middle;
  margin-bottom: 1px;
  font-size: 18px;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.btn-link:hover ion-icon {
  margin-left: 4px;
  color: #0a518e;
}

.btn-link:hover span {
  color: #0a518e;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, from(#2AAAE2), to(#0a518e)), -webkit-gradient(linear, left top, right top, from(transparent), to(transparent));
  background-image: linear-gradient(90deg, #2AAAE2, #0a518e), linear-gradient(90deg, transparent, transparent);
  background-position-x: 100%, 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  padding: 15px 20px;
  border-radius: 7px;
}

button:hover {
  color: #f1f1f1;
  background-color: #1072BA;
}

.divisor-up {
  width: 100%;
  border-top: 1px solid #ccc;
}

.divisor-up .btn-link {
  padding: 20px 0 10px 0;
  display: block;
}

/* MENU */
.wrapper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  /*@media only screen and (max-width:420px) {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
    }*/
}

@media only screen and (max-width: 640px) {
  .wrapper-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
  }
}

.wrapper-nav .address {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-right: 41px;
  margin-bottom: 7px;
  text-align: right;
}

.wrapper-nav .address > div {
  display: inline;
  padding: 7px 21px 7px 21px;
}

.wrapper-nav .address > div span {
  font-size: 12px;
  color: #999;
}

.wrapper-nav .address > div span:last-child {
  margin-left: 15px;
}

.wrapper-nav .address > div span ion-icon {
  font-size: 16px;
  color: #999;
  padding-right: 5px;
  vertical-align: sub;
}

@media only screen and (max-width: 1024px) {
  .wrapper-nav .address {
    display: none;
  }
}

.wrapper-nav .logo {
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 350px;
}

@media only screen and (max-width: 1024px) {
  .wrapper-nav .logo {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .wrapper-nav .logo {
    padding-left: 0;
  }
}

.wrapper-nav .logo a {
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 300px;
  max-width: 300px;
}

@media only screen and (max-width: 640px) {
  .wrapper-nav .logo a {
    width: 100%;
    max-width: 250px;
  }
}

@media only screen and (max-width: 420px) {
  .wrapper-nav .logo a {
    width: 100%;
    max-width: 200px;
  }
}

.wrapper-nav .logo a img {
  width: 100%;
  vertical-align: bottom;
}

.wrapper-nav .main-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.wrapper-nav .main-nav a {
  color: #f1f1f1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wrapper-nav .main-nav > ul {
  background-color: #1072BA;
  padding-right: 40px;
}

@media only screen and (max-width: 1024px) {
  .wrapper-nav .main-nav > ul {
    padding-right: 0;
  }
}

.wrapper-nav .main-nav > ul > li {
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.wrapper-nav .main-nav > ul > li.active > a {
  color: #f1f1f1;
  background-color: #0a518e;
}

.wrapper-nav .main-nav > ul > li > a {
  color: #f1f1f1;
}

.wrapper-nav .main-nav > ul > li > a:hover {
  background-color: #0a518e;
}

.wrapper-nav .main-nav > ul > li > ul {
  background-color: #0a518e;
}

.wrapper-nav .main-nav > ul > li > ul > li:hover {
  background-color: #2AAAE2;
}

.wrapper-nav .main-nav > ul > li > ul > li > ul {
  background-color: #2AAAE2;
}

.wrapper-nav .main-nav > ul > li > ul > li > ul > li:hover {
  background-color: #0a518e;
}

.wrapper-nav .main-nav > ul > li > ul > li.has-sub a {
  padding-right: 20px;
}

.wrapper-nav .main-nav.mobile {
  position: fixed;
  right: 0;
  /*background-color: white;
            padding: 20px 0;*/
}

.wrapper-nav .main-nav.mobile .menu-toggle {
  color: #2d2d2d;
  font-size: 16px;
}

.wrapper-nav .main-nav.mobile > ul {
  background-color: #1072BA;
}

.my-slider {
  position: relative;
  height: 81vh;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.my-slider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 900;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(65, 65, 65, 0.2);
}

.my-slider .card_part {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-position: center center;
  -webkit-transform: translateX(700px);
          transform: translateX(700px);
  background-image: url(../images/slide-01.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-animation: opaqTransition 28s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
          animation: opaqTransition 28s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.my-slider .card_part.card_part-two {
  z-index: -1;
  background-image: url(../images/slide-05.jpg);
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.my-slider .card_part.card_part-three {
  z-index: -2;
  background-image: url(../images/slide-07.jpg);
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

.my-slider .card_part.card_part-four {
  z-index: -3;
  background-image: url(../images/slide-06.jpg);
  -webkit-animation-delay: 21s;
          animation-delay: 21s;
}

@-webkit-keyframes opaqTransition {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  28% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
}

@keyframes opaqTransition {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  28% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
}

.my-slider .img-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}

.my-slider .header-info {
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
  width: 80vw;
  max-width: 1280px;
  color: #f1f1f1;
}

.my-slider .header-info h1 {
  font-size: 48px;
  line-height: 54px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .my-slider .header-info h1 {
    font-size: 32px;
    line-height: 38px;
  }
}

.my-slider .header-info h2 {
  font-size: 21px;
  line-height: 28px;
  font-weight: normal;
  max-width: 640px;
  padding: 20px 0 30px 0;
}

@media only screen and (max-width: 640px) {
  .my-slider .header-info h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

.my-slider .header-info .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.wrapper-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

@media only screen and (max-width: 1024px) {
  .wrapper-col .three-quarter {
    width: 70%;
  }
  .wrapper-col .one-quarter {
    width: 30%;
  }
}

@media only screen and (max-width: 960px) {
  .wrapper-col {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper-col .three-quarter, .wrapper-col .one-quarter {
    width: 100%;
  }
}

.wrapper-col .two-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapper-col .two-col.align-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: left;
}

@media only screen and (max-width: 960px) {
  .wrapper-col .two-col {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper-col .three-quarter, .wrapper-col .one-quarter {
    width: 100%;
  }
}

.wrapper-col.list {
  width: 100%;
}

.wrapper-col.list .two-col {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media only screen and (max-width: 1024px) {
  .wrapper-col.list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.section-solution {
  margin-bottom: 60px;
}

@media only screen and (max-width: 640px) {
  .section-solution {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .section-solution .order-mobile {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: none;
  }
}

.section-solution .full-image {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media only screen and (max-width: 1024px) {
  .section-solution .full-image img {
    width: 100%;
  }
}

.section-solution .solution-box {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0a518e), to(#1072BA));
  background-image: linear-gradient(180deg, #0a518e, #1072BA);
  color: #f1f1f1;
  padding: 80px 5%;
  position: relative;
}

@media only screen and (max-width: 960px) {
  .section-solution .solution-box {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    width: 100%;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 640px) {
  .section-solution .solution-box {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}

.section-solution .solution-box::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 10px;
  background-image: url("../images/blue-block-01-01.svg");
  background-repeat: space;
  left: -8px;
  z-index: -1;
}

.section-solution .solution-box::after svg {
  fill: #1072BA;
}

.section-solution .solution-box header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  margin: 0 0 5px 0;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  .section-solution .solution-box header h2 {
    line-height: 2.4rem;
  }
}

.section-solution .solution-box header h3 {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
}

.section-solution .solution-box ul {
  list-style: none;
  padding: 20px 0 25px 0;
}

.section-solution .solution-box ul li {
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-solution .solution-box ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #f1f1f1;
  /* Change the color */
  display: inline-block;
  width: 1em;
  font-size: 20px;
}

@media only screen and (max-width: 640px) {
  .section-solution .solution-box ul li {
    font-size: 12px;
    line-height: 20px;
    padding: 0;
  }
}

.moveBox.conveying {
  -webkit-animation: conveying 50s linear infinite;
          animation: conveying 50s linear infinite;
}

.content-group-animated {
  overflow: hidden;
  height: 90px;
}

@media only screen and (max-width: 640px) {
  .content-group-animated {
    display: none;
    height: 0;
  }
}

.product-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .product-section {
    padding: 20px 0;
  }
}

.product-section .group-animated {
  margin: 0;
  position: absolute;
  width: 100%;
  border-top: 6px solid #1072BA;
  border-bottom: 6px solid #1072BA;
  height: 132px;
}

@media only screen and (max-width: 640px) {
  .product-section .group-animated {
    display: none;
    height: 0;
  }
}

.product-section .group-animated .gear-svg.left-position {
  position: absolute;
  left: -60px;
}

.product-section .group-animated .gear-svg.right-position {
  position: absolute;
  right: -60px;
}

.product-section .section-title, .product-section .product-box {
  width: 90vw;
  max-width: 1280px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (max-width: 960px) {
  .product-section .section-title, .product-section .product-box {
    width: 90vw;
  }
}

@media only screen and (max-width: 640px) {
  .product-section .section-title, .product-section .product-box {
    width: 90%;
  }
}

.product-section .section-title {
  z-index: 1;
  margin: 25px 0 80px 0;
  background-color: white;
}

@media only screen and (max-width: 768px) {
  .product-section .section-title {
    background-color: transparent;
  }
}

@media only screen and (max-width: 640px) {
  .product-section .section-title {
    text-align: left;
    margin-bottom: 10px;
  }
}

.product-section .section-title h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  font-size: 3.5em;
  color: #0a518e;
  /*span {
                padding: 0 10px;
                @media only screen and (max-width:640px) {padding: 0;}
            }*/
}

@media only screen and (max-width: 960px) {
  .product-section .section-title h2 {
    font-size: 2em;
    line-height: 2.4rem;
  }
}

@media only screen and (max-width: 640px) {
  .product-section .section-title h2 {
    margin-bottom: 5px;
  }
}

.product-section .section-title p {
  font-weight: normal;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .product-section .section-title p {
    background-color: transparent;
  }
}

.product-section .product-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px;
  border: 1px solid #cecece;
  -webkit-box-shadow: 0 2px 20px #f5f5f5;
          box-shadow: 0 2px 20px #f5f5f5;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin: 20px 0;
  }
  .product-section .product-box .product-list {
    padding-left: 0;
  }
}

.product-section .product-box:hover {
  border-color: #aeaeae;
  -webkit-box-shadow: 0 2px 20px #aeaeae;
          box-shadow: 0 2px 20px #aeaeae;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.product-section .product-box:hover .img-wrapper picture img {
  -webkit-filter: opacity(90%);
          filter: opacity(90%);
}

.product-section .product-box:hover .product-list .btn-content {
  border-top-color: transparent;
}

.product-section .product-box.wrapper-col .two-col {
  width: 40%;
}

.product-section .product-box.wrapper-col .two-col.product-list {
  width: 60%;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box.wrapper-col .two-col {
    width: 100% !important;
  }
}

.product-section .product-box .img-wrapper {
  position: relative;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: 100%;
}

.product-section .product-box .img-wrapper picture {
  display: block;
  height: 100%;
  background-color: #1072BA;
  overflow: hidden;
  max-height: 250px;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .img-wrapper picture {
    border-radius: 0;
  }
}

.product-section .product-box .img-wrapper picture img {
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, from(#1072BA), to(#1072BA));
  background-image: linear-gradient(90deg, #1072BA, #1072BA);
  -webkit-filter: opacity(90%);
          filter: opacity(90%);
  width: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 960px) {
  .product-section .product-box .img-wrapper picture img {
    width: 120%;
    max-width: 120%;
  }
}

.product-section .product-box .img-wrapper .img-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 33%;
}

.product-section .product-box .img-wrapper .img-content h1 {
  display: inline;
  text-transform: uppercase;
  font-size: 28px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0a518e), to(#0a518e));
  background-image: linear-gradient(90deg, #0a518e, #0a518e);
  color: #f1f1f1;
  margin: 0;
}

.product-section .product-box .product-list {
  padding: 20px 0 10px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .product-list {
    padding: 30px 20px;
    padding-bottom: 0;
  }
}

.product-section .product-box .product-list header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
}

.product-section .product-box .product-list header h3 a {
  color: #1b1b1b;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.product-section .product-box .product-list header h3 a:hover {
  text-decoration: underline;
}

.product-section .product-box .product-list header span {
  color: #666;
  font-size: 0.7rem;
  font-weight: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}

.product-section .product-box .product-list ul {
  padding: 10px 0;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .product-list ul {
    padding: 20px 0;
  }
}

.product-section .product-box .product-list ul li {
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  /*&::before {
                        content: ">";
                        width: 20px;
                        margin-right: 5px;
                        padding-left: 20px;
                    }*/
}

.product-section .product-box .product-list ul li:last-child {
  margin-bottom: 0;
}

.product-section .product-box .product-list ul li ion-icon {
  margin-right: 5px;
  font-size: 1rem;
  vertical-align: text-bottom;
}

.product-section .product-box .product-list .list-two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .product-list .list-two-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-section .product-box .product-list .list-two-column ul {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .product-list .list-two-column ul {
    width: 100%;
  }
  .product-section .product-box .product-list .list-two-column ul:first-child {
    padding-bottom: 5px;
  }
  .product-section .product-box .product-list .list-two-column ul:last-child {
    padding-top: 0;
  }
}

.product-section .product-box .product-list .list-two-column ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5px;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .product-list .list-two-column ul li {
    width: 100%;
    white-space: normal;
  }
}

.product-section .product-box .product-list .divisor-up {
  width: 100%;
  border-top: 1px solid #ccc;
}

.product-section .product-box .product-list .divisor-up .btn-link {
  text-align: right;
  padding: 20px 30px 10px 0;
  display: block;
}

@media only screen and (max-width: 768px) {
  .product-section .product-box .product-list .divisor-up .btn-link {
    padding: 20px 0;
  }
}

.highlights-section {
  padding-left: 20px;
}

@media only screen and (max-width: 768px) {
  .highlights-section {
    margin-top: 0;
    padding-left: 0;
  }
}

.highlights-section h2 {
  font-family: "Montserrat", sans-serif;
  color: #f1f1f1;
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  .highlights-section h2 {
    font-size: 2rem;
  }
}

.highlights-section h3.big-text {
  display: inline;
  font-size: 36px;
  line-height: 52px;
  background-color: #0a518e;
  color: #f1f1f1;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 2px 10px;
  text-transform: uppercase;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width: 640px) {
  .highlights-section h3.big-text {
    background-color: transparent;
    color: #f1f1f1;
    font-family: "Roboto", sans-serif;
    text-transform: none;
    font-size: 1.4rem;
    line-height: 1.8rem;
    padding: 0;
    font-weight: 100;
    letter-spacing: 0.2px;
  }
}

.highlights-section .mobile-only {
  display: none;
}

@media only screen and (max-width: 640px) {
  .highlights-section .mobile-only {
    display: block;
    margin: 40px 0;
  }
  .highlights-section .mobile-only a {
    text-align: center;
  }
}

.highlights-section .our-mision {
  border-top: 1px solid #2AAAE2;
  padding-top: 10px;
  margin-top: 20px;
}

.highlights-section .our-mision h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

@media only screen and (max-width: 640px) {
  .highlights-section .our-mision h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.highlights-section .our-mision p {
  font-size: 1rem;
  line-height: 21px;
  font-weight: 100;
  letter-spacing: 0.2px;
}

@media only screen and (max-width: 640px) {
  .highlights-section .our-mision p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

.highlights-section.wrapper-col img {
  border-radius: 10px;
}

@media only screen and (max-width: 960px) {
  .highlights-section.wrapper-col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .highlights-section.wrapper-col img {
    width: 120%;
  }
}

/* SVG ANIMADO */
.group-animated .gear-svg.rotation {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: rotation 15s linear infinite;
          animation: rotation 15s linear infinite;
}

.group-animated .gear-svg.rotation-inverted {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: rotationInverted 15s linear infinite;
          animation: rotationInverted 15s linear infinite;
}

.fancy-title-header {
  width: 100%;
  background-color: #1072BA;
  padding: 20px 5%;
  position: relative;
  overflow: hidden;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url("../images/Productos/correas-termosoldables/correa-termosoldable-header.jpg"), -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#f5f5f5));
  background-image: url("../images/Productos/correas-termosoldables/correa-termosoldable-header.jpg"), linear-gradient(#ccc, #f5f5f5);
  background-size: cover;
  background-repeat: no-repeat;
  /*&::before {
        content: "";
        position: absolute;
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%;
        background-image: url("../images/Productos/correa-termosoldable-header.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        filter:  opacity(50%) grayscale(100%);
    }*/
}

@media only screen and (max-width: 640px) {
  .fancy-title-header {
    background-position-x: right;
  }
}

.fancy-title-header .fancy-title {
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.fancy-title-header .fancy-title span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #f1f1f1;
  margin-bottom: 7px;
  display: block;
  z-index: 1;
}

.fancy-title-header .fancy-title span a {
  color: #f1f1f1;
  text-decoration: none;
}

.fancy-title-header .fancy-title span a:hover {
  text-decoration: underline;
}

.fancy-title-header .fancy-title h1 {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: #f1f1f1;
  text-transform: uppercase;
  z-index: 1;
}

.fancy-title-header .fancy-title p {
  font-size: 16px;
  line-height: 21px;
  color: #f1f1f1;
  margin-top: 7px;
  z-index: 1;
  width: 100%;
  max-width: 1024px;
}

@media only screen and (max-width: 640px) {
  .fancy-title-header .fancy-title p {
    display: none;
  }
}

.wrapper-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.individual-product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
  width: 90vw;
  max-width: 1280px;
}

.individual-product-wrapper .individual-product-box {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  min-width: 300px;
  border: 1px solid #aeaeae;
  margin: 7px;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background-color: #f1f1f1;
}

.individual-product-wrapper .individual-product-box:hover {
  -webkit-box-shadow: 0 0 20px #aeaeae;
          box-shadow: 0 0 20px #aeaeae;
  border-color: #1072BA;
  background-color: #fff;
}

.individual-product-wrapper .individual-product-box:hover .product-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.individual-product-wrapper .individual-product-box:hover .btn-content {
  color: #f1f1f1;
  background-image: -webkit-gradient(linear, left top, right top, from(#2AAAE2), to(#1072BA));
  background-image: linear-gradient(90deg, #2AAAE2, #1072BA);
}

.individual-product-wrapper .individual-product-box a {
  text-decoration: none;
  color: #2d2d2d;
}

.individual-product-wrapper .individual-product-box .title-box {
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.individual-product-wrapper .individual-product-box .title-box h3 {
  font-size: 21px;
  line-height: 25px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-transform: uppercase;
  font-weight: 600;
}

.individual-product-wrapper .individual-product-box .product-img {
  overflow: hidden;
  text-align: center;
  height: 270px;
}

.individual-product-wrapper .individual-product-box .product-img img {
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  max-width: 100%;
  width: 100%;
}

.individual-product-wrapper .individual-product-box .btn-content {
  text-align: center;
  padding: 15px 0;
  /*a {
                display: block;
                text-decoration: none;
                color: $primary-color;
                letter-spacing: 1px;
                text-transform: uppercase;
                font-size: 12px;
                font-weight: 700;
                transition: all ease-in-out 0.5s;
                padding: 20px 0;
                &:hover {
                    color: $primary-color;
                    text-decoration: underline;
                }
            }*/
}

.individual-product-wrapper .individual-product-box .btn-content span {
  vertical-align: top;
  margin-right: 7px;
}

.individual-product-wrapper .individual-product-box .btn-content span ion-icon {
  margin-left: 5px;
}

.individual-product-wrapper .individual-product-box .btn-content span:hover ion-icon {
  margin-left: 10px;
  color: #f1f1f1;
}

.product-description-wrapper {
  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-description-wrapper .product-description-content {
  width: 80vw;
  max-width: 1280px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-bottom: 60px;
}

@media only screen and (max-width: 1024px) {
  .product-description-wrapper .product-description-content {
    width: 90%;
  }
}

.product-description-wrapper .product-description-content .product-brand-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 640px) {
  .product-description-wrapper .product-description-content .product-brand-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-description-wrapper .product-description-content .product-brand-header > div {
    margin-top: 0;
  }
  .product-description-wrapper .product-description-content .product-brand-header > div.brand-logo {
    margin-top: 0;
  }
}

.product-description-wrapper .product-description-content .product-brand-header .product-brand-description {
  width: 100%;
  max-width: 1024px;
  padding-right: 20px;
  /*&.only-title {
                    padding-top: 40px;
                }*/
}

.product-description-wrapper .product-description-content .product-brand-header .product-brand-description p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-description-wrapper .product-description-content .product-brand-header .product-brand-description h2 {
  font-size: 21px;
  line-height: normal;
  padding-bottom: 10px;
  display: block;
  width: 100%;
}

.product-description-wrapper .product-description-content .product-brand-header .brand-logo {
  -webkit-box-shadow: 0 0 5px #aeaeae;
          box-shadow: 0 0 5px #aeaeae;
  border-radius: 10px;
  overflow: hidden;
}

.product-description-wrapper .product-description-content .product-brand-header .brand-logo img {
  width: 100%;
}

@media only screen and (max-width: 420px) {
  .product-description-wrapper .product-description-content .product-brand-header .brand-logo {
    width: 70%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.product-description-wrapper .product-description-content .product-details {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 640px) {
  .product-description-wrapper .product-description-content .product-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 420px) {
  .product-description-wrapper .product-description-content .product-details {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.product-description-wrapper .product-description-content .product-details.flex-column {
  -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-description-wrapper .product-description-content .product-details .product-details-header {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 100%;
  max-width: 820px;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 7px 0;
}

.product-description-wrapper .product-description-content .product-details .product-details-header h3 {
  font-size: 1.4rem;
}

.product-description-wrapper .product-description-content .product-details .product-details-header h3 ion-icon {
  margin-right: 5px;
  vertical-align: middle;
}

.product-description-wrapper .product-description-content .product-details h4 {
  width: 100%;
  max-width: 768px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-description-wrapper .product-description-content .product-details p {
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  width: 100%;
  max-width: 768px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 5px;
}

.product-description-wrapper .product-description-content .product-details img {
  width: 100%;
}

.product-description-wrapper .product-description-content .product-details .quarter {
  width: 40%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.product-description-wrapper .product-description-content .product-details .quarter img {
  padding: 10px;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .product-description-wrapper .product-description-content .product-details .quarter {
    width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin: 0;
    padding: 0;
    height: 200px;
    margin-bottom: 10px;
  }
}

.product-description-wrapper .product-description-content .product-details .wrapper-col {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px;
  border: 1px solid #e6e6e6;
  background-color: #f0f0f0;
  margin: 20px 0;
}

@media only screen and (max-width: 420px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col {
    margin: 10px 0;
  }
}

.product-description-wrapper .product-description-content .product-details .wrapper-col.alone {
  width: 100%;
  max-width: 768px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: transparent;
}

@media only screen and (max-width: 420px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col.alone {
    padding: 10px 20px;
  }
}

.product-description-wrapper .product-description-content .product-details .wrapper-col.alone.only-img {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .one-col {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .one-col.c-info h4 {
  margin-bottom: 10px;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .one-col.c-info h4 ion-icon {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col .one-col.c-info ul {
    padding: 0;
  }
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .two-col {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-img {
  padding-right: 20px;
}

@media only screen and (max-width: 420px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-img {
    padding-right: 0;
  }
}

@media only screen and (max-width: 960px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-info {
    margin-top: 20px;
  }
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-info h4 {
  margin-bottom: 10px;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-info h4 ion-icon {
  margin-right: 5px;
}

@media only screen and (max-width: 960px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-info h4 {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .product-description-wrapper .product-description-content .product-details .wrapper-col .two-col.c-info ul {
    padding-left: 0;
    padding-right: 0;
  }
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .two-col p {
  font-size: 14px;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .wrapper-col {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .wrapper-col ul {
  margin-top: 10px;
}

.product-description-wrapper .product-description-content .product-details .wrapper-col .wrapper-col ul li {
  margin: 5px 0;
}

.product-description-wrapper .product-description-content .product-details.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

.product-description-wrapper .product-description-content .product-details.column .full {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-description-wrapper .product-description-content .product-details.column .full.gallery {
  width: 100%;
}

.product-description-wrapper .product-description-content .product-details.column .full.gallery img {
  width: 100%;
  max-width: 320px;
  padding: 10px;
}

.product-description-wrapper .product-description-content .product-details > article {
  padding: 20px 20px 0 20px;
  width: 70%;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .product-description-wrapper .product-description-content .product-details > article {
    width: 100%;
  }
}

.product-description-wrapper .product-description-content .product-details:last-child {
  margin-bottom: 0;
}

.product-description-wrapper .product-description-content .product-details ul {
  text-align: left;
  padding: 0 10px 10px 20px;
}

.product-description-wrapper .product-description-content .product-details ul li {
  margin: 10px 0;
  font-size: 16px;
  line-height: 20px;
}

.product-description-wrapper .product-description-content .product-details ul li.title-list {
  font-weight: 700;
  margin: 10px 0;
  text-transform: uppercase;
  font-size: 12px;
}

.product-description-wrapper .product-description-content .product-details ul li ion-icon {
  color: #2d2d2d;
  margin-right: 7px;
  vertical-align: top;
}

footer {
  width: 100%;
  padding: 60px 5%;
  color: #f1f1f1;
  background-image: linear-gradient(45deg, #0a518e, #1072BA);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .wrapper-col {
  max-width: 1366px;
}

footer .contact-details {
  border: 20px solid #2AAAE2;
  margin-right: 10px;
  background-color: #f1f1f1;
  color: #2d2d2d;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  width: 100%;
}

@media screen and (max-width: 960px) {
  footer .contact-details {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 40px;
  }
}

@media screen and (max-width: 540px) {
  footer .contact-details {
    margin-right: 0;
    border: none;
  }
}

footer .contact-details:hover {
  -webkit-box-shadow: 0 0 20px #0a518e;
          box-shadow: 0 0 20px #0a518e;
}

footer .contact-details ion-icon {
  font-size: 16px;
  color: #0a518e;
  vertical-align: middle;
  margin-right: 10px;
}

footer .contact-details > section {
  width: 100%;
}

footer .contact-details h2 {
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 20px 0 20px;
  margin: 10px 0 5px 0;
}

footer .contact-details ul {
  padding: 15px 20px;
}

footer .contact-details ul li {
  font-size: 14px;
  font-style: normal;
  margin-bottom: 15px;
}

footer .contact-details ul li:last-child {
  margin-bottom: 0;
}

footer .contact-details ul li a {
  color: #2d2d2d;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

footer .contact-details ul li a:hover {
  text-decoration: underline;
  color: #1072BA;
}

footer .contact-details ul li ul {
  padding: 10px 0 0 10px;
}

footer .contact-details address {
  width: 100%;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
}

footer .contact-details .footer-nav {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #bdbdbd;
  width: 100%;
  /*ul {
                li {
                    a {
                        &:before {
                            content: "\203A";
                            font-size: 24px;
                            line-height: 0;
                            padding-right: 5px;
                            color: $primary-color-dark;
                        }
                    }
                    ul {
                        li {
                            a {
                                &:before { 
                                    content: "\21B3";
                                }
                            }
                        }
                    }
                }
            }*/
}

footer .contact-details .sci-name {
  text-align: center;
  padding: 15px 0;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #aeaeae;
  letter-spacing: 3px;
}

footer .form-wrapper {
  padding-left: 30px;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  footer .form-wrapper {
    margin-top: 25px;
    padding: 0;
  }
}

@media only screen and (max-width: 960px) {
  footer .form-wrapper {
    margin-top: 0;
  }
}

footer .form-wrapper.two-col {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

footer .form-wrapper h2 {
  margin: 0;
  font-size: 28px;
}

footer .form-wrapper ul.form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 7px;
}

footer .form-wrapper ul.form-content li {
  width: 50%;
  padding: 5px;
}

@media only screen and (max-width: 540px) {
  footer .form-wrapper ul.form-content li {
    width: 100%;
  }
}

footer .form-wrapper ul.form-content li:last-child {
  width: 100%;
}

footer .form-wrapper ul.form-content li label {
  font-size: 10px;
  text-transform: uppercase;
  color: #f1f1f1;
  letter-spacing: 2px;
}

footer .form-wrapper ul.form-content li input, footer .form-wrapper ul.form-content li textarea {
  width: 100%;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 7px;
  border: transparent;
  margin-top: 5px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background-color: #f1f1f1;
  color: #2d2d2d;
}

footer .form-wrapper ul.form-content li input:hover, footer .form-wrapper ul.form-content li input:active, footer .form-wrapper ul.form-content li input:focus, footer .form-wrapper ul.form-content li textarea:hover, footer .form-wrapper ul.form-content li textarea:active, footer .form-wrapper ul.form-content li textarea:focus {
  -webkit-box-shadow: 0 0 20px #0a518e;
          box-shadow: 0 0 20px #0a518e;
  border-color: #0a518e;
}

footer .form-wrapper ul.form-content li textarea {
  min-height: 100px;
}

footer .form-wrapper ul.form-content .error-color {
  color: red;
}

footer .form-wrapper .success-message {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 20px #065814;
          box-shadow: 0 0 20px #065814;
  background-color: #20bb3a;
  border: 1px solid #065814;
  padding: 5px 8px;
  color: #065814;
}

footer .form-wrapper .error-message {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 10px firebrick;
          box-shadow: 0 0 10px firebrick;
  background-color: tomato;
  border: 1px solid firebrick;
  padding: 5px 8px;
  color: firebrick;
}

footer .form-wrapper .our-mision {
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
  padding-top: 10px;
}

footer .form-wrapper .our-mision h2 {
  font-size: 18px;
  margin-bottom: 7px;
}

footer .form-wrapper .our-mision p {
  font-size: 14px;
}

.copyrigth {
  padding: 20px;
  background-color: #042e52;
  color: #f0f0f0;
  font-size: 14px;
  font-weight: normal;
  width: 100%;
  letter-spacing: 1px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .copyrigth {
    -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;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
  .copyrigth div:last-child {
    margin-top: 25px;
  }
}

.about-me {
  width: 100%;
  background-color: #002a4e;
  text-align: left;
  padding: 10px 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-me a {
  text-decoration: none;
  color: #aeaeae;
}

.about-me a .me {
  font-size: 10px;
  color: #f0f0f0;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
}

.about-me a .me:hover {
  text-decoration: underline;
}

.wsApp-logo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 75px;
  z-index: 901;
}

.wsApp-logo img {
  width: 100%;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.wsApp-logo:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

/* TABLA */
.wrapper-table {
  width: 100%;
  overflow-x: auto;
}

.wrapper-table h2 {
  margin-bottom: 20px;
}

.wrapper-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
}

.wrapper-table table .img-cell {
  width: 150px;
}

.wrapper-table table .img-cell img {
  width: 100%;
}

.wrapper-table table .color--green {
  background-color: green;
  color: #f1f1f1;
}

.wrapper-table table .color--yellow {
  background-color: yellow;
  color: #2d2d2d;
  font-weight: bold;
  font-size: 14px;
}

.wrapper-table table .empty-row {
  background-color: #e5e5e5;
}

.wrapper-table tr {
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.wrapper-table tr:hover {
  background-color: #f0f0f0;
}

.wrapper-table th {
  font-size: 14px;
}

.wrapper-table td, .wrapper-table th {
  border: 1px solid #999;
  padding: 0.5rem;
  text-align: center;
}
/*# sourceMappingURL=styles.css.map */