/**
* Template Name: Kaaserer-ASS Template
* Template URL: kaaserer-ass.de
* Updated: Dec 25 2024 with Bootstrap v5.3.3
* Author: NEEXTE - Your Vision, Our Code, Unlimited Possibilities! 
* License: 
    License Information

    This website was developed by NEEXTE © 2024.

    Third-party components used in this project:
    1. Bootstrap (https://getbootstrap.com)
      - License: MIT License (https://opensource.org/licenses/MIT)
      - Copyright (c) 2011-2024 Twitter, Inc.

    2. EasyFrontend components (https://easyfrontend.com)
      - Terms of Use: Free for personal and commercial use with attribution.
      - Restrictions: Redistribution and sublicensing are prohibited.

    Attribution:
    - EasyFrontend resources have been used in accordance with their Terms of Use.
    - If you have questions about licensing or rights, please contact info@neexte.com.

    This website and its custom code are licensed to Emilio Notini under a proprietary license. Redistribution or sublicensing of the full website or its parts is prohibited without explicit permission.
  ======================================================== -->
*/

/* Fonts */
:root {
  --default-font: "Inter";
  --heading-font: "Inter",  sans-serif;
  --nav-font: "Inter";
}

/* 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: #f9fafb; /* 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: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd; /* 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: #0d83fd; /* 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: #0d83fd; /* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  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: 900px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Scrolling Text Container */
.scrolling-text-container {
  position: absolute;
  bottom: -5%; /* Posizionato più in basso */
  left: 0;
  width: 100%;
  height: 270px; /* Altezza richiesta */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Inizia lo scorrimento da destra */
  pointer-events: none; /* Disabilita interazioni con il testo */
}

/* Scrolling Text */
.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 10s linear infinite; /* Scorrimento continuo */
  font-size: 300px; /* Dimensione del testo */
  font-weight: bold;
  color: rgba(255, 255, 255, 0.349); /* Testo bianco con opacità */
  text-transform: uppercase;
  filter: blur(10px); /* Effetto blur */
}

/* Animazione dello scorrimento */
@keyframes scrollText {
  0% {
    transform: translateX(100%); /* Inizio fuori dallo schermo a destra */
  }
  100% {
    transform: translateX(-100%); /* Termina fuori dallo schermo a sinistra */
  }
}


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

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

  .navmenu li {
    position: relative;
  }

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

  .navmenu a:hover {
    background-color: var(--nav-hover-background-color);
    color: var(--nav-hover-color);
  }

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

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

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

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

  .navmenu .dropdown ul a:hover {
    background-color: var(--nav-dropdown-hover-background-color);
    color: var(--nav-dropdown-hover-color);
    border-radius: 4px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

#footer {
  background-color: #ffffff;
  color: #6c757d;
}

#footer h5 {
  font-size: 1rem;
  color: #2d465e;
  margin-bottom: 10px;
}

#footer a {
  text-decoration: none;
  color: #6c757d;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: #005cd4;
}

#footer hr {
  border: none;
  border-top: 1px solid #e9ecef;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: url('../img/hero-background.webp') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.61);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff; 
}

.hero-title .highlight {
  color: #ffffff; 
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 40rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Features Section Styling
--------------------------------------------------------------*/

#features {
  padding: 60px 0;
  background-color: #f8fafc;
}

#features h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d465e;
}

#features .badge {
  font-size: 0.9rem;
  background-color: #005cd4;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

#features .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

#features .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#features .card-body {
  padding: 20px;
  text-align: center;
}

/* Stile per le icone SVG di Tabler */
#features .card-body img {
  width: 48px;
  height: 48px;
  fill: #005cd4; /* Cambia il colore */
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

#features .card-body img:hover {
  transform: scale(1.1); /* Leggera animazione al passaggio del mouse */
}

#features .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d465e;
  margin-bottom: 0.5rem;
}

#features .card-text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
}

#features .divider {
  width: 50px;
  height: 3px;
  background-color: #005cd4;
  margin: 1rem auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #features h2 {
    font-size: 2rem;
  }

  #features .card {
    margin-bottom: 1.5rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #features h2 {
    font-size: 1.75rem;
  }

  #features .card .card-body {
    padding: 1.5rem;
  }

  #features .card .card-body i {
    font-size: 2rem;
  }

  #features .card .card-body h5 {
    font-size: 1.1rem;
  }

  #features .card .card-body p {
    font-size: 0.85rem;
  }
}


