@charset "UTF-8";

/*--------------------------------------------------------------
# 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: "Source Sans Pro",  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: #1a1f24; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #485664; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00974a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #00974a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: rgba(0, 0, 0, 0); /* 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: #00974a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* 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: #eef0f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3a4753;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4f6171;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  --default-color: rgba(0, 0, 0, 0);
  --heading-color: #00974a;
  --accent-color: rgba(0, 0, 0, 0);
  --surface-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
    /* Altura; Espaçamento entre os itens do menu*/
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    /* Tamanho da fonte */
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

  .navmenu .dropdown ul a {
    padding: 2px 20px;
    /*-- altura da caixa + distâcia da borda-- */
    font-size: 14px;
    /*-- tamanho da fonte -- */
    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 {
    color: var(--nav-dropdown-hover-color);
    background-color: #00974a;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 90%;
    /* aqui positivo vai pra direita o dropdown */
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    /* aqui positivo vai pra direita o dropdown */
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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), transparent 80%);
  }

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background-color: #00974a;
    /* aqui muda a cor do fundo hover mouse */
  }

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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: #00974a;
    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: rgb(255, 255, 255);
    transition: 0.3s;
  }

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 10px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0px;
    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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #00974a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #00ffd9;
  --surface-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  /*tranparência do fundo*/
  padding-top: 50px;
}

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

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  /* tamanho da fonte do título */
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  /* tamanho da linha embaixo dos sub-título */
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  /* espaçamento entre as linhas */
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery 4 Section
--------------------------------------------------------------*/
.gallery-4 .container-fluid {
  margin-bottom: 3px;
}

.gallery-4 .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.gallery-4 .venue-info {
  background: url("../img/bg/abstract-bg-9.webp") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery-4 .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.gallery-4 .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .gallery-4 .venue-info h3 {
    font-size: 24px;
  }
}

.gallery-4 .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.gallery-4 .venue-gallery-container {
  padding-right: 12px;
}

.gallery-4 .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-4 .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

.gallery-4 .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Slider 2 Section
--------------------------------------------------------------*/
.slider-2 {
  background-color: transparent;
}

.slider-2 .swiper-wrapper {
  height: auto !important;
}

.slider-2 .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color) 90%, white 15%);
}

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

.slider-2 .swiper-slide {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-2 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 100%);
}

@media (max-width: 575px) {
  .slider-2 .swiper-slide {
    min-height: 300px;
  }
}

.slider-2 .swiper-button-prev:after,
.slider-2 .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
}

.slider-2 .content {
  padding: 60px 80px;
  max-width: 700px;
  position: relative;
}

.slider-2 .content a,
.slider-2 .content h2,
.slider-2 .content p {
  color: var(--default-color);
}

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

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .section-label {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.privacy .section-desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.6;
  margin-bottom: 0;
}

.privacy .policy-header .policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 20px;
}

.privacy .policy-header .policy-badge i {
  font-size: 12px;
}

.privacy .policy-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.privacy .policy-header p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .privacy .policy-header h2 {
    font-size: 28px;
  }
}

.privacy .trust-badges .trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 6px;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.2s ease;
}

.privacy .trust-badges .trust-badge-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .trust-badges .trust-badge-item i {
  font-size: 16px;
  color: var(--accent-color);
}

.privacy .trust-badges .trust-badge-item span {
  font-size: 13px;
  font-weight: 500;
}

.privacy .practices-section .practice-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.2s ease;
}

.privacy .practices-section .practice-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .practices-section .practice-card .practice-card-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy .practices-section .practice-card .practice-card-header i {
  font-size: 20px;
  color: var(--accent-color);
}

.privacy .practices-section .practice-card .practice-card-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.privacy .practices-section .practice-card .practice-card-content {
  padding: 16px 24px 24px;
}

.privacy .practices-section .practice-card .practice-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy .practices-section .practice-card .practice-card-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.privacy .practices-section .practice-card .practice-card-content ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.privacy .practices-section .practice-card .practice-card-content ul li:first-child {
  padding-top: 0;
}

.privacy .practices-section .practice-card .practice-card-content ul li i {
  color: var(--accent-color);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.privacy .security-section .security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.2s ease;
}

.privacy .security-section .security-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .security-section .security-item .security-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .security-section .security-item .security-icon i {
  font-size: 22px;
  color: var(--accent-color);
}

.privacy .security-section .security-item .security-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.privacy .security-section .security-item .security-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.6;
  margin: 0;
}

.privacy .rights-section .rights-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.privacy .rights-section .rights-link:hover {
  gap: 10px;
}

.privacy .rights-section .rights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.privacy .rights-section .rights-list .rights-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .rights-section .rights-list .rights-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.privacy .rights-section .rights-list .rights-list-item:first-child {
  padding-top: 0;
}

