/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* 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: #312f2f; /* 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: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* 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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

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

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@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;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

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

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.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: #000;
  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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

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

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

.page-title nav 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: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

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

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

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

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

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

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  position: relative;
  padding-top: 80px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero-2 .hero-content {
  position: relative;
  z-index: 1;
}

.hero-2 .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-2 .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero-2 .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

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

  .hero-2 .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 2rem;
  }
}

.hero-2 .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero-2 .company-badge i {
  font-size: 1.25rem;
}

.hero-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero-2 .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .btn-link:hover {
  color: var(--accent-color);
}

.hero-2 .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero-2 .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-2 .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-2 .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero-2 .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-2 .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero-2 .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero-2 .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-2 .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero-2 .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero-2 .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero-2 .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero-2 .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero-2 .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero-2 .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero-2 .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero-2 .stat-item .stat-content {
  flex-grow: 1;
}

.hero-2 .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero-2 .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero-2 .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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

/*--------------------------------------------------------------
# Hero 3 Section
--------------------------------------------------------------*/
.hero-3 {
  padding: 80px 0;
}

.hero-3 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .hero-3 h1 {
    font-size: 3rem;
  }
}

.hero-3 .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-3 .img-fluid {
  max-width: 100%;
  height: auto;
}

.hero-3 h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
}

.hero-3 .client-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.hero-3 .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.hero-3 .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .hero-3 .client-logo img {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .hero-3 .img-fluid {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  position: relative;
  overflow: hidden;
}

.hero-4 .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-4 .hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero-4 .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.hero-4 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-4 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-4 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-4 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-4 .hero-image {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-4 .hero-image img {
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero-4 .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.hero-4 .floating-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--accent-color);
}

.hero-4 .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.hero-4 .floating-card.card-1 {
  top: -20px;
  left: 0;
}

.hero-4 .floating-card.card-2 {
  bottom: -20px;
  right: 0;
}

.hero-4 .shape {
  position: absolute;
  opacity: 0.1;
}

.hero-4 .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.hero-4 .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--heading-color);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.hero-4 .shape-3 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 20%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero-4 .hero-title {
    font-size: 2.5rem;
  }

  .hero-4 .hero-image {
    max-width: 100%;
  }

  .hero-4 .floating-card {
    padding: 10px 15px;
  }

  .hero-4 .floating-card i {
    font-size: 1.2rem;
  }

  .hero-4 .floating-card span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Hero 5 Section
--------------------------------------------------------------*/
.hero-5 {
  padding: 80px 0;
}

.hero-5 .hero-content {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .hero-5 .hero-content {
    margin-bottom: 0;
  }
}

.hero-5 .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-5 .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero-5 .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero-5 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-5 h1 .highlight {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .hero-5 h1 {
    font-size: 3.5rem;
  }
}

.hero-5 .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero-5 .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero-5 .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero-5 .hero-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.hero-5 .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-5 .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-5 .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-5 .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero-5 .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero-5 .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.hero-5 .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
}

.hero-5 .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero-5 .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero-5 .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
}

.hero-5 .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero-5 .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero-5 .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero-5 .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 575px) {
  .hero-5 .hero-image-wrapper {
    padding: 0;
  }

  .hero-5 .hero-image-wrapper .stat-card {
    position: relative;
  }

  .hero-5 .hero-image-wrapper .stat-card.top-right,
  .hero-5 .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Hero 6 Section
--------------------------------------------------------------*/
.hero-6 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-6::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: color-mix(in srgb, orange, transparent 85%);
  z-index: 1;
}

.hero-6 .triangle-shape {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: rotate(15deg);
  z-index: 1;
}

.hero-6 .square-shape {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: rotate(30deg);
  z-index: 1;
}

.hero-6 .wavy-line {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(45deg, transparent 33%, color-mix(in srgb, var(--accent-color), transparent 95%) 33%, color-mix(in srgb, var(--accent-color), transparent 95%) 66%, transparent 66%);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 1;
}

.hero-6 .container {
  position: relative;
  z-index: 2;
}

.hero-6 .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.hero-6 .hero-description {
  font-size: 1.1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.hero-6 .hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-6 .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-6 .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 10%);
  border-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 10%);
}

.hero-6 .hero-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero-6 .hero-buttons .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-6 .hero-buttons .btn .bi {
  margin-left: 0.5rem;
}

.hero-6 .hero-stats .stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.hero-6 .hero-stats .stats-text {
  font-size: 0.9rem;
  color: var(--default-color);
}

.hero-6 .hero-image-wrapper {
  position: relative;
}

.hero-6 .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .hero-6 .hero-title {
    font-size: 2rem;
  }

  .hero-6 .hero-description {
    font-size: 1rem;
  }

  .hero-6 .hero-stats .stats-number {
    font-size: 1.75rem;
  }

  .hero-6::after {
    width: 60px;
    height: 60px;
  }

  .hero-6 .triangle-shape {
    border-left-width: 30px;
    border-right-width: 30px;
    border-bottom-width: 52px;
  }

  .hero-6 .square-shape {
    width: 50px;
    height: 50px;
  }

  .hero-6 .wavy-line {
    height: 60px;
    background-size: 30px 30px;
  }
}

/*--------------------------------------------------------------
# Hero 7 Section
--------------------------------------------------------------*/
.hero-7 {
  padding: 80px 0;
}

.hero-7 h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-7 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.hero-7 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-7 .contact-info strong {
  color: var(--heading-color);
  font-size: 1.1rem;
}

.hero-7 .image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-7 .image-wrapper img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-7 .shape-1,
.hero-7 .shape-2 {
  position: absolute;
  border-radius: 50%;
}

.hero-7 .shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  top: -30px;
  right: -30px;
  z-index: 0;
}

.hero-7 .shape-2 {
  width: 100px;
  height: 100px;
  background-color: #ffd700;
  bottom: -20px;
  left: -20px;
  z-index: 0;
}

.hero-7 .features .feature-item .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-7 .features .feature-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero-7 .features .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-7 .features .feature-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-7 .features .bg-pink {
  background-color: #ff69b4;
}

.hero-7 .features .bg-green {
  background-color: #00cc66;
}

.hero-7 .features .bg-orange {
  background-color: #ffa500;
}

@media (max-width: 991.98px) {
  .hero-7 {
    text-align: center;
  }

  .hero-7 .image-wrapper {
    margin-top: 3rem;
  }

  .hero-7 .features {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Hero 8 Section
--------------------------------------------------------------*/
.hero-8 {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-8::before,
.hero-8::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-8::before {
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  top: -100px;
  left: -100px;
}

.hero-8::after {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  bottom: -100px;
  right: -100px;
}

.hero-8 h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-8 p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-8 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-8 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-8 .btn-primary .bi {
  margin-left: 0.5rem;
}

.hero-8 .features {
  display: flex;
  gap: 1.5rem;
}

.hero-8 .feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-8 .feature-badge .bi {
  font-size: 1.2rem;
}

.hero-8 .hero-image {
  position: relative;
  z-index: 1;
}

.hero-8 .hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 1rem;
  z-index: -1;
}

.hero-8 .hero-image img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-8 .client-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.hero-8 .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.hero-8 .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .hero-8 .client-logo img {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .hero-8 {
    padding: 60px 0;
  }

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

  .hero-8 .hero-image {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-8 .features {
    flex-direction: column;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Hero 9 Section
--------------------------------------------------------------*/
.hero-9 {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
}

.hero-9 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
}

.hero-9 h1 span {
  color: var(--accent-color);
}

.hero-9 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-9 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-9 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-9 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}

.hero-9 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-9 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-9 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-9 .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-9 .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-9 .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-9 .animated {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .hero-9 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-9 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-9 .btn-get-started,
  .hero-9 .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

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

.hero-10 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero-10 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-10 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-10 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-10 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero-10 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-10 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-10 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-10 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero-10 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-10 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-10 .btn-get-started,
  .hero-10 .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Hero 11 Section
--------------------------------------------------------------*/
.hero-11 {
  padding-top: 80px;
}

.hero-11 .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-11 .hero-title {
    font-size: 2.5rem;
  }
}

.hero-11 .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-11 .image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-11 .image-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}

.hero-11 .image-grid .grid-item {
  overflow: hidden;
  border-radius: 15px;
}

.hero-11 .image-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-11 .image-grid .grid-item img:hover {
  transform: scale(1.05);
}

.hero-11 .image-grid .item-1 {
  grid-column: 1/4;
  grid-row: 1/2;
}

@media (max-width: 768px) {
  .hero-11 .image-grid .item-1 {
    grid-column: 1/7;
  }
}

.hero-11 .image-grid .item-2 {
  grid-column: 4/7;
  grid-row: 1/2;
}

@media (max-width: 768px) {
  .hero-11 .image-grid .item-2 {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}

.hero-11 .image-grid .item-3 {
  grid-column: 7/13;
  grid-row: 1/3;
}

@media (max-width: 768px) {
  .hero-11 .image-grid .item-3 {
    grid-column: 4/7;
    grid-row: 2/3;
  }
}

.hero-11 .image-grid .item-4 {
  grid-column: 1/3;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .hero-11 .image-grid .item-4 {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

.hero-11 .image-grid .item-5 {
  grid-column: 3/5;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .hero-11 .image-grid .item-5 {
    grid-column: 3/5;
    grid-row: 3/4;
  }
}

.hero-11 .image-grid .item-6 {
  grid-column: 5/7;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .hero-11 .image-grid .item-6 {
    grid-column: 5/7;
    grid-row: 3/4;
  }
}

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

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

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

.hero-12 .container {
  position: relative;
  z-index: 3;
}

.hero-12 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-12 p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero-12 .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero-12 .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-12 h2 {
    font-size: 32px;
  }

  .hero-12 p {
    font-size: 18px;
  }
}

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

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

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

.hero-13 .container {
  position: relative;
  z-index: 3;
}

.hero-13 h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero-13 p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero-13 p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero-13 .social-links {
  margin-top: 25px;
}

.hero-13 .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

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

@media (max-width: 768px) {
  .hero-13 h2 {
    font-size: 32px;
  }

  .hero-13 p {
    font-size: 20px;
  }
}

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

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

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

.hero-14 .container {
  position: relative;
  z-index: 3;
}

.hero-14 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

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

.hero-14 .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-14 .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero-14 .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero-14 .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero-14 .icon-box:hover {
  border-color: var(--accent-color);
}

.hero-14 .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-14 h2 {
    font-size: 32px;
  }

  .hero-14 p {
    font-size: 18px;
  }
}

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

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

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

.hero-15 .container {
  position: relative;
  z-index: 3;
}

.hero-15 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

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

.hero-15 .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.hero-15 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero-15 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-15 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-15 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero-15 h2 {
    font-size: 32px;
  }

  .hero-15 p {
    font-size: 18px;
  }
}

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

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

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

.hero-16 .container {
  z-index: 3;
}

.hero-16 .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-16 .welcome p {
  font-size: 24px;
  margin: 0;
}

.hero-16 .content {
  margin-top: 40px;
}

.hero-16 .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero-16 .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero-16 .content .why-box p {
  margin-bottom: 30px;
}

.hero-16 .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero-16 .content .why-box .more-btn i {
  font-size: 14px;
}

.hero-16 .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.hero-16 .content .icon-box {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero-16 .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero-16 .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero-16 .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Hero 17 Section
--------------------------------------------------------------*/
.hero-17 {
  padding: 0;
}

.hero-17 .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

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

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

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

.hero-17 .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero-17 h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

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

.hero-17 p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero-17 h2,
  .hero-17 p {
    max-width: 60%;
  }
}

.hero-17 .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: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero-17 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-17 .carousel-control-prev,
.hero-17 .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.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;
}

@media (min-width: 1024px) {

  .hero-17 .carousel-control-prev,
  .hero-17 .carousel-control-next {
    width: 5%;
  }
}

.hero-17 .carousel-control-next-icon,
.hero-17 .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero-17 .carousel-indicators {
  list-style: none;
}

.hero-17 .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Hero 18 Section
--------------------------------------------------------------*/
.hero-18 {
  padding: 0;
}

.hero-18 .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero-18 .carousel {
    min-height: 100vh;
  }
}

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

.hero-18 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

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

.hero-18 .container {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero-18 .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero-18 h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

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

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

.hero-18 .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.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 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-18 .carousel-control-prev,
.hero-18 .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.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-18 .carousel-control-prev:hover .carousel-control-next-icon,
.hero-18 .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-18 .carousel-control-next:hover .carousel-control-next-icon,
.hero-18 .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero-18 .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero-18 .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

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

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

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

.hero-19 .container {
  position: relative;
  z-index: 3;
}

.hero-19 h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
}

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

@media (max-width: 992px) {
  .hero-19 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-19 p {
    font-size: 18px;
    line-height: 24px;
  }
}

.hero-19 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
}

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

.hero-19 .icon-box {
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.hero-19 .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.hero-19 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.hero-19 .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero-19 .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--accent-color);
}

@media (min-width: 640px) {
  .hero-19 .icon-box:hover {
    transform: scale(1.08);
  }

  .hero-19 .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

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

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

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

.hero-20 .container {
  position: relative;
  z-index: 3;
}

.hero-20 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .hero-20 h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-20 p {
    font-size: 18px;
    line-height: 24px;
  }
}

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

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

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

.hero-21 .carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-21 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-21 h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
  display: block;
}

.hero-21 p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: fadeInDown 1s both 0.2s;
}

.hero-21 .carousel-control-prev,
.hero-21 .carousel-control-next {
  width: 10%;
}

.hero-21 .carousel-control-next-icon,
.hero-21 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero-21 .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--accent-color);
  animation: fadeInUp 1s both 0.4s;
  border: 2px solid var(--accent-color);
}

.hero-21 .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.hero-21 .carousel-indicators {
  bottom: -60px;
}

.hero-21 .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.3;
  transition: 0.3s;
}

.hero-21 .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (min-width: 1024px) {
  .hero-21 p {
    width: 60%;
  }

  .hero-21 .carousel-control-prev,
  .hero-21 .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px),
(max-height: 700px) {
  .hero-21 h2 {
    font-size: 28px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Hero 22 Section
--------------------------------------------------------------*/
.hero-22 {
  width: 100%;
  min-height: 30vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero-22 h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
}

.hero-22 h2 .underlight {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
}

.hero-22 h2 .underlight:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  z-index: -1;
}

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

@media (max-width: 768px) {
  .hero-22 h2 {
    font-size: 32px;
  }
}

.hero-22 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid var(--accent-color);
}

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

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

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

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

.hero-23 .container {
  position: relative;
  z-index: 3;
}

.hero-23 h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
}

.hero-23 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .hero-23 h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

.hero-23 .btn-scroll {
  transition: 0.4s;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  display: block;
  margin-top: 30px;
  animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
}

.hero-23 .btn-scroll i {
  font-size: 48px;
}

.hero-23 .btn-scroll:hover {
  color: var(--accent-color);
}

@keyframes btn-up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Hero 24 Section
--------------------------------------------------------------*/
.hero-24 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero-24 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero-24 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-24 .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-24 .download-btn+.download-btn {
  margin-left: 20px;
}

.hero-24 .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero-24 .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero-24 h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-24 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-24 .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# Hero 25 Section
--------------------------------------------------------------*/
.hero-25 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero-25:after {
    position: absolute;
    content: "";
    width: 44%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

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

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

.hero-25 .container,
.hero-25 .container-fluid {
  z-index: 3;
  position: relative;
}

.hero-25 h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero-25 blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

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

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

.hero-25 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero-25 .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-25 .btn-watch-video:hover {
  color: var(--default-color);
}

.hero-25 .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero-25 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-25 .btn-get-started,
  .hero-25 .btn-watch-video {
    font-size: 13px;
  }
}

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

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

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

.hero-26 .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero-26 .info h2: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-26 .info h2 {
    font-size: 36px;
  }
}

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

.hero-26 .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-26 .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

.hero-26 .carousel-control-next-icon,
.hero-26 .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-26 .carousel-control-prev,
.hero-26 .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Hero 27 Section
--------------------------------------------------------------*/
.hero-27 {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
}

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

.hero-27 .container {
  position: relative;
  z-index: 3;
}

.hero-27 h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .hero-27 h2 {
    font-size: 30px;
  }
}

.hero-27 p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-27 form {
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  padding: 10px;
  border-radius: 10px;
}

.hero-27 form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero-27 form .form-control:hover,
.hero-27 form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero-27 form .btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  flex-shrink: 0;
  padding: 0 25px;
}

.hero-27 form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-27 .stats-item {
  padding: 30px;
  width: 100%;
}

.hero-27 .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero-27 .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero-27 .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Hero 28 Section
--------------------------------------------------------------*/
.hero-28 {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}

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

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

.hero-28 .container {
  position: relative;
  z-index: 3;
}

.hero-28 h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-28 h2 .accent {
  color: var(--accent-color);
}

.hero-28 p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-28 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-28 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-28 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
}

.hero-28 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-28 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-28 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero-28 h2 {
    font-size: 36px;
  }

  .hero-28 .btn-get-started,
  .hero-28 .btn-watch-video {
    font-size: 14px;
  }
}

.hero-28 .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero-28 .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero-28 .icon-box {
  background: var(--surface-color);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero-28 .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero-28 .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero-28 .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--accent-color);
}

.hero-28 .icon-box:hover {
  background-color: var(--accent-color);
}

.hero-28 .icon-box:hover .title a,
.hero-28 .icon-box:hover .icon {
  color: var(--contrast-color);
}

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

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

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

.hero-29 .container {
  position: relative;
  z-index: 3;
}

.hero-29 h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

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

