@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #6315ff;
  --secondary-color: #1e1e1e;
  --text-color: #fff;
  --background-color: #121212;
}

body, html {
  overflow: auto;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
}

body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
}

/* Hide scrollbar globally for Chrome, Safari, and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar globally for IE, Edge, and Firefox */
body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Base Styles */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.long_section {
  margin: 0 45px;
  padding: 0 15px;
}

/* Heading & Header */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2, .heading_container h1 {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

h1, h2 {
  font-family: "Playfair Display", serif;
}

.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  padding: 10px 0;
  z-index: 1000;
  transition: top 0.3s;
}

.header_section.hide {
  top: -150px;
}

.header_section .container-fluid {
  padding: 0 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_section .navbar-brand span {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
}

.header_section .navbar-brand span:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.header_section .nav_container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 25px;
}

.header_section .nav_container a {
  text-decoration: none;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s;
}

.header_section .nav_container a:hover {
  color: var(--primary-color);
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.navbar {
  padding: 10px 0;
  margin: 0;
}

.nav_container {
  margin: 0;
  padding: 0;
}

/* Slider */
.slider_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.slider_section .detail-box {
  position: relative;
  z-index: 4;
  color: var(--text-color);
  padding: 75px 0;
}

.slider_section .detail-box h1 {
  font-weight: 700;
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider_section .detail-box p {
  width: 75%;
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider_section .detail-box .slider-link {
  display: inline-block;
  padding: 12px 50px;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 5px;
  border: 0;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(99, 21, 255, 0.7);
}

.slider_section .detail-box .slider-link:hover {
  background-color: rgba(125, 84, 207, 0.9);
  box-shadow: 0 0 20px rgba(125, 84, 207, 0.9);
  text-decoration: none;
}

.contact_section .slider-link {
  display: inline-block;
  padding: 12px 50px;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 5px;
  border: 0;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(99, 21, 255, 0.7);
}

.contact_section .slider-link:hover {
  background-color: rgba(125, 84, 207, 0.9);
  box-shadow: 0 0 20px rgba(125, 84, 207, 0.9);
  text-decoration: none;
}


.slider_section .slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.slider_section .slider_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.slide-in-left, .slide-in-right {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.slide-in-right {
  transform: translateX(100%);
}

.slide-in-left.visible, .slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Shop */
.shop_section .heading_container {
  margin-bottom: 20px;
}

.shop_section .box {
  background-color: var(--secondary-color);
  position: relative;
  padding: 10px;
  margin-top: 25px;
}

.shop_section .box a {
  color: var(--text-color);
}

.shop_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  height: 250px;
}

.shop_section .box .img-box img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.shop_section .box .img-box img:hover {
  transform: scale(1.1);
}

.shop_section .box .detail-box {
  display: flex;
  justify-content: space-between;
}

.shop_section .box .new {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--text-color);
  align-items: center;
  border-radius: 100%;
  font-size: 15px;
}

.btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  transition: all 0.2s;
}

.btn-box a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* About */
.about_section {
  font-size: 17px;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  position: relative;
  padding: 25px 0 0 25px;
}

.about_section .img-box img {
  width: 100%;
  position: relative;
}

.about_section .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background-color: #160e0b;
}

.about_section .detail-box p {
  margin: 10px 0 35px;
}

.about_section .detail-box a {
  padding: 10px 45px;
  border-radius: 0;
}

/*About Page*/

.about_sectionC, .network_section {
  padding: 90px 0;
  background-color: var(--background-color);
  margin-top: 80px;
}

.about_sectionC .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.about_sectionC .detail-box h3, .about_sectionC .heading_container h2, .about_sectionC .heading_container h1, .network_section .heading_container h2, .network_section .heading_container h1, .network_section .network_box h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about_sectionC .heading_container p {
  font-size: 1.1rem;
  color: #c3c0c0;
}

.about_sectionC .img-box img {
  width: 100%;
  border-radius: 10px;
}

.about_sectionC .detail-box {
  padding-left: 30px;
}

.about_sectionC .detail-box h3 {
  font-size: 1.8rem;
  margin-top: 20px;
}

.about_sectionC .detail-box p {
  font-size: 1rem;
  color: #c3c0c0;
  line-height: 1.6;
}

