/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Nunito",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #38761d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #38761d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #38761d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #38761d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #070c15;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #070c15;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo p {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #070c15;
}

/* Hotels Page Header
------------------------------*/
.hotels-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Hotels Page Header on Scroll
------------------------------*/
.hotels-page.scrolled .header {
  --background-color: #070c15;
}

/* Bed And Breakfast Page Header
------------------------------*/
.bed-and-breakfast-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Bed And Breakfast Page Header on Scroll
------------------------------*/
.bed-and-breakfast-page.scrolled .header {
  --background-color: #070c15;
}

/* Holiday Homes Page Header
------------------------------*/
.holiday-homes-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Holiday Homes Page Header on Scroll
------------------------------*/
.holiday-homes-page.scrolled .header {
  --background-color: #070c15;
}

/* Restaurants Page Header
------------------------------*/
.restaurants-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Restaurants Page Header on Scroll
------------------------------*/
.restaurants-page.scrolled .header {
  --background-color: #070c15;
}

/* Bistros Page Header
------------------------------*/
.bistros-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Bistros Page Header on Scroll
------------------------------*/
.bistros-page.scrolled .header {
  --background-color: #070c15;
}

/* Lounge Bars Page Header
------------------------------*/
.lounge-bars-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Lounge Bars Page Header on Scroll
------------------------------*/
.lounge-bars-page.scrolled .header {
  --background-color: #070c15;
}

/* Taxi Transfer Page Header
------------------------------*/
.taxi-transfer-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Taxi Transfer Page Header on Scroll
------------------------------*/
.taxi-transfer-page.scrolled .header {
  --background-color: #070c15;
}

/* Chauffeur Service Page Header
------------------------------*/
.chauffeur-service-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Chauffeur Service Page Header on Scroll
------------------------------*/
.chauffeur-service-page.scrolled .header {
  --background-color: #070c15;
}

/* Shuttle Service Page Header
------------------------------*/
.shuttle-service-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Shuttle Service Page Header on Scroll
------------------------------*/
.shuttle-service-page.scrolled .header {
  --background-color: #070c15;
}

/* Boat Rental Page Header
------------------------------*/
.boat-rental-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Boat Rental Page Header on Scroll
------------------------------*/
.boat-rental-page.scrolled .header {
  --background-color: #070c15;
}

/* Scooter Rental Page Header
------------------------------*/
.scooter-rental-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Scooter Rental Page Header on Scroll
------------------------------*/
.scooter-rental-page.scrolled .header {
  --background-color: #070c15;
}

/* Car Rental Page Header
------------------------------*/
.car-rental-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Car Rental Page Header on Scroll
------------------------------*/
.car-rental-page.scrolled .header {
  --background-color: #070c15;
}

/* Beaches Page Header
------------------------------*/
.beaches-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Beaches Page Header on Scroll
------------------------------*/
.beaches-page.scrolled .header {
  --background-color: #070c15;
}

/* Parking Page Header
------------------------------*/
.parking-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Parking Page Header on Scroll
------------------------------*/
.parking-page.scrolled .header {
  --background-color: #070c15;
}

/* Wedding Planners Page Header
------------------------------*/
.wedding-planners-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Wedding Planners Page Header on Scroll
------------------------------*/
.wedding-planners-page.scrolled .header {
  --background-color: #070c15;
}

/* Wedding Hair Stylists Page Header
------------------------------*/
.wedding-hair-stylists-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Wedding Hair Stylists Page Header on Scroll
------------------------------*/
.wedding-hair-stylists-page.scrolled .header {
  --background-color: #070c15;
}

/* Wedding Makeup Artists Page Header
------------------------------*/
.wedding-makeup-artists-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Wedding Makeup Artists Page Header on Scroll
------------------------------*/
.wedding-makeup-artists-page.scrolled .header {
  --background-color: #070c15;
}

/* Cooking Classes Page Header
------------------------------*/
.cooking-classes-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Cooking Classes Page Header on Scroll
------------------------------*/
.cooking-classes-page.scrolled .header {
  --background-color: #070c15;
}

/* Wine Tasting Page Header
------------------------------*/
.wine-tasting-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Wine Tasting Page Header on Scroll
------------------------------*/
.wine-tasting-page.scrolled .header {
  --background-color: #070c15;
}