.hero-29 .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero-29 .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero-29 .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero-29 .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero-29 .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {
  .hero-29 h2 {
    font-size: 32px;
  }

  .hero-29 p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Hero 30 Section
--------------------------------------------------------------*/
.hero-30 {
  padding: 0;
}

.hero-30 .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-30 .carousel {
    min-height: 100vh;
  }
}

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

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

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

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

.hero-30 .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero-30 .carousel-item h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

.hero-30 .carousel-item h2 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-30 .carousel-item h2 {
    font-size: 30px;
  }
}

.hero-30 .carousel-item p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero-30 h2,
  .hero-30 p {
    max-width: 60%;
  }
}

.hero-30 .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: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero-30 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-30 .carousel-control-prev,
.hero-30 .carousel-control-next {
  width: 15%;
  transition: 0.3s;
  opacity: 0.4;
}

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

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

@media (min-width: 1024px) {

  .hero-30 .carousel-control-prev,
  .hero-30 .carousel-control-next {
    width: 5%;
  }
}

.hero-30 .carousel-control-next-icon,
.hero-30 .carousel-control-prev-icon {
  background: none;
  color: var(--default-color);
  font-size: 48px;
  line-height: 1;
}

.hero-30 .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: var(--accent-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

.hero-30 .carousel-indicators li.active {
  opacity: 1;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero-30 .carousel-indicators li {
    margin-bottom: 20px;
  }
}

.hero-30 .featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero-30 .featured {
    margin-top: 0;
  }
}

.hero-30 .featured-item {
  background: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-30 .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.hero-30 .featured-item .icon {
  margin-bottom: 10px;
}

.hero-30 .featured-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.hero-30 .featured-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.hero-30 .featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.hero-30 .featured-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.hero-30 .featured-item:hover h4 a,
.hero-30 .featured-item:hover .icon i,
.hero-30 .featured-item:hover p {
  color: var(--contrast-color);
}

.hero-30 .featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

.hero-31 .container {
  position: relative;
  z-index: 3;
}

.hero-31 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero-31 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-31 .hero-img {
    max-width: 600px;
  }
}

.hero-31 .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: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-31 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-31 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero-31 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-31 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-31 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero-31 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-31 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-31 .btn-get-started,
  .hero-31 .btn-watch-video {
    font-size: 13px;
  }
}

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

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

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

.hero-32 .container {
  position: relative;
  z-index: 3;
}

.hero-32 h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero-32 p {
  margin: 5px 0 0 0;
  font-size: 36px;
  font-weight: 600;
}

.hero-32 p span {
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-32 h2 {
    font-size: 32px;
  }

  .hero-32 p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Hero 33 Section
--------------------------------------------------------------*/
.hero-33 {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero-33 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 70vh;
  padding-top: 60px;
}

.hero-33 h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero-33 p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero-33 .carousel-control-prev,
.hero-33 .carousel-control-next {
  width: 10%;
}

.hero-33 .carousel-control-next-icon,
.hero-33 .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero-33 .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero-33 .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero-33 p {
    max-width: 60%;
  }

  .hero-33 .carousel-control-prev,
  .hero-33 .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero-33 .carousel-container {
    min-height: 90vh;
  }

  .hero-33 h2 {
    font-size: 28px;
  }
}

.hero-33 .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero-33 .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero-33 .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero-33 .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Hero 34 Section
--------------------------------------------------------------*/
.hero-34 {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

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

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

.hero-34 .container {
  position: relative;
  z-index: 3;
}

.hero-34 h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero-34 h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero-34 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero-34 .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-34 .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-34 .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero-34 .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-34 .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero-34 .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-34 .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero-34 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-34 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero-34 .btn-get-started,
  .hero-34 .btn-watch-video {
    font-size: 13px;
  }
}

.hero-34 .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero-34 .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero-34 .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero-34 .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

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

.hero-35 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-35 p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero-35 h2 {
    font-size: 32px;
  }

  .hero-35 p {
    font-size: 18px;
  }
}

.hero-35 .countdown {
  margin-top: 25px;
}

.hero-35 .countdown div {
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--default-color), white 90%);
  border-radius: 8px;
  margin: 10px 10px;
  width: 100px;
  padding: 15px 0;
}

.hero-35 .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-35 .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .hero-35 .countdown div {
    width: 70px;
    padding: 10px 0;
    margin: 10px 8px;
  }

  .hero-35 .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-35 .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

.hero-35 .hero-newsletter {
  margin-top: 25px;
}

.hero-35 .hero-newsletter p {
  font-size: 18px;
  margin: 0 0 15px 0;
}

.hero-35 .hero-newsletter .newsletter-form {
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.hero-35 .hero-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.hero-35 .hero-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.hero-35 .hero-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.hero-35 .hero-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.hero-35 .hero-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-35 .social-links {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-35 .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 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

.hero-36 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-36 p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero-36 h2 {
    font-size: 32px;
  }

  .hero-36 p {
    font-size: 18px;
  }
}

.hero-36 .countdown {
  margin-top: 25px;
  font-size: 42px;
}

.hero-36 .countdown span {
  font-size: 48px;
  font-weight: 700;
}

.hero-36 .hero-newsletter {
  margin-top: 25px;
}

.hero-36 .hero-newsletter p {
  font-size: 18px;
  margin: 0 0 15px 0;
}

.hero-36 .hero-newsletter .newsletter-form {
  margin-bottom: 15px;
  position: relative;
  display: flex;
  border-radius: 0px;
}

.hero-36 .hero-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.hero-36 .hero-newsletter .newsletter-form input[type=email] {
  padding: 8px 10px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
}

.hero-36 .hero-newsletter .newsletter-form input[type=email]:focus {
  border-color: var(--accent-color);
}

.hero-36 .hero-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.hero-36 .hero-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: 0 0 0 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0px;
}

.hero-36 .hero-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Hero 37 Section
--------------------------------------------------------------*/
.hero-37 {
  padding: 0;
}

.hero-37 .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-37 .carousel-container {
  position: absolute;
  inset: 90px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero-37 .carousel-container {
    inset: 90px 50px;
  }
}

.hero-37 h2 {
  margin-bottom: 30px;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-37 h2 span {
  color: var(--accent-color);
}

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

.hero-37 .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  align-self: flex-start;
  flex-shrink: 0;
  border: 2px solid var(--accent-color);
}

.hero-37 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-37 .carousel-control-prev,
.hero-37 .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  z-index: 3;
}

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

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

@media (min-width: 1024px) {

  .hero-37 .carousel-control-prev,
  .hero-37 .carousel-control-next {
    width: 5%;
  }
}

.hero-37 .carousel-control-next-icon,
.hero-37 .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero-37 .carousel-indicators {
  list-style: none;
}

.hero-37 .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 6px;
  width: 20px;
  transition: 0.3s;
  padding: 0;
}

.hero-37 .carousel-indicators .active {
  background-color: var(--accent-color);
  width: 40px;
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

.about-2 .section-badge i {
  font-size: 1rem;
}

.about-2 .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-2 .about-description,
.about-2 .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about-2 .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about-2 .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.about-2 .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-2 .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about-2 .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-2 .features-boxes .feature-box:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-2 .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about-2 .video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-2 .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-3 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-3 .about-title {
    font-size: 1.6rem;
  }
}

.about-3 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-3 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-3 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-3 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-3 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-3 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-3 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-3 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-3 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-3 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-3 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-3 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-3 .content-card:hover .card-image img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 .image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-4 .image-wrapper img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}

.about-4 .image-wrapper img:hover {
  transform: scale(1.05);
}

.about-4 .content {
  padding-left: 30px;
}

