.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

p {
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  text-align: justify;
}

.body {
  border-style: solid;
  border-width: 0px;
  border-color: transparent;
  background-color: hsla(0, 0%, 100%, 0);
  -webkit-transition: opacity 400ms cubic-bezier(.6, -.28, .735, .045);
  transition: opacity 400ms cubic-bezier(.6, -.28, .735, .045);
}

.landing {
  width: 100vw;
  height: 100vh;
  min-height: 80vh;
  background-color: #000;
  background-image: linear-gradient(11deg, rgba(0, 0, 0, 0.99), rgba(0, 0, 0, 0.45)), url('../images/BGHS.png');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  opacity: 1;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-perspective: 0px;
  perspective: 0px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
  -webkit-transform: perspective(0px);
  transform: perspective(0px);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  white-space: normal;
}

.button {
  position: static;
  padding: 19px 38px;
  border-radius: 50px;
  background-color: #ffe100;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  -o-object-fit: fill;
  object-fit: fill;
}

.button:hover {
  background-color: #fff;
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.25);
}

.heading {
  max-height: 35%;
  margin-top: 0px;
  margin-bottom: 13px;
  background-color: hsla(0, 0%, 100%, 0);
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 150px;
  line-height: 100px;
  font-weight: 900;
}

.heading.hero {
  margin-bottom: 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 150px;
  text-align: center;
}

.paragraph {
  display: block;
  margin-bottom: 56px;
  padding-right: 0px;
  font-family: Lato, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  text-align: center;
  -o-object-fit: fill;
  object-fit: fill;
}

.container-good {
  display: block;
  max-width: 1160px;
  margin: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  font-family: Lato, sans-serif;
}