/* Lemon Tours Page Header
------------------------------*/
.lemon-tours-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Lemon Tours Page Header on Scroll
------------------------------*/
.lemon-tours-page.scrolled .header {
  --background-color: #070c15;
}

/* Trekking Hiking Page Header
------------------------------*/
.trekking-hiking-page .header {
  --background-color: rgba(7, 12, 21, 0.3);
}

/* Trekking Hiking Page Header on Scroll
------------------------------*/
.trekking-hiking-page.scrolled .header {
  --background-color: #070c15;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 10px 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 50px;
    background: transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu>ul>li:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 15px);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    min-width: 220px;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 12px 16px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--nav-dropdown-color);
    border-radius: 8px;
    margin: 2px 0;
  }

  .navmenu .dropdown ul a i {
    font-size: 10px;
  }

  .navmenu .dropdown ul a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    transform: translateY(0);
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: -8px;
    left: calc(-100% - 8px);
    visibility: hidden;
    transform: translateX(10px);
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -8px;
    left: calc(-100% - 8px);
    transform: translateX(0);
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
  }

  .mobile-nav-toggle:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 16px 16px 16px;
    padding: 20px 12px;
    margin: 0;
    border-radius: 20px;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 4px 0;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active,
  .navmenu .active:focus {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px;
    margin: 8px 0 8px 16px;
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 50%);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.4s ease-in-out;
    box-shadow: none;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 12px 16px;
    font-size: 15px;
  }

  .navmenu .dropdown ul ul {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    margin-left: 12px;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 28px;
    top: 16px;
    right: 16px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h1 {
    font-size: 30px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-2 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-2 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-2 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-2 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-2 .info h1 {
    font-size: 30px;
  }
}

.hero-2 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-2 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-2 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-2 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-2 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-2 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-2 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-2 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-2 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-2 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-2 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-2 .carousel-control-next-icon,
.hero-2 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 .carousel-control-prev,
.hero-2 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-2 .carousel-control-prev:focus,
.hero-2 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-2 .carousel-control-prev:hover,
.hero-2 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-3 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-3 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-3 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-3 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-3 .info h1 {
    font-size: 30px;
  }
}

.hero-3 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-3 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-3 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-3 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-3 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-3 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-3 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-3 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-3 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-3 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-3 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-3 .carousel-control-next-icon,
.hero-3 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3 .carousel-control-prev,
.hero-3 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-3 .carousel-control-prev:focus,
.hero-3 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-3 .carousel-control-prev:hover,
.hero-3 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 8 Section
--------------------------------------------------------------*/
.hero-8 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-8 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-8 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-8 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-8 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-8 .info h1 {
    font-size: 30px;
  }
}

.hero-8 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-8 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-8 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-8 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-8 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-8 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-8 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-8 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-8 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-8 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-8 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-8 .carousel-control-next-icon,
.hero-8 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-8 .carousel-control-prev,
.hero-8 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-8 .carousel-control-prev:focus,
.hero-8 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-8 .carousel-control-prev:hover,
.hero-8 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-4 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-4 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-4 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-4 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-4 .info h1 {
    font-size: 30px;
  }
}

.hero-4 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-4 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-4 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-4 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-4 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-4 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-4 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-4 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-4 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-4 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-4 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-4 .carousel-control-next-icon,
.hero-4 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-4 .carousel-control-prev,
.hero-4 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-4 .carousel-control-prev:focus,
.hero-4 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-4 .carousel-control-prev:hover,
.hero-4 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-5 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-5 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-5 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-5 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-5 .info h1 {
    font-size: 30px;
  }
}

.hero-5 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-5 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-5 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-5 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-5 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-5 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-5 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-5 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-5 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-5 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-5 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-5 .carousel-control-next-icon,
.hero-5 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-5 .carousel-control-prev,
.hero-5 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-5 .carousel-control-prev:focus,
.hero-5 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-5 .carousel-control-prev:hover,
.hero-5 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-6 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-6 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-6 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-6 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-6 .info h1 {
    font-size: 30px;
  }
}

