/** GENERAL STYLES**/
* {
  margin: 0;
  padding: 0;
  vertical-align: top;
  box-sizing: border-box;
-webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
html {
  font-family: "FS Joey Light", sans-serif;
  min-height: 100%;
  position: relative;
}

/*  MAIN STYLES */
h1 {
    font-family: "FS Joey Light", sans-serif;
    color: #ffffff;
    text-shadow: 0 0 3px rgb(0 0 0 / 40%);
    font-size: 2.625rem;
    font-weight: 500;
}

h2 {
    font-family: "FS Joey Light", sans-serif;
    color: #3a3a3a;
    font-size: 2.3125rem;
    font-weight: 300;
    line-height: 130%;
    margin-bottom: .8em;
}

h3 {
    font-family: "FS Joey Light", sans-serif;
    color: #3a3a3a;
    font-size: 1.5rem;
    font-weight: 300;
}

h4 {
    font-family: "FS Joey Light", sans-serif;
    color: #333333;
    font-size: 1.125rem;
    font-weight: 600;
}

h5 {
    font-family: "FS Joey Light", sans-serif;
    color: #5b7c2a;
    font-size: 14px;
    font-weight: 600;
}

p {
    font-family: "FS Joey Light", sans-serif;
    color: #3a3a3a;
    font-size: 1.25rem;
    font-weight: 300;
}

div {
    font-family: "FS Joey Light", sans-serif;
    color: #3a3a3a;
    font-size: 1.25rem;
    font-weight: 300;
}

ul {
  list-style-type: square;
  padding-left: 1rem;
}

li {
    font-family: "FS Joey Light", sans-serif;
    color: #333333;
    font-weight: 300;
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    font-size: 1.25rem;
    font-family: "FS Joey Light", sans-serif;
    font-weight: 300;
    color: #333333;
}

a:hover {
    color: #5b7c2a;
    text-decoration: none;
}
img{
  max-width: 100%;
}
.valign {
    align-items: center;
}

/** NAV SECTION **/
nav.row {
    align-items: center;
}
.navbar {
  padding: .75rem 0;
}
.nav-link {
  padding-right: 1.2rem !important;
}
img.logoNav {
  width: 140px;
  height: auto;
}

/** NAV HAMBURGUER MOBILE **/
body {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

*, *:before, *:after {
  box-sizing: border-box;
}


/* END OF GENERAL STYLING */
/* START OF USEFUL CODE */

/** SECTION 1**/
.section1 {
  padding: 0.75rem 0 2% 0;
  background-size: cover;
  background-position: center;
  height: 55vh;
  display: flex;
  position: relative;
}
.section1-preTitle {
  position: absolute;
  top: 0.75rem;
}
.section1-postTitle {
  position: absolute;
  bottom: 0;
}
.section1-preTitle p, .section1-postTitle p, .section1-preTitle div, .section1-postTitle div,  .section1-preTitle a, .section1-postTitle a{
  font-size: .875rem;
  color: #ffffff;
}


/** SECTION 2 **/
.section2 {
    padding: 2.5rem 0;
}
.mktoFormWrap {
  width: 100%;
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  bottom: 25vh;
}
.sectionTitle {
    margin-bottom: 30px;
}

/** SECTION 3 **/
.section3 {
    padding: 0 0 1em;
}
#Section3Img {
  text-align: center;
}

/** SECTION FORM **/
.sectionForm {
  margin: 0 0 2.5rem;
}
.fade {
  background-color: rgba(0,0,0,0.5);
}
.modal-dialog {
  max-width: 570px;
}
.modal-content {
  background-color: #f1f2f4;
  border: 1px solid #dfe0e1;
  border-radius: 0;
  padding: 2.5rem 3.125rem 1.25rem;
}
.modal-header {
  padding: 0;
  padding-bottom: .625rem;
}
.btn-close {
  background-image: none;
  width: auto;
  height: auto;
  opacity: 1;
}
.btn-close div {
  font-size: .8125rem;
}

/** SECTION BUTTON **/
.buttonModule {
  margin: 3.125rem 0;
  text-align: center;
}
.button {
  cursor: pointer;
  text-decoration: none;
  position: relative;
  padding: 12px 25px;
  letter-spacing: .0625rem;
  font-size: .9375rem;
  text-transform: uppercase;
  border: 1px solid #fcfcfc;
  z-index: 1;
  transition: all 0.2s;
}

.button:hover {
  color: #fcfcfc;
}

.btn-color {
  border-color: #515962;
  color: #515962;
}
.btn-color::before, .btn-color::after {
  background: #515962;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.35s;
}

.btn-l-r::after {
  height: 100%;
  width: 0;
  top: 0;
}

.btn-l-r:hover::after {
  width: 100%;
}

.btn-l-r::after {
  left: 0;
}

.btn-l-r .left__arrow {
  margin-right: 15px;
  width: 22px;
  background-color: #515962;
  display: inline-block;
  height: 1px;
  position: relative;
  top: 11px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.btn-l-r:hover .left__arrow {
  background-color: #ffffff;
}

.btn-l-r:hover .left__arrow:before, .btn-l-r:hover .left__arrow:after {
  background-color: #ffffff;
}

.left__arrow::before, .left__arrow::after {
  background-color: #515962;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  width: 6px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.left__arrow::before {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  transform-origin: bottom left;
}
.left__arrow::after {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transform: rotate(-40deg);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}
.left__arrow::after {
  right: auto;
  left: 0;
}

/** SECTION 6 **/
.section6 {
    padding: 3.75rem 0;
}
.threeprofiles {
  width: 100%;
  max-width: 450px;
}
.colText {
  margin-top: .625rem;
}
.colText p {
  font-size: 1rem;
  margin-bottom: 0;
}
.colLink img {
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  -o-transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}
.colLink:hover img {
  -webkit-filter: gray;
  filter: gray;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.colLink h4 {
  -webkit-transition: -webkit-color 0.5s ease-in-out;
  transition: -webkit-color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out, -webkit-color 0.5s ease-in-out;
}
.colLink:hover h4 {
  color: #5b7c2a;
}
.arrow {
  display: inline-block;
  margin-left: 15px;
  width: 1px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  vertical-align: middle;
}
.arrow>.shaft {
  background-color: #5b7c2a;
  display: block;
  height: 1px;
  position: relative;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  will-change: transform;
  width: 0;
}
.colLink:hover .arrow>.shaft {
  width: 45px;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.arrow>.shaft::before, .arrow>.shaft::after {
  background-color: #5b7c2a;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
  width: 0;
}
.colLink:hover .arrow>.shaft::before, .colLink:hover .arrow>.shaft::after {
  width: 6px;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.arrow>.shaft::before {
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}
.colLink:hover .arrow>.shaft::before {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}
.arrow>.shaft::after {
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -o-transform-origin: bottom right;
  transform-origin: bottom right;
}
.colLink:hover .arrow>.shaft::after {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transform: rotate(-40deg);
}
.arrow-btn{
  margin-left: 15px;
  width: 22px;
  background-color: #515962;
  display: inline-block;
  height: 1px;
  position: relative;
  top: 11px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

a.button:hover .arrow-btn{
  background-color: #ffffff;
}
.arrow-btn::before, .arrow-btn::after {
  background-color: #515962;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
a.button:hover .arrow-btn::before, a.button:hover .arrow-btn::after {
  background-color: #ffffff;
}
.arrow-btn::before {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}
.arrow-btn::after {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transform: rotate(-40deg);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -o-transform-origin: bottom right;
  transform-origin: bottom right;
}


/** FOOTER **/
.footer {
    background-color: #ffffff;
    color: #6b6b6b;
    padding: 1.5625rem 0;
    border-top: 1px solid #d1dad5;
}
.footerlinks ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  -webkit-box-pack: end;
  margin-top: 15px;
  margin-bottom: 0;
}
.footerlinks li{
  color: #6b6b6b;
  margin-bottom: 0;
}
#headerfooter p {
  letter-spacing: .0625rem;
  text-transform: uppercase;
  font-size: .875rem;
  margin-bottom: 0;
}
.footer a{
  color: #6b6b6b;
  letter-spacing: .0625rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;

  display: block;
  font-size: .875rem;
  padding: 0 4px;
}
.footer li a::before {
  content: "";
  background-color: #d0d2d4;
  height: 10px;
  position: absolute;
  right: 0;
  margin-top: -5px;
  top: 50%;
  width: 1px;
}
.footer li:last-child a {
  padding-right: 0;
}
.footer li:last-child a::before {
  display: none;
}
.footer a:hover {
  color:#5b7c2a;
}
.footerlogo {
  margin-bottom: 10px;
  max-width: 120px;
  opacity: 0.5;
}

/* FORM */ 

.mktoForm .mktoAsterix {
  color: #515962 !important;
}

label {
  font-family: "FS Joey Light", sans-serif !important;
  color: #515962;
  font-size: .875rem;
  font-weight: 300 !important;
  letter-spacing: .03125rem;
  margin: 0 0 5px;

  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.mktoOffset {
  display: none;
}
.mktoHasWidth {
  width: 100% !important; }

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm textarea.mktoField,
.mktoForm select.mktoField {
  width: 100% !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
  border: 1px solid #e8e8e8 !important;
  font-family: "FS Joey Light", sans-serif !important;
  color: #515962;
  font-size: 1rem;
  letter-spacing: .03125rem;
  font-weight: 300 !important;
  padding: 10px 15px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mktoForm .mktoGutter {
  display: none !important;
}
  
.mktoFormCol,
.mktoFieldWrap {
  width: 100% !important; }

.mktoForm .mktoHtmlText, .mktoForm .mktoHtmlText span, .mktoForm .mktoHtmlText a {
  font-family: "FS Joey Light", sans-serif !important;
  color: #515962 !important;
  font-size: .75rem !important;
  line-height: 150%;
  font-weight: 300 !important;
}

.mktoForm a {
  text-decoration: none !important;
  font-family: "FS Joey Light", sans-serif;
  font-weight: 300;
  color: #333333;
  font-size: .875rem !important;
  letter-spacing: .03125rem;
  display: inline-block !important;
  padding: 0px !important; }

.mktoForm a:hover {
  color: #5b7c2a !important; }

.mktoButtonRow {
  width: 100%;
  text-align: center !important;
  padding-top: 30px !important; }

.mktoButtonWrap {
  margin-left: 0 !important; }

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  font-family: "FS Joey Light", sans-serif !important;
  font-size: .9375rem !important;
  text-transform: uppercase;
  font-weight: 300 !important;
  background-color: transparent !important;
  width: auto;
  border: 1px solid #515962 !important;
  border-radius: 0 !important;
  text-align: center !important;
  background-image: none !important;
  color: #515962 !important;
  padding: 12px 25px !important;
  transition: all .5s;
}

.mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
  border: 1px solid #515962 !important;
  background-color: #515962 !important;
  color: #ffffff !important;
}

.mktoForm .mktoButtonWrap.mktoRound .mktoButton {
    color: #515962 !important;
    border: 1px solid #515962 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 12px 25px !important;
    font-size: .9375rem !important;
}
.mktoForm .mktoButtonWrap.mktoRound .mktoButton:hover {
  border: 2px solid #515962 !important;
}
.mktoForm .mktoButtonWrap.mktoRound .mktoButton:active {
  background-color: #515962 !important;
  background-image: none !important;
  border: 1px solid #515962 !important;
  color: #ffffff !important;
}
.mktoForm .mktoError {
  position: inherit !important;
}
.mktoForm .mktoError .mktoErrorMsg {
  display: inline-block !important;
  margin-top: 0 !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #fe6b51 !important;
  padding: 0 !important;
  text-shadow: none !important;
  letter-spacing: .03125rem;
  font-size: .875rem !important;
  font-family: "FS Joey", sans-serif;
}
.mktoForm .mktoError .mktoErrorArrow {
  background-color: #515962 !important;
  border: 1px solid #515962 !important;
  display: none !important;
}
:focus-visible {
  outline: 1px solid #a8a8a8 !important;
}

/** BOTÄ†â€œN FLOTANTE **/
.sectionboton {
  display: none;
  position: fixed;
  right: 35px;
  bottom: 100px;
}
a.boton-subir {
  background-color: #ffffff;
  color: #515962;
  border: 1px solid #515962;
}
a.boton-subir {
  margin: 20px;
}
a.boton-subir:hover {
  background-color: #515962;
  color: #ffffff;
}
.verticalArrow-btn {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 22px;
  height: 22px;
  margin: 12px 9px;
}
.verticalArrow-btn::before, .verticalArrow-btn::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 4px
}
.verticalArrow-btn::before {
  width: 1px;
  height: 25px;
  left: 10px;
  background: currentColor
}
.verticalArrow-btn::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
  transform: rotate(45deg);
  left: 6.5px
}

@media (max-width: 767.98px) {
  .footer-row {
    flex-direction: column-reverse;
  }
  .footerlinks ul {
    display: block;
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .mktoFormWrap{
    position: inherit;
  }
    .imgrespon {
        width: 100%;
    }
    .colLink {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      border-top: 1px solid #d1dad5;
      border-bottom: 1px solid #d1dad5;
    }
    .colLink img {
      padding-right: 10px;
    }
    .threeprofiles {
      max-width: 120px;
    }
    .footer-row {
      flex-direction: column-reverse;
    }
    .footerlinks ul {
      display: block;
      padding-left: 0;
    }
    .sectionboton {
      display: block;
      position: absolute;
      right: 35px;
      bottom: 100px;
      z-index: 99;
    }
}