.about_sectionC { /* fix */
  padding-bottom: 5px;
}

/* Network */
.network_section {
  padding: 60px 0;
}

.network_section .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.network_section .heading_container p {
  font-size: 1.1rem;
  color: #c3c0c0;
}

.network_section .network_box {
  text-align: center;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.network_section .network_box:hover {
  transform: translateY(-10px);
}

.network_section .network_box img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.network_section .network_box h4 {
  font-size: 1.5rem;
}

.network_section .network_box p {
  font-size: 1rem;
  color: #c3c0c0;
}

/* Offer */
.offer_section .row > div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.offer_section .box {
  margin: 10px;
  height: 100%;
  position: relative;
  min-height: 175px;
}

.offer_section .box img {
  width: 100%;
  min-height: 100%;
}

.offer_section .box .detail-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--text-color);
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.5);
}

.offer_section .box .detail-box a {
  padding: 8px 40px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.2s;
  margin-top: 10px;
}

.offer_section .box .detail-box a:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
  text-decoration: none;
}

.offer_section .box.offer-box1 {
  min-height: 225px;
}

.offer_section .box.offer-box1 .detail-box {
  justify-content: flex-start;
}

.offer_section .box.offer-box1 .detail-box h2, .offer_section .box.offer-box1 .detail-box h1 {
  font-size: 3rem;
}

.offer_section .box.offer-box2 .detail-box h2, .offer_section .box.offer-box2 .detail-box h1, .offer_section .box.offer-box3 .detail-box h2, .offer_section .box.offer-box3 .detail-box h1 {
  font-size: 2rem;
}

.offer_section .box.offer-box2 .detail-box, .offer_section .box.offer-box3 .detail-box {
  align-items: flex-end;
  justify-content: flex-end;
}

.offer_section .box.offer-box3 .detail-box {
  align-items: flex-start;
}

/* Blog */
.blog_section .box .detail-box h5, .offer_section .box .detail-box h2, .offer_section .box .detail-box h1 {
  font-weight: 700;
}

.blog_section .box .detail-box a, .offer_section .box .detail-box a {
  display: inline-block;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.2s;
}

.blog_section .heading_container {
  align-items: center;
}

.blog_section .box {
  margin-top: 55px;
  background-color: var(--secondary-color);
}

.blog_section .box .img-box {
  position: relative;
}

.blog_section .box .img-box .blog_date {
  position: absolute;
  left: 25px;
  bottom: -15px;
  padding: 10px 15px;
  font-size: 18px;
  background-color: #160e0b;
  margin: 0;
  text-align: center;
  border: 3px solid var(--text-color);
  color: var(--text-color);
}

.blog_section .box .img-box img {
  width: 100%;
}

.blog_section .box .detail-box {
  margin-top: 10px;
  padding: 25px;
  color: var(--text-color);
}

.blog_section .box .detail-box p {
  font-size: 15px;
}

.blog_section .box .detail-box a {
  padding: 10px 30px;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.blog_section .box .detail-box a:hover {
  background-color: var(--text-color);
  color: var(--secondary-color);
}

/* Info */
.info_section {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 45px 0 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}


.info_section .info_form_social_row {
  align-items: center;
  margin-bottom: 45px;
}

.info_section .info_form {
  width: 100%;
}

.info_section .info_form form {
  display: flex;
  align-items: flex-end;
}

.info_section .info_form form input {
  flex: 1;
  background-color: var(--text-color);
  height: 50px;
  padding-left: 15px;
  outline: 0;
  color: var(--text-color);
  border: 0;
  border-bottom: 1px solid var(--primary-color);
}

.info_section .info_form form input::placeholder {
  color: #9c9c9c;
}

.info_section .info_form form button {
  text-transform: uppercase;
  font-size: 12px;
  outline: 0;
  display: inline-block;
  padding: 15.5px 25px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 0;
  border: 1px solid var(--primary-color);
  transition: all 0.2s;
}

.info_section .info_form form button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.info_section .social_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_section .social_box a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_section .social_box a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.info_section h4 {
  margin-bottom: 15px;
}

.info_section .icona {
  width: 20px;
  height: 20px;
}

.info_section .info_links .info_links_menu {
  display: flex;
  flex-direction: column;
}

.info_section .info_links .info_links_menu a {
  color: var(--text-color);
}

.info_section .info_links .info_links_menu a:not(:nth-last-child(1)) {
  margin-bottom: 10px;
}

.info_section .info_links .info_links_menu a:hover {
  color: var(--primary-color);
}

.info_section .info_contact a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  margin-right: 5px;
  width: 25px;
}

