/*
 * Rio Truss Modern CSS
 * Bootstrap 5.3 + Custom Styles
 * 2025 Design Standards
 */

/* ===========================================
   CSS VARIABLES (Custom Properties)
   =========================================== */
:root {
  /* Brand Colors */
  --rio-primary: #8a2424;
  --rio-primary-hover: #aa2d2d;
  --rio-primary-dark: #8a2424;
  --rio-secondary: #4a4a4a;
  --rio-light-gray: #445360;
  --rio-medium-gray: #31373e;
  --rio-dark-gray: #1b1b22;
  --rio-contact: #454c53;    

  /* Neutral Colors */
  --white: #ffffff;
  --beige: #bfb9b2;
  
  --off-white: #fafafa;
  --light-border: #e0e0e0;
  --bright-red: #aa3242;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-headings: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 10px;
  --section-padding-mobile: 10px;

  /* Container */
  --container-max-width: 1200px;

  /* Transitions */
  --transition-speed: 0.3s;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
}


.bg-light {background-color: #dbd6d0 !important;}
/* ===========================================
   BASE STYLES
   =========================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rio-secondary);
  background-color: var(--beige);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.2;
  color: var(--rio-dark-gray);
  margin-top: 0;
}

h1 { font-size: 4.5rem; color: #fff; margin-bottom: -9px;text-shadow: 1px 2px 6px #202020;}
h2 { font-size: 2rem; letter-spacing: -0.5pt;}
h3 { font-size: 1.75rem; margin-bottom: 0.1rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--rio-secondary);
  font-size: 19px;
}

a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--rio-primary-hover);
}

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

.frontpage {
	font-size: 48px;
	margin-bottom: 0;
}

/* ===========================================
   CONTAINER
   =========================================== */
.container-custom {
  max-width: var(--container-max-width);
  margin: 20px auto;
  padding: 0 20px;
}

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-speed);
}

.header-top {
  background-color: var(--beige);
  padding: 12px 0;
  border-bottom: 1px solid var(--light-border);
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 80px;
  width: auto;
}

.contact-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--rio-dark-gray);
}

.contact-info-item i {
  color: var(--rio-dark-gray);
  font-size: 16px;
}

/* Main Navigation */
.main-nav {
  background-color: var(--rio-dark-gray) !important;
  padding: 0;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 18px !important;
  transition: all var(--transition-speed);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--bright-red) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--bright-red);
  transition: all var(--transition-speed);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Dropdown Menu */
.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  background-color: var(--rio-dark-gray) !important;
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 0;
  padding: 10px 0;
  margin-top: -3;
}

.dropdown-item {
  padding: 10px 25px;
  font-size: 14px;
  color: var(--white) !important;
  transition: all var(--transition-speed);
}

.dropdown-item:hover {
  background-color: var(--rio-primary);
  color: var(--white);
}

.dropdown-menu[data-bs-popper] {
	top: 96%;
	left: 0;
	margin-top: var(--bs-dropdown-spacer);
}


/* Mobile Menu Toggle */
.navbar-toggler {
  border: none;
  padding: 8px 12px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================================
   HERO SECTION / SLIDER
   =========================================== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Splide Slider (Hero) */
.splide__arrow {
  background-color: rgba(0, 0, 0, 0.8);
  width: 50px;
  height: 50px;
}

.splide__arrow:hover {
  background-color: rgba(171, 46, 46, 1);
}

.splide__arrow svg {
  fill: var(--white);
}

.splide__pagination__page {
  background-color: rgba(255, 255, 255, 0.5);
}

.splide__pagination__page.is-active {
  background-color: var(--bright-red);
}

  .splide__arrow--prev {
    left: 33px;  /* Distance from left edge */
  }

  .splide__arrow--next {
    right: 33px;  /* Distance from right edge */
  }

/* ===========================================
   BUTTONS
   =========================================== */
.btn-primary-custom {
  background-color: var(--rio-primary);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition-speed);
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(171, 46, 46, 0.2);
}