.hero-6 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-6 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-6 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-6 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-6 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-6 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-6 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-6 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-6 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-6 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-6 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-6 .carousel-control-next-icon,
.hero-6 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-6 .carousel-control-prev,
.hero-6 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-6 .carousel-control-prev:focus,
.hero-6 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-6 .carousel-control-prev:hover,
.hero-6 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 7 Section
--------------------------------------------------------------*/
.hero-7 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-7 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-7 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-7 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-7 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-7 .info h1 {
    font-size: 30px;
  }
}

.hero-7 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-7 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-7 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-7 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-7 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-7 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-7 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-7 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-7 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-7 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-7 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-7 .carousel-control-next-icon,
.hero-7 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-7 .carousel-control-prev,
.hero-7 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-7 .carousel-control-prev:focus,
.hero-7 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-7 .carousel-control-prev:hover,
.hero-7 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 9 Section
--------------------------------------------------------------*/
.hero-9 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-9 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-9 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-9 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-9 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-9 .info h1 {
    font-size: 30px;
  }
}

.hero-9 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-9 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-9 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-9 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-9 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-9 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-9 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-9 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-9 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-9 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-9 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-9 .carousel-control-next-icon,
.hero-9 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-9 .carousel-control-prev,
.hero-9 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-9 .carousel-control-prev:focus,
.hero-9 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-9 .carousel-control-prev:hover,
.hero-9 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 10 Section
--------------------------------------------------------------*/
.hero-10 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-10 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-10 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-10 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-10 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-10 .info h1 {
    font-size: 30px;
  }
}

.hero-10 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-10 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-10 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-10 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-10 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-10 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-10 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-10 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-10 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-10 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-10 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-10 .carousel-control-next-icon,
.hero-10 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-10 .carousel-control-prev,
.hero-10 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-10 .carousel-control-prev:focus,
.hero-10 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-10 .carousel-control-prev:hover,
.hero-10 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 11 Section
--------------------------------------------------------------*/
.hero-11 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-11 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-11 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-11 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-11 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-11 .info h1 {
    font-size: 30px;
  }
}

.hero-11 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-11 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-11 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-11 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-11 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-11 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-11 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-11 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-11 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-11 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-11 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-11 .carousel-control-next-icon,
.hero-11 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-11 .carousel-control-prev,
.hero-11 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-11 .carousel-control-prev:focus,
.hero-11 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-11 .carousel-control-prev:hover,
.hero-11 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 12 Section
--------------------------------------------------------------*/
.hero-12 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-12 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-12 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-12 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-12 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-12 .info h1 {
    font-size: 30px;
  }
}

.hero-12 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-12 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-12 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-12 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-12 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-12 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-12 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-12 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-12 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-12 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-12 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-12 .carousel-control-next-icon,
.hero-12 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-12 .carousel-control-prev,
.hero-12 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-12 .carousel-control-prev:focus,
.hero-12 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-12 .carousel-control-prev:hover,
.hero-12 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 13 Section
--------------------------------------------------------------*/
.hero-13 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-13 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-13 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-13 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-13 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-13 .info h1 {
    font-size: 30px;
  }
}

.hero-13 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-13 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-13 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-13 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-13 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-13 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-13 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-13 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-13 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-13 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-13 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-13 .carousel-control-next-icon,
.hero-13 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-13 .carousel-control-prev,
.hero-13 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-13 .carousel-control-prev:focus,
.hero-13 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-13 .carousel-control-prev:hover,
.hero-13 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 14 Section
--------------------------------------------------------------*/
.hero-14 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-14 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-14 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-14 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-14 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-14 .info h1 {
    font-size: 30px;
  }
}

.hero-14 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-14 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-14 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-14 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-14 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-14 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-14 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-14 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-14 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-14 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-14 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-14 .carousel-control-next-icon,
.hero-14 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-14 .carousel-control-prev,
.hero-14 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-14 .carousel-control-prev:focus,
.hero-14 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-14 .carousel-control-prev:hover,
.hero-14 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 15 Section
--------------------------------------------------------------*/
.hero-15 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-15 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-15 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-15 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-15 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-15 .info h1 {
    font-size: 30px;
  }
}

