/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Lato",  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: "Open Sans",  sans-serif;
  --nav-font: "Roboto",  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: #f9f2e8; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #16537e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f77f00; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f77f00; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f77f00; /* 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: #f9f2e8;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px #ccc solid;
}

.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 .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

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

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  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: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 48px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  padding-bottom: 48px;
  /* Overlay */
  /* Content boven overlay leggen */
}

.hero .btn {
  background-color: var(--surface-color);
  color: #fff;
}

.hero .btn.action {
  background-color: var(--accent-color);
}

.hero h1 {
  color: #fff;
  font-weight: 800;
}

.hero p {
  font-weight: 600;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  position: relative;
  background: var(--background-color);
  padding-bottom: 60px;
}

.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about .image-showcase {
  position: relative;
}

.about .main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about .main-image img {
    height: 360px;
  }
}

.about .main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%);
}

.about .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
}

.about .experience-badge .years {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about .experience-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about .floating-card {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-color);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  z-index: 3;
}

@media (max-width: 768px) {
  .about .floating-card {
    right: 16px;
    bottom: -24px;
    padding: 16px 20px;
  }
}

.about .floating-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
}

.about .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about .floating-card .card-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.about .floating-card .card-content span {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content-block {
  padding-left: 16px;
}

@media (max-width: 992px) {
  .about .content-block {
    padding-left: 0;
    padding-top: 32px;
  }
}

.about .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.about .section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 1.875rem;
  }
}

.about .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.about .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.about .feature-item {
  display: flex;
  gap: 20px;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000000 20%) 100%);
  border-radius: 12px;
}

.about .feature-item .feature-icon i {
  font-size: 1.375rem;
  color: var(--contrast-color);
}

.about .feature-item .feature-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.about .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .action-area {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .about .action-area {
    gap: 24px;
  }
}

.about .btn-primary-action {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

.about .contact-info i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 1.125rem;
}

.about .contact-info .info-text span {
  display: block;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}

.about .contact-info .info-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about .stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--accent-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .about .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .stats-banner {
    grid-template-columns: 1fr;
  }
}

.about .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px;
  position: relative;
  transition: background 0.3s ease;
}

.about .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

@media (max-width: 992px) {
  .about .stat-item:not(:last-child)::after {
    display: none;
  }
}

.about .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
}

@media (max-width: 768px) {
  .about .stat-item {
    padding: 24px;
  }
}

.about .stat-item>i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.about .stat-item .stat-content .stat-number,
.about .stat-item .stat-content .stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.about .stat-item .stat-content .stat-text {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin-top: 4px;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 {
  padding: 0;
}

.features-2 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("https://www.toerismecongres.nl/uploads/2026/255341324_m.jpg") center center;
  background-size: cover;
}

.features-2 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .features-2 .content {
    padding: 80px;
  }
}

.features-2 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

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

.features-2 .content ul li {
  padding-bottom: 10px;
}

.features-2 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

.features-2 .content .read-more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.features-2 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.features-2 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

.features-2 .content .read-more:hover i {
  margin-left: 10px;
}

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

/*--------------------------------------------------------------
# Tickets Section
--------------------------------------------------------------*/
.tickets {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.tickets .ticket-item {
  position: relative;
  padding: 40px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.tickets .ticket-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.tickets .ticket-item .ticket-type {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.tickets .ticket-item .price-container {
  margin-bottom: 15px;
}

.tickets .ticket-item .price-container .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.tickets .ticket-item .price-container .period {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.tickets .ticket-item .description {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  min-height: 48px;
}

.tickets .ticket-item .features-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.tickets .ticket-item .features-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--default-color);
}

.tickets .ticket-item .features-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}

.tickets .ticket-item .features-list li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.tickets .ticket-item .features-list li.disabled i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.tickets .ticket-item .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  padding: 12px 40px;
  transition: 0.3s;
  font-weight: 600;
}