.privacy .rights-section .rights-list .rights-list-item .rights-list-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .rights-section .rights-list .rights-list-item .rights-list-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.privacy .rights-section .rights-list .rights-list-item .rights-list-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.privacy .rights-section .rights-list .rights-list-item .rights-list-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.5;
  margin: 0;
}

.privacy .additional-section .additional-card {
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.2s ease;
}

.privacy .additional-section .additional-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .additional-section .additional-card i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
  display: block;
}

.privacy .additional-section .additional-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.privacy .additional-section .additional-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.6;
  margin: 0;
}

.privacy .contact-cta {
  padding: 32px;
  background: var(--accent-color);
  border-radius: 8px;
}

.privacy .contact-cta h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 4px;
}

.privacy .contact-cta p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

.privacy .contact-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.privacy .contact-cta .cta-btn:hover {
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .privacy .contact-cta {
    text-align: center;
  }

  .privacy .contact-cta .cta-btn {
    margin-top: 8px;
  }
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .topic-tile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  text-decoration: none;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.courses .topic-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.courses .topic-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  text-decoration: none;
}

.courses .topic-tile:hover::before {
  opacity: 1;
}

.courses .topic-tile:hover .tile-arrow {
  opacity: 1;
  transform: translateX(0);
}

.courses .topic-tile:hover .tile-icon {
  transform: scale(1.1);
}

.courses .topic-tile .tile-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.courses .topic-tile .tile-icon i {
  font-size: 26px;
  color: var(--contrast-color);
}

.courses .topic-tile .tile-body {
  flex: 1;
}

.courses .topic-tile .tile-body h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-color);
  line-height: 1.3;
}