/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.ezy__portfolio10 {
  /* Bootstrap variables */
  --bs-body-color: #2d465e;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-item-bg: #ffffff;
  --ezy-item-shadow: 0px 4px 44px rgba(159, 190, 218, 0.37);

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

.text-white-list li {
  color: white;
}

.custom-list {
  list-style: none; /* Rimuove i puntini predefiniti */
  padding: 0;
  margin: 0;
}

.custom-list li {
  color: white;
  font-size: 1rem; /* Dimensione uniforme del testo */
  margin-bottom: 0.5rem; /* Spaziatura uniforme tra gli elementi */
  position: relative;
  padding-left: 1.5rem; /* Spazio per l'icona */
}

.custom-list li::before {
  content: "–"; /* Inserisce il trattino personalizzato */
  position: absolute;
  left: 0; /* Allinea il trattino a sinistra */
  color: white;
}

@media (min-width: 768px) {
  .ezy__portfolio10 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__portfolio10,
.ezy__portfolio10.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-item-bg: #f6f6f6;
  --ezy-item-shadow: 0px 4px 44px rgba(186, 155, 155, 0.17);
}

/* Dark Gray Block Style */
.dark-gray .ezy__portfolio10,
.ezy__portfolio10.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-item-bg: #222f3e;
  --ezy-item-shadow: none;
}

/* Dark Block Style */
.dark .ezy__portfolio10,
.ezy__portfolio10.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-item-bg: #162231;
  --ezy-item-shadow: none;
}

.ezy__portfolio10-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__portfolio10-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.ezy__portfolio10-sub-heading {
  font-size: 18px;
  line-height: 32px;
  color: var(--bs-body-color);
}

.ezy__portfolio10-bg-holder {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 200px;
}

.ezy__portfolio10-item {
  box-shadow: var(--ezy-item-shadow);
  background-color: var(--ezy-item-bg);
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

.ezy__portfolio10-item * {
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__portfolio10-item {
    height: 100%;
  }
}
/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/

#process {
  background-color: #f8fafc;
}

#process h2 {
  font-size: 2rem;
  color: #2d465e;
}

#process p {
  font-size: 1rem;
  color: #6c757d;
}

#process .process-point {
  padding: 20px;
}

#process .process-point .icon {
  font-size: 2rem;
  color: #005cd4;
}

#process .process-point h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

#process .process-point p {
  font-size: 0.9rem;
  color: #6c757d;
}

/*--------------------------------------------------------------
#  Partners Section
--------------------------------------------------------------*/

/* Dark Block Style */
.dark .ezy__clients17,
.ezy__clients17.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(30, 39, 53);
  --ezy-box-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
}

.ezy__clients17-heading {
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  color: var(--bs-body-color);
}

.ezy__clients17-sub-heading {
  opacity: 0.8;
  font-size: 18px;
  line-height: 1.7;
}

.ezy__clients17-card {
  background-color: var(--ezy-card-bg);
  box-shadow: var(--ezy-box-shadow);
  transition: 0.5s;
}
.ezy__clients17-img {
  max-height: 100px;
  filter: grayscale(100%);
  transition: 0.5s;
}
.ezy__clients17-card:hover .ezy__clients17-img {
  filter: grayscale(0);
}
.ezy__clients17 p {
  text-align: center;
  line-height: 1.7;
}

#partner .badge {
  font-size: 0.9rem;
  background-color: #005cd4;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


#contact {
  background-color: #f8fafc;
}

#contact h3 {
  font-size: 1.5rem;
  color: #2d465e;
}

#contact p {
  font-size: 1rem;
  color: #6c757d;
}

#contact ul {
  padding: 0;
}

#contact ul li {
  font-size: 0.95rem;
  color: #495057;
}

#contact form .form-label {
  font-weight: bold;
  color: #495057;
}

#contact form .btn-primary {
  background-color: #005cd4;
  border-color: #005cd4;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#contact form .btn-primary:hover {
  background-color: #004bb7;
  border-color: #004bb7;
}

