@charset "UTF-8";
/* ====================================== */
/* FONTS */
/* ====================================== */
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
/* ====================================== */
/* VARIABLES */
/* ====================================== */
/* ====================================== */
/* GLOBAL */
/* ====================================== */
body {
  font-family: "Poppins";
  color: #2D2B2E;
  background: white;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.section-heading {
  margin-bottom: 80px;
}
.section-heading h2 {
  font-family: "Gilroy";
  font-size: 3.2em;
  margin-bottom: 14px;
}
.section-heading p {
  max-width: 640px;
  margin: auto;
  font-size: 16px;
}

/* ====================================== */
/* NAVBAR */
/* ====================================== */
.site-header {
  padding: 16px 0;
  background: white;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img {
  width: 210px;
}

.logo-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A122A;
  color: white;
}

.navbar-nav {
  gap: 40px;
}

.nav-link {
  font-size: 13px;
  letter-spacing: 1px;
  color: #2D2B2E;
}

/* ====================================== */
/* BUTTONS */
/* ====================================== */
.btn {
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 14px;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: 0.3s all;
}
.btn .fa {
  padding-left: 15px;
}

.btn-primary-custom {
  background: #2D2B2E;
  color: #F5F7FA;
}
.btn-primary-custom:hover {
  background-color: #CC9966;
  color: #F5F7FA;
}

.btn-secondary-custom {
  background: #4c88b3;
  color: #F5F7FA;
}
.btn-secondary-custom:hover {
  background-color: #CC9966;
  color: #F5F7FA;
}

.btn-green {
  background: #22C77A;
  color: white;
}

.btn-outline-light-custom {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
}

/* ====================================== */
/* HERO */
/* ====================================== */
.hero-section {
  padding: 100px 0;
  background: #EDF4FA;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #F5F7FA;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4c88b3;
}

.hero-title {
  margin-top: 32px;
  font-family: "Gilroy";
  font-size: 5.5em;
  line-height: 0.95;
  color: #2D2B2E;
}
.hero-title span {
  color: #4c88b3;
  font-style: italic;
}

.hero-text {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.72;
}

.hero-buttons {
  margin-top: 48px;
  display: flex;
  gap: 20px;
}

.hero-image-wrapper {
  position: relative;
  max-width: 600px;
}

.hero-image-wrapper img {
  border-radius: 36px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: white;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
}
.hero-badge .hero-badge-icon {
  width: 36px;
  height: 36px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: rgba(76, 136, 179, 0.1);
  color: #4c88b3;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.hero-badge .hero-badge-icon .far {
  width: 36px;
  font-size: 18px;
  text-align: center;
  justify-self: center;
}
.hero-badge .hero-badge-content small {
  display: block;
  opacity: 0.6;
  font-size: 12px;
  font-weight: 700;
}
.hero-badge .hero-badge-content strong {
  font-size: 18px;
  font-family: "Poppins";
  font-weight: 900;
}

/* ====================================== */
/* STATS */
/* ====================================== */
.stats-section {
  padding: 100px 0;
}

.stat-item strong {
  display: block;
  font-family: "Gilroy";
  font-size: 42px;
  color: #4c88b3;
}
.stat-item span {
  margin-top: 12px;
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2D2B2E;
}

/* ====================================== */
/* BUILDINGS */
/* ====================================== */
.buildings-section {
  padding: 140px 0;
  background: #F8F8F8;
}

.building-card {
  padding: 40px;
  border-radius: 32px;
  background: white;
  height: 100%;
}
.building-card .building-thumbnail {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
}
.building-card .building-thumbnail img {
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center;
     object-position: center;
}

.building-label {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #4c88b3;
}

.building-card h3 {
  font-family: "Gilroy";
  font-size: 28px;
  font-weight: 900;
}

.building-card p {
  margin-top: 10px;
  opacity: 0.72;
  font-style: italic;
}

.building-features {
  margin-top: 18px;
  padding: 0;
  list-style-type: none;
}
.building-features li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
.building-features li .fa {
  padding-right: 15px;
  color: #22C77A;
}

/* ====================================== */
/* FEATURES */
/* ====================================== */
.features-section {
  padding: 140px 0;
}

.features-content h2 {
  font-family: "Gilroy";
  font-size: 54px;
  line-height: 1;
}
.features-content h2 span {
  color: #4c88b3;
}
.features-content p {
  margin-top: 32px;
  opacity: 0.72;
}

.feature-item {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.feature-item .feature-item-icon {
  margin-right: 15px;
  width: 36px;
  height: 36px;
  padding: 5px;
  background-color: #F5F7FA;
  border-radius: 6px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.feature-item .feature-item-icon .far {
  width: 36px;
  color: #4c88b3;
  font-size: 22px;
  text-align: center;
}
.feature-item .feature-item-label h4 {
  font-family: "Gilroy";
  font-size: 18px;
  font-weight: 900;
}
.feature-item .feature-item-label p {
  margin-top: 12px;
  opacity: 0.72;
}

/* ====================================== */
/* CTA */
/* ====================================== */
.cta-section {
  padding: 160px 0;
  background: #071126;
  color: #F5F7FA;
}
.cta-section h2 {
  max-width: 920px;
  margin: auto;
  font-family: "Gilroy";
  font-size: 3em;
  line-height: 1;
}
.cta-section p {
  margin: 32px auto 0;
  max-width: 720px;
  opacity: 0.72;
}

.cta-buttons {
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.cta-buttons .btn {
  border-radius: 999px;
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.cta-buttons .btn .fab, .cta-buttons .btn .far {
  font-size: 18px;
  padding-right: 15px;
}

.cta-options {
  font-size: 11px;
  text-transform: uppercase;
  color: #aaa;
  letter-spacing: 3px;
}
.cta-options ul {
  list-style-type: none;
  gap: 20px;
}
.cta-options ul li {
  display: inline;
  padding-right: 25px;
}
.cta-options ul li::after {
  content: "•";
  padding-left: 25px;
}
.cta-options ul li:last-child::after {
  content: "";
}

/* ====================================== */
/* FOOTER */
/* ====================================== */
.site-footer {
  padding: 48px 0;
  background: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  width: 200px;
}

.footer-copy {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */