/**
 * Theme Name: RCC Group
 * Author: Central States Marketing
 * Author URI: https://www.centralstatesmarketing.com/
 * Description: This site was built by Central States Marketing. For more information about the site or this custom WordPress theme, you can contact Central States Marketing at: info@csm.marketing or call us at: 309-693-2345.
 * Version: 1.0.4
 *
 * @package rccgroup
 * @charset "UTF-8"
 */

/* === TABLE OF CONTENTS ===
 * 1. CSS Custom Properties (:root)
 * 2. Reset
 * 3. Globals
 * 4. Utils
 *    4.1 Accessibility
 *    4.2 Layout (.container, .wrapper)
 *    4.3 Buttons
 * 5. Page Layout (top → bottom)
 *    5.1 Header & Navigation
 *         - Primary Menu
 *         - Submenus
 *         - Mobile Menu Toggle
 *    5.2 Drawer
 *    5.3 Hero
 *    5.4 About
 *    5.5 Our Companies
 *    5.6 Global News
 *    5.7 Testimonials
 *    5.9 Inner Pages & Content
 *         - Featured Image
 *    5.10 Footer
 * 6. Animations & Keyframes
 * 7. Responsive Styles
 *    7.1 1024px
 *    7.2 768px
 *    7.3 Mobile (550px)
 */

/* ===================================== */
/* 0. FONTS */
/* ===================================== */