#notification {
  display: block;
  padding: 15px;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Divider
--------------------------------------------------------------*/

.divider {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
  height: 1px;
  background-color: #e9ecef;
}

/*--------------------------------------------------------------
# Galery
--------------------------------------------------------------*/

.ezy__portfolio1 {
  /* Bootstrap variables */
  --bs-body-color: #373572;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-popup-bg-rgb: 255, 255, 255;

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__portfolio1 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__portfolio1,
.ezy__portfolio1.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-popup-bg-rgb: 246, 246, 246;
}

/* Dark Gray Block Style */
.dark-gray .ezy__portfolio1,
.ezy__portfolio1.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-popup-bg-rgb: 30, 39, 53;
}

/* Dark Block Style */
.dark .ezy__portfolio1,
.ezy__portfolio1.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-popup-bg-rgb: 11, 23, 39;
}

.ezy__portfolio1-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: #2d465e;
}

@media (min-width: 768px) {
  .ezy__portfolio1-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.ezy__portfolio1-sub-heading {
  font-size: 16px;
  line-height: 22px;
  color: #2d465e;
  margin-top: 10%;
}

.ezy__portfolio1-item {
  border-radius: 12px;
  overflow: hidden;
}

.ezy__portfolio1-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 12px;
  background-color: rgba(var(--ezy-popup-bg-rgb), 0.7);
  backdrop-filter: blur(4px) saturate(200%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.ezy__portfolio1-content * {
  color: var(--bs-body-color);
}

.ezy__portfolio1-item:hover .ezy__portfolio1-content,
.ezy__portfolio1-item.active .ezy__portfolio1-content {
  transform: translateY(0);
  opacity: 1;
}

.ezy__portfolio1-btn-filter {
  padding: 7px 20px;
  border-color: var(--ezy-theme-color);
  color: var(--ezy-theme-color);
}

.ezy__portfolio1-btn-filter:hover,
.ezy__portfolio1-btn-filter.active {
  background-color: var(--ezy-theme-color);
  color: #fff;
}


.ezy__clients17 {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-card-bg: rgb(255, 255, 255);
  --ezy-box-shadow: 0px 6px 44px rgba(173, 174, 197, 0.2);

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__clients17 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__clients17,
.ezy__clients17.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(255, 255, 255);
}

/* Dark Gray Block Style */
.dark-gray .ezy__clients17,
.ezy__clients17.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(11, 23, 39);
  --ezy-box-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
}

.modal-content .btn-close {
  color: white;
  opacity: 1;
}

.modal-content .btn-close:hover {
  color: #f8f9fa;
}

.modal-content .btn-close:focus {
  box-shadow: none;
}


/*--------------------------------------------------------------
#  Services Section
--------------------------------------------------------------*/

.ezy__service20 {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-card-bg: #ffffff;
  --ezy-card-box-shadow: 0px 6px 44px rgba(173, 174, 197, 0.2);

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  position: relative;
  padding: 60px 0;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ezy__service20 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__service20,
.ezy__service20.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-card-bg: #f6f6f6;
}

/* Dark Gray Block Style */
.dark-gray .ezy__service20,
.ezy__service20.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(30, 39, 53);
  --ezy-card-box-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
}

.dark .ezy__service20,
.ezy__service20.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(11, 23, 39);
  --ezy-card-box-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
}

.ezy__service20-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ezy__service20-heading {
    font-size: 40px;
  }
}

.ezy__service20-sub-heading {
  font-size: 17px;
  line-height: 1.5;
  opacity: 0.8;
}

/* shapes */
.ezy__service20-shape-one {
  z-index: -1;
  bottom: -20%;
  left: 0;
}
.ezy__service20-shape-two {
  z-index: -1;
  top: -20%;
}
.ezy__service20-card {
  background-color: var(--ezy-card-bg);
  box-shadow: var(--ezy-card-box-shadow);
}
.ezy__service20-icon {
  font-size: 40px;
  color: var(--ezy-theme-color);
}

.background-text {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 350px; /* Dimensione molto grande */
  font-weight: bold; /* Testo grassetto */
  color: rgba(187, 187, 187, 0.075); /* Colore con opacità */
  white-space: nowrap; /* Impedisce il testo a capo */
  z-index: 0; /* Metti il testo dietro gli altri elementi */
  pointer-events: none; /* Il testo non deve interferire con i clic */
}