.button-2 {
  position: static;
  margin-left: 30px;
  padding: 19px 38px;
  float: none;
  border-style: solid;
  border-width: 3px;
  border-color: #fff;
  border-radius: 50px;
  background-color: rgba(56, 152, 236, 0);
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.button-2:hover {
  background-color: rgba(255, 255, 255, 0.22);
}

.left {
  text-align: center;
}

.right {
  float: none;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
}

.image {
  position: static;
  width: auto;
  float: none;
  -o-object-fit: fill;
  object-fit: fill;
}

.flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flexbox.footer {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.navbar {
  padding-right: 60px;
  padding-left: 60px;
  background-color: rgba(0, 0, 0, 0.57);
}

.image-2 {
  max-width: 100%;
  margin-top: 10px;
}

.nav-link {
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 500ms ease;
  transition: border-color 500ms ease;
  color: #fff;
  font-weight: 700;
}

.nav-link:hover {
  border-bottom: 2px solid #ffe100;
  border-radius: 0px;
}

.contact {
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 500ms ease;
  transition: border-color 500ms ease;
  color: #fff;
  font-weight: 700;
}

.contact:hover {
  border-bottom-color: #fff;
}

.container-2 {
  padding: 60px;
}

.container-2.center {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-align: center;
}

.container-2.center.footer {
  border-top: 3px solid #ffe100;
}

.hero-container {
  padding: 20vh 60px;
}

.heading-2 {
  border-bottom: 2px solid #ffe100;
  font-weight: 700;
  text-align: center;
}

.heading-2.white {
  margin-top: 0px;
  color: #fff;
}

.paragraph-3 {
  display: block;
  max-width: 550px;
  margin-right: auto;
  margin-left: auto;
  color: #303030;
  text-align: center;
}

.paragraph-3.heading-2 {
  border-bottom-width: 0px;
}

.paragraph-3.body {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: justify;
}

.paragraph-3.body.priv {
  text-align: justify;
}

.paragraph-3.body.priv.small {
  margin-top: 10px;
  margin-bottom: 10px;
}

.paragraph-3.body.white {
  font-weight: 400;
}

.paragraph-3.tabla {
  color: #acacac;
}

.paragraph-3.b {
  font-weight: 700;
}

.paragraph-3.white {
  color: #fff;
}

.section-2 {
  width: 100vw;
  height: auto;
  padding: 60px;
  -webkit-transition: border-color 500ms ease;
  transition: border-color 500ms ease;
}

.section-2.grey {
  min-height: 600px;
  padding-top: 60px;
  background-color: #141414;
}

.section-2.footer {
  height: auto;
  padding-bottom: 30px;
}

.section-2.footer.greyt {
  background-color: #141414;
}

.tab1 {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.tab-link-tab-1 {
  width: auto;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  -webkit-transition: border-color 500ms ease;
  transition: border-color 500ms ease;
}

.tab-link-tab-1:focus {
  border-bottom-color: #000;
}

.tab-link-tab-1.w--current {
  position: relative;
  display: inline-block;
  width: auto;
  float: none;
  border-bottom: 3px solid transparent;
  background-color: transparent;
  text-align: center;
}

.tab-link-tab-1.w--current:focus {
  border-bottom: 3px solid #000;
  background-color: transparent;
  opacity: 1;
}

.tabs {
  display: inline-block;
  max-width: 550px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.tabs.center {
  display: block;
  text-align: center;
}

.tabs-menu {
  border-radius: 50px;
  background-color: #21f1c4;
}

.image-3 {
  max-width: 50%;
}

.image-4 {
  max-width: 60%;
  min-width: auto;
}

.grid {
  grid-auto-flow: column;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.image-6 {
  max-width: 40%;
}

.heading-3 {
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.heading-3.white {
  color: #fff;
}

.image-7 {
  width: auto;
  max-height: 500px;
  max-width: 500px;
  min-width: auto;
  margin-top: 20px;
  margin-right: 60px;
  border-radius: 5px;
}

.image-7.new {
  max-width: none;
}

.list {
  text-align: left;
}

.list.white {
  color: #fff;
}

.footer-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 16.666666666666668%;
  margin: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
}

.footer-column.side-column {
  background-color: transparent;
  color: #fff;
}

.link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #000;
  text-align: left;
  text-decoration: none;
}

.link:hover {
  color: #ff9500;
}

.heading-4 {
  color: #000;
  font-size: 35px;
}

.text-block {
  margin-top: 4px;
  margin-bottom: 4px;
  color: #000;
  text-align: left;
}

.footer-text {
  font-family: Lato, sans-serif;
  color: #fff;
  text-align: left;
}

.image-8 {
  max-width: 100%;
  min-width: 200px;
}

.text-block-2 {
  display: block;
}

.text-block-2.testimony {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 3vh;
  font-weight: 900;
}

.grid-2 {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  justify-items: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: start;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-auto-flow: row;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  -ms-grid-columns: 0.5fr 1fr;
  grid-template-columns: 0.5fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto auto auto;
}

.tabla-titulo {
  border-radius: 20px;
  background-color: #24ffc8;
}

.div-block-2 {
  display: block;
  max-width: 600px;
  margin: 30px auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: center;
}

.table-h {
  position: static;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  text-align: center;
}

.table-iz {
  border-style: solid;
  border-width: 4px;
  border-color: transparent;
  border-radius: 20px;
  background-color: #ddd;
}

.table-h2 {
  margin-top: 10px;
  font-size: 22px;
}

.table-de {
  border-style: solid;
  border-width: 4px;
  border-color: #bbb;
  border-radius: 20px;
}

.submit-button {
  border-radius: 50px;
  background-color: #38ecb3;
  font-family: Lato, sans-serif;
  color: #000;
  font-weight: 700;
}

.success-message {
  background-color: hsla(0, 0%, 86.7%, 0);
}

.form-block {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.text-field {
  min-height: 100px;
}

.heading-5 {
  max-width: 550px;
}

.html-embed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.field-label {
  font-family: Lato, sans-serif;
}

.slide {
  background-image: url('../images/BGHS.png');
  background-position: 0px 0px;
  background-size: auto;
}

.tab {
  background-color: hsla(0, 0%, 86.7%, 0);
  color: #000;
}

.tab.w--current {
  border-bottom: 2px solid #ffe100;
  border-radius: 12px;
  background-color: #ffe100;
  font-family: Lato, sans-serif;
  color: #000;
  font-weight: 700;
}

.tab.w--current:hover {
  border-bottom-width: 2px;
  border-bottom-color: #fef103;
  border-radius: 12px;
}

.text-block-3 {
  color: #000;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.heading-6 {
  border-bottom: 2px solid #ffe100;
}

@media screen and (max-width: 991px) {
  .landing {
    height: auto;
    min-height: auto;
  }

  .button {
    padding: 10px 15px;
    font-size: 15px;
  }

  .heading {
    font-size: 80px;
    line-height: 60px;
  }

  .heading.hero {
    margin-bottom: 0px;
    font-size: 100px;
    line-height: 90px;
    text-align: center;
  }

  .paragraph {
    max-width: 400px;
    min-width: 60px;
    font-size: 12px;
    line-height: 18px;
  }

  .button-2 {
    padding: 10px 15px;
    font-size: 15px;
  }

  .left {
    text-align: center;
  }

  .right {
    clear: none;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    text-align: center;
  }

  .flexbox.footer {
    overflow: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flexbox.second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-2 {
    max-width: 50%;
    margin-top: 31px;
  }

  .nav-link {
    margin-top: 20px;
    padding: 10px;
    font-size: 12px;
  }

  .contact {
    margin-top: 20px;
    padding: 10px;
  }

  .container-2.center.footer {
    padding-right: 0px;
    padding-left: 0px;
  }

  .hero-container {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .paragraph-3.body {
    text-align: justify;
  }

  .section-2 {
    height: auto;
  }

  .image-6 {
    max-width: 70%;
  }

  .image-7 {
    max-width: 50%;
    margin-right: 0px;
    text-align: center;
  }

  .list {
    text-align: justify;
  }

  .brand {
    margin-right: -146px;
  }
}

@media screen and (max-width: 767px) {
  .paragraph {
    max-width: 500px;
    margin-bottom: 12px;
  }

  .right {
    max-width: 400px;
  }

  .flexbox.mobile-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .navbar {
    padding-right: 10px;
    padding-left: 20px;
  }

  .image-2 {
    margin-top: 21px;
  }

  .nav-link {
    display: block;
    margin-top: 0px;
    padding: 20px 0px;
    border: 1px none #000;
  }

  .nav-link:hover {
    border: 1px none #000;
  }

  .contact {
    display: block;
    margin-top: 0px;
    padding: 20px 0px;
    border: 1px none #000;
  }

  .contact:hover {
    display: block;
    border-style: none;
    border-color: #000;
  }

  .container-2.center {
    padding-right: 30px;
    padding-left: 30px;
  }

  .heading-2 {
    margin-top: 10px;
  }

  .section-2 {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .section-2.grey {
    padding-top: 10px;
  }

  .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-6 {
    max-width: 50%;
  }

  .image-7 {
    max-width: 80%;
  }

  .icon {
    color: #fff;
    font-size: 30px;
  }

  .menu-button {
    margin-top: 9px;
    padding: 12px;
  }

  .menu-button.w--open {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-color: #15161e;
  }

  .nav-menu {
    margin-top: -2px;
    padding: 30px 60px;
    background-color: #16171a;
  }

  .text-block-2.testimony {
    font-size: 2vh;
  }
}

@media screen and (max-width: 479px) {
  .button {
    display: block;
    text-align: center;
  }

  .heading {
    max-height: none;
    font-size: 60px;
    line-height: 14vw;
  }

  .heading.hero {
    font-size: 60px;
  }

  .container-good {
    max-width: none;
    padding-bottom: 0px;
  }

  .button-2 {
    display: block;
    margin-top: 14px;
    margin-left: 0px;
    text-align: center;
  }

  .flexbox.mobile-hero {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .flexbox.second {
    padding-bottom: 20px;
  }

  .image-2 {
    max-width: 60%;
  }

  .container-2.center {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .hero-container {
    padding: 20px 30px;
  }

  .paragraph-3.body {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .paragraph-3.tabla {
    font-size: 10px;
    text-align: justify;
  }

  .paragraph-3.b {
    font-size: 10px;
    text-align: justify;
  }

  .section-2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-2.grey {
    padding-top: 20px;
  }

  .tab1 {
    font-size: 15px;
  }

  .tab-link-tab-1 {
    padding-right: 10px;
    padding-left: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .tab-link-tab-1.w--current {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

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

  .image-3 {
    max-width: 80%;
  }

  .image-4 {
    max-width: 80%;
  }

  .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    justify-items: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .image-7 {
    max-width: 100%;
  }

  .list {
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer-column.side-column {
    margin-right: 0px;
    margin-left: 0px;
  }

  .link {
    min-width: 200px;
  }

  .text-block {
    min-width: 200px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: justify;
  }

  .icon {
    padding-top: 6px;
  }

  .menu-button {
    display: inline-block;
    margin-top: 0px;
  }

  .menu-button.w--open {
    display: inline-block;
  }

  .nav-menu {
    margin-top: 0px;
  }

  .brand {
    display: inline-block;
    margin-right: -181px;
    padding-left: 0px;
  }

  .image-8 {
    min-width: 200px;
  }

  .table-h {
    font-size: 18px;
  }

  .table-h2 {
    font-size: 12px;
  }
}

input {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

textarea {
  display: block;
  width: 100%;
  height: 100px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;  
  resize: none;
}

button,
html input[type="button"],
input[type="reset"] {
  position: static;
  width: 100%;
  padding: 5px 15px;
  border-radius: 10px;
  background-color: #ffe100;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.g-recaptcha div
{
    display: block;
    margin-right: auto;
    margin-left: auto;
}