.tickets .ticket-item .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.tickets .ticket-item.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.tickets .ticket-item.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

@media (max-width: 992px) {
  .tickets .ticket-item.featured {
    transform: scale(1);
  }
}

.tickets .ticket-item.featured .badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
}

.tickets .ticket-item.featured .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tickets .ticket-item.featured .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-gallery {
  position: relative;
}

.features .feature-gallery img.img-fluid {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color) 12%, transparent 90%);
  background: var(--surface-color);
}

.features .feature-gallery .feature-thumb {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: flex;
  gap: 16px;
  z-index: 2;
}

.features .feature-gallery .feature-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid var(--background-color);
  border-radius: 50%;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--heading-color) 10%, transparent 90%);
  background: var(--surface-color);
  transition: box-shadow 0.3s;
}

.features .feature-gallery .feature-thumb img:hover {
  box-shadow: 0 2px 16px color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
}

.features .features-content h3 {
  font-size: 2.2rem;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--heading-color);
}

.features .features-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.1rem;
  font-family: var(--default-font);
}

.features .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 5%, transparent 95%);
  border-radius: 1rem;
  padding: 1.7rem 1.25rem;
  box-shadow: 0 1px 10px color-mix(in srgb, var(--heading-color) 3%, transparent 97%);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.features .feature-card .icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 11%, transparent 89%);
  margin-right: 8px;
  font-size: 2rem;
  color: var(--accent-color);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color) 4%, transparent 96%);
  transition: background 0.3s, color 0.3s;
}

.features .feature-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.features .feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.features .feature-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent 88%);
}

.features .feature-card:hover .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .features .feature-gallery img.img-fluid {
    height: 260px;
  }

  .features .feature-gallery .feature-thumb {
    right: 0;
    bottom: -12px;
  }
}

@media (max-width: 768px) {
  .features .feature-gallery {
    text-align: center;
  }

  .features .feature-gallery img.img-fluid {
    height: 190px;
  }

  .features .feature-gallery .feature-thumb {
    position: static;
    margin-top: 12px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue {
  --background-color: #f9f2e8;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue .venue-header .venue-title-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.venue .venue-header .venue-title-badge i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.venue .venue-header h3 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.venue .venue-header .venue-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 1.05rem;
}

.venue .venue-header .venue-location i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.venue .main-venue-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.venue .main-venue-card .venue-image-wrapper {
  position: relative;
  overflow: hidden;
}

.venue .main-venue-card .venue-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue .main-venue-card .venue-image-wrapper:hover img {
  transform: scale(1.05);
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--contrast-color);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-label {
  font-size: 0.85rem;
  color: var(--default-color);
  margin-top: 4px;
  font-weight: 500;
}

.venue .main-venue-card .venue-description {
  padding: 32px;
}

.venue .main-venue-card .venue-description p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.venue .amenities-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.venue .amenities-card h5 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.venue .amenities-card .amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.venue .amenities-card .amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.venue .amenities-card .amenities-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.venue .amenities-card .amenities-list li span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.venue .amenities-card .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue .amenities-card .action-buttons .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.venue .amenities-card .action-buttons .btn-action.primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.venue .amenities-card .action-buttons .btn-action.primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(4px);
}

.venue .amenities-card .action-buttons .btn-action.secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.venue .amenities-card .action-buttons .btn-action.secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateX(4px);
}

.venue .interactive-map {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.venue .interactive-map .map-header {
  text-align: center;
  margin-bottom: 32px;
}

.venue .interactive-map .map-header h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.venue .interactive-map .map-header p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.venue .interactive-map .map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venue .interactive-map .map-frame iframe {
  width: 100%;
  height: 450px;
}

.venue .transportation-section h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}

.venue .transportation-section .transport-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.venue .transportation-section .transport-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.venue .transportation-section .transport-card .transport-header {
  text-align: center;
  margin-bottom: 20px;
}