/*--------------------------------------------------------------
#  Certificate Section
--------------------------------------------------------------*/
.ezy__blog1 {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* easy frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-card-bg: #fff;
  --ezy-card-shadow: 0 25px 41px rgba(89, 88, 109, 0.15);

  background-color: var(--bs-body-bg);
  padding: 70px 0;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__blog2 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__blog1,
.ezy__blog1.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* easy frontend variables */
  --ezy-card-bg: #fff;
  --ezy-card-shadow: 0px 8px 44px rgba(182, 198, 222, 0.48);
}

/* Dark Gray Block Style */
.dark-gray .ezy__blog1,
.ezy__blog1.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: rgb(241, 241, 241);
  --bs-body-bg: rgb(30, 39, 53);

  /* easy frontend variables */
  --ezy-card-bg: rgb(11, 23, 39);
  --ezy-card-shadow: none;
}

/* Dark Block Style */
.dark .ezy__blog1,
.ezy__blog1.dark {
  /* Bootstrap variables */
  --bs-body-color: rgb(255, 255, 255);
  --bs-body-bg: rgb(11, 23, 39);

  /* easy frontend variables */
  --ezy-card-bg: rgb(30, 39, 53);
  --ezy-card-shadow: none;
}

/* heading and sub-heading */
.ezy__blog1-heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #2d465e;
}

.ezy__blog1-sub-heading {
  color: var(--bs-body-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  opacity: 0.8;
  margin-bottom: 55rem !important;
}

@media (min-width: 991px) {
  .ezy__blog1-heading {
    font-size: 45px;
  }
}

.ezy__blog1-post {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--ezy-card-bg);
  box-shadow: var(--ezy-card-shadow);
}

.ezy__blog1-calendar {
  background-color: var(--ezy-card-bg);
  color: var(--bs-body-color);
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  border-radius: 0 0 10px 0;
}

.ezy__blog1-title {
  font-weight: 500;
  margin-top: 0 !important;
  color: var(--bs-body-color);
}

.ezy__blog1-description {
  color: var(--bs-body-color);
  opacity: 0.6;
}

.ezy__blog1-btn {
  padding: 12px 30px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--ezy-theme-color);
  border-color: var(--ezy-theme-color);
}

.ezy__blog1-btn:hover {
  color: #ffffff;
  background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
}

.ezy__blog1-btn-read-more {
  padding: 7px 20px;
  color: var(--bs-body-color);
  border-color: var(--ezy-theme-color);
}

.ezy__blog1-btn-read-more:hover {
  background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
  color: #ffffff;
}

.ezy__blog1-author a {
  color: var(--ezy-theme-color);
}

/*--------------------------------------------------------------
#  Datenschutz Section
--------------------------------------------------------------*/

.ezy__about5 {
  /* Bootstrap variables */
  --bs-body-color: #1e2329;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__about5 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__about5,
.ezy__about5.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__about5,
.ezy__about5.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block Style */
.dark .ezy__about5,
.ezy__about5.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);
}

.ezy__about5-heading {
  font-size: 35px;
  line-height: 45px;
}
@media (min-width: 768px) {
  .ezy__about5-heading {
    font-size: 50px;
    line-height: 70px;
  }
}
.ezy__about5-sub-heading {
  font-size: 20px;
  line-height: 28px;
  opacity: 0.8;
}

.ezy__about5-banner {
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.ezy__about5-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.7;
}
.ezy__about5-content a {
  color: var(--bs-body-color);
}
.ezy__about5-content a:hover {
  color: var(--ezy-theme-color);
}

.ezy__about5-btn {
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  transition: 0.5s;
}
.ezy__about5-btn:hover {
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  opacity: 0.9;
}

/*--------------------------------------------------------------
#  Impressum Section
--------------------------------------------------------------*/

#impressum {
  background-color: #f5f7fa;
}

#impressum .rounded {
  border-radius: 8px;
}

#impressum h2 {
  font-size: 1.5rem;
}

#impressum p {
  font-size: 1rem;
  line-height: 1.6;
}

