@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

.container {
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 1200px) {
  .container {
    width: 1024px;
  }
}

.relative {
  position: relative;
}

.h-screen {
  height: 85vh;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.color-yellow {
  color: #FFCC00;
}

.color-default {
  color: #333333;
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #4D4D4D;
}

.bg-yellow {
  background-color: #000; /*FFCC00;*/
}

.btn {
  padding: 12px 32px;
  font-size: 16px;
  border: 0;
  font-weight: 600;
  border-radius: 32px;
}

.btn-primary {
  background-color: #000;
  color: #fff;
  transition: 0.2s ease-in-out;
}
.btn-primary:hover {
  background-color: #000;
}

.heading-h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 0.85;
}
@media (max-width: 767px) {
  .heading-h1 {
    font-size: 48px;
  }
}
.heading-h1 small {
  font-size: 54px;
}
@media (max-width: 767px) {
  .heading-h1 small {
    font-size: 48px;
  }
}
.heading-h1 .light {
  font-weight: 300;
}

.heading-h2 {
  font-size: 52px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 32px;
  }
}

.heading-h3 {
  font-size: 32px;
  font-weight: 900;
}
@media (min-width: 992px) {
  .heading-h3 {
    font-size: 44px;
  }
}

.heading-h4 {
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .heading-h4 {
    font-size: 32px;
  }
}

.block {
  display: block;
}

.light {
  font-weight: 300 !important;
}

.regular {
  font-weight: 400 !important;
}

.semibold {
  font-weight: 600 !important;
}

.bold {
  font-weight: bold !important;
}

.size-14 {
  font-size: 14px;
}

.size-20 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .size-20 {
    font-size: 18px;
  }
}

.size-32 {
  font-size: 32px;
}

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

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

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

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

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

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

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

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

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

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

.p-0 {
  padding: 0 !important;
}