.about-4 .content .subtitle {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-4 .content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-4 .content .description {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.about-4 .content .features {
  margin-bottom: 30px;
}

.about-4 .content .features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.about-4 .content .features .feature-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s;
}

.about-4 .content .features .feature-item .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.about-4 .content .features .feature-item .feature-content {
  position: relative;
}

.about-4 .content .features .feature-item .feature-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-4 .content .features .feature-item .feature-content h4 a {
  color: var(--heading-color);
}

.about-4 .content .features .feature-item .feature-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.about-4 .content .features .feature-item:hover .icon-box {
  background: var(--accent-color);
}

.about-4 .content .features .feature-item:hover .icon-box i {
  color: var(--contrast-color);
}

.about-4 .content .btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-4 .content .btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 992px) {
  .about-4 .content {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
  }

  .about-4 .content .features .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-4 .content .features .feature-item .icon-box {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-5 .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about-5 .about-title {
    font-size: 2rem;
  }
}

.about-5 .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-5 .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about-5 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-5 .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-5 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about-5 .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about-5 .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about-5 .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about-5 .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about-5 .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-5 .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about-5 .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about-5 .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about-5 .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about-5 .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about-5 .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about-5 .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about-5 .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about-5 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about-5 .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about-5 .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about-5 .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about-5 .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .subtitle {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-6 .title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-6 .description {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-6 .trusted-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-6 .trusted-description {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-6 .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about-6 .feature-list li {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-6 .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.about-6 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-6 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about-6 .image-grid {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
}

.about-6 .image-grid img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-6 .image-grid .main-image {
  width: 75%;
  height: 75%;
  top: 0;
  left: 5%;
  object-fit: cover;
  border: 5px solid var(--surface-color);
}

.about-6 .image-grid .overlay-image-1 {
  width: 50%;
  height: 50%;
  bottom: 0;
  left: 2%;
  object-fit: cover;
  z-index: 1;
  border: 5px solid var(--surface-color);
}

.about-6 .image-grid .overlay-image-2 {
  width: 50%;
  height: 50%;
  bottom: 10%;
  right: 10%;
  object-fit: cover;
  z-index: 2;
  border: 5px solid var(--surface-color);
}

@media (max-width: 991.98px) {
  .about-6 .image-grid {
    margin-bottom: 2rem;
  }

  .about-6 .image-grid .main-image {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .about-6 .image-grid .overlay-image-1 {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 4%;
  }

  .about-6 .image-grid .overlay-image-2 {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 4%;
  }
}

/*--------------------------------------------------------------
# About 7 Section
--------------------------------------------------------------*/
.about-7 {
  padding: 80px 0;
}

.about-7 .content {
  padding-right: 30px;
}

.about-7 .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-7 .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-7 .description {
  margin-bottom: 30px;
  color: var(--default-color);
}

.about-7 .image-grid {
  display: flex;
  gap: 15px;
  height: 450px;
}

.about-7 .main-image {
  flex: 0 0 65%;
  height: 100%;
}

.about-7 .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-7 .side-images {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-7 .side-images img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
}

.about-7 .stats {
  margin-top: 30px;
}

.about-7 .stat-item {
  margin-bottom: 20px;
}

.about-7 .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.about-7 .stat-text {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .about-7 .content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-7 .image-grid {
    height: auto;
    flex-direction: column;
  }

  .about-7 .main-image,
  .about-7 .side-images {
    flex: 0 0 100%;
  }

  .about-7 .side-images {
    flex-direction: row;
  }

  .about-7 .side-images img {
    height: 200px;
    width: calc(50% - 7.5px);
  }
}

/*--------------------------------------------------------------
# About 8 Section
--------------------------------------------------------------*/
.about-8 .about-content {
  position: relative;
  z-index: 1;
}

.about-8 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-8 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-8 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-8 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-8 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-8 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-8 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-8 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-8 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-8 .about-content::before,
.about-8 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-8 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-8 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-8 .about-image {
  position: relative;
  z-index: 1;
}

.about-8 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-8 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-8 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About 9 Section
--------------------------------------------------------------*/
.about-9 .text-accent {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.about-9 .about-title {
  font-weight: 700;
}

.about-9 .feature-list {
  list-style-type: none;
  padding-left: 0;
}

.about-9 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.about-9 .feature-list li i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.about-9 .btn-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-9 .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.about-9 .image-wrapper {
  position: relative;
}

.about-9 .image-wrapper img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-9 .image-wrapper img:last-child {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# About 10 Section
--------------------------------------------------------------*/
.about-10 .section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.about-10 .about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-10 .about-description {
  margin-bottom: 2rem;
}

.about-10 .about-images {
  position: relative;
  margin-bottom: 2rem;
}

.about-10 .about-images .main-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 8px solid var(--surface-color);
}

.about-10 .about-images .secondary-image {
  position: absolute;
  top: 30%;
  right: -15%;
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--surface-color);
}

.about-10 .about-images .client-count {
  position: absolute;
  bottom: -10%;
  left: 10%;
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.about-10 .about-images .client-count img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.about-10 .about-images .client-count .count-text h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 0;
}

.about-10 .about-images .client-count .count-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.about-10 .features {
  margin-bottom: 2rem;
}

.about-10 .features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.about-10 .features .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 1rem;
}

.about-10 .features .feature-item .feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-10 .features .feature-item .feature-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.about-10 .cta-wrapper {
  display: flex;
  align-items: center;
}

.about-10 .cta-wrapper .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
}

.about-10 .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about-10 .cta-wrapper .cta-text h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-10 .cta-wrapper .cta-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991.98px) {
  .about-10 .about-images .secondary-image {
    right: 0;
    width: 50%;
  }

  .about-10 .about-images .client-count {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .about-10 .section-title {
    font-size: 2rem;
  }

  .about-10 .about-images .secondary-image {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .about-10 .about-images .client-count {
    position: static;
    margin-top: 1rem;
  }

  .about-10 .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-10 .cta-wrapper .btn-primary {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/*--------------------------------------------------------------
# About 11 Section
--------------------------------------------------------------*/
.about-11 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-11 .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about-11 .content ul {
  list-style: none;
  padding: 0;
}

.about-11 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-11 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-11 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About 12 Section
--------------------------------------------------------------*/
.about-12 h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-12 .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about-12 .content ul {
  list-style: none;
  padding: 0;
}

.about-12 .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about-12 .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about-12 .content p:last-child {
  margin-bottom: 0;
}

.about-12 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 13 Section
--------------------------------------------------------------*/
.about-13 .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about-13 .about-content ul {
  list-style: none;
  padding: 0;
}

.about-13 .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about-13 .about-content ul li:first-child {
  margin-top: 35px;
}

.about-13 .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}

.about-13 .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about-13 .about-content ul p {
  font-size: 15px;
}

.about-13 .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About 14 Section
--------------------------------------------------------------*/
.about-14 .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about-14 .content p {
  margin-bottom: 30px;
}

.about-14 .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about-14 .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about-14 .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-14 .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-14 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about-14 .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about-14 .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about-14 .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 15 Section
--------------------------------------------------------------*/
.about-15 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-15 .content ul {
  list-style: none;
  padding: 0;
}

.about-15 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-15 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-15 .content p:last-child {
  margin-bottom: 0;
}

.about-15 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 16 Section
--------------------------------------------------------------*/
.about-16 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-16 .content ul {
  list-style: none;
  padding: 0;
}

.about-16 .content ul li {
  padding-bottom: 10px;
}

.about-16 .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-16 .content p:last-child {
  margin-bottom: 0;
}

.about-16 .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-16 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-16 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.about-16 .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# About 17 Section
--------------------------------------------------------------*/
.about-17 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-17 .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-17 .content ul {
  list-style: none;
  padding: 0;
}

.about-17 .content ul li {
  padding: 0 0 15px 0;
  font-weight: 600;
  display: flex;
}

.about-17 .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# About 18 Section
--------------------------------------------------------------*/
.about-18 .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about-18 .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about-18 .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about-18 .our-story {
    padding-right: 35%;
  }
}

.about-18 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about-18 .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-18 .our-story p:last-child {
  margin-bottom: 0;
}

.about-18 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about-18 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about-18 ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about-18 .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about-18 .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about-18 .watch-video:hover a {
  color: var(--accent-color);
}

.about-18 .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about-18 .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

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

/*--------------------------------------------------------------
# About 19 Section
--------------------------------------------------------------*/
.about-19 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-19 .content ul {
  list-style: none;
  padding: 0;
}

.about-19 .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about-19 .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about-19 .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about-19 .content ul p {
  font-size: 15px;
}

.about-19 .content p:last-child {
  margin-bottom: 0;
}

.about-19 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 20 Section
--------------------------------------------------------------*/
.about-20 ul {
  list-style: none;
  padding: 0;
}

.about-20 ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about-20 ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about-20 .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-20 .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-20 .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about-20 .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# About 21 Section
--------------------------------------------------------------*/
.about-21 .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about-21 .content h2 {
  font-weight: 700;
}

.about-21 .content p:last-child {
  margin-bottom: 0;
}

.about-21 .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-21 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-21 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about-21 .content .read-more:hover i {
  margin-left: 10px;
}

.about-21 .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about-21 .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about-21 .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about-21 .icon-box p {
  margin-bottom: 0;
}

.about-21 .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-21 .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about-21 .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about-21 .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about-21 .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# About 22 Section
--------------------------------------------------------------*/
.about-22 .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-22 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-22 .content ul {
  list-style: none;
  padding: 0;
}

.about-22 .content ul li {
  padding-bottom: 10px;
}

.about-22 .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-22 .content p:last-child {
  margin-bottom: 0;
}

.about-22 .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-22 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about-22 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about-22 .content .read-more:hover i {
  margin-left: 10px;
}

.about-22 .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# About 23 Section
--------------------------------------------------------------*/
.about-23 .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about-23 .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-23 .about-img img {
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .about-23 .about-img {
    margin: 30px 0 0 30px;
  }

  .about-23 .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about-23 h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-23 h3 {
    font-size: 28px;
  }
}

.about-23 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-23 .nav-pills li+li {
  margin-left: 40px;
}

.about-23 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about-23 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about-23 .nav-link {
    font-size: 16px;
  }
}

.about-23 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about-23 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 24 Section
--------------------------------------------------------------*/
.about-24 .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about-24 .content ul {
  list-style: none;
  padding: 0;
}

.about-24 .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-24 .content ul strong {
  margin-right: 10px;
}

.about-24 .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# About 25 Section
--------------------------------------------------------------*/
.about-25 .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about-25 .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about-25 .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about-25 .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about-25 .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about-25 .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about-25 .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about-25 .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# About 26 Section
--------------------------------------------------------------*/
.about-26 .about-image {
  position: relative;
  padding: 20px;
}

.about-26 .about-image img {
  border: 10px solid var(--surface-color);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.about-26 .about-image .experience-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
}

.about-26 .about-image .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.about-26 .about-image .experience-badge .text {
  font-size: 0.9rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about-26 .about-image .experience-badge {
    width: 100px;
    height: 100px;
  }

  .about-26 .about-image .experience-badge .number {
    font-size: 1.5rem;
  }
}

.about-26 .about-content .subtitle {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-26 .about-content .subtitle i {
  font-size: 1.2rem;
}

.about-26 .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-26 .about-content h2 .highlight {
  color: var(--accent-color);
}

.about-26 .about-content .lead {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.about-26 .about-content .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-26 .about-content .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-26 .about-content .info-grid .info-item h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.about-26 .about-content .info-grid .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

/*--------------------------------------------------------------
# About 27 Section
--------------------------------------------------------------*/
.about-27 .about-image {
  position: relative;
}

.about-27 .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-27 .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about-27 .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about-27 .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about-27 .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-27 .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-27 .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about-27 .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-27 .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-27 .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about-27 .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-27 .signature .signature-image {
  max-width: 150px;
}

.about-27 .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-27 .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# About 28 Section
--------------------------------------------------------------*/
.about-28 .container {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about-28 .skills-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.about-28 .progress {
  height: 36px;
  display: block;
  background: none;
  border-radius: 0;
  margin-top: 15px;
}

.about-28 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.about-28 .progress .skill .val {
  float: right;
  font-style: normal;
}

.about-28 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.about-28 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.about-28 .about-me h4 {
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-28 .about-me h4:after {
  content: "";
  position: absolute;
  display: block;
  width: 64px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.about-28 .about-me p {
  font-size: 18px;
}

/*--------------------------------------------------------------
# About 29 Section
--------------------------------------------------------------*/
.about-29 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-29 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-29 h1 {
  color: var(--heading-color);
  font-size: 30px;
}

.about-29 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-29 .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.about-29 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about-29 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.about-29 .section-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 30 Section
--------------------------------------------------------------*/
.about-30 .content {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-30 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about-30 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about-30 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-30 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-30 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-30 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 31 Section
--------------------------------------------------------------*/
.about-31 .section-title {
  margin-bottom: 60px;
}

.about-31 .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}

.about-31 .content .img-overlap {
  margin-top: -150px;
}

.about-31 p {
  color: var(--contrast-color);
}

.about-31 .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about-31 .content-title strong {
  font-weight: 700;
}

.about-31 .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# About 32 Section
--------------------------------------------------------------*/
.about-32 .content-title {
  color: var(--accent-color);
  margin-bottom: 30px;
}

.about-32 .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.about-32 .list-check {
  margin-bottom: 50px;
}

.about-32 .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.about-32 .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

.about-32 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 33 Section
--------------------------------------------------------------*/
.about-33 .profile-img {
  border: 20px solid var(--accent-color);
  padding: 0;
}

.about-33 .profile-img img {
  margin-top: -60px;
  margin-left: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.about-33 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about-33 .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about-33 .content ul {
  list-style: none;
  padding: 0;
}

.about-33 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-33 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about-33 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services-2 .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services-2 .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services-2 .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services-2 .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-2 .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services-2 .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-2 .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services-2 .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services 3 Section
--------------------------------------------------------------*/
.services-3 {
  padding: 80px 0;
}

.services-3 .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.services-3 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services-3 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-3 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.services-3 .service-item:hover {
  transform: scale(1.05);
}

.services-3 .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px;
}

.services-3 .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.services-3 .service-item h3 a {
  color: var(--heading-color);
}

.services-3 .service-item h3 a:hover {
  color: var(--accent-color);
}

.services-3 .service-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
  .services-3 h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .service-item {
  display: block;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--default-color);
  z-index: 1;
}

.services-4 .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FFD700, #FF6B6B, #4ECDC4);
}

.services-4 .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services-4 .service-icon {
  font-size: 42px;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.services-4 .service-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.services-4 .service-description {
  font-size: 1rem;
  transition: 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services-4 .service-item:hover .service-icon,
.services-4 .service-item:hover .service-title {
  color: var(--heading-color);
}

.services-4 .service-item:hover .service-description {
  color: var(--default-color);
}

.services-4 .scribble {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.services-4 .scribble-1 {
  top: -50px;
  left: -50px;
  animation: float-rotate 3s ease-in-out infinite;
}

.services-4 .scribble-2 {
  top: -50px;
  right: -50px;
  animation: float-scale 5s ease-in-out infinite;
}

.services-4 .scribble-3 {
  bottom: -50px;
  left: -50px;
  animation: float-move 3s ease-in-out infinite;
}

.services-4 .scribble-4 {
  bottom: -50px;
  right: -50px;
  animation: float-opacity 2s ease-in-out infinite;
}

@keyframes float-rotate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes float-scale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes float-move {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes float-opacity {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .services-28 .service-item {
    margin-bottom: 2rem;
  }

  .services-28 .scribble {
    max-width: 100px;
    max-height: 100px;
  }
}

/*--------------------------------------------------------------
# Services 5 Section
--------------------------------------------------------------*/
.services-5 .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services-5 .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services-5 .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-5 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services-5 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-5 .service-item:hover {
  border-color: var(--accent-color);
}

.services-5 .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 6 Section
--------------------------------------------------------------*/
.services-6 .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.services-6 .service-item .icon {
  margin-right: 20px;
}

.services-6 .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  line-height: 0;
  transition: 0.3s;
}

.services-6 .service-item:hover .icon i {
  color: var(--accent-color);
}

.services-6 .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.services-6 .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.services-6 .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.services-6 .service-item .readmore i {
  margin-left: 8px;
}

.services-6 .service-item:hover .title,
.services-6 .service-item:hover .readmore,
.services-6 .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 7 Section
--------------------------------------------------------------*/
.services-7 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services-7 .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services-7 .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services-7 .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services-7 .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services-7 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services-7 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-7 .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services-7 .service-item.item-cyan i {
  color: #0dcaf0;
}

.services-7 .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services-7 .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services-7 .service-item.item-orange i {
  color: #fd7e14;
}

.services-7 .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services-7 .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services-7 .service-item.item-teal i {
  color: #20c997;
}

.services-7 .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services-7 .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services-7 .service-item.item-red i {
  color: #df1529;
}

.services-7 .service-item.item-red:hover .icon i {
  color: #fff;
}

.services-7 .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services-7 .service-item.item-indigo i {
  color: #6610f2;
}

.services-7 .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services-7 .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services-7 .service-item.item-pink i {
  color: #f3268c;
}

.services-7 .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services-7 .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

/*--------------------------------------------------------------
# Services 8 Section
--------------------------------------------------------------*/
.services-8 .service-item {
  position: relative;
}

.services-8 .service-item .icon {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
}

.services-8 .service-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.services-8 .service-item:hover .icon {
  background: var(--surface-color);
}

.services-8 .service-item:hover .icon i {
  color: var(--accent-color);
}

.services-8 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services-8 .service-item .title a {
  color: var(--heading-color);
}

.services-8 .service-item .title a:hover {
  color: var(--accent-color);
}

.services-8 .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services 9 Section
--------------------------------------------------------------*/
.services-9 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services-9 .service-item .icon {
  margin-bottom: 10px;
}

.services-9 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services-9 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-9 .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services-9 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-9 .service-item:hover {
  transform: translateY(-10px);
}

.services-9 .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 10 Section
--------------------------------------------------------------*/
.services-10 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.services-10 .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.services-10 .service-item .icon {
  margin-bottom: 10px;
}

.services-10 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.services-10 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-10 .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services-10 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.services-10 .service-item:hover h4 a,
.services-10 .service-item:hover .icon i,
.services-10 .service-item:hover p {
  color: var(--contrast-color);
}

.services-10 .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Services 11 Section
--------------------------------------------------------------*/
.services-11 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-11 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-11 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-11 .service-item .title a {
  color: var(--heading-color);
}

.services-11 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-11 .service-item:hover {
  border-color: var(--accent-color);
}

.services-11 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 12 Section
--------------------------------------------------------------*/
.services-12 .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services-12 .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services-12 .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-12 .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services-12 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services-12 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-12 .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services-12 .service-item:hover .icon {
  background: var(--surface-color);
}

.services-12 .service-item:hover .icon i {
  color: var(--accent-color);
}

.services-12 .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services-12 .service-item:hover h3,
.services-12 .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services 13 Section
--------------------------------------------------------------*/
.services-13 .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services-13 .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services-13 .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.services-13 .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services-13 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-13 .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services-13 .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 14 Section
--------------------------------------------------------------*/
.services-14 .service-item {
  padding: 2.2rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.services-14 .service-item:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services-14 .service-item:hover {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
}

.services-14 .service-item:hover .arrow-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.services-14 .service-item:hover .service-number {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services-14 .service-item {
    padding: 1.5rem;
  }
}

.services-14 .service-title .service-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}

.services-14 .service-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .services-14 .service-title h3 {
    margin-bottom: 1rem;
  }
}

.services-14 .service-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.services-14 .service-link {
  display: flex;
  justify-content: flex-end;
}

.services-14 .service-link .arrow-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.services-14 .service-link .arrow-link i {
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Services 15 Section
--------------------------------------------------------------*/
.services-15 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services-15 .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-15 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-15 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services-15 .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services-15 .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services 16 Section
--------------------------------------------------------------*/
.services-16 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-16 .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services-16 .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services-16 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-16 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services-16 .service-item:hover {
    transform: translateY(-10px);
  }

  .services-16 .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services 17 Section
--------------------------------------------------------------*/
.services-17 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services-17 .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services-17 .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services-17 .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services-17 .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services-17 .service-item h4 a {
  color: var(--heading-color);
}

.services-17 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 10px 0 0 0;
}

.services-17 .service-item:hover:before,
.services-17 .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services-17 .service-item:hover h4 a,
.services-17 .service-item:hover p {
  color: var(--contrast-color);
}

.services-17 .service-item:hover i {
  background: var(--surface-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 18 Section
--------------------------------------------------------------*/
.services-18 .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.services-18 .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.services-18 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-18 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-18 .service-item:hover {
  background: var(--background-color);
}

.services-18 .service-item:hover h3 {
  color: var(--accent-color);
}

.services-18 .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services-18 .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 19 Section
--------------------------------------------------------------*/
.services-19 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services-19 .service-item .icon {
  font-size: 32px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.services-19 .service-item h3 a {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services-19 .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services-19 .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services-19 .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services-19 .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services-19 .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services-19 .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services-19 .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services-19 .service-item:hover {
  transform: scale(1.06);
}

.services-19 .service-item:hover h3 a {
  color: var(--heading-color);
}

.services-19 .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# Services 20 Section
--------------------------------------------------------------*/
.services-20 .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services-20 .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services-20 .service-item .icon i {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services-20 .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services-20 .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services-20 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-20 .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services-20 .service-item:hover .icon i {
  color: var(--heading-color);
}

.services-20 .service-item:hover .icon:before {
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
}

.services-20 .service-item:hover h3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--heading-color);
}

.services-20 .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services 21 Section
--------------------------------------------------------------*/
.services-21 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services-21 .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services-21 .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services-21 .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services-21 .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services-21 .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services-21 .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services-21 .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services-21 .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services-21 .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services-21 .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services-21 .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services-21 .service-item.item-orange:hover {
  background: #fd7e14;
}

.services-21 .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services-21 .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services-21 .service-item.item-teal .read-more {
  color: #20c997;
}

.services-21 .service-item.item-teal:hover {
  background: #20c997;
}

.services-21 .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services-21 .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services-21 .service-item.item-red .read-more {
  color: #df1529;
}

.services-21 .service-item.item-red:hover {
  background: #df1529;
}

.services-21 .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services-21 .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services-21 .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services-21 .service-item.item-indigo:hover {
  background: #6610f2;
}

.services-21 .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services-21 .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services-21 .service-item.item-pink .read-more {
  color: #f3268c;
}

.services-21 .service-item.item-pink:hover {
  background: #f3268c;
}

.services-21 .service-item:hover h3,
.services-21 .service-item:hover p,
.services-21 .service-item:hover .read-more {
  color: #fff;
}

.services-21 .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Services 22 Section
--------------------------------------------------------------*/
.services-22 .service-item {
  position: relative;
  padding-top: 40px;
}

.services-22 .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-22 .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services-22 .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services-22 .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services-22 .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services-22 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services-22 .service-item .title a {
  color: var(--heading-color);
}

.services-22 .service-item .title a:hover {
  color: var(--accent-color);
}

.services-22 .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services 23 Section
--------------------------------------------------------------*/
.services-23 .service-item {
  position: relative;
  padding-top: 20px;
}

.services-23 .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.services-23 .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.services-23 .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-23 .service-item .title a {
  color: var(--heading-color);
}

.services-23 .service-item .title a:hover {
  color: var(--accent-color);
}

.services-23 .service-item .description {
  font-size: 14px;
}

.services-23 .service-item:hover .icon {
  background-color: var(--accent-color);
}

.services-23 .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services 24 Section
--------------------------------------------------------------*/
.services-24 {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.services-24 .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services-24 .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services-24 .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services-24 .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services-24 .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services-24 .service-item .read-more i {
  margin-left: 10px;
}

.services-24 .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services-24 .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services-24 .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services-24 .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services-24 .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services-24 .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services-24 .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services-24 .service-item:hover h3 {
  color: var(--heading-color);
}

.services-24 .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# Services 25 Section
--------------------------------------------------------------*/
.services-25 .img {
  border-radius: 8px;
  overflow: hidden;
}

.services-25 .img img {
  transition: 0.6s;
}

.services-25 .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services-25 .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services-25 .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-25 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-25 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-25 .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services-25 .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services-25 .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Services 26 Section
--------------------------------------------------------------*/
.services-26 .img {
  border-radius: 8px;
  overflow: hidden;
}

.services-26 .img img {
  transition: 0.6s;
}

.services-26 .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services-26 .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services-26 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-26 .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services-26 .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Services 27 Section
--------------------------------------------------------------*/
.services-27 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services-27 .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services-27 .services-item .services-icon i {
  font-size: 48px;
}

.services-27 .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services 29 Section
--------------------------------------------------------------*/
.services-29 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.services-29 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.services-29 p {
  line-height: 1.7;
  color: var(--default-color);
}

.services-29 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

.services-29 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.services-29 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.services-29 .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services-29 .services-item .services-icon i {
  font-size: 48px;
}

.services-29 .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services 30 Section
--------------------------------------------------------------*/
.services-30 .section-title h2 {
  color: var(--accent-color);
  font-size: 20px;
}

.services-30 .content .service-item {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.services-30 .content .service-item .number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services-30 .content .service-item .service-item-icon {
  position: relative;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.services-30 .content .service-item .service-item-icon img {
  width: 50px;
}

.services-30 .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.services-30 .content .service-item .service-item-icon>span {
  color: var(--default-color);
  font-size: 4rem;
}

.services-30 .content .service-item .service-item-content .service-heading {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 400;
}

.services-30 .content .service-item .service-item-content p {
  font-size: 15px;
}

@media (min-width: 769px) {
  .services-30 .content [class^=col-]:nth-child(4n+4) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services-30 .content [class^=col-]:nth-last-child(-n+4) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 768px) {
  .services-30 .content [class^=col-]:nth-child(2n+2) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services-30 .content [class^=col-]:last-child .service-item,
  .services-30 .content [class^=col-]:nth-last-child(2) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 576px) {
  .services-30 .content [class^=col-] .service-item {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Services 31 Section
--------------------------------------------------------------*/
.services-31 .card-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.services-31 .card-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 24px;
}

.services-31 .card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.services-31 .card-item p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.services-31 .card-item .arrow-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services-31 .card-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-31 .card-item:hover .arrow-icon {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services 32 Section
--------------------------------------------------------------*/
.services-32 {
  --cyan-color: #0dcaf0;
  --orange-color: #fd7e14;
  --teal-color: #20c997;
  --red-color: #df1529;
}

.services-32 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid transparent;
}

.services-32 .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services-32 .service-item .icon i {
  font-size: 28px;
  transition: 0.5s;
  position: relative;
}

.services-32 .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services-32 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-32 .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services-32 .service-item.item-cyan .icon {
  background-color: color-mix(in srgb, var(--cyan-color) 10%, white 95%);
}

.services-32 .service-item.item-cyan .icon i {
  color: var(--cyan-color);
}

.services-32 .service-item.item-cyan:hover {
  border-color: var(--cyan-color);
}

.services-32 .service-item.item-cyan:hover .icon {
  background-color: var(--cyan-color);
}

.services-32 .service-item.item-cyan:hover .icon i {
  color: var(--contrast-color);
}

.services-32 .service-item.item-orange .icon {
  background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
}

.services-32 .service-item.item-orange .icon i {
  color: var(--orange-color);
}

.services-32 .service-item.item-orange:hover {
  border-color: var(--orange-color);
}

.services-32 .service-item.item-orange:hover .icon {
  background-color: var(--orange-color);
}

.services-32 .service-item.item-orange:hover .icon i {
  color: var(--contrast-color);
}

.services-32 .service-item.item-teal .icon {
  background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
}

.services-32 .service-item.item-teal .icon i {
  color: var(--teal-color);
}

.services-32 .service-item.item-teal:hover {
  border-color: var(--teal-color);
}

.services-32 .service-item.item-teal:hover .icon {
  background-color: var(--teal-color);
}

.services-32 .service-item.item-teal:hover .icon i {
  color: var(--contrast-color);
}

.services-32 .service-item.item-red .icon {
  background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
}

.services-32 .service-item.item-red .icon i {
  color: var(--red-color);
}

.services-32 .service-item.item-red:hover {
  border-color: var(--red-color);
}

.services-32 .service-item.item-red:hover .icon {
  background-color: var(--red-color);
}

.services-32 .service-item.item-red:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details-2 .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details-2 .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details-2 .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details-2 .services-img {
  margin-bottom: 20px;
}

.service-details-2 h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details-2 h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details-2 p {
  font-size: 15px;
}

.service-details-2 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details-2 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details-2 ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details 3 Section
--------------------------------------------------------------*/
.service-details-3 .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details-3 .service-box+.service-box {
  margin-top: 30px;
}

.service-details-3 .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details-3 .services-list {
  background-color: var(--surface-color);
}

.service-details-3 .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details-3 .services-list a:first-child {
  margin-top: 0;
}

.service-details-3 .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details-3 .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details-3 .services-list a.active i {
  color: var(--contrast-color);
}

.service-details-3 .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details-3 .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details-3 .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details-3 .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details-3 .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details-3 .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details-3 .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details-3 .help-box .help-icon {
  font-size: 48px;
}

.service-details-3 .help-box h4,
.service-details-3 .help-box a {
  color: var(--contrast-color);
}

.service-details-3 .services-img {
  margin-bottom: 20px;
}

.service-details-3 h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details-3 p {
  font-size: 15px;
}

.service-details-3 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details-3 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details-3 ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-icon.icon-red {
  background-color: color-mix(in srgb, #df4141, transparent 92%);
}

.features-2 .feature-item .feature-icon.icon-red i {
  color: #df4141;
}

.features-2 .feature-item .feature-icon.icon-green {
  background-color: color-mix(in srgb, #2ecc71, transparent 92%);
}

.features-2 .feature-item .feature-icon.icon-green i {
  color: #2ecc71;
}

.features-2 .feature-item .feature-icon.icon-blue {
  background-color: color-mix(in srgb, #3498db, transparent 92%);
}

.features-2 .feature-item .feature-icon.icon-blue i {
  color: #3498db;
}

.features-2 .feature-item .feature-icon.icon-orange {
  background-color: color-mix(in srgb, #f1840f, transparent 92%);
}

.features-2 .feature-item .feature-icon.icon-orange i {
  color: #f1840f;
}

.features-2 .feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-3 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-3 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-3 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-3 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-3 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-3 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-3 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-3 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Features 4 Section
--------------------------------------------------------------*/
.features-4 .feature-box {
  background-color: var(--surface-color);
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features-4 .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features-4 .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features-4 .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Features 5 Section
--------------------------------------------------------------*/
.features-5 .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features-5 .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features-5 .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features-5 .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-5 .features-item:hover {
  border-color: var(--accent-color);
}

.features-5 .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features 6 Section
--------------------------------------------------------------*/
.features-6 .features-image {
  position: relative;
}

.features-6 .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features-6 .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features-6 .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Features 7 Section
--------------------------------------------------------------*/
.features-7 h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-7 .icon-box {
  margin-top: 50px;
}

.features-7 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

.features-7 .icon-box:hover i {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.features-7 .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-7 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-7 .icon-box .title a:hover {
  color: var(--accent-color);
}

.features-7 .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features-7 .video-box {
  min-height: 400px;
}

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

.features-7 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}

/*--------------------------------------------------------------
# Features 8 Section
--------------------------------------------------------------*/
.features-8 .icon-box {
  display: flex;
}

.features-8 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-8 .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features-8 .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features 9 Section
--------------------------------------------------------------*/
.features-9 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-9 .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features-9 .features-item+.features-item {
    margin-top: 40px;
  }
}

.features-9 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features-9 .features-item ul {
  list-style: none;
  padding: 0;
}

.features-9 .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-9 .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-9 .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features-9 .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features 10 Section
--------------------------------------------------------------*/
.features-10 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features-10 .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features-10 .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-10 .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features-10 .phone-wrap {
    position: relative;
  }
}

.features-10 .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features-10 .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features-10 .phone-wrap img {
    width: 100%;
  }
}

.features-10 .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.features-10 .details h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-10 .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

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

.features-10 .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Features 11 Section
--------------------------------------------------------------*/
.features-11 .features-image {
  position: relative;
  min-height: 400px;
}

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

.features-11 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features-11 h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features-11 .icon-box {
  margin-top: 50px;
}

.features-11 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features-11 .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features-11 .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-11 .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-11 .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features-11 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features 12 Section
--------------------------------------------------------------*/
.features-12 h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-12 p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-12 ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-12 ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Features 13 Section
--------------------------------------------------------------*/
.features-13 {
  --default-color: #555;
  --heading-color: #333;
}

.features-13 .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-13 .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-13 .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-13 .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-13 .feature-box.orange {
  background-color: #fff3e2;
}

.features-13 .feature-box.orange i {
  color: #edb86e;
}

.features-13 .feature-box.blue {
  background-color: #deedfd;
}

.features-13 .feature-box.blue i {
  color: #20a5f8;
}

.features-13 .feature-box.green {
  background-color: #d5f1e4;
}

.features-13 .feature-box.green i {
  color: #48c88a;
}

.features-13 .feature-box.red {
  background-color: #fdeded;
}

.features-13 .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 14 Section
--------------------------------------------------------------*/
.features-14 .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-14 .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features-14 .features-item+.features-item {
    margin-top: 40px;
  }
}

.features-14 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features-14 .features-item .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features-14 .features-item .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.features-14 .features-item ul {
  list-style: none;
  padding: 0;
}

.features-14 .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features-14 .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-14 .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features-14 .features-item img {
  border: 6px solid var(--surface-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features-14 .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features-14 .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features-14 .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-14 .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features-14 .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features-14 .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

/*--------------------------------------------------------------
# Features 15 Section
--------------------------------------------------------------*/
.features-15 .features-item+.features-item {
  margin-top: 60px;
}

.features-15 .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-15 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-15 .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-15 .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-15 .features-item ul {
  list-style: none;
  padding: 0;
}

.features-15 .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-15 .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-15 .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-15 .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features 16 Section
--------------------------------------------------------------*/
.features-16 .features-image {
  position: relative;
  min-height: 400px;
}

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

.features-16 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-16 .icon-box {
  margin-top: 30px;
}

.features-16 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.features-16 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-16 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features 17 Section
--------------------------------------------------------------*/
.features-17 {
  padding: 0;
}

.features-17 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/onfocus-video-bg.jpg") center center;
  background-size: cover;
}

.features-17 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/onfocus-content-bg.jpg") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .features-17 .content {
    padding: 80px;
  }
}

.features-17 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

.features-17 .content ul {
  list-style: none;
  padding: 0;
}

.features-17 .content ul li {
  padding-bottom: 10px;
}

.features-17 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features-17 .content p:last-child {
  margin-bottom: 0;
}

.features-17 .content .read-more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.features-17 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.features-17 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

.features-17 .content .read-more:hover i {
  margin-left: 10px;
}

.features-17 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Clients 2 Section
--------------------------------------------------------------*/
.clients-2 .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients-2 .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients-2 .swiper-wrapper {
  height: auto;
}

.clients-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients-2 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients 3 Section
--------------------------------------------------------------*/
.clients-3 .swiper {
  padding: 10px 0;
}

.clients-3 .swiper-wrapper {
  height: auto;
}

.clients-3 .swiper-slide img {
  transition: 0.3s;
}

.clients-3 .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Clients 4 Section
--------------------------------------------------------------*/
.clients-4 .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients-4 .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients-4 .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients-4 .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients-4 .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Clients 5 Section
--------------------------------------------------------------*/
.clients-5 {
  padding: 20px 0;
}

.clients-5 .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients-5 .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients-5 .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients-5 .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--surface-color);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.cards .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.cards .card-item .card-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.cards .card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cards .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cards .image-wrapper img {
  border-radius: 1rem;
}

/*--------------------------------------------------------------
# Cards 2 Section
--------------------------------------------------------------*/
.cards-2 .card-item {
  background-color: color-mix(in srgb, var(--accent-color), var(--background-color) 95%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cards-2 .card-item.active,
.cards-2 .card-item:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards-2 .card-item.active h3,
.cards-2 .card-item.active .icon,
.cards-2 .card-item.active .read-more,
.cards-2 .card-item:hover h3,
.cards-2 .card-item:hover .icon,
.cards-2 .card-item:hover .read-more {
  color: var(--contrast-color);
}

.cards-2 .card-item.active .read-more:hover,
.cards-2 .card-item:hover .read-more:hover {
  color: var(--contrast-color);
}

.cards-2 .card-item:hover {
  transform: translateY(-5px);
}

.cards-2 .card-item .icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cards-2 .card-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards-2 .card-item .img-wrapper {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}

.cards-2 .card-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-2 .card-item .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.cards-2 .card-item .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cards-2 .card-item .read-more i {
  margin-left: 5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cards 3 Section
--------------------------------------------------------------*/
.cards-3 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.cards-3 .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.cards-3 .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cards-3 .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.cards-3 .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Cards 4 Section
--------------------------------------------------------------*/
.cards-4 .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.cards-4 .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.cards-4 .why-box p {
  margin-bottom: 30px;
}

.cards-4 .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.cards-4 .why-box .more-btn i {
  font-size: 14px;
}

.cards-4 .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.cards-4 .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards-4 .icon-box i {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.cards-4 .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.cards-4 .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cards-4 .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Cards 5 Section
--------------------------------------------------------------*/
.cards-5 .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards-5 .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards-5 .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards-5 .card-item h4 a {
  color: var(--heading-color);
}

.cards-5 .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards-5 .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards-5 .card-item:hover span,
.cards-5 .card-item:hover h4 a,
.cards-5 .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Cards 6 Section
--------------------------------------------------------------*/
.cards-6 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
}

.cards-6 .card .img {
  position: relative;
  padding: 20px 20px 0 20px;
}

.cards-6 .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.cards-6 .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards-6 .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.cards-6 .card h2 a {
  color: var(--heading-color);
}

.cards-6 .card h2 a:hover {
  color: var(--accent-color);
}

.cards-6 .card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
}

/*--------------------------------------------------------------
# Cards 7 Section
--------------------------------------------------------------*/
.cards-7 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards-7 .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards-7 .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards-7 .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Cards 8 Section
--------------------------------------------------------------*/
.cards-8 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.cards-8 .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.cards-8 .card .card-img img {
  transition: 0.3s ease-in-out;
}

.cards-8 .card h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.cards-8 .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.cards-8 .card a:hover {
  color: var(--accent-color);
}

.cards-8 .card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.cards-8 .card .stars i {
  color: #ffc107;
}

.cards-8 .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
  font-size: 15px;
}

.cards-8 .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Cards 9 Section
--------------------------------------------------------------*/
.cards-9 .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.cards-9 .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

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

.cards-9 .card-item .card-body {
  padding: 30px;
}

.cards-9 .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.cards-9 .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Cards 10 Section
--------------------------------------------------------------*/
.cards-10 .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.cards-10 .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.cards-10 .card .card-img img {
  transition: 0.3s ease-in-out;
}

.cards-10 .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.cards-10 .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.cards-10 .card a:hover {
  color: var(--accent-color);
}

.cards-10 .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.cards-10 .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Cards 11 Section
--------------------------------------------------------------*/
.cards-11 .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.cards-11 .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

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

.cards-11 .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.cards-11 .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.cards-11 .card .card-body h3 a {
  color: var(--contrast-color);
}

.cards-11 .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.cards-11 .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.cards-11 .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team-2 .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team-2 .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team-2 .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team-2 .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team-2 .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team-2 .team-member .member-info {
  padding: 25px 15px;
}

.team-2 .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team-2 .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-2 .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Team 3 Section
--------------------------------------------------------------*/
.team-3 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team-3 .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team-3 .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team-3 .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team-3 .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team-3 .team-member .social a:hover {
  color: var(--default-color);
}

.team-3 .team-member .social i {
  font-size: 18px;
}

.team-3 .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team-3 .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-3 .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team-3 .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team-3 .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team-3 .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Team 4 Section
--------------------------------------------------------------*/
.team-4 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team-4 .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team-4 .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-4 .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team-4 .team-member:hover {
  transform: translateY(-10px);
}

.team-4 .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team-4 .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team-4 .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-4 .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team-4 .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team-4 .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team-4 .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team-4 .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team-4 .team-member .social {
    justify-content: center;
  }
}

.team-4 .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team-4 .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team-4 .team-member .social a:hover {
  background: var(--accent-color);
}

.team-4 .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team-4 .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Team 5 Section
--------------------------------------------------------------*/
.team-5 .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team-5 .member img {
  margin: -1px -1px 30px -1px;
}

.team-5 .member .member-content {
  padding: 0 20px 30px 20px;
}

.team-5 .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team-5 .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team-5 .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-5 .member .social {
  margin-top: 15px;
}

.team-5 .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team-5 .member .social a:hover {
  color: var(--accent-color);
}

.team-5 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Team 6 Section
--------------------------------------------------------------*/
.team-6 {
  --default-color: #ffffff;
}

.team-6 .member {
  text-align: center;
  position: relative;
  height: 100%;
}

.team-6 .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team-6 .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

.team-6 .member:hover .member-info {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: 0.4s;
}

.team-6 .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team-6 .member h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team-6 .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team-6 .member .social {
  margin-top: 15px;
}

.team-6 .member .social a {
  transition: 0.3s;
  color: var(--default-color);
}

.team-6 .member .social a:hover {
  color: var(--accent-color);
}

.team-6 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Team 7 Section
--------------------------------------------------------------*/
.team-7 .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team-7 .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team-7 .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-7 .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-7 .team-member .social a i {
  line-height: 0;
}

.team-7 .team-member .social a:hover {
  color: var(--accent-color);
}

.team-7 .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-7 .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team-7 .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team-7 .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-7 .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-7 .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team 8 Section
--------------------------------------------------------------*/
.team-8 {
  --default-color: #ffffff;
}

.team-8 .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-8 .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team-8 .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team-8 .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team-8 .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team-8 .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.team-8 .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 10px;
  display: inline-block;
}

.team-8 .member .social a:hover {
  color: var(--default-color);
}

.team-8 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-8 .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team-8 .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.team-8 .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Team 9 Section
--------------------------------------------------------------*/
.team-9 .member {
  position: relative;
}

.team-9 .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team-9 .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team-9 .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team-9 .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team-9 .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team-9 .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team-9 .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team-9 .member .social a:hover {
  color: var(--accent-color);
}

.team-9 .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Team 10 Section
--------------------------------------------------------------*/
.team-10 {
  --default-color: #ffffff;
}

.team-10 .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-10 .member .member-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team-10 .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team-10 .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team-10 .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team-10 .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.team-10 .member .social a {
  transition: color 0.3s;
  display: block;
  color: var(--default-color);
  margin-top: 15px;
}

.team-10 .member .social a:hover {
  color: var(--accent-color);
}

.team-10 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-10 .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team-10 .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team-10 .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Team 11 Section
--------------------------------------------------------------*/
.team-11 {
  --default-color: #ffffff;
}

.team-11 .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-11 .member .member-info {
  position: absolute;
  padding: 15px 0;
  inset: auto 0 -44px 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.4s;
}

.team-11 .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}

.team-11 .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team-11 .member .social {
  text-align: center;
  padding-top: 10px;
}

.team-11 .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 4px;
  display: inline-block;
}

.team-11 .member .social a:hover {
  color: var(--default-color);
}

.team-11 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-11 .member:hover .member-info {
  bottom: 0;
}

/*--------------------------------------------------------------
# Team 12 Section
--------------------------------------------------------------*/
.team-12 .member {
  position: relative;
}

.team-12 .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team-12 .member .member-img {
    margin: 0 60px;
  }
}

.team-12 .member .member-img img {
  position: relative;
  z-index: 1;
}

.team-12 .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team-12 .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team-12 .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team-12 .member .member-info {
  margin-top: 30px;
}

.team-12 .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team-12 .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team-12 .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team-12 .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Team 13 Section
--------------------------------------------------------------*/
.team-13 .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.team-13 .member img {
  border-radius: 15px;
  overflow: hidden;
}

.team-13 .member .member-content {
  padding: 0 20px 30px 20px;
}

.team-13 .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team-13 .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-13 .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team-13 .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team-13 .member .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.team-13 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Team 14 Section
--------------------------------------------------------------*/
.team-14 .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team-14 .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-14 .team-member .social a {
  transition: color 0.3s;
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team-14 .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team-14 .team-member .social a:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.team-14 .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-14 .team-member .member-info {
  background-color: var(--surface-color);
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team-14 .team-member .member-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
}

.team-14 .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team-14 .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team-14 .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team 15 Section
--------------------------------------------------------------*/
.team-15 .team h3 {
  font-size: 20px;
}

.team-15 .team h3 a {
  color: var(--heading-color);
}

.team-15 .team .pic {
  margin-bottom: 30px;
}

.team-15 .team .pic img {
  border-radius: 4px;
}

.team-15 .team .position {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.team-15 p {
  line-height: 1.7;
  color: var(--default-color);
}

.team-15 .more {
  position: relative;
  padding-right: 30px;
  display: inline-block;
}

.team-15 .more span {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: transparent;
  color: var(--contrast-color);
  line-height: 1.6;
  text-align: center;
  transition: 0.3s all ease;
}

.team-15 .more span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-15 .more:hover {
  color: var(--contrast-color);
}

.team-15 .more:hover span {
  background: var(--accent-color);
}

.team-15 .more.dark {
  color: var(--default-color);
}

.team-15 .more.dark>span {
  color: var(--default-color);
}

.team-15 .more.dark:hover {
  color: var(--accent-color);
}

.team-15 .more.dark:hover span {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team-15 .swiper-wrapper {
  height: auto;
}

.team-15 .slider-nav a {
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--accent-color);
  border-radius: 4px;
  transition: 0.2s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-15 .slider-nav a i {
  color: var(--contrast-color);
}

.team-15 .slider-nav a:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.team-15 .slider-nav a:first-child {
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Team 16 Section
--------------------------------------------------------------*/
.team-16 .person {
  position: relative;
}

.team-16 .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team-16 .person img {
  transition: 0.3s all ease;
}

.team-16 .person .person-contents {
  text-align: center;
}

.team-16 .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}

.team-16 .person .person-contents .position {
  color: var(--accent-color);
}

.team-16 .person:hover img {
  transform: scale(1.05);
}

.team-16 .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.team-16 .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}

.team-16 .person .social a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-16 .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials-2 .swiper-wrapper {
  height: auto;
}

.testimonials-2 .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials-2 .testimonial-item {
    padding: 20px;
  }
}

.testimonials-2 .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials-2 .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials-2 .testimonial-item .profile {
  gap: 15px;
}

.testimonials-2 .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-2 .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials-2 .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials-2 .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-2 .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials-2 .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials-2 .swiper-button-prev,
.testimonials-2 .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials-2 .swiper-button-prev::after,
.testimonials-2 .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials-2 .swiper-button-prev:hover,
.testimonials-2 .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials-2 .swiper-button-prev:hover::after,
.testimonials-2 .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Testimonials 3 Section
--------------------------------------------------------------*/
.testimonials-3 .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials-3 .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials-3 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-3 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials-3 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-3 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials-3 .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials-3 .swiper-wrapper {
  height: auto;
}

.testimonials-3 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-3 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials-3 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials-3 .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials-3 .swiper-slide-active {
    opacity: 1;
  }

  .testimonials-3 .swiper-pagination {
    margin-top: 0;
  }

  .testimonials-3 .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials-3 .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Testimonials 4 Section
--------------------------------------------------------------*/
.testimonials-4 .section-header {
  margin-bottom: 40px;
}

.testimonials-4 .testimonials-carousel,
.testimonials-4 .testimonials-slider {
  overflow: hidden;
}

.testimonials-4 .testimonial-item {
  text-align: center;
}

.testimonials-4 .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials-4 .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-4 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials-4 .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials-4 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-4 .testimonial-item .quote-icon-left,
.testimonials-4 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-4 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-4 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-4 .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials-4 .swiper-wrapper {
  height: auto;
}

.testimonials-4 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-4 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials-4 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials-4 .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Testimonials 5 Section
--------------------------------------------------------------*/
.testimonials-5 .testimonials-carousel,
.testimonials-5 .testimonials-slider {
  overflow: hidden;
}

.testimonials-5 .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials-5 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials-5 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-5 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials-5 .testimonial-item .quote-icon-left,
.testimonials-5 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-5 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-5 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-5 .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials-5 .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials-5 .swiper-wrapper {
  height: auto;
}

.testimonials-5 .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials-5 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials-5 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials 6 Section
--------------------------------------------------------------*/
.testimonials-6 {
  padding: 80px 0;
  position: relative;
}

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

.testimonials-6 .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials-6 .container {
  position: relative;
  z-index: 3;
}

.testimonials-6 .testimonials-carousel,
.testimonials-6 .testimonials-slider {
  overflow: hidden;
}

.testimonials-6 .testimonial-item {
  text-align: center;
}

.testimonials-6 .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials-6 .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-6 .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials-6 .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials-6 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-6 .testimonial-item .quote-icon-left,
.testimonials-6 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-6 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-6 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-6 .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials-6 .swiper-wrapper {
  height: auto;
}

.testimonials-6 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-6 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials-6 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials-6 .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Testimonials 7 Section
--------------------------------------------------------------*/
.testimonials-7 .testimonial-wrap {
  padding-left: 50px;
}

.testimonials-7 .testimonials-carousel,
.testimonials-7 .testimonials-slider {
  overflow: hidden;
}

.testimonials-7 .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials-7 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials-7 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-7 .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials-7 .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials-7 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-7 .testimonial-item .quote-icon-left,
.testimonials-7 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-7 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-7 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-7 .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials-7 .swiper-wrapper {
  height: auto;
}

.testimonials-7 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-7 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials-7 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials-7 .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials-7 .testimonials-carousel,
  .testimonials-7 .testimonials-slider {
    overflow: hidden;
  }

  .testimonials-7 .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials-7 .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Testimonials 8 Section
--------------------------------------------------------------*/
.testimonials-8 .testimonials-carousel,
.testimonials-8 .testimonials-slider {
  overflow: hidden;
}

.testimonials-8 .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials-8 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials-8 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials-8 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials-8 .testimonial-item .quote-icon-left,
.testimonials-8 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-8 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-8 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-8 .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials-8 .swiper-wrapper {
  height: auto;
}

.testimonials-8 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-8 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials-8 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials 9 Section
--------------------------------------------------------------*/
.testimonials-9 .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials-9 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials-9 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-9 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials-9 .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials-9 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-9 .testimonial-item .quote-icon-left,
.testimonials-9 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-9 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-9 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-9 .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials 10 Section
--------------------------------------------------------------*/
.testimonials-10 .testimonials-carousel,
.testimonials-10 .testimonials-slider {
  overflow: hidden;
}

.testimonials-10 .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials-10 .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials-10 .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-10 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials-10 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-10 .testimonial-item .quote-icon-left,
.testimonials-10 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-10 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-10 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-10 .testimonial-item p {
  font-style: italic;
}

.testimonials-10 .swiper-wrapper {
  height: auto;
}

.testimonials-10 .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials-10 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials-10 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials 11 Section
--------------------------------------------------------------*/
.testimonials-11 .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials-11 .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials-11 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-11 .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials-11 .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials-11 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-11 .testimonial-item .quote-icon-left,
.testimonials-11 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-11 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-11 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-11 .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials-11 .swiper-wrapper {
  height: auto;
}

.testimonials-11 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials-11 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials-11 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials-11 .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials-11 .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials-11 .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Testimonials 12 Section
--------------------------------------------------------------*/
.testimonials-12 .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials-12 .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials-12 .testimonials-carousel,
.testimonials-12 .testimonials-slider {
  overflow: hidden;
}

.testimonials-12 .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials-12 .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials-12 .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-12 .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials-12 .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials-12 .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials-12 .testimonial-item .quote-icon-left,
.testimonials-12 .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-12 .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-12 .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-12 .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials-12 .swiper-wrapper {
  height: auto;
}

.testimonials-12 .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials-12 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials-12 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials-12 .testimonials-carousel,
  .testimonials-12 .testimonials-slider {
    overflow: hidden;
  }

  .testimonials-12 .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials 13 Section
--------------------------------------------------------------*/
.testimonials-13 p {
  line-height: 1.7;
  color: var(--default-color);
}

.testimonials-13 .testimonial {
  max-width: 500px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-13 .testimonial .name {
  font-size: 18px;
  color: var(--heading-color);
}

.testimonials-13 .testimonial .img-wrap img {
  margin: 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonials-13 .swiper-pagination {
  position: absolute;
  bottom: 0px;
}

.testimonials-13 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
  opacity: 0.3;
}

.testimonials-13 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials 14 Section
--------------------------------------------------------------*/
.testimonials-14 .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonials-14 .testimonial blockquote p {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials-14 .testimonial .client-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/
.portfolio-2 .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio-2 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio-2 .portfolio-filters li:hover,
.portfolio-2 .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio-2 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-2 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-2 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-2 .portfolio-item {
  position: relative;
}

.portfolio-2 .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio-2 .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio-2 .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio-2 .portfolio-item .portfolio-info .preview-link,
.portfolio-2 .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio-2 .portfolio-item .portfolio-info .preview-link:hover,
.portfolio-2 .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio-2 .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio-2 .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio 3 Section
--------------------------------------------------------------*/
.portfolio-3 .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio-3 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio-3 .portfolio-filters li:hover,
.portfolio-3 .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio-3 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-3 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-3 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-3 .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio-3 .portfolio-content img {
  transition: 0.3s;
}

.portfolio-3 .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio-3 .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio-3 .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-3 .portfolio-content .portfolio-info .preview-link,
.portfolio-3 .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio-3 .portfolio-content .portfolio-info .preview-link:hover,
.portfolio-3 .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio-3 .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio-3 .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio-3 .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio 4 Section
--------------------------------------------------------------*/
.portfolio-4 .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio-4 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio-4 .portfolio-filters li:hover,
.portfolio-4 .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio-4 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-4 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-4 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-4 .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio-4 .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio-4 .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio-4 .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio-4 .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio-4 .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio-4 .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio-4 .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio 5 Section
--------------------------------------------------------------*/
.portfolio-5 .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio-5 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio-5 .portfolio-filters li:hover,
.portfolio-5 .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio-5 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-5 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-5 .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio-5 .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-5 .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio-5 .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio-5 .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio-5 .portfolio-item .portfolio-info .preview-link,
.portfolio-5 .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio-5 .portfolio-item .portfolio-info .preview-link:hover,
.portfolio-5 .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio-5 .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio-5 .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio 6 Section
--------------------------------------------------------------*/
.portfolio-6 .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio-6 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio-6 .portfolio-filters li:hover,
.portfolio-6 .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio-6 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-6 .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio-6 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-6 .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio-6 .portfolio-content img {
  transition: 0.3s;
}

.portfolio-6 .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio-6 .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio-6 .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-6 .portfolio-content .portfolio-info .preview-link,
.portfolio-6 .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio-6 .portfolio-content .portfolio-info .preview-link:hover,
.portfolio-6 .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio-6 .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio-6 .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio-6 .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio 7 Section
--------------------------------------------------------------*/
.portfolio-7 .portfolio-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.portfolio-7 .portfolio-info p {
  font-size: 15px;
}

.portfolio-7 .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
}

.portfolio-7 .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio-7 .portfolio-filters li:hover,
.portfolio-7 .portfolio-filters li.filter-active {
  border-bottom: 2px solid var(--default-color);
  padding-bottom: 3px;
}

.portfolio-7 .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio-7 .portfolio-filters li:last-child {
  margin-right: 5px;
}

@media (max-width: 575px) {
  .portfolio-7 .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio-7 .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio-7 .portfolio-content img {
  transition: 0.3s;
}

.portfolio-7 .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portfolio-7 .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  mask-border: 0;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
}

.portfolio-7 .portfolio-content .portfolio-info p {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-7 .portfolio-content .portfolio-info .preview-link,
.portfolio-7 .portfolio-content .portfolio-info .details-link {
  font-size: 26px;
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio-7 .portfolio-content .portfolio-info .preview-link:hover,
.portfolio-7 .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio-7 .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio-7 .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio-7 .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details 2 Section
--------------------------------------------------------------*/
.portfolio-details-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details-2 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details-2 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details-2 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details-2 .portfolio-description p {
  padding: 0;
}

.portfolio-details-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details-2 .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details-2 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details-2 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Portfolio Details 3 Section
--------------------------------------------------------------*/
.portfolio-details-3 .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details-3 .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details-3 .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details-3 .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details-3 .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details-3 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details-3 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details-3 .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details-3 .portfolio-description {
  padding-top: 30px;
}

.portfolio-details-3 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details-3 .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Portfolio Details 4 Section
--------------------------------------------------------------*/
.portfolio-details-4 .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details-4 .swiper-wrapper {
  height: auto;
}

.portfolio-details-4 .swiper-button-prev,
.portfolio-details-4 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details-4 .swiper-button-prev:after,
.portfolio-details-4 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details-4 .swiper-button-prev:hover:after,
.portfolio-details-4 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details-4 .swiper-button-prev,
  .portfolio-details-4 .swiper-button-next {
    display: none;
  }
}

.portfolio-details-4 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details-4 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details-4 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details-4 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details-4 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details-4 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details-4 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details-4 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details-4 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details-4 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details-4 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details-4 .portfolio-description p {
  padding: 0;
}

.portfolio-details-4 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details-4 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details-4 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details-4 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details-4 .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details-4 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details-4 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details-4 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details-4 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Pricing 2 Section
--------------------------------------------------------------*/
.pricing-2 {
  --basic-plan-color: #45B7D1;
  --standard-plan-color: #ee8d1e;
  --pro-plan-color: #b4194a;
  --enterprise-plan-color: #7367F0;
}

.pricing-2 .pricing-cards {
  perspective: 1000px;
}

.pricing-2 .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-2 .pricing-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-2 .pricing-card.basic {
  border-top: 5px solid var(--basic-plan-color);
}

.pricing-2 .pricing-card.basic .icon-wrapper {
  background-color: var(--basic-plan-color);
}

.pricing-2 .pricing-card.standard {
  border-top: 5px solid var(--standard-plan-color);
}

.pricing-2 .pricing-card.standard .icon-wrapper {
  background-color: var(--standard-plan-color);
}

.pricing-2 .pricing-card.pro {
  border-top: 5px solid var(--pro-plan-color);
}

.pricing-2 .pricing-card.pro .icon-wrapper {
  background-color: var(--pro-plan-color);
}

.pricing-2 .pricing-card.enterprise {
  border-top: 5px solid var(--enterprise-plan-color);
}

.pricing-2 .pricing-card.enterprise .icon-wrapper {
  background-color: var(--enterprise-plan-color);
}

.pricing-2 .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing-2 .pricing-card .pricing-header .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
}

.pricing-2 .pricing-card .pricing-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.pricing-2 .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.pricing-2 .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing-2 .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-2 .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  font-weight: 400;
  margin-left: -4px;
}

.pricing-2 .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-2 .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.pricing-2 .pricing-card .features-list li i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing-2 .pricing-card .features-list li i.bi-check-lg {
  color: #4CAF50;
}

.pricing-2 .pricing-card .features-list li i.bi-x-lg {
  color: #F44336;
}

.pricing-2 .pricing-card .btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-2 .pricing-card .btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing-2 .pricing-card .btn-custom:hover::before {
  width: 100%;
}

.pricing-2 .pricing-card.basic .btn-custom {
  background-color: var(--basic-plan-color);
}

.pricing-2 .pricing-card.standard .btn-custom {
  background-color: var(--standard-plan-color);
}

.pricing-2 .pricing-card.pro .btn-custom {
  background-color: var(--pro-plan-color);
}

.pricing-2 .pricing-card.enterprise .btn-custom {
  background-color: var(--enterprise-plan-color);
}

@media (max-width: 991.98px) {
  .pricing-2 .pricing-card {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Pricing 3 Section
--------------------------------------------------------------*/
.pricing-3 .pricing-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-3 .pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-3 .pricing-card.featured {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 2px solid var(--accent-color);
}

.pricing-3 .pricing-card.featured .pricing-header h3 {
  color: var(--accent-color);
}

.pricing-3 .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-3 .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.pricing-3 .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.pricing-3 .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-3 .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  font-weight: 400;
  margin-left: -4px;
  color: var(--default-color);
  opacity: 0.7;
}

.pricing-3 .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-3 .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pricing-3 .pricing-card .features-list li i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.pricing-3 .pricing-card .features-list li.disabled {
  opacity: 0.5;
}

.pricing-3 .pricing-card .features-list li.disabled i {
  color: var(--default-color);
}

.pricing-3 .pricing-card .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.pricing-3 .pricing-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

/*--------------------------------------------------------------
# Pricing 4 Section
--------------------------------------------------------------*/
.pricing-4 .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing-4 .pricing-tem:hover {
    transform: scale(1.1);
  }
}

.pricing-4 h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing-4 .price {
  font-size: 36px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing-4 .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing-4 .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing-4 .icon {
  padding: 20px 0;
}

.pricing-4 .icon i {
  font-size: 48px;
}

.pricing-4 ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing-4 ul li {
  padding-bottom: 10px;
}

.pricing-4 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing-4 .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing-4 .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-4 .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Pricing 5 Section
--------------------------------------------------------------*/
.pricing-5 {
  padding: 60px 0 120px 0;
}

.pricing-5 .section-title {
  margin-bottom: 40px;
}

.pricing-5 .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing-5 h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing-5 .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing-5 .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing-5 .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing-5 .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing-5 h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing-5 h4 sup {
  font-size: 28px;
}

.pricing-5 h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing-5 ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing-5 ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-5 ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing-5 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-5 ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-5 ul .na span {
  text-decoration: line-through;
}

.pricing-5 .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing-5 .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-5 .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing-5 .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Pricing 6 Section
--------------------------------------------------------------*/
.pricing-6 .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing-6 h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing-6 h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing-6 h4 sup {
  font-size: 28px;
}

.pricing-6 h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing-6 ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing-6 ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-6 ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing-6 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-6 ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-6 ul .na span {
  text-decoration: line-through;
}

.pricing-6 .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing-6 .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-6 .featured {
  border-top-color: var(--accent-color);
}

.pricing-6 .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing-6 .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing-6 .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing-6 .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Pricing 7 Section
--------------------------------------------------------------*/
.pricing-7 .pricing-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-7 .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.pricing-7 .pricing-card.featured {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-7 .pricing-card.featured h3,
.pricing-7 .pricing-card.featured .price,
.pricing-7 .pricing-card.featured .price span,
.pricing-7 .pricing-card.featured .feature-list i {
  color: var(--contrast-color);
}

.pricing-7 .pricing-card.featured .btn-pricing {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.pricing-7 .pricing-card.featured .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--contrast-color) 80%, var(--accent-color));
}

.pricing-7 .pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-7 .pricing-card .recommended {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
}

.pricing-7 .pricing-card p {
  font-size: 14px;
  margin-bottom: 25px;
}

.pricing-7 .pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.pricing-7 .pricing-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--default-color);
  display: block;
  margin-top: 5px;
}

.pricing-7 .pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-7 .pricing-card .feature-list li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-7 .pricing-card .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.pricing-7 .pricing-card .btn-pricing {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-7 .pricing-card .btn-pricing i {
  margin-left: 5px;
}

.pricing-7 .pricing-card .btn-pricing:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Pricing 8 Section
--------------------------------------------------------------*/
.pricing-8 .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing-8 .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing-8 .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing-8 .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing-8 .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing-8 .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing-8 .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing-8 .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.pricing-8 .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing-8 .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing-8 .pricing-item .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-8 .recommended .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-8 .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing-8 .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Pricing 9 Section
--------------------------------------------------------------*/
.pricing-9 .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing-9 h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing-9 h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing-9 h4 sup {
  font-size: 28px;
}

.pricing-9 h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing-9 ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing-9 ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-9 ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing-9 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-9 ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-9 ul .na span {
  text-decoration: line-through;
}

.pricing-9 .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing-9 .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-9 .featured {
  z-index: 10;
}

.pricing-9 .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing-9 .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing-9 .featured h3,
.pricing-9 .featured h4,
.pricing-9 .featured h4 span,
.pricing-9 .featured ul,
.pricing-9 .featured ul .na,
.pricing-9 .featured ul i,
.pricing-9 .featured ul .na i {
  color: var(--contrast-color);
}

.pricing-9 .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing-9 .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Pricing 10 Section
--------------------------------------------------------------*/
.pricing-10 .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.pricing-10 .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.pricing-10 .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing-10 .pricing-item h4 sup {
  font-size: 28px;
}

.pricing-10 .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing-10 .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.pricing-10 .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.pricing-10 .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing-10 .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-10 .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-10 .pricing-item ul .na span {
  text-decoration: line-through;
}

.pricing-10 .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.pricing-10 .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing-10 .featured {
  background: var(--accent-color);
}

.pricing-10 .featured h3,
.pricing-10 .featured h4,
.pricing-10 .featured h4 span,
.pricing-10 .featured ul,
.pricing-10 .featured ul .na,
.pricing-10 .featured ul i,
.pricing-10 .featured ul .na i {
  color: var(--contrast-color);
}

.pricing-10 .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing-10 .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Pricing 11 Section
--------------------------------------------------------------*/
.pricing-11 .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing-11 .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing-11 .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing-11 .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing-11 .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing-11 .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing-11 .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing-11 .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing-11 .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing-11 .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing-11 .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing-11 .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing-11 .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing-11 .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Pricing 12 Section
--------------------------------------------------------------*/
.pricing-12 .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing-12 h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing-12 h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing-12 h4 sup {
  font-size: 28px;
}

.pricing-12 h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing-12 .description {
  font-size: 14px;
}

.pricing-12 .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing-12 .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing-12 ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing-12 ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-12 ul li:last-child {
  padding-bottom: 0;
}

.pricing-12 ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing-12 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-12 ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-12 ul .na span {
  text-decoration: line-through;
}

.pricing-12 .featured {
  position: relative;
}

.pricing-12 .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing-12 .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing-12 .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing-12 .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing-12 .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Pricing 13 Section
--------------------------------------------------------------*/
.pricing-13 .pricing-item {
  background-color: var(--backgroun-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  overflow: hidden;
}

.pricing-13 .pricing-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("../img/pricing-bg.jpg") center center;
  background-size: cover;
  text-align: center;
  padding: 40px;
  margin: -60px -40px 0;
}

.pricing-13 h3 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 36px;
  color: var(--contrast-color);
}

.pricing-13 h4 {
  font-size: 48px;
  color: var(--contrast-color);
  font-weight: 400;
  margin-bottom: 0;
}

.pricing-13 h4 sup {
  font-size: 28px;
}

.pricing-13 h4 span {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 24px;
}

.pricing-13 ul {
  padding: 30px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing-13 ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-13 ul i {
  color: var(--accent-color);
  font-size: 36px;
  padding-right: 3px;
  line-height: 0;
}

.pricing-13 ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-13 ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 24px;
  padding-left: 4px;
}

.pricing-13 ul .na span {
  text-decoration: line-through;
}

.pricing-13 .buy-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  color: var(--default-color);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid var(--default-color);
}

.pricing-13 .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing-13 .featured {
  border-color: var(--accent-color);
}

.pricing-13 .featured .pricing-header {
  background: linear-gradient(color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 20%)), url("../img/pricing-bg.jpg") center center;
}

.pricing-13 .featured .buy-btn {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action-2 .content h2,
.call-to-action-2 .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-2 .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action-2 .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action-2 .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action-2 .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action-2 .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action-2 .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action-2 .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-2 .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action-2 .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action-2 .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action-2 .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action-2 .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action-2 .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action-2 .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action-2 .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-2 .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action-2 .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action-2 .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action-2 .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action-2 .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Call To Action 3 Section
--------------------------------------------------------------*/
.call-to-action-3 .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action-3 .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .call-to-action-3 .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.call-to-action-3 .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-to-action-3 .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.call-to-action-3 .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.call-to-action-3 .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.call-to-action-3 .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action-3 .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .call-to-action-3 .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .call-to-action-3 .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .call-to-action-3 .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Call To Action 4 Section
--------------------------------------------------------------*/
.call-to-action-4 {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-4 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-4:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-4 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-4 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action-4 p {
  color: var(--default-color);
}

.call-to-action-4 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-4 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 5 Section
--------------------------------------------------------------*/
.call-to-action-5 {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action-5 img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action-5:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-5 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-5 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-5 p {
  color: var(--default-color);
}

.call-to-action-5 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-5 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 6 Section
--------------------------------------------------------------*/
.call-to-action-6 {
  --background-color: none;
}

.call-to-action-6 .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 15px);
}

.call-to-action-6 .container img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action-6 .container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action-6 .container .content {
  position: relative;
  z-index: 3;
}

.call-to-action-6 h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action-6 p {
  color: var(--default-color);
  margin-bottom: 20px;
}

.call-to-action-6 .pulsating-play-btn {
  display: inline-block;
}

.call-to-action-6 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action-6 .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Call To Action 7 Section
--------------------------------------------------------------*/
.call-to-action-7 {
  padding: 0;
}

.call-to-action-7 .container {
  padding: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action-7 .container {
    padding: 60px;
  }
}

.call-to-action-7 .content h3 {
  font-size: 48px;
  font-weight: 700;
}

.call-to-action-7 .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

.call-to-action-7 .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  z-index: -1;
}

.call-to-action-7 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
  font-size: 18px;
}

.call-to-action-7 .content .cta-btn {
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: var(--accent-color);
}

.call-to-action-7 .content .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.call-to-action-7 .img {
  position: relative;
}

.call-to-action-7 .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-radius: 15px;
  transform: rotate(6deg);
  z-index: 2;
}

.call-to-action-7 .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}

.call-to-action-7 .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
}

/*--------------------------------------------------------------
# Call To Action 8 Section
--------------------------------------------------------------*/
.call-to-action-8 .content {
  padding: 20px 0;
}

.call-to-action-8 .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.call-to-action-8 .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  background: var(--surface-color);
  border-radius: 0;
}

.call-to-action-8 .content .form-subscribe input[type=email] {
  height: 63px !important;
  color: var(--default-color);
}

.call-to-action-8 .content .form-subscribe input[type=email]:focus {
  box-shadow: none;
}

.call-to-action-8 .content .form-subscribe input[type=email]::placeholder {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action-8 .content .loading,
.call-to-action-8 .content .error-message,
.call-to-action-8 .content .sent-message {
  margin-top: 15px;
}

.call-to-action-8 .content .btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 0;
}

.call-to-action-8 .content .btn:hover,
.call-to-action-8 .content .btn:active,
.call-to-action-8 .content .btn:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--contrast-color);
  border: 1px solid var(--contrrast-color);
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-2 .content h2 {
  font-weight: 700;
  line-height: 1.2;
}

.contact-2 .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact-2 .contact-info .info-item {
  font-size: 1.1rem;
}

.contact-2 .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.contact-2 .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-2 .contact-info .map-link i {
  transition: transform 0.3s ease;
}

.contact-2 .contact-info .map-link:hover {
  color: var(--accent-color);
}

.contact-2 .contact-info .map-link:hover i {
  transform: translateX(5px);
}

.contact-2 .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.contact-2 .contact-form .form-control,
.contact-2 .contact-form .form-select {
  padding: 0.75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-2 .contact-form .form-control:focus,
.contact-2 .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form .form-control::placeholder,
.contact-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-2 .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.contact-2 .contact-form .btn-submit:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-3 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact-3 .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact-3 .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-3 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact-3 .info-box {
    padding: 1.5rem;
  }
}

.contact-3 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-3 .info-item:last-child {
  margin-bottom: 0;
}

.contact-3 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-3 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-3 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact-3 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-3 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-3 .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-3 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact-3 .contact-form {
    padding: 1.5rem;
  }
}

.contact-3 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-3 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact-3 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact-3 .contact-form .form-control,
.contact-3 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact-3 .contact-form .form-control:focus,
.contact-3 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-3 .contact-form .form-control::placeholder,
.contact-3 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-3 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact-3 .contact-form .btn i {
  font-size: 1.25rem;
}

.contact-3 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact-4 .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact-4 .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact-4 .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact-4 .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact-4 .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact-4 .php-email-form input[type=text],
.contact-4 .php-email-form input[type=email],
.contact-4 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-4 .php-email-form input[type=text]:focus,
.contact-4 .php-email-form input[type=email]:focus,
.contact-4 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-4 .php-email-form input[type=text]::placeholder,
.contact-4 .php-email-form input[type=email]::placeholder,
.contact-4 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-4 .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-4 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 5 Section
--------------------------------------------------------------*/
.contact-5 .info-item+.info-item {
  margin-top: 40px;
}

.contact-5 .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-5 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-5 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-5 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-5 .php-email-form {
  height: 100%;
}

.contact-5 .php-email-form input[type=text],
.contact-5 .php-email-form input[type=email],
.contact-5 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-5 .php-email-form input[type=text]:focus,
.contact-5 .php-email-form input[type=email]:focus,
.contact-5 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-5 .php-email-form input[type=text]::placeholder,
.contact-5 .php-email-form input[type=email]::placeholder,
.contact-5 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-5 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-5 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Contact 6 Section
--------------------------------------------------------------*/
.contact-6 .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact-6 .info-wrap {
    padding: 20px;
  }
}