.btn-primary-custom:hover {
  background-color: var(--rio-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(171, 46, 46, 0.3);
  color: var(--white);
}

.btn-primary-custom:active {
  transform: translateY(0);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--rio-primary);
  border: 2px solid var(--rio-primary);
  padding: 12px 33px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition-speed);
  display: inline-block;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background-color: var(--rio-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================================
   SECTIONS
   =========================================== */
.section {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
    margin-top: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rio-dark-gray);
  text-transform: uppercase;    
  margin-top: 20px;    
  margin-bottom: -10px;
}

.section-title p {
	font-size: 1.4rem;
	color: var(--rio-medium-gray);
	max-width: 1200px;
	margin: 0 auto;
	letter-spacing: -0.2pt;
}

.section-title::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--rio-primary);
  margin: 25px auto 0;
}

/* Alternate Background Section */
.section-alt {
  background-color: var(--beige);
}

.section-dark {
  background-color: var(--rio-dark-gray);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

/* ===========================================
   CARDS / PRODUCT CARDS
   =========================================== */
.product-card {
  background-color: #ffffff !important;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rio-dark-gray);
}

.product-card-title a,
.product-card-title a:hover {
  color: var(--rio-dark-gray);
}

.product-card-text {
  font-size: 15px;
  color: var(--rio-medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-link {
  color: var(--rio-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-speed);
}

.product-card-link:hover {
  gap: 12px;
}

/* ===========================================
   FEATURE BOXES
   =========================================== */
.feature-box {
  text-align: center;
  padding: 40px 25px;
  transition: all var(--transition-speed);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: var(--rio-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  transition: all var(--transition-speed);
  border:4px solid #d7d2cc;
}

.feature-box:hover .feature-icon {
  background-color: var(--rio-primary-hover);
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 1.375rem;
  margin-bottom: 15px;
  color: var(--rio-dark-gray);
}

.feature-box p {
  font-size: 15px;
  color: var(--rio-light-gray);
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonial-section {
  background-color: var(--rio-dark-gray);
  padding: 50px 0;
}

.testimonial-item {
  text-align: center;
  padding: 10px 9px;
}

.testimonial-text {
  font-size: 1.7rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 13px;
  line-height: 1.3;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bright-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
  background-color: var(--rio-primary);
  background: linear-gradient(135deg, rgba(138, 36, 36, 1) 0%, rgba(99, 25, 25, 1) 70%);    
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.25rem;
}

.cta-section p {
	color: var(--white);
	font-size: 1.75rem;
}

.btn-light-custom {
  background-color: var(--rio-dark-gray);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 7px;
  transition: all var(--transition-speed);
  display: inline-block;
  cursor: pointer;
}

.btn-light-custom2:hover {
  background-color: var(--bright-red);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-light-custom2 {
  background-color: var(--rio-primary);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 7px;
  transition: all var(--transition-speed);
  display: inline-block;
  cursor: pointer;
}

.btn-light-custom:hover {
  background-color: var(--bright-red);
  transform: translateY(-2px);
  color: var(--white);
}

/* ===========================================
   CONTACT FORM
   =========================================== */
.contact-form {
  background-color: var(--rio-contact);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.apb {
  background-color: var(--rio-contact); border-radius: 8px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-border);
  border-radius: 4px;
  font-size: 22px;
  transition: border-color var(--transition-speed);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--rio-primary);
}

textarea.form-control-custom {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.form-error.show {
  display: block;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background-color: var(--rio-dark-gray);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  padding-bottom: 40px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color var(--transition-speed);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--bright-red);
  padding-left: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #757272;
}

.copyright {font-size: 13px;}

/* ===========================================
   PAGE HEADER / BREADCRUMB
   =========================================== */
.page-header {
  background-size: cover;
  background-position: center;
  padding: 30px 10px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(107, 29, 29, 0));
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-header-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-header .lead {
  font-size: 1.75rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 2px 6px #202020;    
}

.text-large {
	font-size: 19px;
	letter-spacing: -0.25pt;
    margin-top:40px;
}
.text-main {
	font-size: 19px;
	letter-spacing: -0.25pt;
    margin-bottom: 0;
}
/* ===========================================
   GALLERY
   =========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
}


.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}


/* ===========================================
   ANIMATIONS (AOS Integration Ready)
   =========================================== */
[data-aos] {
  transition-property: transform, opacity;
  transition-duration: 0.8s;
}

/* Hide mobile logo on desktop */
.mobile-logo {
  display: none;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 991px) {
  :root {
    --section-padding: 60px;
  }

   p {line-height: 25px;}    
  h1 { font-size: 2rem;}
  h2 { font-size: 1.75rem; margin: 0 0 8px 0; }
  h3 { font-size: 1.5rem; }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }

  .header-top {
    display: none;
  }

  body {
    padding-top: 69px;
  }

  .main-nav {
    padding: 12px 0;
  }

  .main-nav .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    flex-wrap: nowrap;
  }

  .mobile-logo {
    display: block !important;
    order: 1;
  }

  .mobile-logo img {
    height: 45px; /* Main Logo Mobile version*/
    width: auto;
    max-width: 120px;
  }

  .navbar-toggler {
    display: block !important;
    order: 2;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-left: auto;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--rio-dark-gray);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar-collapse.collapsing {
    opacity: 0;
    transform: translateY(-10px);
  }

  .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-nav .nav-link {
    color: var(--white) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px !important;
    margin: 0;
    transition: all 0.3s ease;
    transform: translateX(0);
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 25px !important;
    transform: translateX(5px);
  }

  .navbar-collapse.show .nav-item {
    animation: slideInFromLeft 0.4s ease forwards;
    opacity: 0;
  }

  .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.05s; }
  .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.1s; }
  .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.15s; }
  .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.2s; }
  .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.25s; }
  .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.3s; }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-item {
    color: var(--white) !important;
    padding: 12px 20px 12px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.25s ease;
  }

  .dropdown-item::before {
    content: "▶";
    position: absolute;
    left: 30px;
    font-size: 10px;
    color: var(--white);
    opacity: 0.6;
    transition: all 0.25s ease;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white) !important;
    padding-left: 55px;
  }

  .dropdown-item:hover::before {
    left: 35px;
    opacity: 1;
  }

  .dropdown-menu.show .dropdown-item {
    animation: slideInFromLeft 0.3s ease forwards;
    opacity: 0;
  }

  .dropdown-menu.show .dropdown-item:nth-child(1) { animation-delay: 0.05s; }
  .dropdown-menu.show .dropdown-item:nth-child(2) { animation-delay: 0.1s; }
  .dropdown-menu.show .dropdown-item:nth-child(3) { animation-delay: 0.15s; }
  .dropdown-menu.show .dropdown-item:nth-child(4) { animation-delay: 0.2s; }

  .header-top-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo img {
    height: 70px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-slide {
    height: 450px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .page-header {
    padding: 10px 0;
  }

  .page-header-content h1 {
    font-size: 2.25rem;
  }
    .page-header .lead {
      font-size: 1.2rem;
      font-weight: 300;
      color: #fff;
    }    
}

@media (max-width: 767px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .hero-slide {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-card-img {
    height: 200px;
  }
      
  .lead {margin-bottom: 0;}
  .cta-text {font-size: 19px !important;}
  .section-title {margin-top: 1px;}    
  .cta-section {padding: 30px 0 10px;}       
  .text-main {font-size: 17px;}    
}










@media (max-width: 575px) {
  .hero-slide {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-light-custom {
    padding: 12px 25px;
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }
    
  
  
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.text-primary-custom {
  color: var(--rio-primary) !important;
}

.bg-primary-custom {
  background-color: var(--rio-primary) !important;
}

.mt-section {
  margin-top: var(--section-padding);
}

.mb-section {
  margin-bottom: var(--section-padding);
}