#impressum a {
  color: #0056b3;
  text-decoration: none;
}

#impressum a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
#  CV Section
--------------------------------------------------------------*/

.ezy__contact15 {
	/* Bootstrap variables */
	--bs-body-bg: #fff;
	--bs-body-color: #000;

	/* Easy Frontend variables */
	--ezy-theme-color: rgb(13, 110, 253);
	--ezy-theme-color-rgb: 13, 110, 253;
	--ezy-svg-color: rgb(246, 246, 246);
	--ezy-border-color: rgba(0, 0, 0, 0.2);
	--ezy-topbar-bg: #f6f6f6;

	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/* Gray Block Style */
.gray .ezy__contact15,
.ezy__contact15.gray {
	/* Bootstrap variables */
	--bs-body-bg: rgb(246, 246, 246);

	/* Easy Frontend variables */
	--ezy-topbar-bg: #fff;
	--ezy-svg-color: #fff;
}

/* Dark Gray Block Style */
.dark-gray .ezy__contact15,
.ezy__contact15.dark-gray {
	/* Bootstrap variables */
	--bs-body-color: #ffffff;
	--bs-body-bg: rgb(30, 39, 53);

	/* Easy Frontend variables */
	--ezy-svg-color: rgb(11, 23, 39);
	--ezy-border-color: rgba(255, 255, 255, 0.2);
	--ezy-topbar-bg: rgb(11, 23, 39);
}

/* Dark Block Style */
.dark .ezy__contact15,
.ezy__contact15.dark {
	/* Bootstrap variables */
	--bs-body-color: #ffffff;
	--bs-body-bg: rgb(11, 23, 39);

	/* Easy Frontend variables */
	--ezy-svg-color: rgb(30, 39, 53);
	--ezy-border-color: rgba(150, 150, 150, 0.25);
	--ezy-topbar-bg: rgb(30, 39, 53);
}

.ezy__contact15-heading {
	font-weight: bold;
	font-size: 25px;
	line-height: 1;
}

@media (min-width: 768px) {
	.ezy__contact15-heading {
		font-size: 45px;
	}
}

.ezy__contact15-sub-heading {
	font-size: 16px;
	line-height: 25px;
}

/*  ezy__contact15-top */
.ezy__contact15-top {
	background-color: var(--ezy-topbar-bg);
	padding: 100px 0;
}

/* wrapper */
.ezy__contact15-wrapper .progress-bar {
	background-color: var(--ezy-theme-color);
}

.ezy__contact15-wrapper .form-check {
	border: 1px solid var(--ezy-border-color);
}

.ezy__contact15-wrapper .form-check-input:checked {
	background-color: var(--ezy-theme-color);
	border-color: var(--ezy-theme-color);
}

.ezy__contact15 .form-control,
.ezy__contact15 .form-select {
	min-height: 48px;
	line-height: 40px;
	border-color: var(--ezy-border-color);
	background-color: var(--bs-body-bg);
	border-radius: 10px;
	color: var(--bs-body-color);
}

.ezy__contact15 .form-control:focus,
.ezy__contact15 .form-select:focus {
	border-color: rgba(var(--ezy-theme-color-rgb), .7);
	box-shadow: none;
}

/* btns */
.ezy__contact15-btn {
	min-width: 120px;
	padding: 11px 30px;
	color: #fff;
	background-color: var(--ezy-theme-color);
	border-color: var(--ezy-theme-color);
}

.ezy__contact15-btn:hover {
	color: #fff;
	background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
	border-color: rgba(var(--ezy-theme-color-rgb), 0.9);
}

/* svg */
.ezy__contact15-svg {
	position: absolute;
	z-index: -1;
}

.ezy__contact15-svg.svg-1 {
	bottom: 0;
	right: 0;
}

.ezy__contact15-svg.svg-2 {
	bottom: 20px;
	left: 50px;
}

/* form */

.ezy__contact15 select {
	background-color: transparent;
	color: var(--bs-body-color);
	border-color: var(--ezy-border-color);
}

.ezy__contact15 select option {
	background-color: var(--bs-body-bg) !important;
	color: var(--bs-body-color);
	border: 0 !important;
}

/*--------------------------------------------------------------
#  404
--------------------------------------------------------------*/

.ezy__httpcodes8 {
  /* Bootstrap variables */
  --bs-body-color: #333333;
  --bs-body-bg: #fff;

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-shape-color: #f1f8fb;
  --ezy-content-color: #fff;
  --ezy-content-shadow: 0px 18px 36px rgba(190, 193, 219, 0.25);

  background-color: var(--bs-body-bg);
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ezy__httpcodes8 {
    padding: 200px 0;
  }
}

/* Gray Block Style */
.gray .ezy__httpcodes8,
.ezy__httpcodes8.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-shape-color: #e3f3fa;
}