.contact-6 .info-item {
  margin-bottom: 40px;
}

.contact-6 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-6 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-6 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-6 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-6 .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact-6 .php-email-form {
    padding: 20px;
  }
}

.contact-6 .php-email-form input[type=text],
.contact-6 .php-email-form input[type=email],
.contact-6 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-6 .php-email-form input[type=text]:focus,
.contact-6 .php-email-form input[type=email]:focus,
.contact-6 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-6 .php-email-form input[type=text]::placeholder,
.contact-6 .php-email-form input[type=email]::placeholder,
.contact-6 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-6 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-6 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Contact 7 Section
--------------------------------------------------------------*/
.contact-7 .info-item+.info-item {
  margin-top: 40px;
}

.contact-7 .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-7 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-7 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-7 .php-email-form {
  height: 100%;
}

.contact-7 .php-email-form input[type=text],
.contact-7 .php-email-form input[type=email],
.contact-7 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-7 .php-email-form input[type=text]:focus,
.contact-7 .php-email-form input[type=email]:focus,
.contact-7 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-7 .php-email-form input[type=text]::placeholder,
.contact-7 .php-email-form input[type=email]::placeholder,
.contact-7 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-7 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-7 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 8 Section
--------------------------------------------------------------*/
.contact-8 .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact-8 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact-8 .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-8 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-8 .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact-8 .php-email-form {
    padding: 20px;
  }
}