@font-face {
  font-family: "Goldman";
  src: url("assets/fonts/Goldman-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Goldman";
  src: url("assets/fonts/Goldman-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Limerick";
  src: url("assets/fonts/Limerick Regular 2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Limerick";
  src: url("assets/fonts/Limerick DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===================================== */
/* 1. CSS CUSTOM PROPERTIES */
/* ===================================== */

:root {
  /* Colors */
  --dark-red: oklch(43.5% 0.151 20.2);
  --red: oklch(50.8% 0.199 28.5);
  --blue: oklch(0.4562 0.1419 254.2);
  --lightgray: oklch(0.9702 0 0);
  --gray: oklch(80.8% 0 0);
  --dark-gray: oklch(0.5486 0 0);
  --charcoal: oklch(39.4% 0 0);
  --white: oklch(100% 0 0);
  --black: oklch(0% 0 0);

  /* Shadows */
  --shadow-color: oklch(0% 0 0 / 7%);
  --shadow-color-hover: oklch(0% 0 0 / 40%);
  --shadow: 0 0 5px var(--shadow-color);
  --shadow-hover: 0 0 10px var(--shadow-color-hover);
  --shadow-alt: 0 5px 10px var(--shadow-color);

  /* Layout */
  --gutter: 2rem;
  --max-w-max: 95rem;
  --max-w-content: 74rem;
  --max-w-text: 50rem;
  --border-radius: 10px;

  /* Typography */
  --ff-heading: "Goldman", serif;
  --ff-body: "Limerick", sans-serif;
  --ff-heading-alt: "tarzana-wide", sans-serif;

  --fs-xs: clamp(0.7rem, 0.12vi + 0.67rem, 0.78rem);
  --fs-sm: clamp(0.8rem, 0.15vi + 0.77rem, 0.9rem);
  --fs-base: clamp(0.94rem, 0.34vi + 0.86rem, 1.12rem);
  --fs-md: clamp(1.18rem, 0.61vi + 1.03rem, 1.49rem);
  --fs-lg: clamp(1.47rem, 1vi + 1.24rem, 1.99rem);
  --fs-xl: clamp(1.84rem, 1.56vi + 1.47rem, 2.65rem);
  --fs-xxl: clamp(1.9rem, 2.38vi + 1.74rem, 3.15rem);
  --fs-xxxl: clamp(2.87rem, 3.54vi + 2.04rem, 4.7rem);
}

/* ===================================== */
/* 2. RESET */
/* ===================================== */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
}

body.no-scroll {
  overflow: hidden;
}

embed,
iframe,
object,
img {
  display: block;
  max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================== */
/* 3. GLOBALS */
/* ===================================== */

:where(h1, h2, h3, h4, h5, h6) {
  /* font-family: var(--ff-heading); */
  line-height: 1;
}

h1 {
  font-size: var(--fs-xxl);
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  letter-spacing: normal;
  line-height: 1.1;
}

h2 {
  font-size: var(--fs-xxl);
  font-weight: 500;
  margin: 0 0 1rem 0;
}

h3 {
  font-size: var(--fs-xl);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

h4 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.heading {
  max-width: 50ch;
}

.title {
  font-size: var(--fs-xl);
  font-weight: 600;
  font-family: var(--ff-body);
  margin-bottom: 0;
}

.title-dash {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

.title-dash::before,
.title-dash::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 8px;
  background-color: var(--gray);
}

.title-dash::before {
  clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
}

.title-dash::after {
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 100%, 0 100%);
}

.title span {
  color: var(--red);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-base);
  font-family: var(--ff-heading);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: normal;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 8px;
  background-color: var(--gray);
  clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
}

p {
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

ul li {
  font-weight: 500;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  font-size: var(--fs-base);
  letter-spacing: normal;
}

a:has(svg) {
  display: block;
}

span {
  display: block;
}

/* ===================================== */
/* 4. UTILS */
/* ===================================== */

/* --- 4.1 Accessibility --- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* --- 4.2 Layout --- */

.container {
  max-width: var(--max-w-content);
  width: 100%;
  margin-inline: auto;
  padding-block: 7rem;
  padding-inline: var(--gutter);
}

.wrapper {
  width: 100%;
  position: relative;
}

/* --- 4.3 Buttons --- */

.btn,
.btn a {
  display: inline-block;
  background-color: inherit;
  padding: 0.5rem 1.25rem;
  color: inherit;
  border-radius: 4px;
  font-size: var(--fs-base);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  max-width: max-content;
  transition: 0.3s ease-in-out;
}

.btn-white {
  background-color: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-blue {
  background-color: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background-color: var(--white);
  color: var(--blue);
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

/* ===================================== */
/* 5. PAGE LAYOUT */
/* ===================================== */

/* --- 5.1 Header & Navigation --- */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1003;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.site-header-wrapper {
  position: relative;
  z-index: 10001;
  display: flex;
  flex-direction: row;
  max-width: var(--max-w-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: transparent;
}

.site-branding {
  padding-inline: var(--gutter);
  padding-block: 1rem;
}

.site-header .site-logo img {
  display: block;
  max-width: 16rem;
  width: 100%;
  transition: max-width 0.3s ease;
}

/* Primary Menu */

.site-header #primary-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

#primary-menu li {
  list-style: none;
}

.site-header #primary-menu li a {
  display: block;
  padding: 1.5rem;
  color: var(--black);
  font-weight: 600;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}

#primary-menu li a:hover {
  color: var(--blue);
}

/* Submenus */

.menu-item-has-children ul {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s ease;
  background-color: var(--white);
  box-shadow: var(--shadow-alt);
}

.menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Menu Toggle */

.hamburger {
  cursor: pointer;
  display: none;
  background-color: transparent;
  border-radius: var(--border-radius);
  border: none;
  width: fit-content;
}

.hamburger svg line {
  color: var(--black);
}

.hamburger .icon-close {
  display: none;
}

.hamburger.on .icon-hamburger {
  display: none;
}

.hamburger.on .icon-close {
  display: block;
}

/* --- 5.2 Drawer --- */

.drawer-overlay {
  position: fixed;
  top: var(--header-height, 0px);
  left: 0;
  right: 0;
  bottom: 0;
  background: oklch(0% 0 0 / 70%);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: var(--header-height, 0px);
  right: 0;
  width: min(420px, 100vw);
  height: calc(100dvh - var(--header-height, 0px));
  background-color: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1002;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-wrapper {
  display: flex;
  flex-direction: column;
  padding: var(--gutter) 3rem;
  height: 100%;
}

.drawer ul {
  padding: 0;
  margin: 0;
}

.drawer .menu-item {
  width: 100%;
  border-bottom: 1px solid #0000000d;
}

.drawer .menu-item a {
  color: var(--black);
  display: block;
  font-size: var(--fs-xl);
  padding-block: 1rem;
  font-family: var(--ff-heading);
}

/* --- 5.3 Hero --- */

.hero {
  display: flex;
  align-items: center;
  position: relative;
  max-height: 85dvh;
  min-height: 40rem;
  background-position: center;
  background-size: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

video.hero-video {
  width: 100%;
  height: 100%;
}

.hero-outer {
  position: relative;
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  max-width: 56%;
}

.hero-content {
  float: right;
  width: 100%;
  padding-block: 3rem;
  padding-inline: 9rem var(--gutter);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 77ch;
}

.hero-content hr {
  background: var(--blue);
  height: 7px;
  width: 22rem;
  margin: 0;
  z-index: 1;
  border: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
}

.hero-title {
  font-family: var(--ff-heading-alt);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 1);
  z-index: 1;
  margin-bottom: 0;
}

.hero-title span {
  color: var(--black);
}

.hero p {
  color: var(--white);
  z-index: 1;
  padding-right: 3rem;
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: var(--gutter);
  flex-wrap: wrap;
  z-index: 1;
}

/* --- 5.4 About --- */

.about {
  background-color: var(--lightgray);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.about .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.about-content .title {
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 3rem;
}

/* --- 5.5 Our Companies --- */

.company {
  position: relative;
  background-size: cover;
  background-position: center;
}

.company .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.company .title {
  color: var(--white);
  text-align: center;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: var(--gutter);
}

.company-grid .card {
  border-radius: 4px;
  overflow: hidden;
}

.company-grid .card-image {
  position: relative;
/*   aspect-ratio: 8/3; */
  border-radius: 4px;
  padding: 1rem;
  background-size: cover;
}

.company-grid img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 9rem;
  position: relative;
  z-index: 2;
  aspect-ratio: inherit;
}

.company-grid .card-image::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 4px;
  background-color: #2277ca9c;
}

.company-grid .card-content {
  background-color: var(--white);
  padding: var(--gutter);
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.company-grid span {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 600;
  line-height: 20px;
  font-family: var(--ff-heading);
}

.company-grid .card-footer {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  height: 100%;
}

.company-grid p {
  font-size: var(--fs-base);
  margin-bottom: 0;
  height: 100%;
  line-height: 1.25rem;
}

/* --- 5.6 Global News --- */

.global-news {
  background-color: var(--lightgray);
}

.global-news .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-block: 5rem 3rem;
}

.global-news .heading {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.global-news .title {
  text-align: center;
}

.global-news .title-dash::before,
.global-news .title-dash::after {
  background-color: var(--blue);
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.news-cards .card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-cards .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--blue);
  color: var(--white);
  padding: 1.5rem;
}

.news-cards .date {
  font-size: var(--fs-sm);
}

.news-cards .post-title {
  height: 100%;
  font-weight: 600;
}

.global-news .btn-blue {
  margin-inline: auto;
}

/* --- 5.7 Testimonials --- */

.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--max-w-max);
}

.testimonials.wrapper {
  padding-inline: 6rem;
}

.testimonials .heading {
  text-align: center;
  margin-inline: auto;
}

.testimonials .subheading {
  color: var(--charcoal);
}

.testimonial-cards {
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: var(--gutter);
  border-radius: var(--border-radius);
  background-color: var(--white);
  border: 1px solid var(--gray);
  height: 100%;
}

.testimonial-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.quote-icon {
  max-width: 2rem;
}

.testimonial-name {
  font-weight: 600;
  margin: 0;
  color: var(--red);
  letter-spacing: normal;
}

.testimonial-body {
  margin: 0;
  font-size: var(--fs-sm);
  letter-spacing: normal;
  color: var(--black);
}

.stars {
  max-width: 6rem;
  width: 100%;
}

.testimonial-cards .splide__pagination {
  display: flex !important;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0 0;
  bottom: unset;
  position: static;
}

.testimonial-cards .splide__pagination__page {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--gray);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-cards .splide__pagination__page.is-active {
  background-color: var(--black);
  transform: scale(1.3);
}

/* --- 5.9 Inner Pages & Content --- */

.entry-content a, .page-content a {
    text-decoration: underline;
    color: var(--blue);
    font-weight: 600;
}

.featured-image {
  max-height: 85dvh;
  min-height: 52rem;
  background-size: cover;
  background-position: top;
}

.content ul li {
  color: var(--gray);
}

/* Timeline */
.timeline-start {
  position: relative;
  top: 16rem;
}

.timeline-start hr,
.timeline-middle hr,
.timeline-last hr {
  background-color: var(--gray) !important;
  height: 1px;
  border: none;
}

hr.one {
  position: relative;
  width: 50%;
  left: 0;
  top: -5rem;
}

hr.two {
  transform: rotate(90deg);
  position: relative;
  top: 3.5rem;
  left: -5rem;
  width: 17rem;
}

hr.one,
hr.two {
  margin: 0;
}

span.dot {
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: -5.25rem;
  right: 3.15rem;
  border-radius: 50%;
  background-color: var(--blue);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--gray);
}

/* Timeline ends */

/* Careers */
figure.career-img {
  margin: 0!important;
}

figure.career-img img {
  aspect-ratio: 7 / 3;
  object-fit: cover;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-eyebrow {
  font-size: var(--fs-md);
  color: var(--blue);
  margin-bottom: 0;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  font-family: var(--ff-heading);
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--black);
}

.error-message {
  max-width: 40ch;
  margin-bottom: 2rem;
}

/* --- 5.10 Footer --- */

.site-footer {
  background-color: var(--white);
  width: 100%;
}

.site-footer-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: var(--gutter);
  padding-block: 4rem var(--gutter);
  padding-inline: 6rem;
  max-width: var(--max-w-max);
  margin-inline: auto;
}

.site-footer span,
.site-footer a,
.site-footer p {
  color: var(--black);
}

.site-footer p {
  color: var(--blue);
  font-weight: 600;
}

.site-info {
  display: flex;
  flex-direction: row;
  gap: var(--gutter);
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--gutter);
  width: 100%;
}

