/* ################################################### */
/* 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");


:root {}

/* ################################################### */
/* TESTI */
/* ################################################### */

p {
  font-size: 16px;
  line-height: 28px;
}

.page-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--first-color);
}

.page-subtitle {
  font-size: 36px !important;
  font-weight: bold !important;
  color: var(--grey-color) !important;
}

.page-text {
  color: var(--grey-color) !important;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--grey-color);
}

.section-subtitle {
  font-size: 25px;
  font-weight: bold;
  color: var(--grey-color);
}

.section-label {
  display: block;
  font-family: var(--font-family2);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--first-color);
  position: relative;
}

.section-title-4 {
  font-size: 20px;
  font-weight: bold;
}

#editor p {
  color: var(--dark);
}

#editor h2 {
  color: var(--grey-color);
  margin-bottom: 30px;
}

#editor h4 {
  font-size: 20px;
  font-weight: bold;
}

#editor ul {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

#editor ul li {
  margin-bottom: 6px;
}

#editor h2 {
  font-size: 36px;
  font-weight: bold;
}

/* ################################################### */
/* COLORI DEI TESTI */
/* ################################################### */

.primary-color {
  color: var(--first-color);
}

/* ################################################### */
/* BACKGROUND COLORI */
/* ################################################### */

.bg-searchbar {
  background-color: var(--searchbar);
}

.bg-light-grey {
  background-color: var(--light-grey);
}

.bg-gradient-custom {
  width: 100%;
  background: linear-gradient(45deg, var(--second-color-sfumato) 0%, rgba(245, 245, 245, 0.84) 25%, rgba(245, 245, 245, 0.37) 75%, var(--second-color-sfumato) 100%);
}

/* ################################################### */
/* 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 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid var(--second-color);
  background-color: var(--second-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(--first-color);
  color: var(--dark);
  border: 2px solid var(--first-color);
}

.btn-2 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--second-color);
  border: 2px solid var(--second-color);
  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(--first-color);
  color: var(--dark);
  border: 2px solid var(--first-color);
}

.btn-3 {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--second-color);
  border: 2px solid var(--second-color);
  background-color: #ffffff;
  transition: 0.1s ease-in-out;
}

.btn-3:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
}

.btn-3:hover {
  background-color: var(--first-color);
  color: var(--dark);
  border: 2px solid var(--first-color);
}