.contact-8 .php-email-form input[type=text],
.contact-8 .php-email-form input[type=email],
.contact-8 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-8 .php-email-form input[type=text]:focus,
.contact-8 .php-email-form input[type=email]:focus,
.contact-8 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-8 .php-email-form input[type=text]::placeholder,
.contact-8 .php-email-form input[type=email]::placeholder,
.contact-8 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-8 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-8 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 9 Section
--------------------------------------------------------------*/
.contact-9 .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact-9 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact-9 .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-9 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-9 .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact-9 .php-email-form {
    padding: 20px;
  }
}

.contact-9 .php-email-form input[type=text],
.contact-9 .php-email-form input[type=email],
.contact-9 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-9 .php-email-form input[type=text]:focus,
.contact-9 .php-email-form input[type=email]:focus,
.contact-9 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-9 .php-email-form input[type=text]::placeholder,
.contact-9 .php-email-form input[type=email]::placeholder,
.contact-9 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-9 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-9 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 10 Section
--------------------------------------------------------------*/
.contact-10 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact-10 .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact-10 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact-10 .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact-10 .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact-10 .php-email-form {
    padding: 20px;
  }
}

.contact-10 .php-email-form input[type=text],
.contact-10 .php-email-form input[type=email],
.contact-10 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-10 .php-email-form input[type=text]:focus,
.contact-10 .php-email-form input[type=email]:focus,
.contact-10 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-10 .php-email-form input[type=text]::placeholder,
.contact-10 .php-email-form input[type=email]::placeholder,
.contact-10 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-10 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-10 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 11 Section
--------------------------------------------------------------*/
.contact-11 .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.contact-11 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-right: 15px;
}