.site-info .footer-branding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.site-footer .site-logo img {
  max-width: 20rem;
}

.certificate {
  max-width: 8rem;
  object-position: top;
  object-fit: contain;
}

.site-footer #footer-menu {
  flex-direction: row;
  padding: 0;
  margin: 0;
}

#footer-menu li {
  list-style: none;
  text-align: right;
}

#footer-menu li a {
  color: var(--black);
  font-weight: 600;
  width: max-content;
  text-transform: uppercase;
}

#footer-menu li a:hover {
  color: var(--blue);
}

/* ===================================== */
/* 6. ANIMATIONS & KEYFRAMES */
/* ===================================== */

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================== */
/* 7. RESPONSIVE STYLES */
/* ===================================== */

/* --- 7.0 1500px --- */
@media (max-width: 1500px) {
  .hero-outer {
    max-width: none;
    width: auto;
  }
}

/* --- 7.1 1024px (Tablet) --- */
@media (max-width: 1024px) {
  .container {
    padding-block: 5rem;
  }

  /* Header */
  .site-header .main-navigation {
    display: none;
  }

  .site-branding {
    padding-inline: 0;
  }

  .hamburger {
    display: block;
  }

  /* Hero */
  .hero-content {
    padding-inline: 4rem var(--gutter);
  }

  /* About */
  .about .container {
    gap: 2rem;
  }

  /* Company */
  .company-grid {
    column-gap: 1.5rem;
  }

  /* Global News */
  .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials */
  .testimonials.wrapper {
    padding-inline: 0;
  }

  /* Inner Pages */
  .featured-image {
    min-height: 32rem;
  }

  span.dot {
    right: 2.65rem !important;
  }

  hr.two {
    left: -5.5rem !important;
  }

  .timeline-middle hr.three,
  .timeline-last hr.two {
    left: -2.5rem !important;
  }

  /* Footer */
  .site-footer-wrapper {
    padding-inline: 2rem;
  }
}