/* Footer Links Hover Effect */
.info_section .info_contact a:hover,
.info_section .info_contact a:hover span {
  color: var(--primary-color);
  transition: color 0.3s ease;
  text-decoration: none;
}

.info_contact.copyright {
  text-align: center;
  margin-top: 20px;
}

.info_contact.copyright p {
  display: inline;
  margin: 0;
}

.info_contact.copyright a {
  display: inline;
  color: inherit;
  text-decoration: underline;
}

/* Footer */
.footer_section {
  position: relative;
}

.footer_section p {
  color: var(--text-color);
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/* Back to Top Arrow */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: rgba(99, 21, 255, 0.9);
}

/* Contact Page */
.contact_section{
  margin-top: 80px;
  min-height: 82vh;

}

.contact_section .container{
  margin-top: 120px;
}

.contact_section, .apply_section {
  padding: 90px 0;
  background-color: var(--background-color);
  font-family: "Poppins", sans-serif;
}

.contact_section .heading_container, .apply_section .heading_container {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.contact_section .heading_container h2, .contact_section .heading_container h1, .apply_section .heading_container h2, .apply_section .heading_container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact_section .heading_container p, .apply_section .heading_container p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.contact_section .form-group, .apply_section .form-group {
  margin-bottom: 20px;
}

.contact_section .form-control, .apply_section .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 1rem;
}

.contact_section .form-control:focus, .apply_section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(99, 21, 255, 0.3);
}