.contact-11 .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.contact-11 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-11 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-11 .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact-11 .php-email-form {
    padding: 20px;
  }
}

.contact-11 .php-email-form input[type=text],
.contact-11 .php-email-form input[type=email],
.contact-11 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-11 .php-email-form input[type=text]:focus,
.contact-11 .php-email-form input[type=email]:focus,
.contact-11 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-11 .php-email-form input[type=text]::placeholder,
.contact-11 .php-email-form input[type=email]::placeholder,
.contact-11 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-11 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-11 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 12 Section
--------------------------------------------------------------*/
.contact-12 {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact-12 {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact-12:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact-12 .info-item+.info-item {
  margin-top: 40px;
}

.contact-12 .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-12 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-12 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-12 .php-email-form {
  height: 100%;
}

.contact-12 .php-email-form input[type=text],
.contact-12 .php-email-form input[type=email],
.contact-12 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-12 .php-email-form input[type=text]:focus,
.contact-12 .php-email-form input[type=email]:focus,
.contact-12 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-12 .php-email-form input[type=text]::placeholder,
.contact-12 .php-email-form input[type=email]::placeholder,
.contact-12 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-12 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-12 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 13 Section
--------------------------------------------------------------*/
.contact-13 .info-item {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}

.contact-13 .info-item .icon {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}

.contact-13 .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.contact-13 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-13 .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-13 .info-item .social-links a:hover {
  color: var(--accent-color);
}

.contact-13 .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact-13 .php-email-form {
    padding: 20px;
  }
}

.contact-13 .php-email-form input[type=text],
.contact-13 .php-email-form input[type=email],
.contact-13 .php-email-form textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}

.contact-13 .php-email-form input[type=text]:focus,
.contact-13 .php-email-form input[type=email]:focus,
.contact-13 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-13 .php-email-form input[type=text]::placeholder,
.contact-13 .php-email-form input[type=email]::placeholder,
.contact-13 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-13 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-13 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 14 Section
--------------------------------------------------------------*/
.contact-14 .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact-14 .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact-14 .info-item:last-child {
  margin-bottom: 0;
}

.contact-14 .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-14 .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-14 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-14 .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.contact-14 .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact-14 .php-email-form input[type=text],
.contact-14 .php-email-form input[type=email],
.contact-14 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-14 .php-email-form input[type=text]:focus,
.contact-14 .php-email-form input[type=email]:focus,
.contact-14 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-14 .php-email-form input[type=text]::placeholder,
.contact-14 .php-email-form input[type=email]::placeholder,
.contact-14 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-14 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-14 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact 15 Section
--------------------------------------------------------------*/
.contact-15 .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-15 .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact-15 .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-15 .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-15 .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact-15 .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-15 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-15 .php-email-form {
  width: 100%;
}

.contact-15 .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact-15 .php-email-form input[type=text],
.contact-15 .php-email-form input[type=email],
.contact-15 .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-15 .php-email-form input[type=text]:focus,
.contact-15 .php-email-form input[type=email]:focus,
.contact-15 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-15 .php-email-form input[type=text]::placeholder,
.contact-15 .php-email-form input[type=email]::placeholder,
.contact-15 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-15 .php-email-form input[type=text],
.contact-15 .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact-15 .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact-15 .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-15 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq-2 .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq-2 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 3 Section
--------------------------------------------------------------*/
.faq-3 .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq-3 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq-3 .faq-container {
  margin-top: 15px;
}

.faq-3 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-3 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-3 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-3 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-3 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-3 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-3 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-3 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-3 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-3 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-3 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-3 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-3 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 4 Section
--------------------------------------------------------------*/
.faq-4 .faq-container {
  margin-top: 15px;
}

.faq-4 .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-4 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-4 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-4 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-4 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-4 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-4 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-4 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-4 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-4 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-4 .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq-4 .faq-container .faq-active h3,
.faq-4 .faq-container .faq-active h3:hover,
.faq-4 .faq-container .faq-active .faq-toggle,
.faq-4 .faq-container .faq-active .faq-icon,
.faq-4 .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq-4 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-4 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Faq 5 Section
--------------------------------------------------------------*/
.faq-5 .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.faq-5 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-5 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-5 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-5 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-5 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-5 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-5 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-5 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-5 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-5 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-5 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 6 Section
--------------------------------------------------------------*/
.faq-6 .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq-6 .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq-6 .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq-6 .faq-item p {
  font-size: 15px;
}

