@import "partials/typography.css";
@import "partials/palette.css";

/* GENERAL RULES  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Oswald", sans-serif !important;
}

ul,
ol,
menu {
  list-style-type: none;
}

a {
  /* color: currentColor !important; */
  text-decoration: none !important;
}

img {
  display: block;
}

/* handle elementor class of picker color   */
.pickr > button {
  padding: initial;
}
/* ---------------------------------------  */

a:hover {
  cursor: pointer;
}

/*override classi elementor per avere i contenitori a tutto schermo  */
.e-con {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.e-con-full,
.e-con > .e-con-inner {
  padding-block-start: 0 !important;
}

.e-con-full,
.e-con > .e-con-inner {
  margin: 0 !important;
}

/* ------------- */

/*Nuovo Template Table*/
.container-table-father {
  padding: 12px 80px;
  background-color: var(--neutral-50);
}

.wrapper-table-father {
  max-width: 1440px;
  margin: 0 auto;
}

.container-table {
  overflow-x: auto;
}
.table-csm {
  width: 100%;
  border-collapse: collapse;
  border-left: none; /* Rimuovi il bordo a sinistra */
  border-right: none; /* Rimuovi il bordo a destra */
}
.table-csm th,
.table-csm td {
  border-top: 1px solid var(--neutral-200); /* Solo bordi orizzontali */
  border-bottom: 1px solid var(--neutral-200); /* Solo bordi orizzontali */
  padding: 10px;
  text-align: center;
}

.prime-column {
  text-transform: uppercase;
}

.table-csm td {
  vertical-align: middle;
}

.table-csm th {
  background-color: var(
    --neutral-100
  ) !important; /* Colore di sfondo per le intestazioni */
}

.chip {
  display: inline-block;
  background-color: var(--primary-900);
  color: var(--neutral-50);
  text-transform: uppercase;
  padding: 4px 8px 4px 8px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

/*TABLET*/
@media screen and (max-width: 1024px) {
  .container-table-father {
    padding: 12px 60px;
  }
}

/*MOBILE*/
@media screen and (max-width: 768px) {
  .container-table-father {
    padding: 24px;
  }
}

/*th-table*/
.th-table {
  background-color: var(--neutral-100) !important;
}

/*color-primary*/
.color-primary {
  background-color: var(--primary-900);
}

/*block-text*/
.block-text {
  color: var(--neutral-500);
}

/*block-text*/
.color-neutral-900 {
  color: var(--neutral-900);
}

/*text block*/
.custom-widget-container-text {
  display: flex;
  align-items: center;
}

/*BUTTONS*/
.button-primary {
  padding: 16px 24px;
  background-color: var(--primary-900) !important;
  color: var(--neutral-50) !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  a {
    color: var(--neutral-50) !important;
  }
}

.button-secondary {
  padding: 16px 24px;
  background-color: inherit;
  color: var(--primary-900) !important;
  border: 1px solid var(--primary-900) !important;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  a {
    color: var(--primary-900) !important;
    text-decoration: none;
  }
}

.button-primary:hover {
  background-color: var(--primary-900-hover) !important;
}
.button-secondary:hover {
  background-color: var(--primary-50) !important;
}

/*HERO*/
.hero-container {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease;
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 80px;
  max-width: 1440px;
}

.section-title {
  width: 65%;
  color: var(--neutral-50);
}

.section-subtitle {
  width: 45%;
  color: var(--neutral-50);
}

.hero-dots {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: var(--neutral-200);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.dot.active {
  background-color: var(--primary-900);
  width: 30px;
  height: 12px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}
