/* ------------------------------------------- */
/* FONT DEL SITO */
/* ------------------------------------------ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

.montserrat {
  font-family: var(--font-family2);
}

/* ------------------------------------------- */
/* VARIABILI CSS */
/* ------------------------------------------ */

/* Le variabili sono in homepage */

@media screen and (max-width: 768px) {
  :root {
    --heading1: 60px;
    --line-height-heading1: ;
    --heading2: 30px;
    --line-height-heading2: ;
    --heading3: 28px;
    --line-height-heading3: ;
    --heading4: 24px;
    --heading5: 20px;
    --heading6: 16px;
    --section-title: 16px;
    --paragraph: 16px;
    --internal-link: 16px;
    --breadcrumbs: 14px;
    --footer: 14px;
  }
}

/* ------------------------------------------- */
/* TESTI */
/* ------------------------------------------ */

p {
  font-size: 16px;
  line-height: 28px;
}

.page-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary-color);
}

.section-title {
  font-size: 36px;
  font-weight: bold;
}

.section-label {
  display: block;
  font-family: var(--font-family2);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--primary-color);
  position: relative;
}

.section-title-4 {
  font-size: 20px;
  font-weight: bold;
}

.section-label::before {
  content: "";
  height: 2px;
  width: 70px;
  background-color: var(--primary-color);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

#editor h4 {
  font-size: 20px;
  font-weight: bold;
}

#editor ul {
  list-style-position: inside;
  padding: 0;
  margin: 0;
}

#editor ul li {
  margin-bottom: 6px;
}

#editor h2 {
  font-size: 36px;
  font-weight: bold;
}

/* ------------------------------------------- */
/* COLORI DEI TESTI */
/* ------------------------------------------ */

.primary-color {
  color: var(--primary-color);
}

/* ------------------------------------------- */
/* BACKGROUND COLORI */
/* ------------------------------------------ */

.bg-searchbar {
  background-color: var(--searchbar);
}

.bg-light-grey {
  background-color: var(--light-grey);
}

/* ------------------------------------------- */
/* PULSANTI */
/* ------------------------------------------ */

.btn-1,
#gform_submit_button_1,
#gform_submit_button_2,
#gform_submit_button_3 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  transition: 0.1s ease-in-out;
}

.btn-1:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
}

.btn-1:hover,
#gform_submit_button_1:hover,
#gform_submit_button_2:hover,
#gform_submit_button_3:hover {
  background-color: var(--dark);
  color: #ffffff;
  border: 2px solid var(--dark);
}

.btn-2 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  color: var(--dark);
  border: 2px solid var(--dark);
  background-color: #ffffff;
  transition: 0.1s ease-in-out;
}

.btn-2:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
}

.btn-2:hover {
  background-color: var(--dark);
  color: #ffffff;
  border: 2px solid var(--dark);
}