.faq-6 .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq-6 .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Faq 7 Section
--------------------------------------------------------------*/
.faq-7 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq-7 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-7 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-7 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-7 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-7 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-7 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-7 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-7 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-7 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-7 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-7 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 8 Section
--------------------------------------------------------------*/
.faq-8 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq-8 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-8 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq-8 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-8 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-8 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-8 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-8 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-8 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-8 .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq-8 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-8 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-8 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq 10 Section
--------------------------------------------------------------*/
.faq-10 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq-10 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq-10 p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq-10 .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq-10 .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq-10 .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq-10 .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq-10 .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq-10 .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Stats 2 Section
--------------------------------------------------------------*/
.stats-2 .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-2 .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-2 .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-2 .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Stats 3 Section
--------------------------------------------------------------*/
.stats-3 i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats-3 .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats-3 .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats-3 .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Stats 4 Section
--------------------------------------------------------------*/
.stats-4 .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-4 .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats-4 .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats-4 .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Stats 5 Section
--------------------------------------------------------------*/
.stats-5 .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-5 .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats-5 .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Stats 6 Section
--------------------------------------------------------------*/
.stats-6 .stats-item {
  padding: 10px;
}

.stats-6 .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats-6 .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats-6 .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Stats 7 Section
--------------------------------------------------------------*/
.stats-7 .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-7 .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats-7 .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats-7 .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Stats 8 Section
--------------------------------------------------------------*/
.stats-8 {
  position: relative;
  padding: 120px 0;
}

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

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

.stats-8 .container {
  position: relative;
  z-index: 3;
}

.stats-8 .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-8 .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats-8 .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Stats 9 Section
--------------------------------------------------------------*/
.stats-9 .stats-item {
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.stats-9 .stats-item .purecounter {
  color: var(--heading-color);
  min-width: 90px;
  padding-right: 15px;
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats-9 .stats-item i {
  color: var(--accent-color);
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-9 .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Stats 10 Section
--------------------------------------------------------------*/
.stats-10 {
  padding-top: 60px;
}

.stats-10 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.stats-10 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

.stats-10 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.stats-10 p {
  line-height: 1.7;
  color: var(--default-color);
}

.stats-10 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.stats-10 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.stats-10 .count-numbers .number {
  font-size: 1.8rem;
  color: var(--heading-color);
  position: relative;
  display: block;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.stats-10 .count-numbers .number:after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  color: var(--heading-color);
  background-color: var(--surface-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link:hover {
  color: var(--contrast-color);
}

.tabs .nav-link:hover::before {
  left: 0;
}

.tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.tabs .tab-content-inner {
  height: 100%;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
}

.tabs .tab-content-inner h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 24px;
  position: relative;
  margin-bottom: 20px;
}

.tabs .tab-content-inner ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-content-inner ul li {
  padding-top: 10px;
}

.tabs .tab-content-inner ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-content-inner p:last-child {
  margin-bottom: 0;
}

.tabs .tab-content-inner .benefits-list {
  display: grid;
  gap: 1.5rem;
  margin: 1.4rem 0;
}

.tabs .tab-content-inner .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tabs .tab-content-inner .benefits-list .benefit-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.tabs .tab-content-inner .benefits-list .benefit-item h4 {
  margin: 0;
  font-size: 1.1rem;
}

.tabs .tab-content-inner .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 2.5rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.tabs .tab-content-inner .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.tabs .tab-content-inner .btn-cta i {
  transition: transform 0.3s ease;
}

.tabs .tab-content-inner .btn-cta:hover i {
  transform: translateX(5px);
}

.tabs .image-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Tabs 2 Section
--------------------------------------------------------------*/
.tabs-2 .nav-tabs {
  border: 0;
}

.tabs-2 .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.tabs-2 .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs-2 .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs-2 .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs-2 .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.tabs-2 .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .tabs-2 .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs-2 .nav-link {
    padding: 15px;
  }

  .tabs-2 .nav-link i {
    font-size: 24px;
  }
}

.tabs-2 .tab-content {
  margin-top: 30px;
}

.tabs-2 .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs-2 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-2 .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs-2 .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs-2 .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Tabs 3 Section
--------------------------------------------------------------*/
.tabs-3 .nav-tabs {
  border: 0;
}

.tabs-3 .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tabs-3 .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs-3 .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .tabs-3 .nav-link h4 {
    font-size: 16px;
  }
}

.tabs-3 .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.tabs-3 .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs-3 .tab-content {
  margin-top: 30px;
}

.tabs-3 .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tabs-3 .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tabs-3 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-3 .tab-pane ul li {
  padding-top: 10px;
}

.tabs-3 .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs-3 .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Tabs 4 Section
--------------------------------------------------------------*/
.tabs-4 {
  overflow: hidden;
  padding-top: 0;
}

.tabs-4 .nav-tabs {
  border: 0;
}

.tabs-4 .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs-4 .nav-link:hover {
  color: var(--accent-color);
}

.tabs-4 .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.tabs-4 .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs-4 .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs-4 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs-4 .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs-4 .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs-4 .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Tabs 5 Section
--------------------------------------------------------------*/
.tabs-5 .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.tabs-5 .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.tabs-5 .nav-item:last-child {
  padding-right: 0;
}

.tabs-5 .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .tabs-5 .nav-link {
    padding: 8px 20px;
  }
}

.tabs-5 .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs-5 .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.tabs-5 .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.tabs-5 .nav-link:hover h4 {
  color: var(--accent-color);
}

.tabs-5 .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs-5 .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs-5 .tab-content {
  margin-top: 30px;
}

.tabs-5 .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tabs-5 .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.tabs-5 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-5 .tab-pane ul li {
  padding-top: 10px;
}

.tabs-5 .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs-5 .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Tabs 6 Section
--------------------------------------------------------------*/
.tabs-6 .nav-tabs {
  border: 0;
}

.tabs-6 .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.tabs-6 .nav-item:last-child {
  margin-bottom: 0;
}

.tabs-6 .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.tabs-6 .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabs-6 .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.tabs-6 .nav-link p {
  font-size: 15px;
  margin: 0;
}

.tabs-6 .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.tabs-6 .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.tabs-6 .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Tabs 7 Section
--------------------------------------------------------------*/
.tabs-7 .nav-tabs {
  border: 0;
}

.tabs-7 .nav-link {
  background-color: var(--surface-color);
  color: var(--color-secondary);
  border: 0;
  padding: 25px 20px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.tabs-7 .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.tabs-7 .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.tabs-7 .nav-link:hover {
  color: var(--accent-color);
}

.tabs-7 .nav-link:hover,
.tabs-7 .nav-link.active {
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color) !important;
  border-color: var(--accent-color);
}

.tabs-7 .nav-link:hover h4,
.tabs-7 .nav-link.active h4 {
  color: var(--contrast-color);
}

.tabs-7 .nav-link:hover i,
.tabs-7 .nav-link.active i {
  color: var(--contrast-color) !important;
}

.tabs-7 .tab-content {
  margin-top: 30px;
}

.tabs-7 .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs-7 .tab-pane h3 {
  font-weight: 600;
  font-size: 28px;
}

.tabs-7 .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs-7 .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs-7 .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--accent-color);
}

.tabs-7 .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Tabs 8 Section
--------------------------------------------------------------*/
.tabs-8 .service-item .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 4px;
  position: relative;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  margin-right: 20px;
  font-size: 16px;
}

.tabs-8 .service-item .service-contents h3 {
  font-size: 16px;
  color: var(--heading-color);
}

.tabs-8 .service-item.link {
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 7px;
}

.tabs-8 .service-item.link .service-contents {
  color: var(--default-color);
}

.tabs-8 .service-item.link .service-contents *:last-child {
  margin-bottom: 0;
}

.tabs-8 .service-item.link:hover {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.tabs-8 .service-item.link:hover .service-icon {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
}

.tabs-8 .service-item.link.active {
  background: var(--surface-color);
}

.tabs-8 .service-item.link.active .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-card {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.recent-posts .post-card:hover {
  transform: translateY(-5px);
}

.recent-posts .post-card .post-image {
  position: relative;
  overflow: hidden;
}

.recent-posts .post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-posts .post-card .post-image:hover img {
  transform: scale(1.05);
}

.recent-posts .post-card .post-content {
  padding: 1.5rem;
}

.recent-posts .post-card .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.recent-posts .post-card .post-meta div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recent-posts .post-card .post-meta i {
  color: var(--accent-color);
  font-size: 1rem;
}

.recent-posts .post-card .post-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.recent-posts .post-card .post-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
}

.recent-posts .post-card .post-title a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.recent-posts .post-card .post-title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-card .post-excerpt {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.875rem;
}

.recent-posts .post-card .read-more {
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.recent-posts .post-card .read-more:after {
  content: "\f285";
  font-family: "bootstrap-icons";
  transition: transform 0.3s ease;
}

.recent-posts .post-card .read-more:hover:after {
  transform: translateX(5px);
}

.recent-posts .post-card.post-card-large .post-image {
  max-height: 400px;
}

.recent-posts .post-card.post-card-large .post-title {
  font-size: 1.75rem;
}

.recent-posts .post-card.post-card-large .post-excerpt {
  font-size: 1rem;
}

.recent-posts .post-card.post-card-large .post-content {
  padding: 2rem;
}

.recent-posts .post-card.post-card-horizontal .post-image {
  height: 100%;
}

.recent-posts .post-card.post-card-horizontal .post-content {
  padding: 1.25rem;
}

.recent-posts .post-card.post-card-horizontal .post-meta {
  gap: 1rem;
}

.recent-posts .post-card.post-card-horizontal .post-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.recent-posts .post-card.post-card-horizontal .post-excerpt {
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .recent-posts .post-card.post-card-horizontal .post-image {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .recent-posts .post-card-horizontal .row {
    flex-direction: column;
  }

  .recent-posts .post-card-horizontal .post-content {
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Recent Posts 2 Section
--------------------------------------------------------------*/
.recent-posts-2 .card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  background-color: var(--surface-color);
}

.recent-posts-2 .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.recent-posts-2 .card .card-top {
  padding: 1rem;
}

.recent-posts-2 .card .card-top img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.recent-posts-2 .card .card-top .author-name {
  font-size: 0.9rem;
  color: var(--heading-color);
}

.recent-posts-2 .card .card-top .likes {
  font-size: 0.9rem;
  color: var(--accent-color);
}

.recent-posts-2 .card .card-top .likes i {
  margin-right: 0.25rem;
}

.recent-posts-2 .card .card-img-wrapper {
  overflow: hidden;
  max-height: 250px;
}

.recent-posts-2 .card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.recent-posts-2 .card .card-body {
  padding: 1.5rem;
}

.recent-posts-2 .card .card-body .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.recent-posts-2 .card .card-body .card-title a {
  color: inherit;
}

.recent-posts-2 .card .card-body .card-title:hover {
  color: var(--accent-color);
}

.recent-posts-2 .card .card-body .card-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Recent Posts 3 Section
--------------------------------------------------------------*/
.recent-posts-3 article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts-3 .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts-3 .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts-3 .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts-3 .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts-3 .title a:hover {
  color: var(--accent-color);
}

.recent-posts-3 .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts-3 .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-3 .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Recent Posts 4 Section
--------------------------------------------------------------*/
.recent-posts-4 .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts-4 .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts-4 .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts-4 .post-item .post-content {
  padding: 30px;
}

.recent-posts-4 .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts-4 .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts-4 .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts-4 .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts-4 .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts-4 .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts-4 .post-item:hover .post-title,
.recent-posts-4 .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts-4 .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Recent Posts 5 Section
--------------------------------------------------------------*/
.recent-posts-5 .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
}

.recent-posts-5 .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts-5 .post-item .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 600;
}

.recent-posts-5 .post-item .post-content {
  padding: 30px;
}

.recent-posts-5 .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.recent-posts-5 .post-item .readmore {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
  text-decoration: underline;
  padding-bottom: 5px;
}

.recent-posts-5 .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts-5 .post-item:hover .post-title,
.recent-posts-5 .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts-5 .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Recent Posts 6 Section
--------------------------------------------------------------*/
.recent-posts-6 .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts-6 .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts-6 .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts-6 .post-box .meta {
  margin-top: 15px;
}

.recent-posts-6 .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-posts-6 .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts-6 .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts-6 .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts-6 .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts-6 .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts-6 .post-box:hover .post-title {
  color: var(--accent-color);
}

.recent-posts-6 .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .nav-tabs {
  border: 0;
}

.resume .nav-link {
  color: var(--heading-color);
  background-color: var(--surface-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.resume .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: inherit;
}

.resume .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.resume .nav-link:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.resume .nav-link:hover::before {
  left: 0;
}

.resume .nav-link.active {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.resume .timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.resume .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.resume .timeline-item {
  position: relative;
  padding-left: 45px;
  margin-bottom: 50px;
}

.resume .timeline-item:last-child {
  margin-bottom: 0;
}

.resume .timeline-marker {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
}

.resume .timeline-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 12px;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.resume .timeline-content {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.resume .timeline-date {
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.resume .timeline-date i {
  margin-right: 8px;
}

.resume h3 {
  font-size: 1.25rem;
  margin: 0 0 5px;
  font-weight: 600;
}

.resume h4 {
  font-size: 1rem;
  margin: 0 0 15px;
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
  font-weight: 500;
}

.resume p {
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .resume .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .resume .timeline-item {
    padding-left: 0;
    margin-bottom: 65px;
    width: 50%;
  }

  .resume .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 45px;
  }

  .resume .timeline-item:nth-child(even) .timeline-marker {
    left: -15px;
  }

  .resume .timeline-item:nth-child(even) .timeline-marker::before {
    width: 30px;
  }

  .resume .timeline-item:nth-child(odd) {
    padding-right: 45px;
  }

  .resume .timeline-item:nth-child(odd) .timeline-marker {
    right: -15px;
    left: auto;
  }

  .resume .timeline-item:nth-child(odd) .timeline-marker::before {
    width: 30px;
    left: auto;
    right: 100%;
  }
}

/*--------------------------------------------------------------
# Resume 2 Section
--------------------------------------------------------------*/
.resume-2 .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.resume-2 .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.resume-2 .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.resume-2 .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.resume-2 .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.resume-2 .resume-wrapper .timeline {
  position: relative;
}

.resume-2 .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.resume-2 .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.resume-2 .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px;
}

.resume-2 .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .resume-2 .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .resume-2 .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .resume-2 .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .resume-2 .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .resume-2 .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px);
  }

  .resume-2 .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Resume 3 Section
--------------------------------------------------------------*/
.resume-3 .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume-3 .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume-3 .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume-3 .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume-3 .resume-item ul {
  padding-left: 20px;
}

.resume-3 .resume-item ul li {
  padding-bottom: 10px;
}

.resume-3 .resume-item:last-child {
  padding-bottom: 0;
}

.resume-3 .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-2 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-2 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 {
  overflow: hidden;
}

.gallery-3 .swiper-wrapper {
  height: auto;
}

.gallery-3 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-3 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery-3 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery-3 .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery-3 .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery-3 .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Gallery 4 Section
--------------------------------------------------------------*/
.gallery-4 {
  overflow: hidden;
}

.gallery-4 .swiper-wrapper {
  height: auto;
}

.gallery-4 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-4 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery-4 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery-4 .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery-4 .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery-4 .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Gallery 5 Section
--------------------------------------------------------------*/
.gallery-5 .container-fluid {
  margin-bottom: 3px;
}

.gallery-5 .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.gallery-5 .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery-5 .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.gallery-5 .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .gallery-5 .venue-info h3 {
    font-size: 24px;
  }
}

.gallery-5 .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.gallery-5 .venue-gallery-container {
  padding-right: 12px;
}

.gallery-5 .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-5 .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

.gallery-5 .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Courses 2 Section
--------------------------------------------------------------*/
.courses-2 h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-2 h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-2 h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-2 .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-2 .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-2 .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-2 .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Catalog Section
--------------------------------------------------------------*/
.catalog .catalog-item {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
  position: relative;
}

.catalog .catalog-item img {
  transition: 0.3s;
}

.catalog .catalog-item .catalog-info {
  padding: 25px 20px;
  background-color: var(--surface-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.catalog .catalog-item .catalog-info h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  padding-right: 50px;
}

.catalog .catalog-item .catalog-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.catalog .catalog-item .catalog-info h4 a:hover {
  color: var(--accent-color);
}

.catalog .catalog-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Catalog 2 Section
--------------------------------------------------------------*/
.catalog-2 .catalog-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catalog-2 .catalog-nav li {
  display: flex;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 10px;
  position: relative;
  transition: 0.3s;
  border-radius: 4px;
}

.catalog-2 .catalog-nav li+li {
  margin-top: 10px;
}

.catalog-2 .catalog-nav li i {
  margin-right: 6px;
  line-height: 18px;
  color: var(--accent-color);
}

.catalog-2 .catalog-nav li a {
  color: var(--heading-color);
  font-size: 15px;
  line-height: 18px;
}

.catalog-2 .catalog-nav li:hover {
  border-color: var(--accent-color);
}

.catalog-2 .catalog-nav li.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.catalog-2 .catalog-nav li.active a,
.catalog-2 .catalog-nav li.active i {
  color: var(--contrast-color);
}

.catalog-2 .content h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.catalog-2 .content ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
}

.catalog-2 .content ul li {
  padding-bottom: 10px;
  display: flex;
}

.catalog-2 .content ul i {
  font-size: 20px;
  padding-right: 8px;
  color: var(--accent-color);
  line-height: 20px;
}

.catalog-2 .content ul span {
  line-height: 20px;
  font-size: 15px;
}

.catalog-2 .content p:last-child {
  margin-bottom: 0;
}

.catalog-2 .catalog-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.catalog-2 .catalog-item img {
  transition: all ease-in-out 0.4s;
}

.catalog-2 .catalog-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.events .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.events .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 100px;
}