.contact_section .btn-box, .apply_section .btn-box {
  display: inline-block;
  padding: 10px 40px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.contact_section .btn-box:hover, .apply_section .btn-box:hover {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border-radius: 0;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Apply Section */
.apply_section {
  padding: 60px 0;
}

/* Services Page */
.services_section {
  padding: 90px 0;
  background-color: var(--background-color);
  flex: 1;
  margin-top: 80px;
}

.services_section .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.services_section .heading_container h2, .services_section .heading_container h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.services_section .heading_container p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.services_section .service_box {
  text-align: center;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.services_section .service_box:hover {
  transform: translateY(-10px);
}

.service_box .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.services_section .img-box img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.services_section .detail-box h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.services_section .detail-box p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Remove Underline in Buttons */
.btn-box a,
.about_section .detail-box a,
.shop_section .btn-box a {
  text-decoration: none;
}

.btn-box a:hover,
.about_section .detail-box a:hover,
.shop_section .btn-box a:hover {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
}

/* 404 Page Styles */
.error-page {
  text-align: center;
  align-content: center;
  padding: 100px 0;
  min-height: 82vh;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.error-page p {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 40px;
}

.error-page .btn-box {
  display: inline-block;
  padding: 10px 40px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.error-page .btn-box:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Team Section */
.team_section {
  padding: 90px 0;
  background-color: var(--background-color);
}

.team_filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter_button {
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter_button.active,
.filter_button:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.team_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team_grid_due {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.team_member {
  position: relative;
  background-color: var(--secondary-color);
  padding: 20px 20px 0;
  border-radius: 10px;
  text-align: center;
  transition: opacity 1.5s ease, transform 1.5s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Allinea il contenuto in basso */
  align-items: center;
  height: 100%;
  overflow: hidden; /* Nasconde eventuali overflow */
}

.team_member img {
  width: 130%; /* Aumenta la larghezza dell'immagine */
  height: auto; /* Altezza automatica per mantenere le proporzioni */
  max-height: 450px; /* Aumenta l'altezza massima */
  object-fit: cover; /* Copre l'area senza distorsioni */
  margin-bottom: 0; /* Rimuove il margine inferiore */
  display: block;
  border-radius: 10px 10px 0 0; /* Bordi arrotondati solo in alto */
  align-self: flex-end; /* Allinea l'immagine in basso */
  transform: translateX(-13%); /* Centra l'immagine orizzontalmente */
}

.team_member .text-content {
  position: absolute; /* Posiziona il testo sopra l'immagine */
  top: 20px; /* Distanza dal bordo superiore */
  left: 50%; /* Centra orizzontalmente */
  transform: translateX(-50%); /* Centra orizzontalmente */
  z-index: 2; /* Assicura che il testo sia sopra l'immagine */
  background-color: rgba(30, 30, 30, 0.8); /* Sfondo semi-trasparente */
  padding: 10px 20px;
  border-radius: 5px;
  color: var(--text-color);
}


/* Stile specifico per l'immagine problematica 
.fix-bottom {
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  height: auto !important;
  max-height: 500px !important;
  object-fit: cover !important;
  border-radius: 10px 10px 0 0 !important;
}

.reduce-size-lc{
  width: 118% !important;
}

.reduce-size-er{
  width: 109% !important;
}

.reduce-size-mv{
  width: 117% !important;
}

.increase-size-ec{
  width: 148% !important;
}
*/
.team_member.visible {
  opacity: 1;
  transform: translateY(0);
}

.team_member h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team_member p {
  font-size: 1rem;
  color: #c3c0c0;
  margin: 0;
  margin-bottom: 10px;
}

.team_member:hover {
  transform: translateY(-10px);
}

/* Privacy Policy Banner */
.privacy-banner {
  height: 60px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px 20px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: float 3s ease-in-out infinite;
}

.privacy-banner p {
  margin: 0;
  font-size: 0.8rem;
}

.privacy-banner a {
  color: var(--primary-color);
  text-decoration: underline;
}

.privacy-banner button {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}

.privacy-banner button:hover {
  background-color: rgba(99, 21, 255, 0.9);
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px); /* Slight upward movement */
  }
}

/* Policy Section */
.policy_section {
  padding: 90px 0;
  background-color: var(--background-color);
  min-height: 82vh;
}

.policy_section .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.policy_section .heading_container h2, .policy_section .heading_container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.policy_content {
  max-width: 800px;
  margin: 0 auto;
}

.policy_item {
  margin-bottom: 40px;
  text-align: center;
}

.policy_item .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.policy_item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.policy_item p {
  font-size: 1rem;
  color: #c3c0c0;
  line-height: 1.6;
}

.policy_item a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Recruitment Banner */
.recruitment-banner {
  width: 100%;
  background-color: var(--primary-color); /* Usa il colore primario del tuo tema */
  color: var(--text-color); /* Usa il colore del testo definito nel tuo tema */
  text-align: center;
  padding: 10px 0;
  z-index: 1001; /* Assicurati che sia sopra il header */
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recruitment-banner p {
  margin: 0;
}

/* Recruitment Banner */
.header_section .recruitment-banner {
  top: 0; /* Lo mantiene in cima alla pagina */
  z-index: 998; /* Assicurati che sia sotto la navbar (se la navbar ha z-index: 1000) */
}

.recruitment-banner a {
  color: var(--text-color); /* Usa il colore del testo definito nel tuo tema */
  text-decoration: none;
}

.recruitment-banner a:hover {
  color: var(--background-color); /* Usa il colore di sfondo definito nel tuo tema */
}

/* Recruitment Section */
.recruitment_section {
  min-height: 72vh;
  margin-top: 20px;
  padding: 90px 0;
  background-color: var(--background-color);
}

.recruitment_section .heading_container {
  text-align: center;
  margin-bottom: 40px;
}

.recruitment_section .heading_container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.recruitment_section .heading_container p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.recruitment_section .service_box {
  text-align: center;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.recruitment_section .service_box:hover {
  transform: translateY(-10px);
}

.recruitment_section .icon-box {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.recruitment_section .service_box h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.recruitment_section .service_box p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

.recruitment_section .btn-box {
  text-align: center;
  margin-top: 30px;
}

.recruitment_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: 5px;
  border: 1px solid var(--primary-color);
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.recruitment_section .btn-box a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.spazio{
  margin-top: 0px;
}

.spazioSotto{
  margin-bottom: 0px;
}

.closed-title {
  color: #FF2400;
}


/* Debug Cose 
* {
  border: 1px solid red !important;
}
*/