.list-disc {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.list-disc li {
  position: relative;
  padding-right: 16px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .list-disc li {
    padding-right: 0;
    padding-left: 24px;
  }
}
.list-disc li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: #FFCC00;
}
@media (max-width: 991px) {
  .list-disc li::after {
    right: auto;
    left: 0;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 64px 0 24px;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
@media (max-width: 991px) {
  header {
    padding: 32px 0;
  }
}
header .navbar-brand {
  display: block;
  position: relative;
  top: -30px;
  width: 240px;
  margin-left: 16px !important;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  padding: 0;
}
@media (max-width: 991px) {
  header .navbar-brand {
    width: 160px;
    top: 0;
  }
}
header .navbar-brand img {
  margin: auto;
  width: 100%;
  position: absolute;
}
header .navbar-brand .light {
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
header .navbar-brand .dark {
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
@media (max-width: 991px) {
  header .container {
    max-width: inherit;
    width: 100%;
  }
}
header .nav {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  header .nav {
    margin: 0 -15px;
  }
}
header .nav li {
  padding: 0 8px;
}
@media (max-width: 991px) {
  header .nav li {
    padding: 0 4px;
  }
}
@media (max-width: 767px) {
  header .nav li {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
  }
}
header .nav li a {
  color: #333;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 700;
}
header .nav li a:hover {
  background-color: #000;
}
@media (max-width: 767px) {
  header .nav li a:hover {
    background-color: transparent;
  }
}
header .nav li a:focus {
  background-color: transparent;
}
@media (max-width: 991px) {
  header .nav li a {
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 767px) {
  header .nav li a {
    text-align: right;
    width: auto;
    padding-right: 8px;
    padding-left: 8px;
  }
}
header .navbar {
  margin-bottom: 0;
}
header .navbar-toggle {
  margin-right: 0;
}
header .navbar-toggle .icon-bar {
  background-color: #09B6A7;
}
header.transparent {
  background-color: transparent;
}
@media (max-width: 991px) {
  header.transparent {
    background-color: #000;
  }
}
header.transparent .navbar-toggle .icon-bar {
  background-color: #fff;
}
@media (max-width: 767px) {
  header.transparent .nav {
    margin: 0 -15px;
  }
}
header.transparent .nav li a {
  color: #fff;
}
header.scroll {
  background-color: #000; /* #FFCC00;*/
  padding: 24px 0 16px;
}
@media (max-width: 767px) {
  header.scroll {
    padding: 8px 0;
  }
}
header.scroll .navbar-brand {
  width: 160px;
  top: -8px;
}
@media (max-width: 767px) {
  header.scroll .navbar-brand {
    top: 5px;
    width: 120px;
  }
}
header.scroll .navbar-brand .light {
  opacity: 0;
}
header.scroll .navbar-brand .dark {
  opacity: 1;
}
header.scroll .nav li a {
  color: #FFF;
}
header.scroll .nav li a:hover {
  background-color: #FFCC00;
  color: #000;
}
header.scroll .navbar-toggle .icon-bar {
  background-color: #000;
}

.section {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .section {
    padding: 120px 0;
  }
}
.section.section-bg {
  position: relative;
  overflow: hidden;
}
.section.section-bg .background {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  z-index: -1;
}
.section.block-bg img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .section.block-bg img {
    height: 100px;
  }
}
.section.block-content {
  padding: 80px 0;
}
.section .section-content {
  text-align: right;
}
@media (max-width: 991px) {
  .section .section-content {
    text-align: left;
  }
}
.section .section-content.section-inverse {
  display: flex;
}
@media (max-width: 991px) {
  .section .section-content.section-inverse {
    flex-direction: column-reverse;
  }
}
.section .section-content .block-img img {
  width: 100%;
}

.thumbnails {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  padding: 0 16px;
}
@media (max-width: 991px) {
  .thumbnails {
    flex-direction: column;
  }
}
.thumbnails .thumb {
  flex: 33%;
  height: auto;
  padding: 16px 32px;
  border-bottom-left-radius: 48px;
  text-align: right;
}
@media (max-width: 991px) {
  .thumbnails .thumb {
    text-align: left;
    border-bottom-left-radius: 32px;
  }
}
.thumbnails .thumb p {
  font-size: 16px;
}

.form {
  margin-top: 64px;
}

.form-control {
  background-color: #fff;
  box-shadow: none;
  padding: 12px;
  height: auto;
  border: 0;
  border-radius: 0;
}

.hero {
  background-color: #000;
}
.hero .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .hero .container {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .hero .container {
    align-items: flex-end;
    justify-content: flex-start;
  }
}
.hero .container .hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: right;
  right: 16px;
}
@media (max-width: 991px) {
  .hero .container .hero-content {
    top: 48px;
  }
}
@media (max-width: 767px) {
  .hero .container .hero-content {
    text-align: left;
  }
}
.hero .circles {
  position: absolute;
  right: -20px;
  top: -20px;
  height: 100%;
  z-index: 3;
}
@media (max-width: 1199px) {
  .hero .circles {
    height: 90%;
  }
}
@media (max-width: 991px) {
  .hero .circles {
    width: 70%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero .circles {
    width: 400px;
    height: auto;
    transform: rotate(180deg);
    right: auto;
    left: 0;
    bottom: 0;
    top: auto;
  }
}
@media (max-width: 576px) {
  .hero .circles {
    display: none;
  }
}
.hero .bar {
  position: absolute;
  width: 100%;
  height: 160px;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero .bar {
    display: none;
  }
}
.hero .background {
  z-index: 1 !important;
  -o-object-position: left bottom !important;
     object-position: left bottom !important;
}

footer {
  padding: 80px 0 32px;
}
@media (max-width: 991px) {
  footer {
    padding: 60px 0 40px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 32px 0 24px !important;
  }
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-brand {
  display: flex;
  justify-content: flex-end;
}
footer .footer-brand img {
  height: 64px;
}
@media (max-width: 767px) {
  footer .footer-brand {
    margin: auto;
    display: block;
    margin-bottom: 32px;
    text-align: center;
  }
}
footer .caption {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 991px) {
  footer .caption {
    text-align: left;
    justify-content: left;
  }
}
footer .caption a.color-white:hover {
  color: #FFCC00;
}
@media (max-width: 767px) {
  footer .copy {
    text-align: center;
  }
  footer .copy p {
    color: #000;
  }
}
footer .copy .houston img {
  height: 12px;
}
footer .background {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  height: 120%;
}
@media (max-width: 1199px) {
  footer .background {
    width: 80%;
    height: auto;
  }
}
@media (max-width: 991px) {
  footer .background {
    width: 50%;
    height: auto;
    transform: rotate(180deg);
    right: 0;
    left: auto;
    bottom: auto;
    top: 0;
  }
}

.whatsapp {
  height: 6rem;
  width: 6rem;
  position: fixed;
  right: 2rem;
  bottom: 8rem;
  border: 6px solid transparent;
  border-radius: 100%;
  z-index: 99;
}
@media (max-width: 767px) {
  .whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
}
.whatsapp:hover {
  border-color: #FFCC00;
}

p.thanks {
  font-size: 18px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-weight: 600;
  background-color: #89C04A;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 20px 0;
}

p.form-error {
  font-size: 14px;
  padding: 6px;
  line-height: 120%;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-weight: 700;
  background-color: #C35F63;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 20px 0;
}

label.error {
  background: red;
  color: white;
  margin: 0px 10px 20px 0px;
  padding: 5px 10px;
  font-size: 14px;
}/*# sourceMappingURL=styles.css.map */