@media (max-width: 991px) {
  .events .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  .events .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  .events .nav-tabs a {
    padding: 8px 30px;
  }
}

.events .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  .events .sub-heading {
    width: 75%;
  }
}

.events .tab-pane {
  transition: ease-in-out 0.2s;
}

.events .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

.events .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

.events .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

.events .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.events .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.events .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: normal;
  font-size: 16px;
}

.events .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Events 2 Section
--------------------------------------------------------------*/
.events-2 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events-2 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-2 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-2 .card-body {
  z-index: 10;
  background: var(--background-color);
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-2 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-2 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-2 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events-2 .card:hover img {
  transform: scale(1.1);
}

.events-2 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-2 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Events 3 Section
--------------------------------------------------------------*/
.events-3 .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events-3 .details .social {
  margin-bottom: 15px;
}

.events-3 .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events-3 .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events-3 .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events-3 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .content {
  padding: 30px 0;
}

.get-a-quote .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-a-quote .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.get-a-quote .content p {
  font-size: 14px;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Get A Quote 2 Section
--------------------------------------------------------------*/
.get-a-quote-2 .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote-2 .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote-2 .php-email-form {
    padding: 20px;
  }
}

.get-a-quote-2 .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote-2 .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote-2 .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote-2 .php-email-form input[type=text],
.get-a-quote-2 .php-email-form input[type=email],
.get-a-quote-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote-2 .php-email-form input[type=text]:focus,
.get-a-quote-2 .php-email-form input[type=email]:focus,
.get-a-quote-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote-2 .php-email-form input[type=text]::placeholder,
.get-a-quote-2 .php-email-form input[type=email]::placeholder,
.get-a-quote-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote-2 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 4px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu .menu-filters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
  position: relative;
}

.menu .menu-img {
  width: 80px;
  border-radius: 50%;
  float: left;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
  margin-left: 95px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  color: var(--heading-color);
  background: var(--background-color);
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-content span {
  background: var(--background-color);
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Menu 2 Section
--------------------------------------------------------------*/
.menu-2 .nav-tabs {
  border: 0;
}

.menu-2 .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .menu-2 .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu-2 .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu-2 .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .menu-2 .nav-link h4 {
    font-size: 16px;
  }
}

.menu-2 .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu-2 .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu-2 .tab-content .tab-header {
  padding: 30px 0;
}

.menu-2 .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu-2 .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--default-color);
}

.menu-2 .tab-content .menu-item {
  text-align-last: center;
}

.menu-2 .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu-2 .tab-content .menu-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.menu-2 .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.menu-2 .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills .skill-box p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
  background-color: var(--accent-color);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px;
}

/*--------------------------------------------------------------
# Skills 2 Section
--------------------------------------------------------------*/
.skills-2 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills-2 .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills-2 .content p:last-child {
  margin-bottom: 0;
}

.skills-2 .content ul {
  list-style: none;
  padding: 0;
}

.skills-2 .content ul li {
  padding-bottom: 10px;
}

.skills-2 .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills-2 .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills-2 .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills-2 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills-2 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Skills 3 Section
--------------------------------------------------------------*/
.skills-3 .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills-3 .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills-3 .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills-3 .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills-3 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Skills 4 Section
--------------------------------------------------------------*/
.skills-4 .progress {
  height: 35px;
  margin-bottom: 10px;
  border-radius: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.skills-4 .progress .skill {
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

.skills-4 .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

.skills-4 .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider .img-bg {
  min-height: 500px;
  position: relative;
}

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

.slider .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.slider h3 {
  font-size: 24px;
  font-weight: 700;
}

.slider h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.slider .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.slider .swiper-wrapper {
  height: auto;
}

.slider .swiper-button-prev:after,
.slider .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider .swiper-button-prev {
  left: 80px;
}

.slider .swiper-button-next {
  right: 80px;
}

.slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .slider .swiper {
    margin: 60px 60px 40px 60px;
  }

  .slider .swiper-button-prev,
  .slider .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .slider .swiper {
    margin: 40px 40px 20px 40px;
  }
}

/*--------------------------------------------------------------
# Slider 2 Section
--------------------------------------------------------------*/
.slider-2 .container-fluid {
  padding: 0;
}

.slider-2 .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .slider-2 .event-item {
    min-height: 500px;
  }
}

.slider-2 .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.slider-2 .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  position: relative;
}

.slider-2 .event-item .price {
  color: #ffffff;
  border-bottom: 2px solid var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.slider-2 .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.slider-2 .swiper-wrapper {
  height: auto;
}

.slider-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Slider 3 Section
--------------------------------------------------------------*/
.slider-3 {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.slider-3 .slider-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.slider-3 .section-title h2 {
  color: #ffffff;
}

.slider-3 .container {
  position: relative;
  z-index: 3;
}

.slider-3 .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.slider-3 .event-item .price {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.slider-3 .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

.slider-3 .event-item ul {
  list-style: none;
  padding: 0;
}

.slider-3 .event-item ul li {
  padding-bottom: 10px;
}

.slider-3 .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.slider-3 .event-item p:last-child {
  margin-bottom: 0;
}

.slider-3 .swiper-wrapper {
  height: auto;
}

.slider-3 .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.slider-3 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.slider-3 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Slider 4 Section
--------------------------------------------------------------*/
.slider-4 {
  overflow: visible;
  margin-bottom: 200px;
}

.slider-4 .section-title {
  text-align: left;
}

.slider-4 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.slider-4 .section-title p {
  color: var(--contrast-color);
}

.slider-4 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.slider-4 .swiper-wrapper {
  height: auto;
}

.slider-4 .service-item {
  position: relative;
  overflow: hidden;
}

.slider-4 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.slider-4 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.slider-4 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.slider-4 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.slider-4 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.slider-4 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.slider-4 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.slider-4 .service-item:hover img {
  transform: scale(1.2);
}

.slider-4 .navigation-prev,
.slider-4 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.slider-4 .navigation-prev i,
.slider-4 .navigation-next i {
  font-size: 2rem;
}

.slider-4 .navigation-prev:hover,
.slider-4 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.slider-4 .navigation-prev {
  left: 10px;
}

.slider-4 .navigation-next {
  right: 10px;
}

.slider-4 .swiper {
  padding-bottom: 50px;
}

.slider-4 .swiper-pagination {
  bottom: 0px;
}

.slider-4 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.slider-4 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Slider 5 Section
--------------------------------------------------------------*/
.slider-5 {
  background-color: transparent;
}

.slider-5 .swiper-wrapper {
  height: auto !important;
}

.slider-5 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

.slider-5 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.slider-5 .swiper-slide {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-5 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
}

@media (max-width: 575px) {
  .slider-5 .swiper-slide {
    min-height: 300px;
  }
}

.slider-5 .swiper-button-prev:after,
.slider-5 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.slider-5 .content {
  padding: 60px 80px;
  max-width: 700px;
  position: relative;
}

.slider-5 .content a,
.slider-5 .content h2,
.slider-5 .content p {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts-2 .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts-2 .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog-posts-2 .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts-2 .title a:hover {
  color: var(--accent-color);
}

.blog-posts-2 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts-2 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts-2 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts-2 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts-2 .content {
  margin-top: 20px;
}

.blog-posts-2 .read-more a {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts-2 .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts 3 Section
--------------------------------------------------------------*/
.blog-posts-3 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts-3 .post-img img {
  transition: 0.5s;
}

.blog-posts-3 .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts-3 .post-content {
  padding: 30px;
}

.blog-posts-3 .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts-3 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts-3 .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-3 p {
  margin-top: 20px;
}

.blog-posts-3 hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts-3 .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-3 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts-3 article:hover .post-title,
.blog-posts-3 article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts-3 article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Posts 4 Section
--------------------------------------------------------------*/
.blog-posts-4 article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts-4 .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts-4 .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts-4 .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts-4 .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts-4 .title a:hover {
  color: var(--accent-color);
}

.blog-posts-4 .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts-4 .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts-4 .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Posts 5 Section
--------------------------------------------------------------*/
.blog-posts-5 article {
  height: 100%;
}

.blog-posts-5 .post-img {
  max-height: 440px;
  overflow: hidden;
}

.blog-posts-5 .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 5px 0;
}

.blog-posts-5 .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts-5 .title a:hover {
  color: var(--accent-color);
}

.blog-posts-5 .meta-top {
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-5 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts-5 .meta-top i {
  font-size: 24px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.blog-posts-5 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

/*--------------------------------------------------------------
# Blog Posts 6 Section
--------------------------------------------------------------*/
.blog-posts-6 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts-6 .post-img img {
  transition: 0.5s;
}

.blog-posts-6 .post-content {
  padding: 30px;
}

.blog-posts-6 .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts-6 .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts-6 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts-6 .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-6 .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts-6 .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts-6 .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-6 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts-6 article:hover .post-title,
.blog-posts-6 article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts-6 article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Posts 7 Section
--------------------------------------------------------------*/
.blog-posts-7 .post-entry {
  margin-bottom: 30px;
}

.blog-posts-7 .post-entry img {
  margin-bottom: 30px;
}

.blog-posts-7 .post-entry h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.blog-posts-7 .post-entry h2 a {
  color: var(--heading-color);
}

.blog-posts-7 .post-entry h2 a:hover {
  text-decoration: underline;
}

.blog-posts-7 .post-entry.lg h2 {
  font-size: 40px;
  line-height: 1;
}

.blog-posts-7 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.blog-posts-7 .custom-border {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

@media (max-width: 768px) {
  .blog-posts-7 .custom-border {
    border: none !important;
  }
}

.blog-posts-7 .author .photo {
  margin-right: 10px;
}

.blog-posts-7 .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.blog-posts-7 .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.blog-posts-7 .trending {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-posts-7 .trending>h3 {
  color: var(--default-color);
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-posts-7 .trending .trending-post {
  padding: 0;
  margin: 0;
}

.blog-posts-7 .trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.blog-posts-7 .trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.blog-posts-7 .trending .trending-post li a .number {
  position: absolute;
  z-index: 1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.blog-posts-7 .trending .trending-post li a h3 {
  font-size: 18px;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-posts-7 .trending .trending-post li a .author {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
}

.blog-posts-7 .trending .trending-post li a:hover h3 {
  color: var(--default-color);
  text-decoration: underline;
}

.blog-posts-7 .trending .trending-post li:last-child a {
  border-bottom: none;
}

/*--------------------------------------------------------------
# Blog Posts 8 Section
--------------------------------------------------------------*/
.blog-posts-8 .post-entry {
  margin-bottom: 30px;
}

.blog-posts-8 .post-entry h3 a {
  color: var(--heading-color);
  font-weight: 600;
}

.blog-posts-8 .post-entry h3 a:hover {
  text-decoration: underline;
}

.blog-posts-8 .post-entry .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .blog-posts-8 .post-entry .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.blog-posts-8 .post-entry.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .blog-posts-8 .post-entry.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.blog-posts-8 .post-entry.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .blog-posts-8 .post-entry.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.blog-posts-8 .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.blog-posts-8 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.blog-posts-8 .author .photo {
  margin-right: 10px;
}

.blog-posts-8 .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.blog-posts-8 .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.blog-posts-8 .post-list {
  margin-bottom: 30px;
}

.blog-posts-8 .post-list img {
  margin-bottom: 30px;
}

.blog-posts-8 .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.blog-posts-8 .post-list h2 a {
  color: var(--heading-color);
}

.blog-posts-8 .post-list h2 a:hover {
  text-decoration: underline;
}

.blog-posts-8 .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}

/*--------------------------------------------------------------
# Blog Posts 9 Section
--------------------------------------------------------------*/
.blog-posts-9 .post-entry {
  margin-bottom: 30px;
}

.blog-posts-9 .post-entry h3 a {
  color: var(--heading-color);
  font-weight: 600;
}

.blog-posts-9 .post-entry h3 a:hover {
  text-decoration: underline;
}

.blog-posts-9 .post-entry .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .blog-posts-9 .post-entry .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.blog-posts-9 .post-entry.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .blog-posts-9 .post-entry.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.blog-posts-9 .post-entry.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .blog-posts-9 .post-entry.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.blog-posts-9 .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.blog-posts-9 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.blog-posts-9 .author .photo {
  margin-right: 10px;
}

.blog-posts-9 .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.blog-posts-9 .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.blog-posts-9 .post-list {
  margin-bottom: 30px;
}

.blog-posts-9 .post-list img {
  margin-bottom: 30px;
}

.blog-posts-9 .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.blog-posts-9 .post-list h2 a {
  color: var(--heading-color);
}

.blog-posts-9 .post-list h2 a:hover {
  text-decoration: underline;
}

.blog-posts-9 .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}

/*--------------------------------------------------------------
# Blog Posts 10 Section
--------------------------------------------------------------*/
.blog-posts-10 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.blog-posts-10 .author .photo {
  margin-right: 10px;
}

.blog-posts-10 .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.blog-posts-10 .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.blog-posts-10 .custom-border,
.blog-posts-10 .border-bottom {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

.blog-posts-10 .post-list {
  margin-bottom: 30px;
}

.blog-posts-10 .post-list img {
  margin-bottom: 30px;
}

.blog-posts-10 .post-list h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.blog-posts-10 .post-list h2 a {
  color: var(--heading-color);
}

.blog-posts-10 .post-list h2 a:hover {
  text-decoration: underline;
}

.blog-posts-10 .post-list.lg h2 {
  font-size: 40px;
  line-height: 1;
}

/*--------------------------------------------------------------
# Blog Posts 11 Section
--------------------------------------------------------------*/
.blog-posts-11 article {
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.blog-posts-11 article img {
  transition: 0.5s;
}

.blog-posts-11 article .post-date {
  background-color: var(--surface-color);
  color: var(--default-color);
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts-11 article .post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  padding: 20px;
  color: var(--contrast-color);
  text-shadow: 0px 0px 30px var(--default-color);
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  transition: 0.3s;
  margin: 0;
}

.blog-posts-11 article .post-title a {
  color: var(--contrast-color);
}

.blog-posts-11 article .post-title a:hover {
  text-decoration: underline;
}

.blog-posts-11 article:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Posts 12 Section
--------------------------------------------------------------*/
.blog-posts-12 .title-wrap {
  padding-bottom: 30px;
}

.blog-posts-12 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.blog-posts-12 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.blog-posts-12 .post-entry .thumb {
  margin-bottom: 20px;
}

.blog-posts-12 .post-entry .thumb img {
  transition: 0.3s all ease;
}

.blog-posts-12 .post-entry .thumb:hover img {
  opacity: 0.8;
}

.blog-posts-12 .post-entry .meta {
  font-size: 12px;
  margin-bottom: 20px;
}

.blog-posts-12 .post-entry .meta .cat {
  text-transform: uppercase;
  font-weight: normal;
  color: var(--heading-color);
}

.blog-posts-12 .post-entry .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.blog-posts-12 .post-entry .post-content {
  padding-left: 30px;
  padding-right: 30px;
}

.blog-posts-12 .post-entry .post-content h3 {
  font-size: 18px;
  line-height: 1.2;
}

.blog-posts-12 .post-entry .post-content h3 a {
  color: var(--heading-color);
}

.blog-posts-12 .post-entry .post-content h3 a:hover {
  color: var(--accent-color);
}

.blog-posts-12 .author .pic {
  flex: 0 0 50px;
  margin-right: 20px;
}

.blog-posts-12 .author .author-name {
  line-height: 1.3;
}

.blog-posts-12 .author .author-name strong {
  color: var(--heading-color);
  font-weight: normal;
}

.blog-posts-12 .author .author-name span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Pagination 2 Section
--------------------------------------------------------------*/
.blog-pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination-2 li a.active,
.blog-pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination-2 li a.active a,
.blog-pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Real Estate Section
--------------------------------------------------------------*/
.real-estate .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  min-height: 500px;
}

.real-estate .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

.real-estate .card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.real-estate .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.real-estate .card .card-body .sale-rent {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
  padding: 4px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  margin-bottom: 10px;
}

.real-estate .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid var(--accent-color);
}

.real-estate .card .card-body h3 a {
  color: var(--contrast-color);
}

.real-estate .card .card-body .card-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 80px;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  margin-bottom: -80px;
  margin-left: -30px;
  margin-right: -30px;
  transition: 0.3s;
  padding: 0 10px;
}

.real-estate .card .card-body .card-content .propery-info {
  font-weight: 500;
}

.real-estate .card:hover .card-content {
  margin-bottom: -30px;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Real Estate 2 Section
--------------------------------------------------------------*/
.real-estate-2 .portfolio-details-slider img {
  width: 100%;
}

.real-estate-2 .swiper-wrapper {
  height: auto;
}

.real-estate-2 .swiper-button-prev,
.real-estate-2 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.real-estate-2 .swiper-button-prev:after,
.real-estate-2 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.real-estate-2 .swiper-button-prev:hover:after,
.real-estate-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .real-estate-2 .swiper-button-prev,
  .real-estate-2 .swiper-button-next {
    display: none;
  }
}

.real-estate-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.real-estate-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.real-estate-2 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.real-estate-2 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.real-estate-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.real-estate-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.real-estate-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.real-estate-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.real-estate-2 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-2 .portfolio-description p {
  padding: 0;
}

.real-estate-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.real-estate-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.real-estate-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.real-estate-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left,
.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.real-estate-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.real-estate-2 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.real-estate-2 .nav-pills li+li {
  margin-left: 40px;
}

.real-estate-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.real-estate-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .real-estate-2 .nav-link {
    font-size: 16px;
  }
}

.real-estate-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.real-estate-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}