@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
.instrument-sans-bold {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.instrument-sans-regular {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.instrument-sans-light {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

#page {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #172f89;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: #172f89;
}

/*LOGO*/
@media (max-width: 768px) {
  .site-branding .custom-logo-link img {
    width: 120px;
    height: auto;
  }
}

/*BUTTONS*/
.btn_green {
  background-color: #acd384;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .btn_green {
    min-width: auto;
    font-size: 1rem;
  }
}
.btn_green:hover {
  background-color: #93c65e;
  color: #fff;
}
.btn_green.btn_large {
  min-width: 335px;
}
@media (max-width: 768px) {
  .btn_green.btn_large {
    min-width: auto;
  }
}

.wp-block-button__link {
  color: #172f89;
  background-color: transparent;
  border-radius: 8px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(0.45em + 1px) calc(1.333em + 2px);
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid #172f89;
  transition: 0.3s;
}
.wp-block-button__link:hover {
  background-color: #172f89;
  color: #fff;
  border: 2px solid #172f89;
}
@media screen and (max-width: 576px) {
  .wp-block-button__link {
    font-size: 1rem;
  }
}

/*TITLES*/
.big_title {
  font-size: 3.75rem;
  font-weight: 600;
  color: #172f89;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 576px) {
  .big_title {
    font-size: 1.8rem;
  }
}

.title {
  font-size: 3rem;
  font-weight: 700;
  color: #172f89;
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .title {
    font-size: 1.75rem;
  }
}

p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: #172f89;
}
@media screen and (max-width: 576px) {
  p {
    font-size: 1.2rem;
  }
}

/*HEADER*/
header {
  background: #d3e1fc;
  position: relative;
  z-index: 2;
}

/*HOME*/
.hero_home {
  position: relative;
  background-color: #d3e1fc;
  padding: 2rem 1rem 0 1rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .hero_home {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1000px) {
  .hero_home {
    padding: 4rem 2rem;
    height: calc(100vh - 161px);
  }
}
.hero_home .hero_caption {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 991px) {
  .hero_home .hero_caption {
    max-width: 50%;
  }
}
.hero_home .hero_image {
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .hero_home .hero_image {
    width: 600px;
  }
}
@media screen and (min-width: 1000px) {
  .hero_home .hero_image {
    width: 1000px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .hero_home .hero_image {
    width: 1140px;
  }
}
@media screen and (min-width: 1600px) {
  .hero_home .hero_image {
    width: 1400px;
  }
}

/*3 COLUMNS*/
.columns_wrap {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .columns_wrap {
    flex-direction: column;
  }
}
.columns_wrap > .wp-block-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.columns_wrap > .wp-block-column.is-vertically-aligned-stretch {
  display: flex;
  flex-direction: column;
}
.columns_wrap > .wp-block-column.is-vertically-aligned-stretch .wp-block-image {
  flex: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 13px;
  display: flex;
}
.columns_wrap > .wp-block-column.is-vertically-aligned-stretch .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.block_light {
  background: #d3e1fc;
  padding: 2rem;
  border-radius: 13px;
}
.block_light .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.block_light .wp-block-group__inner-container .wp-block-buttons {
  width: 100%;
}
.block_light .wp-block-group__inner-container .wp-block-buttons .wp-block-button {
  width: 100%;
}

.block_dark {
  background: #172f89;
  padding: 2rem;
  border-radius: 13px;
}
.block_dark .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.block_dark .wp-block-group__inner-container h2 {
  color: #d3e1fc;
  font-size: 10rem;
  line-height: 10rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .block_dark .wp-block-group__inner-container h2 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.block_dark .wp-block-group__inner-container p {
  color: #fff;
  margin: 0;
}
.block_dark .wp-block-group__inner-container hr {
  width: 100%;
  opacity: 1;
  margin: 30px 0;
}

.img-fluid {
  margin: 0;
}
.img-fluid img {
  width: 100%;
}

/*FORM*/
.prenota_wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 10rem;
  border: 2px solid #172f89;
  border-radius: 13px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .prenota_wrap {
    padding: 2rem 2rem;
  }
}
.prenota_wrap .prenota_row {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 576px) {
  .prenota_wrap .prenota_row {
    flex-direction: column;
    gap: 0rem;
  }
}
.prenota_wrap .prenota_row .field {
  flex: 1;
}
@media screen and (max-width: 576px) {
  .prenota_wrap .prenota_row .field {
    margin-bottom: 0.5rem;
  }
}
.prenota_wrap .prenota_row .field p {
  margin-bottom: 5px;
}
.prenota_wrap .prenota_row .field label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 400;
  color: #172f89;
}
.prenota_wrap .prenota_row .field .prenota-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #d3e1fc;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}
.prenota_wrap .prenota_row-full label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 400;
  color: #172f89;
}
.prenota_wrap .prenota_row-full .prenota-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #d3e1fc;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  min-height: 8rem;
  box-sizing: border-box;
  resize: vertical;
}
.prenota_wrap .prenota_submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.prenota_wrap .prenota_submit-wrap p {
  display: flex;
  flex-direction: row-reverse;
}
.prenota_wrap .prenota_submit-wrap input[type=submit] {
  background-color: #acd384;
  color: #172f89;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.prenota_wrap .prenota_submit-wrap input[type=submit]:hover, .prenota_wrap .prenota_submit-wrap input[type=submit]:focus {
  background-color: #9fcc71;
}

/*COUNTERS*/
.columns_counters {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .columns_counters {
    flex-direction: column;
  }
}
.columns_counters > .wp-block-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.columns_counters > .wp-block-column.is-vertically-aligned-stretch {
  display: flex;
  flex-direction: column;
}
.columns_counters > .wp-block-column.is-vertically-aligned-stretch .wp-block-image {
  flex: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 13px;
  display: flex;
}
.columns_counters > .wp-block-column.is-vertically-aligned-stretch .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.counters_wrap {
  background: #172f89;
  border-radius: 13px;
  padding: 2rem;
}
@media (max-width: 768px) {
  .counters_wrap .wp-block-columns {
    margin-bottom: 0;
  }
}
.counters_wrap .counter_item h2 {
  color: #d3e1fc;
  font-size: 5.625rem;
  line-height: 5.625rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .counters_wrap .counter_item h2 {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.counters_wrap .counter_item p {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .counters_wrap img {
    max-width: 120px;
  }
}

/*FOOTER*/
footer hr {
  color: #172f89;
  border-top: 2px solid #172f89;
  opacity: 1;
}
@media (max-width: 768px) {
  footer img {
    max-width: 70% !important;
  }
}/*# sourceMappingURL=main.css.map */