@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;300;400;600;700;800&display=swap");

@font-face {
  font-family: "Open Sans";
  src: url("font/OpenSans-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --primary: #1a5f7a; /* dark blue */
  --secondary: #57a6a1; /* teal */
  --accent: #ff7e5f; /* coral */
  --light: #f8f9fa; /* off-white */
  --dark: #343a40; /* dark gray */
  --text: #28323a;
  --muted: #6c7a86;
  --maxw: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --brand: #2e85c9;
  --muted: #9aa3ab;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  /* font-family: Open Sans; */
  font-family: "Open Sans";

  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
li {
  font-family: Open Sans;
  color: #191919;
}

h2 {
  font-weight: 400;
}

p,
li {
  font-family: inherit;
  font-size: 16px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 1.25em;
  word-wrap: break-word;
  text-align: justify;
  color: black;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.align-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
}
.wrap {
  max-width: 980px;
  padding: 48px 24px 80px;
  margin: 0 auto;
}
 h1.title {
  text-align: center;
  margin: 12px 0 8px;
  font-size: 52px;
  letter-spacing: 2px;
  color: var(--brand);
  font-weight: 700;
} 

.heading {
  text-align: center;
  margin: 50px 0 25px;
  font-size: 52px;
  letter-spacing: 2px;
  color: var(--brand);
  font-weight: 700;
  width: 70%;
  text-transform: uppercase;
}
.rule {
  width: 90px;
  height: 2px;
  background: #cfd6dc;
  margin: 8px auto 56px;
  border: 0;
}

/* Header */
.logo-div {
  width: 26px;
  height: 26px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #e9ecef;
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-link {
  color: var(--dark);
  padding: 6px 8px;
  border-radius: 8px;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  /* background: var(--primary); */
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--dark);
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}
.mobile-menu a {
  padding: 12px 20px;
  border-top: 1px solid #f1f3f5;
  color: var(--dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
}
.hero-content {
  position: relative;
  padding: 80px 0;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 12px;
}
.hero p {
  max-width: 640px;
  color: #e6f0f4;
}
.cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

/* Sections */
.section {
  padding: 72px 0;
}
.section.alt {
  background: var(--light);
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: "Montserrat", sans-serif;
  margin: 0 0 6px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}

/* Grids */
.grid {
  display: grid;
  gap: 24px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.narrow {
  max-width: 720px;
}
.center {
  text-align: center;
  margin-inline: auto;
}

/* Cards */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body {
  padding: 16px;
}
.media-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons and links */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  background: var(--secondary);
  color: #fff;
}
.btn:hover {
  filter: brightness(0.95);
}
.btn-primary {
  background: var(--primary);
}
.btn-accent {
  background: var(--accent);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.link-arrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.link-arrow::after {
  content: "→";
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}
.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--secondary);
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: rgb(25, 25, 25);
  color: #cde6ef;
  padding: 50px 0;
  margin-top: 40px;
}
.footer a {
  color: #cde6ef;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  text-align: left;
  margin-top: 20px;
}
.footer-logo {
  color: #fff;
  margin-top: 0.2em;
}
.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-links a.active {
  font-weight: 700;
}

/* Slider */
.slider {
  position: relative;
}
.slides {
  display: flex;
  gap: 16px;
  overflow: auto scroll;
  padding: 4px;
  scroll-snap-type: x mandatory;
}
.slide {
  min-width: 280px;
  scroll-snap-align: center;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.slider-btn.prev {
  left: -8px;
}
.slider-btn.next {
  right: -8px;
}

/* Modals */
.modal[hidden] {
  display: none;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 10vh auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.specs {
  margin: 12px 0 0;
}

/* Forms */
input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}
label {
  display: block;
  margin: 12px 0 6px;
  color: var(--dark);
  font-weight: 600;
}
.contact-form .card-body {
  display: grid;
  gap: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* Page heroes */
.page-hero {
  padding: 72px 0;
  background: linear-gradient(
      180deg,
      rgba(26, 95, 122, 0.75),
      rgba(26, 95, 122, 0.85)
    ),
    url("../images/hero-sub.jpg") center/cover no-repeat;
  color: #fff;
}
.products-hero {
  background-image: linear-gradient(
      180deg,
      rgba(26, 95, 122, 0.75),
      rgba(26, 95, 122, 0.85)
    ),
    url("../images/products-hero.jpg");
}
.about-hero {
  background-image: linear-gradient(
      180deg,
      rgba(26, 95, 122, 0.75),
      rgba(26, 95, 122, 0.85)
    ),
    url("../images/about-hero.jpg");
}
.contact-hero {
  background-image: linear-gradient(
      180deg,
      rgba(26, 95, 122, 0.75),
      rgba(26, 95, 122, 0.85)
    ),
    url("../images/contact-hero.jpg");
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--secondary);
}
.timeline li {
  position: relative;
  padding: 12px 0 12px 16px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 126, 95, 0.2);
}
.time {
  font-weight: 700;
  color: var(--primary);
}
.event {
  color: var(--muted);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== KUBOS single-page additions ===== */
/* Header (clean) */
.header--clean {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}
.nav--clean {
  height: 72px;
}
.logo--kubos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo--kubos .logo-square {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: conic-gradient(
    from 45deg,
    #e63946 0 25%,
    #ffd166 0 50%,
    #06d6a0 0 75%,
    #118ab2 0 100%
  );
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.logo--kubos .logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}
.nav-links--clean .nav-link {
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  position: relative;
  padding: 8px 10px;
}
.nav-links--clean .nav-link:hover {
  color: var(--primary);
}
.nav-links--clean .nav-link--active,
.nav-links--clean .nav-link.active {
  color: #222;
}
.nav-links--clean .nav-link--active::after,
.nav-links--clean .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 4px;
  background: #57a6d8;
  border-radius: 2px;
  transform: translateY(0);
}

/* Hero carousel */
.hero--carousel {
  padding: 0;
}
.carousel {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.carousel-slides {
  display: flex;
  overflow: auto hidden;
  scroll-snap-type: x mandatory;
  border-left: 1px solid #f1f3f5;
  border-right: 1px solid #f1f3f5;
}
.carousel-slide {
  min-width: 100%;
  height: 420px;
  background: #eef3f6;
  scroll-snap-align: center;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 0;
  background: #3a3a3a;
  color: #fff;
  opacity: 0.9;
  cursor: pointer;
}
.carousel-arrow.prev {
  left: -12px;
}
.carousel-arrow.next {
  right: -12px;
}

/* Titles & divider */
.section-title {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  text-align: center;
}
.section-title.blue {
  color: #2d8ccf;
}
.divider {
  width: 120px;
  height: 2px;
  background: #cbd7e3;
  margin: 12px auto 28px;
  border-radius: 2px;
}

/* Snapshot */
.snapshot {
  padding-top: 56px;
  padding-bottom: 36px;
}
.snapshot-grid {
  gap: 32px;
}
.snapshot-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
}
.snapshot-item .emoji {
  font-size: 20px;
}
.snapshot-item p {
  color: #555;
  text-align: justify;
}

/* Case studies (horizontal text carousel) */
.case-studies {
  padding-top: 24px;
}
.text-slides {
  display: flex;
  gap: 18px;
  overflow: auto scroll;
  scroll-snap-type: x mandatory;
}
.text-card {
  min-width: 320px;
  max-width: 520px;
  scroll-snap-align: center;
}
.text-card h3 {
  margin: 12px 12px 6px;
}
.text-card p {
  margin: 0 12px 16px;
  color: #555;
  text-align: justify;
}
.case-carousel {
  position: relative;
}
.case-carousel .slider-btn {
  background: #3a3a3a;
}

/* Footer dark block */
.footer-dark {
  background: #121212;
  color: #e8e8e8;
  padding: 40px 0;
}
.footer-top {
  display: grid;
  place-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.footer-top .up-arrow {
  font-size: 20px;
}
.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.copy {
  color: #bdbdbd;
}
.footer-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0;
}
.footer-link.heading {
  color: #fff;
  font-weight: 700;
}
.foot-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  color: #d7d7d7;
}
.foot-list li {
  margin: 6px 0;
}
.social {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #666;
  color: #fff;
}

/* Utility color to match screenshot accent */
:root {
  --accent-blue: #2d8ccf;
}

/* ===== Landing (Nav + Hero) ===== */
:root {
  --kubos-blue: #1e88e5;
  --nav-text: #1f2937;
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Sticky white header */
.header--landing {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.nav--landing {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo--kubos {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo--kubos .logo-text {
  font-weight: 700;
  color: #111;
  letter-spacing: 0.4px;
}
.logo--kubos .logo-cube {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: conic-gradient(
    from 45deg,
    #e63946 0 25%,
    #ffd166 0 50%,
    #06d6a0 0 75%,
    #1e88e5 0 100%
  );
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Nav links with active/hover underline */
.nav-links--landing {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.dropdown[hidden] {
  display: none;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 1200;
}
.dropdown-item {
  display: block;
  padding: 8px 12px;
  color: var(--nav-text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: normal;
    line-height: 1.42857143;
        white-space: nowrap;

}
.dropdown-item:hover {
  background: #278DC5;
  color: white !important;
}
.nav-links--landing .nav-link {
  position: relative;
  color: var(--nav-text);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 21px;
  padding-top: 21px;
  text-transform: uppercase;
}
.nav-links--landing .nav-link .caret {
  font-size: 0.75rem;
  margin-left: 6px;
  color: #6b7280;
}
.nav-links--landing .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 3px;
  background: var(--kubos-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links--landing .nav-link:hover {
  color: var(--kubos-blue);
}
.nav-links--landing .nav-link:hover::after {
  transform: scaleX(1);
}
.nav-links--landing .nav-link.is-active {
  color: var(--kubos-blue);
  font-weight: 700;
}
.nav-links--landing .nav-link.is-active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid #eef2f7;
  background: #fff;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu .mobile-link {
  padding: 10px 10px 10px 20px;
  text-decoration: none;
  color: rgb(51, 51, 51);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
}
.mobile-menu .has-dropdown > .mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu .mobile-link.is-active {
  color: var(--kubos-blue);
}

/* Mobile submenu panel */
.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid #eef2f7;
  background: #fff;
}
.mobile-submenu .back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 2px;
  font-weight: 700;
  color: var(--nav-text);
  text-decoration: none;
}

.mobile-menu {
  height: 100vh;
}
.mobile-submenu .submenu-item {
  padding: 12px 2px;
  border-top: 1px solid #f1f3f5;
  color: var(--nav-text);
  text-decoration: none;
}
.mobile-submenu[hidden] {
  display: none;
}

/* Shadow on scroll */
.header--landing.scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
}

/* Hero carousel (fade + slight zoom) */
.hero {
  margin: 0;
}
.hero-carousel {
  position: relative;
  height: 440px;
  max-height: 60vh;
  overflow: hidden;
}
.hero-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 5s ease;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef3f9, #f8fbff);
}
.hero-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel .carousel-slide.is-active {
  opacity: 1;
  transform: scale(1.05);
}
/* pause effect hint */
.hero-carousel:hover .carousel-slide.is-active {
  transform: scale(1.02);
  transition-duration: 1.5s;
}

/* Carousel arrows */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(51, 51, 51, 0.85);
  color: #fff;
  border: 0;
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.carousel-prev {
  left: 12px;
}
.carousel-next {
  right: 12px;
}
.carousel-prev svg,
.carousel-next svg {
  fill: #fff;
}

.footer-header {
  text-align: center;
}

.footer-header p {
  font-family: inherit;
  font-size: 16px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 1.25em;
  word-wrap: break-word;
  text-align: justify;
  color: white;
  text-align: center;
}

.footer-item-heading {
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 16px;
  text-decoration: underline;
}

.footer-grid li {
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.footer-grid ul {
  list-style: none;
  padding-left: 0 !important;
  margin: 0;
}

.footer-item-heading:hover {
  color: #1e88e5;
}

.footer-grid a {
  line-height: 30px;
  transition: color 0.3s;
  color: white;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #1e88e5;
  text-decoration: underline;
}

.padding-top {
  padding: 16px 0;
}

.socials {
  display: inline-block;
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.socials li {
  -moz-border-radius: 50%;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -webkit-border-radius: 50%;
  -webkit-transition: all 300ms linear;
  border: 1px solid #fff;
  border-radius: 50%;
  display: table;
  float: left;
  height: 35px;
  list-style: none;
  margin: 0 5px;
  text-align: center;
  transition: all 300ms linear;
  width: 35px;
  z-index: 2;
}

.socials li a {
  color: #fff;
  display: table-cell;
  font-size: 14px;
  vertical-align: middle;
}

.footer-social-icon {
  display: flex;
  justify-content: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .nav-links--landing {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav-item.has-dropdown .dropdown {
    position: static;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-left: 12px;
  }
  /* Show submenu panel in mobile */
  .mobile-submenu {
    display: flex;
    height: 100vh;
  }

  #mobile-submenu .items {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nav--landing {
    height: 60px;
  }
  .hero-carousel {
    height: 380px;
  }
  .carousel-prev,
  .carousel-next {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  #our-snapshot,
  #case-studies {
    text-align: center;
  }

  .footer .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-item-heading {
    text-align: center;
  }
}

.more-features {
  padding: 80px 20px;
  color: #333;
}

.more-features__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.more-features__intro {
  margin-bottom: 50px;
}

.more-features__heading {
  font-size: 30px;
  font-weight: bold;
  color: #278dc5;
  text-transform: uppercase;
  text-align: center;
}

.more-features__divider {
  width: 10%;
  margin: 20px auto 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #111;
}

/* Grid layout */
.more-features__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Each box */
.more-features__item {
  flex: 1 1 300px;
  max-width: 340px;
}

.more-features__title {
  font-size: 21px;
  color: #191919;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-style: normal;
}

.more-features__title i {
  font-size: 34px;
  color: #191919;
}

.more-features__text {
  font-family: inherit;
  font-size: 16px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 1.25em;
  word-wrap: break-word;
  text-align: justify;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .more-features {
    padding: 60px 15px;
  }

  .more-features__grid {
    flex-direction: column;
    align-items: center;
  }

  .more-features__item {
    max-width: 100%;
  }
}

.btn {
  display: none;
}

.post-title h2.title,
.post-title h2.title a {
  color: #191919;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 400;
}

.post-meta {
  display: none;
}

.post-entry p {
  font-family: inherit;
  font-size: 16px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 1.25em;
  word-wrap: break-word;
  text-align: justify;
  color: black;
}
footer #back-top {
  background: #191919;
  border-radius: 3px;
  color: #fff;
  left: 48%;
  padding: 10px;
}

.nav-link.active {
  color: var(--kubos-blue);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 3px;
  background: var(--kubos-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links--landing .nav-link.active::after {
  transform: scaleX(1);
}
