@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;1,400&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;
    line-height: 1.4;
  }
}

i, .italic {
  font-style: italic;
}

.w-100 {
  width: 100%;
}

.relative {
  position: relative;
}

.h-screen {
  height: 85vh;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #000;
}

.color-blue {
  color: #0B4B8C;
}

.color-green {
  color: #389950;
}

.color-default {
  color: #1A1A1A;
}

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

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

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

.bg-green {
  background-color: #389950;
}

.bg-blue {
  background-color: #0B4B8C;
}

.btn {
  padding: 14px 24px;
  font-size: 16px;
  border: 0;
  font-weight: 500;
  border-radius: 50px;
  font-weight: bold;
}
.btn.btn-blue {
  background-color: #0B4B8C;
  color: #fff;
  transition: 0.2s ease-in-out;
}
.btn.btn-blue:hover {
  background-color: #073768;
  color: #F0B918;
}
.btn.btn-white {
  background-color: #fff;
  color: #000;
  transition: 0.2s ease-in-out;
}
.btn.btn-white:hover {
  background-color: #fff;
}

.heading-h1 {
  font-size: 78px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
}
@media (max-width: 991px) {
  .heading-h1 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .heading-h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    color: #0B4B8C;
  }
}

.heading-h2 {
  font-size: 52px;
  font-weight: 400;
  margin-top: 0;
}
@media (max-width: 991px) {
  .heading-h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 28px;
  }
}

.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;
}

@media (min-width: 1400px) {
  .container {
    width: 1390px;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 100%;
  }
}
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 48px 0 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  header {
    padding: 16px 0;
  }
}
header .navbar-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 320px;
  margin-left: 16px !important;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  padding: 0;
  height: 44px;
}
@media (max-width: 991px) {
  header .navbar-brand {
    width: 265px;
  }
}
header .navbar-brand img {
  width: 100%;
}
header .nav {
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  header .nav {
    margin: 0 -15px;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  header .nav li {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 36px;
  }
}
header .nav li a {
  color: #0B4B8C;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}
header .nav li a:hover, header .nav li a:active, header .nav li a:focus {
  background-color: #0B4B8C;
  color: #fff;
}
@media (max-width: 767px) {
  header .nav li a:hover, header .nav li a:active, header .nav li a:focus {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  header .nav li a {
    padding: 12px;
  }
}
@media (max-width: 767px) {
  header .nav li a {
    font-size: 32px;
    text-align: center;
    width: auto;
    padding: 32px 15px;
    display: block;
  }
  header .nav li a:hover {
    color: #F0B918;
  }
}
header .navbar {
  margin-bottom: 0;
}
header .navbar-toggle {
  margin-right: 0;
}
header .navbar-collapse {
  box-shadow: none;
}
@media (max-width: 767px) {
  header .navbar-collapse.in .nav {
    height: 100vh;
  }
}
header .navbar-toggle .icon-bar {
  background-color: #0B4B8C;
}
header.transparent {
  background-color: transparent;
}
header.transparent .navbar-toggle .icon-bar {
  background-color: #0B4B8C;
}
@media (max-width: 767px) {
  header.transparent .nav {
    margin: 0 -15px;
  }
}
header.scroll {
  background-color: #fff;
  padding: 24px 0 16px;
}
@media (max-width: 767px) {
  header.scroll {
    padding: 8px 0;
  }
}
header.scroll .navbar-brand {
  width: 240px;
  height: 40px;
}
header.scroll .navbar-toggle .icon-bar {
  background-color: #0B4B8C;
}

@media (max-width: 767px) {
  body.menu-active header {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.section {
  padding: 80px 10px;
  position: relative;
}
@media (min-width: 992px) {
  .section {
    padding: 120px 10px;
  }
}
.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;
}
.section.block-bg img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .section.block-bg img {
    height: 100px;
  }
}
.section .section-content {
  position: relative;
  z-index: 2;
}
.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%;
}
.section .container {
  position: relative;
  z-index: 2;
}
.section .container .section-pointer {
  position: absolute;
  left: -32px;
  top: -176px;
  width: 120px;
  z-index: 3;
}
@media (max-width: 991px) {
  .section .container .section-pointer {
    top: -122px;
    width: 90px;
  }
}
.section .triangles-intro {
  position: absolute;
  right: 0;
  top: -132px;
  width: 600px;
  z-index: 1;
}
@media (max-width: 991px) {
  .section .triangles-intro {
    top: -88px;
    width: 400px;
  }
}
@media (max-width: 767px) {
  .section .triangles-intro {
    height: 100px;
  }
}
.section .block-product {
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .section .block-product {
    border-radius: 16px;
  }
}
.section .block-product .inner {
  width: 100%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .section .block-product .inner {
    flex-direction: column;
    gap: 5rem;
    padding: 32px;
  }
}
.section .block-product .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.section .block-brands ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.section .block-brands ul li a {
  display: block;
}
.section .block-brands ul li a img {
  height: 90px;
}
.section .row-unit {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 767px) {
  .section .row-unit {
    flex-direction: column;
  }
}
.section .row-unit .block-unit {
  height: auto;
}
.section .row-unit .block-unit .inner {
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 767px) {
  .section .row-unit .block-unit .inner {
    border-radius: 16px;
    gap: 1rem;
    padding: 16px;
  }
  .section .row-unit .block-unit .inner img {
    height: 100px;
  }
}

.hero {
  position: relative;
  background-color: #f6f6f6;
  z-index: 0;
  height: 90vh;
}
.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(29, 29, 29, 0) 0%, rgba(17, 17, 17, 0.2) 100%);
  height: 150px;
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 3;
}
.hero .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom !important;
     object-position: right bottom !important;
  opacity: 1;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero .container .caption {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .hero .container .caption {
    background: rgba(255, 255, 255, 0.4862745098);
    padding: 20px 30px;
  }
}
.hero .container .caption h1 b {
  display: block;
}
@media (max-width: 767px) {
  .hero .container .caption {
    text-align: center;
    margin-bottom: 16px;
    max-width: 100%;
  }
}

footer {
  padding: 100px 0 60px !important;
  overflow: hidden;
}
@media (max-width: 991px) {
  footer {
    padding: 60px 0 32px !important;
  }
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-brand img {
  height: 32px;
}
@media (max-width: 767px) {
  footer .footer-brand img {
    height: 24px;
  }
}
@media (max-width: 767px) {
  footer .footer-brand {
    margin: auto;
    display: block;
    margin-bottom: 32px;
    text-align: center;
  }
}
footer .caption p {
  margin-bottom: 0;
}
footer .social {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
footer .social a {
  border-radius: 100%;
  border: 2px solid #000;
  padding: 8px;
  transition: all 0.2s ease-in-out;
}
footer .social a:hover {
  background-color: #0B4B8C;
  border-color: #073768;
}
footer .social a:hover img {
  filter: invert(1);
}
footer .social a img {
  height: 3rem;
}
footer .copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 767px) {
  footer .copy {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
}
footer .copy p {
  text-align: right;
  color: #585757;
}
@media (max-width: 767px) {
  footer .copy p {
    text-align: center;
  }
}
footer .houston img {
  height: 10px;
}

.whatsapp {
  height: 6rem;
  width: 6rem;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  border-radius: 100%;
  z-index: 99;
  background-color: #259110;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
}
.whatsapp:hover {
  border-width: 6px;
}/*# sourceMappingURL=styles.css.map */