.venue .transportation-section .transport-card .transport-header .transport-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.venue .transportation-section .transport-card .transport-header .transport-icon.air {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon.rail {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon.car {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.venue .transportation-section .transport-card .transport-header h6 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.venue .transportation-section .transport-card .transport-body p {
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.venue .hotels-section .hotels-header {
  text-align: center;
  margin-bottom: 40px;
}

.venue .hotels-section .hotels-header h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.venue .hotels-section .hotels-header p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.05rem;
}

.venue .hotels-section .hotel-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.venue .hotels-section .hotel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.venue .hotels-section .hotel-item:hover .hotel-image img {
  transform: scale(1.1);
}

.venue .hotels-section .hotel-item .hotel-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.venue .hotels-section .hotel-item .hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue .hotels-section .hotel-item .hotel-image .hotel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.venue .hotels-section .hotel-item .hotel-image .hotel-badge.discount {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.venue .hotels-section .hotel-item .hotel-details {
  padding: 24px;
}

.venue .hotels-section .hotel-item .hotel-details h6 {
  color: var(--heading-color);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .distance {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--default-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .distance i {
  color: var(--accent-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--default-color);
  font-weight: 500;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .rating i {
  color: #ffc107;
  font-size: 0.85rem;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-pricing .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-pricing .period {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .venue .venue-header h3 {
    font-size: 2rem;
  }

  .venue .main-venue-card .venue-image-wrapper img {
    height: 300px;
  }

  .venue .interactive-map .map-frame iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .venue .venue-header h3 {
    font-size: 1.75rem;
  }

  .venue .amenities-card {
    margin-top: 24px;
  }

  .venue .interactive-map {
    padding: 24px;
  }

  .venue .interactive-map .map-frame iframe {
    height: 280px;
  }

  .venue .transportation-section h4,
  .venue .hotels-section .hotels-header h4 {
    font-size: 1.5rem;
  }

  .venue .transport-card,
  .venue .hotel-item {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: #cfe2f3;
  position: relative;
  overflow: hidden;
}

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

.call-to-action .display-4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.call-to-action .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.call-to-action .stats-wrapper {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
  text-align: center;
  padding: 1rem 0;
}

.call-to-action .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.call-to-action .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.call-to-action .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-to-action .stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.call-to-action .cta-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 2rem;
}

.call-to-action .cta-buttons .btn {
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .cta-buttons .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: transparent;
}

.call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .security-note {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.call-to-action .security-note small {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .security-note small i {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .call-to-action .display-4 {
    font-size: 2rem;
  }

  .call-to-action .stats-wrapper {
    padding: 2rem 1rem;
  }

  .call-to-action .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action .stat-item .stat-number {
    font-size: 2rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .call-to-action .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  /* Add your styles here */
  background-color: var(--contrast-color);
}

.partners .organisatie {
  background: var(--surface-color);
  color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.partners .organisatie h3 {
  color: #fff;
}

.partners .logo-balk {
  padding-top: 1rem;
}

/*--------------------------------------------------------------
# Schedule 2 Section
--------------------------------------------------------------*/
.schedule-2 .schedule-tabs.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  border-bottom: none;
}

.schedule-2 .schedule-tabs.nav-tabs .nav-item {
  margin-bottom: 0;
}

.schedule-2 .tab-btn.nav-link {
  padding: 16px 32px;
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.schedule-2 .tab-btn.nav-link .day-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.schedule-2 .tab-btn.nav-link .day-date {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 4px;
  font-weight: 400;
}

.schedule-2 .tab-btn.nav-link:hover {
  border-color: var(--accent-color);
}

.schedule-2 .tab-btn.nav-link:focus {
  outline: none;
  box-shadow: none;
}

.schedule-2 .tab-btn.nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.schedule-2 .tab-btn.nav-link.active .day-label,
.schedule-2 .tab-btn.nav-link.active .day-date {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.schedule-2 .tab-content .tab-pane {
  padding-top: 8px;
}

.schedule-2 .schedule-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.schedule-2 .schedule-item:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

.schedule-2 .schedule-item .time-slot {
  flex-shrink: 0;
  min-width: 120px;
  text-align: center;
  padding-right: 24px;
  border-right: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.schedule-2 .schedule-item .time-slot .time {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.schedule-2 .schedule-item .time-slot .duration {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.schedule-2 .schedule-item .item-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.schedule-2 .schedule-item .item-content h4 a {
  color: var(--heading-color);
}

.schedule-2 .schedule-item .item-content h4 a:hover {
  color: var(--accent-color);
}

.schedule-2 .schedule-item .item-content .location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
}

.schedule-2 .schedule-item .item-content .location i {
  color: var(--accent-color);
}

.schedule-2 .schedule-item .item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.schedule-2 .schedule-item .speaker-info {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.schedule-2 .schedule-item .speaker-info img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.schedule-2 .schedule-item .speaker-info .speaker-details .name {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.schedule-2 .schedule-item .speaker-info .speaker-details .role {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .schedule-2 .schedule-item {
    flex-direction: column;
    gap: 16px;
  }

  .schedule-2 .schedule-item .time-slot {
    border-right: none;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding-right: 0;
    padding-bottom: 16px;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .schedule-2 .schedule-item .speaker-info {
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 576px) {
  .schedule-2 .schedule-tabs.nav-tabs {
    gap: 8px;
  }

  .schedule-2 .tab-btn.nav-link {
    padding: 12px 20px;
    min-width: 100px;
    font-size: 14px;
  }

  .schedule-2 .schedule-item {
    padding: 24px;
  }

  .schedule-2 .schedule-item .item-content h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers .speaker-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.speakers .speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px 0 color-mix(in srgb, var(--default-color), transparent 80%);
}

.speakers .speaker-card.featured {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.speakers .speaker-card.featured .speaker-image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.speakers .speaker-card.featured .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.speakers .speaker-card.featured .speaker-image .speaker-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.speakers .speaker-card.featured .speaker-image .speaker-social a {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers .speaker-card.featured .speaker-image .speaker-social a:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
}

.speakers .speaker-card.featured .speaker-image .speaker-social a i {
  font-size: 16px;
}

.speakers .speaker-card.featured .speaker-content {
  padding: 30px;
  flex-grow: 1;
}

.speakers .speaker-card.featured .speaker-content .speaker-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.speakers .speaker-card.featured .speaker-content .speaker-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.speakers .speaker-card.featured .speaker-content .speaker-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.speakers .speaker-card.featured .speaker-content .speaker-company {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.speakers .speaker-card.featured .speaker-content .speaker-session {
  margin-bottom: 25px;
}

.speakers .speaker-card.featured .speaker-content .speaker-session h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.speakers .speaker-card.featured .speaker-content .speaker-session p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.speakers .speaker-card.featured .speaker-content .btn-speaker {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.speakers .speaker-card.featured .speaker-content .btn-speaker:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .speakers .speaker-card.featured .speaker-image {
    height: 250px;
  }

  .speakers .speaker-card.featured .speaker-content {
    padding: 20px;
  }

  .speakers .speaker-card.featured .speaker-content .speaker-name {
    font-size: 20px;
  }
}

.speakers .speaker-card.compact {
  text-align: center;
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.speakers .speaker-card.compact .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--default-color), transparent 30%) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social {
  display: flex;
  gap: 10px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a {
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a i {
  font-size: 14px;
}

.speakers .speaker-card.compact .speaker-image:hover .speaker-overlay {
  opacity: 1;
}

.speakers .speaker-card.compact .speaker-image:hover .speaker-overlay .speaker-social {
  transform: translateY(0);
}

.speakers .speaker-card.compact .speaker-image:hover img {
  transform: scale(1.05);
}

.speakers .speaker-card.compact .speaker-content {
  padding: 25px 20px;
}

.speakers .speaker-card.compact .speaker-content .speaker-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.speakers .speaker-card.compact .speaker-content .speaker-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.speakers .speaker-card.compact .speaker-content .speaker-company {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.speakers .speaker-card.compact .speaker-content .speaker-topic {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 768px) {
  .speakers .speaker-card.compact .speaker-image {
    height: 250px;
  }

  .speakers .speaker-card.compact .speaker-content {
    padding: 20px 15px;
  }

  .speakers .speaker-card.compact .speaker-content .speaker-name {
    font-size: 16px;
  }
}

.speakers .speaker-quote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.speakers .speaker-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--accent-color);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.speakers .speaker-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.speakers .speaker-quote blockquote p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 25px;
}

.speakers .speaker-quote .quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.speakers .speaker-quote .quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.speakers .speaker-quote .quote-author .author-info {
  text-align: left;
}

.speakers .speaker-quote .quote-author .author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.speakers .speaker-quote .quote-author .author-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .speakers .speaker-quote {
    padding: 30px 20px;
  }

  .speakers .speaker-quote::before {
    font-size: 60px;
    top: -5px;
  }

  .speakers .speaker-quote blockquote p {
    font-size: 16px;
  }

  .speakers .speaker-quote .quote-author {
    flex-direction: column;
    text-align: center;
  }

  .speakers .speaker-quote .quote-author .author-info {
    text-align: center;
  }
}

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

/*--------------------------------------------------------------
# Post List Section
--------------------------------------------------------------*/
.post-list .post-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  gap: 24px;
  height: 100%;
}

.post-list .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.post-list .post-item:hover .post-title a {
  color: var(--accent-color);
}

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

.post-list .post-img {
  flex: 0 0 280px;
  overflow: hidden;
}

.post-list .post-img img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.post-list .post-content {
  padding: 24px 24px 24px 0;
}

.post-list .category {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  margin-bottom: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
}

.post-list .category:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.post-list .post-title {
  margin: 0 0 16px 0;
}

.post-list .post-title a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}

.post-list .post-title a:hover {
  color: var(--accent-color);
}

.post-list .post-description {
  color: var(--default-color);
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
}

.post-list .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-list .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-list .post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.post-list .post-author .author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.post-list .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991px) {
  .post-list .post-item {
    flex-direction: column;
  }

  .post-list .post-img {
    flex: 0 0 auto;
  }

  .post-list .post-img img {
    width: 100%;
    height: 200px;
  }

  .post-list .post-content {
    padding: 24px;
  }

  .post-list .post-title a {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Post List 2 Section
--------------------------------------------------------------*/
.post-list-2 .post-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  gap: 24px;
  height: 100%;
}

.post-list-2 .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.post-list-2 .post-item:hover .post-title a {
  color: var(--accent-color);
}

.post-list-2 .post-item:hover .post-img img {
  transform: scale(1.1);
}

.post-list-2 .post-img {
  flex: 0 0 280px;
  overflow: hidden;
}

.post-list-2 .post-img img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.post-list-2 .post-content {
  padding: 24px 24px 24px 0;
}

.post-list-2 .category {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  margin-bottom: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
}

.post-list-2 .category:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.post-list-2 .post-title {
  margin: 0 0 16px 0;
}

.post-list-2 .post-title a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}

.post-list-2 .post-title a:hover {
  color: var(--accent-color);
}

.post-list-2 .post-description {
  color: var(--default-color);
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
}

.post-list-2 .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.post-list-2 .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-list-2 .post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.post-list-2 .post-author .author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.post-list-2 .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991px) {
  .post-list-2 .post-item {
    flex-direction: column;
  }

  .post-list-2 .post-img {
    flex: 0 0 auto;
  }

  .post-list-2 .post-img img {
    width: 100%;
    height: 200px;
  }

  .post-list-2 .post-content {
    padding: 24px;
  }

  .post-list-2 .post-title a {
    font-size: 20px;
  }
}