/* --- 7.2 768px (Mobile Landscape) --- */
@media (max-width: 768px) {
  .container {
    padding-block: 4rem;
  }

  /* Drawer */
  .drawer-wrapper {
    padding: var(--gutter);
  }

  .drawer .menu-item a {
    font-size: var(--fs-lg);
  }

  /* Hero */
  .hero-content {
    padding-inline: var(--gutter);
    max-width: 41rem;
    gap: 1rem;
  }

  /* About */
  .about .container {
    display: flex;
    flex-direction: column-reverse;
  }
	
  .about-content .title {
    line-height: 2rem;
  }

  /* Company */
  .company .container {
    gap: var(--gutter);
  }

  .company-grid {
    grid-template-columns: 1fr;
  }
	
  /* Inner Pages */
  .featured-image {
    min-height: 26rem;
  }
	
  /* Inner Pages */
  .featured-image {
    min-height: 26rem;
  }

  span.dot {
    right: 1.8rem !important;
  }

  hr.two {
    left: -6.25rem !important;
  }

  .timeline-middle hr.three,
  .timeline-last hr.two {
    left: -3.25rem !important;
  }
	
  /* Footer */
  .site-footer-wrapper {
    padding: var(--gutter);
    gap: 1rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  #footer-menu li {
    text-align: left;
  }
}

/* --- Mobile (767px) --- */
@media (max-width: 767px) {
  /* Inner Pages */
  .timeline-start,
  .timeline-middle,
  .timeline-last {
    display: none;
  }
}

/* --- 7.3 Mobile (550px) --- */
@media (max-width: 550px) {
  .container {
    padding: var(--gutter);
  }

  /* Drawer */
  .drawer {
    width: 100%;
  }

  .drawer .btn {
    max-width: 100%;
    width: 100%;
  }

  /* Hero */
  .hero {
    min-height: 40rem;
    background-position: bottom right;
    align-items: flex-end;
    padding-bottom: 7rem;
  }

  .hero-content {
    gap: 1rem;
    padding-block: 1rem;
    max-width: 23rem;
  }

  .hero p {
    padding: 0;
  }

  .hero-content hr {
    width: 16rem;
  }

  /* Company */
  .company-grid .card-content {
    padding: 1rem;
    gap: 0.75rem;
  }

  .company-grid .card-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
	
  .company-grid img {
  	height: 8rem;
  }

  /* Global News */
  .global-news .container {
    padding: var(--gutter);
    gap: 0;
  }

  .global-news .heading p {
    text-align: center;
  }

  .news-cards {
    grid-template-columns: 1fr;
    margin-bottom: var(--gutter);
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem;
  }

  /* Footer */
  .site-footer-wrapper {
    padding: 1.5rem;
  }

  .site-footer .site-logo img {
    max-width: 14rem;
  }

  #footer-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .certificate {
    max-width: 6rem;
  }

  /* Utils */
  .buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