.hero-15 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-15 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-15 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-15 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-15 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-15 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-15 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-15 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-15 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-15 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-15 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-15 .carousel-control-next-icon,
.hero-15 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-15 .carousel-control-prev,
.hero-15 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-15 .carousel-control-prev:focus,
.hero-15 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-15 .carousel-control-prev:hover,
.hero-15 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 16 Section
--------------------------------------------------------------*/
.hero-16 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-16 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-16 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-16 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-16 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-16 .info h1 {
    font-size: 30px;
  }
}

.hero-16 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-16 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-16 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-16 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-16 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-16 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-16 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-16 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-16 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-16 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-16 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-16 .carousel-control-next-icon,
.hero-16 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-16 .carousel-control-prev,
.hero-16 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-16 .carousel-control-prev:focus,
.hero-16 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-16 .carousel-control-prev:hover,
.hero-16 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 17 Section
--------------------------------------------------------------*/
.hero-17 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-17 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-17 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-17 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-17 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-17 .info h1 {
    font-size: 30px;
  }
}

.hero-17 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-17 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-17 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-17 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-17 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-17 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-17 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-17 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-17 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-17 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-17 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-17 .carousel-control-next-icon,
.hero-17 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-17 .carousel-control-prev,
.hero-17 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-17 .carousel-control-prev:focus,
.hero-17 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-17 .carousel-control-prev:hover,
.hero-17 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 18 Section
--------------------------------------------------------------*/
.hero-18 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-18 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-18 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-18 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-18 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-18 .info h1 {
    font-size: 30px;
  }
}

.hero-18 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-18 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-18 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-18 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-18 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-18 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-18 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-18 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-18 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-18 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-18 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-18 .carousel-control-next-icon,
.hero-18 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-18 .carousel-control-prev,
.hero-18 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-18 .carousel-control-prev:focus,
.hero-18 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-18 .carousel-control-prev:hover,
.hero-18 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 19 Section
--------------------------------------------------------------*/
.hero-19 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-19 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-19 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-19 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-19 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-19 .info h1 {
    font-size: 30px;
  }
}

.hero-19 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-19 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-19 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-19 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-19 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-19 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-19 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-19 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-19 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-19 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-19 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-19 .carousel-control-next-icon,
.hero-19 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-19 .carousel-control-prev,
.hero-19 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-19 .carousel-control-prev:focus,
.hero-19 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-19 .carousel-control-prev:hover,
.hero-19 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 20 Section
--------------------------------------------------------------*/
.hero-20 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-20 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-20 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-20 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-20 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-20 .info h1 {
    font-size: 30px;
  }
}

.hero-20 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-20 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-20 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-20 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-20 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-20 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-20 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-20 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-20 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-20 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-20 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-20 .carousel-control-next-icon,
.hero-20 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-20 .carousel-control-prev,
.hero-20 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-20 .carousel-control-prev:focus,
.hero-20 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-20 .carousel-control-prev:hover,
.hero-20 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 21 Section
--------------------------------------------------------------*/
.hero-21 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-21 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-21 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-21 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-21 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-21 .info h1 {
    font-size: 30px;
  }
}

.hero-21 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-21 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-21 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-21 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-21 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-21 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-21 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-21 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-21 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-21 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-21 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-21 .carousel-control-next-icon,
.hero-21 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-21 .carousel-control-prev,
.hero-21 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-21 .carousel-control-prev:focus,
.hero-21 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-21 .carousel-control-prev:hover,
.hero-21 .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Hero 22 Section
--------------------------------------------------------------*/
.hero-22 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-22 .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero-22 .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero-22 .info h1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.hero-22 .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-22 .info h1 {
    font-size: 30px;
  }
}

.hero-22 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
}

.hero-22 .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.hero-22 .info .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  color: var(--contrast-color);
}

.hero-22 .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero-22 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.5s;
}

.hero-22 .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-22 .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-22 .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero-22 .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero-22 .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero-22 .carousel-control-next {
    padding-right: 15px;
  }
}

.hero-22 .carousel-control-next-icon,
.hero-22 .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-22 .carousel-control-prev,
.hero-22 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero-22 .carousel-control-prev:focus,
.hero-22 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-22 .carousel-control-prev:hover,
.hero-22 .carousel-control-next:hover {
  opacity: 0.9;
}