/* Dark Gray Block Style */
.dark-gray .ezy__httpcodes8,
.ezy__httpcodes8.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #cdcdcd;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-shape-color: rgb(11, 23, 39);
  --ezy-content-shadow: 0px 18px 36px rgba(0, 0, 0, 0.35);
}

/* Dark Block Style */
.dark .ezy__httpcodes8,
.ezy__httpcodes8.dark {
  /* Bootstrap variables */
  --bs-body-color: #cdcdcd;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-shape-color: rgb(30, 39, 53);
  --ezy-content-shadow: 0px 18px 36px rgba(0, 0, 0, 0.35);
}

/* heading and sub-heading */
.ezy__httpcodes8-heading {
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: var(--ezy-content-color);
  text-shadow: var(--ezy-content-shadow);
}

.ezy__httpcodes8-sub-heading {
  font-size: 18px;
  line-height: 25px;
  color: var(--bs-body-color);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .ezy__httpcodes8-heading {
    font-size: 300px;
  }
}

/* svg */
.ezy__httpcodes8 svg {
  z-index: -1;
  color: var(--ezy-shape-color);
}

/*--------------------------------------------------------------
#  Cookie
--------------------------------------------------------------*/

.cookie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 18px;
  z-index: 9999;

  width: min(92vw, 420px);
  max-height: min(85vh, 720px);
  overflow: auto;

  font-family: "Inter", sans-serif;
}

/* Make "WICHTIG" and "Cookie-Einstellungen" match in font + size */
.cookie-title,
.cookie-important-info__badge {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

/* Keep Cookie title as the preferred visual reference */
.cookie-title {
  margin: 18px 0 8px; /* extra spacing from the important info block */
}

/* Cookie description */
.cookie-text {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Categories */
.cookie-categories {
  margin-bottom: 14px;
}

.cookie-categories label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.cookie-categories input {
  margin-right: 8px;
}

/* Actions */
.cookie-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-popup-actions button {
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.cookie-popup .btn-primary {
  background: #0d6efd;
  color: #ffffff;
}

.cookie-popup .btn {
  background: #e9ecef;
  color: #000000;
}

/* Important info block */
.cookie-important-info {
  border: 1px solid #f1a0a0;      /* softer red border */
  background: #fff2f2;            /* soft red background */
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 18px;            /* ensures space before Cookie-Einstellungen */
}

.cookie-important-info__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* "WICHTIG" in a noticeable, not-too-bright red */
.cookie-important-info__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.2px;

  color: #b42318;                 /* red text */
  background: #fee4e2;            /* soft red badge background */
  border: 1px solid #fda29b;      /* soft red border */
}

.cookie-important-info__headline {
  font-size: 13px;
  font-weight: 700;
  color: #7a1f1f;
}

.cookie-important-info__box {
  background: #ffffff;
  border: 1px solid #f2d1d1;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;            /* extra breathing room between boxes */
}

.cookie-important-info__box:last-child {
  margin-bottom: 0;
}

.cookie-important-info__title {
  font-size: 12px;
  font-weight: 800;
  color: #2d465e;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cookie-important-info__text {
  font-size: 13px;
  color: #212529;
  line-height: 1.45;              /* slightly more line spacing */
}

.cookie-important-info__hint {
  font-size: 12px;
  color: #6c757d;
  margin-top: 8px;                /* more space above the hint line */
}

/* Mobile tuning */
@media (max-width: 420px) {
  .cookie-popup {
    padding: 14px;
    border-radius: 12px;
  }

  .cookie-popup-actions {
    justify-content: stretch;
  }

  .cookie-popup-actions button {
    width: 100%;
  }
}