.courses .topic-tile .tile-body .tile-meta {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.courses .topic-tile .tile-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.courses .topic-tile .tile-arrow i {
  font-size: 18px;
  color: var(--heading-color);
}

.courses .topic-tile.topic-tech .tile-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.courses .topic-tile.topic-tech::before {
  background: #3b82f6;
}

.courses .topic-tile.topic-tech:hover .tile-arrow {
  background: color-mix(in srgb, #3b82f6, transparent 85%);
}

.courses .topic-tile.topic-tech:hover .tile-arrow i {
  color: #1d4ed8;
}

.courses .topic-tile.topic-business .tile-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.courses .topic-tile.topic-business::before {
  background: #10b981;
}

.courses .topic-tile.topic-business:hover .tile-arrow {
  background: color-mix(in srgb, #10b981, transparent 85%);
}

.courses .topic-tile.topic-business:hover .tile-arrow i {
  color: #047857;
}

.courses .topic-tile.topic-design .tile-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.courses .topic-tile.topic-design::before {
  background: #8b5cf6;
}

.courses .topic-tile.topic-design:hover .tile-arrow {
  background: color-mix(in srgb, #8b5cf6, transparent 85%);
}

.courses .topic-tile.topic-design:hover .tile-arrow i {
  color: #6d28d9;
}

.courses .topic-tile.topic-health .tile-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.courses .topic-tile.topic-health::before {
  background: #ef4444;
}

.courses .topic-tile.topic-health:hover .tile-arrow {
  background: color-mix(in srgb, #ef4444, transparent 85%);
}

.courses .topic-tile.topic-health:hover .tile-arrow i {
  color: #dc2626;
}

.courses .topic-tile.topic-language .tile-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.courses .topic-tile.topic-language::before {
  background: #f97316;
}

.courses .topic-tile.topic-language:hover .tile-arrow {
  background: color-mix(in srgb, #f97316, transparent 85%);
}

.courses .topic-tile.topic-language:hover .tile-arrow i {
  color: #ea580c;
}

.courses .topic-tile.topic-science .tile-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.courses .topic-tile.topic-science::before {
  background: #06b6d4;
}

.courses .topic-tile.topic-science:hover .tile-arrow {
  background: color-mix(in srgb, #06b6d4, transparent 85%);
}

.courses .topic-tile.topic-science:hover .tile-arrow i {
  color: #0891b2;
}

.courses .topic-tile.topic-marketing .tile-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.courses .topic-tile.topic-marketing::before {
  background: #ec4899;
}

.courses .topic-tile.topic-marketing:hover .tile-arrow {
  background: color-mix(in srgb, #ec4899, transparent 85%);
}

.courses .topic-tile.topic-marketing:hover .tile-arrow i {
  color: #db2777;
}

.courses .topic-tile.topic-finance .tile-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.courses .topic-tile.topic-finance::before {
  background: #059669;
}

.courses .topic-tile.topic-finance:hover .tile-arrow {
  background: color-mix(in srgb, #059669, transparent 85%);
}

.courses .topic-tile.topic-finance:hover .tile-arrow i {
  color: #047857;
}

.courses .topic-tile.topic-photography .tile-icon {
  background: linear-gradient(135deg, #64748b, #475569);
}

.courses .topic-tile.topic-photography::before {
  background: #64748b;
}

.courses .topic-tile.topic-photography:hover .tile-arrow {
  background: color-mix(in srgb, #64748b, transparent 85%);
}

.courses .topic-tile.topic-photography:hover .tile-arrow i {
  color: #475569;
}

.courses .topic-tile.topic-music .tile-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.courses .topic-tile.topic-music::before {
  background: #7c3aed;
}

.courses .topic-tile.topic-music:hover .tile-arrow {
  background: color-mix(in srgb, #7c3aed, transparent 85%);
}

.courses .topic-tile.topic-music:hover .tile-arrow i {
  color: #5b21b6;
}

.courses .topic-tile.topic-engineering .tile-icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.courses .topic-tile.topic-engineering::before {
  background: #6b7280;
}

.courses .topic-tile.topic-engineering:hover .tile-arrow {
  background: color-mix(in srgb, #6b7280, transparent 85%);
}

.courses .topic-tile.topic-engineering:hover .tile-arrow i {
  color: #4b5563;
}

.courses .topic-tile.topic-law .tile-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.courses .topic-tile.topic-law::before {
  background: #f59e0b;
}

.courses .topic-tile.topic-law:hover .tile-arrow {
  background: color-mix(in srgb, #f59e0b, transparent 85%);
}

.courses .topic-tile.topic-law:hover .tile-arrow i {
  color: #d97706;
}

.courses .topic-tile.topic-culinary .tile-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.courses .topic-tile.topic-culinary::before {
  background: #f43f5e;
}

.courses .topic-tile.topic-culinary:hover .tile-arrow {
  background: color-mix(in srgb, #f43f5e, transparent 85%);
}

.courses .topic-tile.topic-culinary:hover .tile-arrow i {
  color: #e11d48;
}

.courses .topic-tile.topic-sports .tile-icon {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.courses .topic-tile.topic-sports::before {
  background: #84cc16;
}

.courses .topic-tile.topic-sports:hover .tile-arrow {
  background: color-mix(in srgb, #84cc16, transparent 85%);
}

.courses .topic-tile.topic-sports:hover .tile-arrow i {
  color: #65a30d;
}

.courses .topic-tile.topic-writing .tile-icon {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.courses .topic-tile.topic-writing::before {
  background: #6366f1;
}

.courses .topic-tile.topic-writing:hover .tile-arrow {
  background: color-mix(in srgb, #6366f1, transparent 85%);
}

.courses .topic-tile.topic-writing:hover .tile-arrow i {
  color: #4338ca;
}

.courses .topic-tile.topic-psychology .tile-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.courses .topic-tile.topic-psychology::before {
  background: #14b8a6;
}

.courses .topic-tile.topic-psychology:hover .tile-arrow {
  background: color-mix(in srgb, #14b8a6, transparent 85%);
}

.courses .topic-tile.topic-psychology:hover .tile-arrow i {
  color: #0d9488;
}

.courses .topic-tile.topic-environment .tile-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.courses .topic-tile.topic-environment::before {
  background: #22c55e;
}

.courses .topic-tile.topic-environment:hover .tile-arrow {
  background: color-mix(in srgb, #22c55e, transparent 85%);
}

.courses .topic-tile.topic-environment:hover .tile-arrow i {
  color: #16a34a;
}

.courses .topic-tile.topic-communication .tile-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.courses .topic-tile.topic-communication::before {
  background: #0ea5e9;
}

.courses .topic-tile.topic-communication:hover .tile-arrow {
  background: color-mix(in srgb, #0ea5e9, transparent 85%);
}

.courses .topic-tile.topic-communication:hover .tile-arrow i {
  color: #0284c7;
}

@media (max-width: 576px) {
  .courses .topic-tile {
    padding: 18px 20px;
    gap: 16px;
  }

  .courses .topic-tile .tile-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
  }

  .courses .topic-tile .tile-icon i {
    font-size: 22px;
  }

  .courses .topic-tile .tile-body h5 {
    font-size: 15px;
  }

  .courses .topic-tile .tile-body .tile-meta {
    font-size: 12px;
  }

  .courses .topic-tile .tile-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Courses 2 Section
--------------------------------------------------------------*/
.courses-2 {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.courses-2 .subject-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px 28px;
  border-radius: 24px;
  background: var(--surface-color);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 93%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  height: 100%;
  min-height: 170px;
}

.courses-2 .subject-tile:hover {
  transform: translateY(-10px);
  text-decoration: none;
}

.courses-2 .subject-tile:hover .tile-icon-wrap {
  transform: scale(1.14) rotate(-6deg);
}

.courses-2 .subject-tile .tile-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.courses-2 .subject-tile .tile-icon-wrap i {
  font-size: 30px;
  color: var(--contrast-color);
}

.courses-2 .subject-tile h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  transition: color 0.4s ease;
}

.courses-2 .subject-tile .tile-count {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.4s ease;
}

.courses-2 .subject-tile.subject-tech .tile-icon-wrap {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.courses-2 .subject-tile.subject-tech .tile-count {
  color: #3b82f6;
  background: color-mix(in srgb, #3b82f6, transparent 90%);
}

.courses-2 .subject-tile.subject-tech:hover {
  background: color-mix(in srgb, #3b82f6, transparent 95%);
  border-color: color-mix(in srgb, #3b82f6, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #3b82f6, transparent 65%);
}

.courses-2 .subject-tile.subject-tech:hover h5 {
  color: #3b82f6;
}

.courses-2 .subject-tile.subject-business .tile-icon-wrap {
  background: linear-gradient(135deg, #10b981, #047857);
}

.courses-2 .subject-tile.subject-business .tile-count {
  color: #10b981;
  background: color-mix(in srgb, #10b981, transparent 90%);
}

.courses-2 .subject-tile.subject-business:hover {
  background: color-mix(in srgb, #10b981, transparent 95%);
  border-color: color-mix(in srgb, #10b981, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #10b981, transparent 65%);
}

.courses-2 .subject-tile.subject-business:hover h5 {
  color: #10b981;
}

.courses-2 .subject-tile.subject-design .tile-icon-wrap {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.courses-2 .subject-tile.subject-design .tile-count {
  color: #8b5cf6;
  background: color-mix(in srgb, #8b5cf6, transparent 90%);
}

.courses-2 .subject-tile.subject-design:hover {
  background: color-mix(in srgb, #8b5cf6, transparent 95%);
  border-color: color-mix(in srgb, #8b5cf6, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #8b5cf6, transparent 65%);
}

.courses-2 .subject-tile.subject-design:hover h5 {
  color: #8b5cf6;
}

.courses-2 .subject-tile.subject-health .tile-icon-wrap {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.courses-2 .subject-tile.subject-health .tile-count {
  color: #ef4444;
  background: color-mix(in srgb, #ef4444, transparent 90%);
}

.courses-2 .subject-tile.subject-health:hover {
  background: color-mix(in srgb, #ef4444, transparent 95%);
  border-color: color-mix(in srgb, #ef4444, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #ef4444, transparent 65%);
}

.courses-2 .subject-tile.subject-health:hover h5 {
  color: #ef4444;
}

.courses-2 .subject-tile.subject-language .tile-icon-wrap {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.courses-2 .subject-tile.subject-language .tile-count {
  color: #f97316;
  background: color-mix(in srgb, #f97316, transparent 90%);
}

.courses-2 .subject-tile.subject-language:hover {
  background: color-mix(in srgb, #f97316, transparent 95%);
  border-color: color-mix(in srgb, #f97316, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #f97316, transparent 65%);
}

.courses-2 .subject-tile.subject-language:hover h5 {
  color: #f97316;
}

.courses-2 .subject-tile.subject-science .tile-icon-wrap {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.courses-2 .subject-tile.subject-science .tile-count {
  color: #0891b2;
  background: color-mix(in srgb, #06b6d4, transparent 90%);
}

.courses-2 .subject-tile.subject-science:hover {
  background: color-mix(in srgb, #06b6d4, transparent 95%);
  border-color: color-mix(in srgb, #06b6d4, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #06b6d4, transparent 65%);
}

.courses-2 .subject-tile.subject-science:hover h5 {
  color: #0891b2;
}

.courses-2 .subject-tile.subject-marketing .tile-icon-wrap {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.courses-2 .subject-tile.subject-marketing .tile-count {
  color: #ec4899;
  background: color-mix(in srgb, #ec4899, transparent 90%);
}

.courses-2 .subject-tile.subject-marketing:hover {
  background: color-mix(in srgb, #ec4899, transparent 95%);
  border-color: color-mix(in srgb, #ec4899, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #ec4899, transparent 65%);
}

.courses-2 .subject-tile.subject-marketing:hover h5 {
  color: #ec4899;
}

.courses-2 .subject-tile.subject-finance .tile-icon-wrap {
  background: linear-gradient(135deg, #059669, #047857);
}

.courses-2 .subject-tile.subject-finance .tile-count {
  color: #059669;
  background: color-mix(in srgb, #059669, transparent 90%);
}

.courses-2 .subject-tile.subject-finance:hover {
  background: color-mix(in srgb, #059669, transparent 95%);
  border-color: color-mix(in srgb, #059669, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #059669, transparent 65%);
}

.courses-2 .subject-tile.subject-finance:hover h5 {
  color: #059669;
}

.courses-2 .subject-tile.subject-photography .tile-icon-wrap {
  background: linear-gradient(135deg, #64748b, #475569);
}

.courses-2 .subject-tile.subject-photography .tile-count {
  color: #64748b;
  background: color-mix(in srgb, #64748b, transparent 90%);
}

.courses-2 .subject-tile.subject-photography:hover {
  background: color-mix(in srgb, #64748b, transparent 95%);
  border-color: color-mix(in srgb, #64748b, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #64748b, transparent 65%);
}

.courses-2 .subject-tile.subject-photography:hover h5 {
  color: #64748b;
}

.courses-2 .subject-tile.subject-music .tile-icon-wrap {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.courses-2 .subject-tile.subject-music .tile-count {
  color: #7c3aed;
  background: color-mix(in srgb, #7c3aed, transparent 90%);
}

.courses-2 .subject-tile.subject-music:hover {
  background: color-mix(in srgb, #7c3aed, transparent 95%);
  border-color: color-mix(in srgb, #7c3aed, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #7c3aed, transparent 65%);
}

.courses-2 .subject-tile.subject-music:hover h5 {
  color: #7c3aed;
}

.courses-2 .subject-tile.subject-engineering .tile-icon-wrap {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.courses-2 .subject-tile.subject-engineering .tile-count {
  color: #6b7280;
  background: color-mix(in srgb, #6b7280, transparent 90%);
}

.courses-2 .subject-tile.subject-engineering:hover {
  background: color-mix(in srgb, #6b7280, transparent 95%);
  border-color: color-mix(in srgb, #6b7280, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #6b7280, transparent 65%);
}

.courses-2 .subject-tile.subject-engineering:hover h5 {
  color: #6b7280;
}

.courses-2 .subject-tile.subject-law .tile-icon-wrap {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.courses-2 .subject-tile.subject-law .tile-count {
  color: #d97706;
  background: color-mix(in srgb, #f59e0b, transparent 90%);
}

.courses-2 .subject-tile.subject-law:hover {
  background: color-mix(in srgb, #f59e0b, transparent 95%);
  border-color: color-mix(in srgb, #f59e0b, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #f59e0b, transparent 65%);
}

.courses-2 .subject-tile.subject-law:hover h5 {
  color: #d97706;
}

.courses-2 .subject-tile.subject-culinary .tile-icon-wrap {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.courses-2 .subject-tile.subject-culinary .tile-count {
  color: #f43f5e;
  background: color-mix(in srgb, #f43f5e, transparent 90%);
}

.courses-2 .subject-tile.subject-culinary:hover {
  background: color-mix(in srgb, #f43f5e, transparent 95%);
  border-color: color-mix(in srgb, #f43f5e, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #f43f5e, transparent 65%);
}

.courses-2 .subject-tile.subject-culinary:hover h5 {
  color: #f43f5e;
}

.courses-2 .subject-tile.subject-sports .tile-icon-wrap {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.courses-2 .subject-tile.subject-sports .tile-count {
  color: #65a30d;
  background: color-mix(in srgb, #84cc16, transparent 90%);
}

.courses-2 .subject-tile.subject-sports:hover {
  background: color-mix(in srgb, #84cc16, transparent 95%);
  border-color: color-mix(in srgb, #84cc16, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #84cc16, transparent 65%);
}

.courses-2 .subject-tile.subject-sports:hover h5 {
  color: #65a30d;
}

.courses-2 .subject-tile.subject-writing .tile-icon-wrap {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.courses-2 .subject-tile.subject-writing .tile-count {
  color: #6366f1;
  background: color-mix(in srgb, #6366f1, transparent 90%);
}

.courses-2 .subject-tile.subject-writing:hover {
  background: color-mix(in srgb, #6366f1, transparent 95%);
  border-color: color-mix(in srgb, #6366f1, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #6366f1, transparent 65%);
}

.courses-2 .subject-tile.subject-writing:hover h5 {
  color: #6366f1;
}

.courses-2 .subject-tile.subject-psychology .tile-icon-wrap {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.courses-2 .subject-tile.subject-psychology .tile-count {
  color: #0d9488;
  background: color-mix(in srgb, #14b8a6, transparent 90%);
}

.courses-2 .subject-tile.subject-psychology:hover {
  background: color-mix(in srgb, #14b8a6, transparent 95%);
  border-color: color-mix(in srgb, #14b8a6, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #14b8a6, transparent 65%);
}

.courses-2 .subject-tile.subject-psychology:hover h5 {
  color: #0d9488;
}

.courses-2 .subject-tile.subject-environment .tile-icon-wrap {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.courses-2 .subject-tile.subject-environment .tile-count {
  color: #16a34a;
  background: color-mix(in srgb, #22c55e, transparent 90%);
}

.courses-2 .subject-tile.subject-environment:hover {
  background: color-mix(in srgb, #22c55e, transparent 95%);
  border-color: color-mix(in srgb, #22c55e, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #22c55e, transparent 65%);
}

.courses-2 .subject-tile.subject-environment:hover h5 {
  color: #16a34a;
}

.courses-2 .subject-tile.subject-communication .tile-icon-wrap {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.courses-2 .subject-tile.subject-communication .tile-count {
  color: #0284c7;
  background: color-mix(in srgb, #0ea5e9, transparent 90%);
}

.courses-2 .subject-tile.subject-communication:hover {
  background: color-mix(in srgb, #0ea5e9, transparent 95%);
  border-color: color-mix(in srgb, #0ea5e9, transparent 78%);
  box-shadow: 0 20px 48px color-mix(in srgb, #0ea5e9, transparent 65%);
}

.courses-2 .subject-tile.subject-communication:hover h5 {
  color: #0284c7;
}

@media (max-width: 576px) {
  .courses-2 .subject-tile {
    padding: 28px 14px 22px;
    min-height: 150px;
  }

  .courses-2 .subject-tile .tile-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 14px;
  }

  .courses-2 .subject-tile .tile-icon-wrap i {
    font-size: 24px;
  }

  .courses-2 .subject-tile h5 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .courses-2 .subject-tile .tile-count {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/*--------------------------------------------------------------
# Courses 3 Section
--------------------------------------------------------------*/
.courses-3 .category-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.courses-3 .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.courses-3 .category-card .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.courses-3 .category-card .category-icon i {
  font-size: 30px;
  color: var(--contrast-color);
}

.courses-3 .category-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.courses-3 .category-card .course-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.courses-3 .category-card.category-tech .category-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.courses-3 .category-card.category-tech:hover {
  border-color: #3b82f6;
}

.courses-3 .category-card.category-business .category-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.courses-3 .category-card.category-business:hover {
  border-color: #10b981;
}

.courses-3 .category-card.category-design .category-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.courses-3 .category-card.category-design:hover {
  border-color: #8b5cf6;
}

.courses-3 .category-card.category-health .category-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.courses-3 .category-card.category-health:hover {
  border-color: #ef4444;
}

.courses-3 .category-card.category-language .category-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.courses-3 .category-card.category-language:hover {
  border-color: #f97316;
}

.courses-3 .category-card.category-science .category-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.courses-3 .category-card.category-science:hover {
  border-color: #06b6d4;
}

.courses-3 .category-card.category-marketing .category-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.courses-3 .category-card.category-marketing:hover {
  border-color: #ec4899;
}

.courses-3 .category-card.category-finance .category-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.courses-3 .category-card.category-finance:hover {
  border-color: #059669;
}

.courses-3 .category-card.category-photography .category-icon {
  background: linear-gradient(135deg, #64748b, #475569);
}

.courses-3 .category-card.category-photography:hover {
  border-color: #64748b;
}

.courses-3 .category-card.category-music .category-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.courses-3 .category-card.category-music:hover {
  border-color: #7c3aed;
}

.courses-3 .category-card.category-engineering .category-icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.courses-3 .category-card.category-engineering:hover {
  border-color: #6b7280;
}

.courses-3 .category-card.category-law .category-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.courses-3 .category-card.category-law:hover {
  border-color: #f59e0b;
}

.courses-3 .category-card.category-culinary .category-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.courses-3 .category-card.category-culinary:hover {
  border-color: #f43f5e;
}

.courses-3 .category-card.category-sports .category-icon {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.courses-3 .category-card.category-sports:hover {
  border-color: #84cc16;
}

.courses-3 .category-card.category-writing .category-icon {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.courses-3 .category-card.category-writing:hover {
  border-color: #6366f1;
}

.courses-3 .category-card.category-psychology .category-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.courses-3 .category-card.category-psychology:hover {
  border-color: #14b8a6;
}

.courses-3 .category-card.category-environment .category-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.courses-3 .category-card.category-environment:hover {
  border-color: #22c55e;
}

.courses-3 .category-card.category-communication .category-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.courses-3 .category-card.category-communication:hover {
  border-color: #0ea5e9;
}

@media (max-width: 576px) {
  .courses-3 .category-card {
    padding: 20px 15px;
  }

  .courses-3 .category-card .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .courses-3 .category-card .category-icon i {
    font-size: 24px;
  }

  .courses-3 .category-card h5 {
    font-size: 14px;
  }

  .courses-3 .category-card .course-count {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Courses 4 Section
--------------------------------------------------------------*/
.courses-4 .category-item {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.courses-4 .category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.courses-4 .category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  text-decoration: none;
  color: inherit;
}

.courses-4 .category-item:hover::before {
  left: 100%;
}

.courses-4 .category-item:hover .category-arrow i {
  transform: translateX(5px);
}

.courses-4 .category-item .category-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.courses-4 .category-item .category-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.courses-4 .category-item .category-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.courses-4 .category-item .category-info {
  flex: 1;
}

.courses-4 .category-item .category-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.courses-4 .category-item .category-info p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
  line-height: 1.6;
}

.courses-4 .category-item .category-info .course-count {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  display: inline-block;
}

.courses-4 .category-item .category-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.courses-4 .category-item .category-arrow i {
  font-size: 16px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.courses-4 .category-item.category-tech .category-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.courses-4 .category-item.category-tech:hover {
  border-color: #3b82f6;
  box-shadow: 0 15px 40px color-mix(in srgb, #3b82f6, transparent 70%);
}

.courses-4 .category-item.category-business .category-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.courses-4 .category-item.category-business:hover {
  border-color: #10b981;
  box-shadow: 0 15px 40px color-mix(in srgb, #10b981, transparent 70%);
}

.courses-4 .category-item.category-design .category-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.courses-4 .category-item.category-design:hover {
  border-color: #8b5cf6;
  box-shadow: 0 15px 40px color-mix(in srgb, #8b5cf6, transparent 70%);
}

.courses-4 .category-item.category-health .category-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.courses-4 .category-item.category-health:hover {
  border-color: #ef4444;
  box-shadow: 0 15px 40px color-mix(in srgb, #ef4444, transparent 70%);
}

.courses-4 .category-item.category-marketing .category-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.courses-4 .category-item.category-marketing:hover {
  border-color: #ec4899;
  box-shadow: 0 15px 40px color-mix(in srgb, #ec4899, transparent 70%);
}

.courses-4 .category-item.category-engineering .category-icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.courses-4 .category-item.category-engineering:hover {
  border-color: #6b7280;
  box-shadow: 0 15px 40px color-mix(in srgb, #6b7280, transparent 70%);
}

.courses-4 .category-item.category-language .category-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.courses-4 .category-item.category-language:hover {
  border-color: #f97316;
  box-shadow: 0 15px 40px color-mix(in srgb, #f97316, transparent 70%);
}

.courses-4 .category-item.category-finance .category-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.courses-4 .category-item.category-finance:hover {
  border-color: #059669;
  box-shadow: 0 15px 40px color-mix(in srgb, #059669, transparent 70%);
}

@media (max-width: 768px) {
  .courses-4 .category-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .courses-4 .category-item .category-content {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .courses-4 .category-item .category-icon {
    width: 60px;
    height: 60px;
  }

  .courses-4 .category-item .category-icon i {
    font-size: 28px;
  }

  .courses-4 .category-item .category-info h4 {
    font-size: 18px;
  }

  .courses-4 .category-item .category-info p {
    font-size: 13px;
  }

  .courses-4 .category-item .category-arrow {
    width: 35px;
    height: 35px;
  }

  .courses-4 .category-item .category-arrow i {
    font-size: 14px;
  }

  .courses-4 .category-item:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 576px) {
  .courses-4 .category-item {
    padding: 16px;
  }

  .courses-4 .category-item .category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .courses-4 .category-item .category-icon i {
    font-size: 24px;
  }

  .courses-4 .category-item .category-info h4 {
    font-size: 16px;
  }

  .courses-4 .category-item .category-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .courses-4 .category-item .category-info .course-count {
    font-size: 12px;
    padding: 4px 10px;
  }

  .courses-4 .category-item .category-arrow {
    width: 30px;
    height: 30px;
  }

  .courses-4 .category-item .category-arrow i {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Resume 2 Section
--------------------------------------------------------------*/
.resume-2 .resume-side {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.resume-2 .resume-side .profile-img {
  text-align: center;
}

.resume-2 .resume-side .profile-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
}

.resume-2 .resume-side h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume-2 .resume-side .contact-info li {
  margin-bottom: 1rem;
  color: var(--default-color);
}

.resume-2 .resume-side .contact-info li i {
  width: 25px;
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.resume-2 .resume-side .skill-item {
  margin-bottom: 1.5rem;
}

.resume-2 .resume-side .skill-item span {
  font-size: 0.9rem;
  color: var(--default-color);
}

.resume-2 .resume-side .skill-item .progress {
  height: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  margin-top: 0.5rem;
}

.resume-2 .resume-side .skill-item .progress .progress-bar {
  background-color: var(--accent-color);
  width: 0;
  transition: width 1s ease;
}

.resume-2 .resume-section {
  margin-bottom: 3rem;
}

.resume-2 .resume-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume-2 .resume-section h3 i {
  color: var(--accent-color);
}

.resume-2 .resume-section .resume-item {
  padding-left: 1.5rem;
  border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-bottom: 2rem;
  position: relative;
}

.resume-2 .resume-section .resume-item:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -9px;
  top: 0;
  background: var(--accent-color);
}

.resume-2 .resume-section .resume-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.resume-2 .resume-section .resume-item h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.resume-2 .resume-section .resume-item .company {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.resume-2 .resume-section .resume-item .company i {
  margin-right: 0.5rem;
}

.resume-2 .resume-section .resume-item ul {
  padding-left: 1.2rem;
}

.resume-2 .resume-section .resume-item ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.resume-2 .resume-section .resume-item p {
  color: var(--default-color);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .resume-2 .resume-side {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .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 .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item .pulsating-play-btn {
  /* essencial para alinhamento do botão de video na imagem */
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .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 .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 {
  overflow: hidden;
  /* Altura automática */
}

.gallery-2 .swiper-wrapper {
  height: auto;
}

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

.gallery-2 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

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

.gallery-2 .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery-2 .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery-2 .swiper-slide-active {
    background: var(--background-color);
    border: 1px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 0px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --background-color: #b6d7a8;
}

.featured-services .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: 90%;
  width: 400px;
  position: relative;
  z-index: 1;
}

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

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Recent Posts 2 Section
--------------------------------------------------------------*/
.recent-posts-2 .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts-2 .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts-2 .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts-2 .post-box .meta {
  margin-top: 15px;
}

.recent-posts-2 .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-posts-2 .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts-2 .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-2 .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts-2 .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts-2 .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts-2 .post-box .pulsating-play-btn {
  /* essencial para alinhamento do botão de video na imagem */
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 210px);
}

.recent-posts-2 .post-box:hover .post-title {
  color: var(--accent-color);
}

.recent-posts-2 .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Featured Services 2 Section
--------------------------------------------------------------*/
.featured-services-2 {
  --background-color: #93c47d;
}

.featured-services-2 .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: 85%;
  width: 300px;
  position: relative;
  z-index: 1;
}

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

.featured-services-2 .service-item .icon {
  margin-bottom: 10px;
}

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

.featured-services-2 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

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

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

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 1px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .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-2 .info-wrap {
    padding: 20px;
  }
}

.contact-2 .info-item {
  margin-bottom: 40px;
}

.contact-2 .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-2 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact-2 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-2 .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-2 .php-email-form {
    padding: 20px;
  }
}

.contact-2 .php-email-form input[type=text],
.contact-2 .php-email-form input[type=email],
.contact-2 .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-2 .php-email-form input[type=text]:focus,
.contact-2 .php-email-form input[type=email]:focus,
.contact-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

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

.contact-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: 50px;
}

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

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

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

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.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 h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

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

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

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .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 .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .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 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .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 .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 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .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 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

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

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .subtitle {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-3 .title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-3 .description {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-3 .trusted-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-3 .trusted-description {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-3 .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about-3 .feature-list li {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-3 .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.about-3 .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-3 .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-3 .image-grid {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

.about-3 .image-grid img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-3 .image-grid .main-image {
  width: 75%;
  height: 75%;
  top: 0;
  left: 5%;
  object-fit: cover;
  border: 5px solid var(--surface-color);
}

.about-3 .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-3 .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-3 .image-grid {
    margin-bottom: 2rem;
  }

  .about-3 .image-grid .main-image {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .about-3 .image-grid .overlay-image-1 {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 4%;
  }

  .about-3 .image-grid .overlay-image-2 {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 4%;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .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 .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 .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}

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

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

.service-details-2 .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-2 .services-list {
  background-color: var(--surface-color);
}

.service-details-2 .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-2 .services-list a:first-child {
  margin-top: 0;
}

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

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

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

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

.service-details-2 .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-2 .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

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

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

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

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

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

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

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

.service-details-2 h3 {
  font-size: 26px;
  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);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .title-wrap {
  padding-bottom: 30px;
}

.blog-posts .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.blog-posts .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.blog-posts .post-entry .thumb {
  margin-bottom: 20px;
}

.blog-posts .post-entry .thumb img {
  transition: 0.3s all ease;
}

.blog-posts .post-entry .thumb:hover img {
  opacity: 0.8;
}

.blog-posts .post-entry .meta {
  font-size: 12px;
  margin-bottom: 20px;
}

.blog-posts .post-entry .meta .cat {
  text-transform: uppercase;
  font-weight: normal;
  color: var(--heading-color);
}

.blog-posts .post-entry .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.blog-posts .post-entry .post-content {
  padding-left: 30px;
  padding-right: 30px;
}

.blog-posts .post-entry .post-content h3 {
  font-size: 18px;
  line-height: 1.2;
}

.blog-posts .post-entry .post-content h3 a {
  color: var(--heading-color);
}

.blog-posts .post-entry .post-content h3 a:hover {
  color: var(--accent-color);
}

.blog-posts .author .pic {
  flex: 0 0 50px;
  margin-right: 20px;
}

.blog-posts .author .author-name {
  line-height: 1.3;
}

.blog-posts .author .author-name strong {
  color: var(--heading-color);
  font-weight: normal;
}

.blog-posts .author .author-name span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# 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 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-details .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 150px);
}

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

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

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

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

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

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-3 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-3 .gallery-item:hover img {
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

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

.widget-item:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Recent Posts Widget Widget
--------------------------------------------------------------*/
.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Social Media Widget Widget
--------------------------------------------------------------*/
.social-media-widget .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--default-color) 30%, transparent);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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