.arrow-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.arrow-card a {
  width: 100%;
  aspect-ratio: 1/1;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: var(--black-100);
}
.arrow-card a::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: var(--green-300);
  z-index: 0;
}
.arrow-card a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  z-index: 3;
}
.arrow-card a img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
}
.arrow-card a .event_title, .arrow-card a .post_title, .arrow-card a .article_title {
  z-index: 4;
}
.arrow-card a .event_title h2, .arrow-card a .event_title p, .arrow-card a .post_title h2, .arrow-card a .post_title p, .arrow-card a .article_title h2, .arrow-card a .article_title p {
  text-shadow: 0.5rem 0.1rem 1rem rgba(0, 0, 0, 0.35);
}
.arrow-card a .event_title h2, .arrow-card a .event_title h3, .arrow-card a .post_title h2, .arrow-card a .post_title h3, .arrow-card a .article_title h2, .arrow-card a .article_title h3 {
  width: 100%;
  font-size: 2rem !important;
  line-height: 2rem !important;
}
.arrow-card a .event_title p, .arrow-card a .post_title p, .arrow-card a .article_title p {
  justify-self: flex-start;
  align-self: flex-start;
}
.arrow-card a .article_title .post-date {
  margin: 0 !important;
}
.arrow-card a .arrow-button {
  align-self: flex-end;
  background-color: var(--green-400);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-card a .arrow-button svg {
  fill: var(--black-100);
  width: 35%;
  height: 35%;
  stroke: none;
}

.arrow-card a:focus-within {
  outline-offset: 0.5rem !important;
}

.img-placeholder {
  background-color: gray;
}

.card-section {
  position: relative;
  background-color: var(--black-100);
  padding: 6rem 0.5rem 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-section .card {
  width: 100%;
  max-width: 1400px;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--green-400);
  border-radius: 1rem;
  padding: 0.5rem;
}
.card-section .card .card_text {
  padding: 0.5rem 0.5rem 3rem 0.5rem;
  flex: 1 1 50%;
}
.card-section .card .card_text .split-container h2, .card-section .card .card_text .split-container p {
  color: var(--black-100);
  padding-bottom: 1rem;
}
.card-section .card .card_text .tlm-button {
  margin-top: 2rem;
}
.card-section .card .card_img {
  flex: 1 1 50%;
}
.card-section .card .card_img figure .img-cont {
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}
.card-section .card .card_img figure .img-cont img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.card-section .card .card_img figure .img-cont .img-landscape {
  min-width: 120%;
  min-height: 120%;
  width: auto;
  height: auto;
}
.card-section .card .card_img figure .img-cont .img-portrait {
  width: 100%;
  height: auto;
  min-height: 120%;
}
.card-section .card-transparent {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1rem;
}
.card-section .card-transparent .card_text_transparent {
  padding: 0.5rem 0.5rem 3rem 0.5rem;
  flex: 1 1 50%;
}
.card-section .card-transparent .card_text_transparent .split-container h2, .card-section .card-transparent .card_text_transparent .split-container p {
  padding-bottom: 1rem;
}
.card-section .card-transparent .card_text_transparent .tlm-button {
  margin-top: 2rem;
}
.card-section .card-transparent .card_polaroid {
  flex: 1 1 50%;
}
.card-section .card-transparent .card_polaroid figure {
  display: flex;
  flex-direction: column;
  background-color: var(--green-400);
  border-radius: 1rem;
  padding: 0.5rem;
}
.card-section .card-transparent .card_polaroid figure .img-cont {
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}
.card-section .card-transparent .card_polaroid figure .img-cont img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.card-section .card-transparent .card_polaroid figure .img-cont .img-landscape {
  min-width: 120%;
  min-height: 120%;
  width: auto;
  height: auto;
}
.card-section .card-transparent .card_polaroid figure .img-cont .img-portrait {
  width: 100%;
  height: auto;
  min-height: 120%;
}
.card-section .card-transparent .card_polaroid figure figcaption {
  padding: 1rem 0.25rem 0.5rem 0.25rem;
  color: var(--black-100);
}
.card-section .card-transparent_rect {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1rem;
}
.card-section .card-transparent_rect .card_text_transparent {
  padding: 0.5rem 0.5rem 3rem 0.5rem;
}
.card-section .card-transparent_rect .card_text_transparent .split-container h2, .card-section .card-transparent_rect .card_text_transparent .split-container p {
  padding-bottom: 1rem;
}
.card-section .card-transparent_rect .card_text_transparent .tlm-button {
  margin-top: 2rem;
}
.card-section .card-transparent_rect .card_rect figure {
  background-color: var(--green-400);
  border-radius: 1rem;
  padding: 0.5rem;
}
.card-section .card-transparent_rect .card_rect figure .img-cont_static {
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/1.8;
}
.card-section .card-transparent_rect .card_rect figure .img-cont_static img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}
.card-section .card-transparent_double .card_double {
  flex: 1 1 50%;
  min-height: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.card-section .card-transparent_double .card_double figure {
  flex: 1 1 50%;
  height: 100vw;
  display: flex;
}
.card-section .card-transparent_double .card_double figure .img-cont {
  border: 0.5rem solid var(--green-400);
  width: 100%;
  height: 90%;
  overflow: hidden;
  border-radius: 0.75rem;
}
.card-section .card-transparent_double .card_double figure .img-cont img {
  height: 120%;
}
.card-section .card-transparent_double .card_double figure:nth-child(2) .img-cont {
  align-self: flex-end;
}

.card-section_claim {
  position: relative;
  background-color: var(--black-100);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0.5rem 0 0.5rem;
}
.card-section_claim .card, .card-section_claim .card-transparent {
  width: 100%;
  max-width: 1400px;
  border-radius: 1rem;
}
.card-section_claim .card .card_text .split-container h2, .card-section_claim .card .card_text .split-container p, .card-section_claim .card-transparent .card_text .split-container h2, .card-section_claim .card-transparent .card_text .split-container p {
  padding-bottom: 1rem;
}
.card-section_claim .card .card_text .tlm-button, .card-section_claim .card-transparent .card_text .tlm-button {
  margin-top: 2rem;
}
.card-section_claim .card {
  background-color: var(--green-400);
  color: var(--black-100);
  padding: 2rem;
}
.card-section_claim .card-transparent {
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .card-section .card {
    flex-direction: row;
    gap: 3rem;
  }
  .card-section .card .card_text {
    padding: 2rem 0.5rem 3rem 2rem;
  }
  .card-section .card .card_img figure {
    height: 100%;
  }
  .card-section .card .card_img figure .img-cont {
    aspect-ratio: unset;
    height: 100%;
  }
  .card-section .card-transparent {
    flex-direction: row;
    gap: 5rem;
  }
  .card-section .reversed {
    flex-flow: row-reverse;
  }
  .card-section .reversed .card_text {
    padding: 2rem 2rem 3rem 0.5rem;
  }
}
@media screen and (min-width: 1300px) {
  .card-section {
    padding: 12.5rem 1rem 0.5rem 1rem;
  }
  .card-section .card .card_text .split-container h2, .card-section .card .card_text .split-container p {
    padding-bottom: 2.5rem;
  }
  .card-section .card-transparent_rect .card_text_transparent {
    text-align: center;
  }
  .card-section .card-section_claim {
    padding: 4rem 5rem 0.5rem 5rem;
  }
  .card-section .card-section_claim .card .card_text__extra_padding {
    padding: 2rem;
  }
}
.text-section {
  position: relative;
  padding: 6rem 0.5rem 0 0.5rem;
  display: flex;
  justify-content: center;
  align-self: center;
}
.text-section .text_content {
  max-width: 1400px;
  flex: 1 1 50%;
  padding: 0 0.5rem 0 0.5rem;
}
.text-section .text_content .split-container h2, .text-section .text_content .split-container p {
  padding-bottom: 1rem;
}
.text-section .text_content .tlm-button {
  margin-top: 2rem;
}
.text-section .text_content ul {
  padding-bottom: 1rem;
}
.text-section .text_content ul, .text-section .text_content li {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .text-section .text_content {
    text-align: center;
  }
  .text-section .text_content ul, .text-section .text_content li {
    text-align: start;
  }
}
@media screen and (min-width: 1024px) {
  .text-section {
    padding: 12.5rem 1rem 0.5rem 1rem;
  }
}
#services-section {
  padding: 1rem 1rem 0 1rem;
}
#services-section .services_cont {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
#services-section .services_cont .service_polaroid {
  width: 100%;
  background-color: var(--green-400);
  border-radius: 1rem;
  padding: 0.5rem;
}
#services-section .services_cont .service_polaroid figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#services-section .services_cont .service_polaroid figure .img-cont {
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}
#services-section .services_cont .service_polaroid figure .img-cont img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
#services-section .services_cont .service_polaroid figure .img-cont .img-landscape {
  min-width: 120%;
  width: auto;
  height: 120%;
}
#services-section .services_cont .service_polaroid figure .img-cont .img-portrait {
  width: 100%;
  height: auto;
  min-height: 120%;
}
#services-section .services_cont .service_polaroid figure .one img {
  top: -8%;
}
#services-section .services_cont .service_polaroid figure .three img {
  left: -21%;
}
#services-section .services_cont .service_polaroid figure .four img {
  left: -64%;
}
#services-section .services_cont .service_polaroid figure figcaption {
  color: var(--black-100);
  width: 100%;
  padding: 0.5rem 0 2rem 0;
}
#services-section .services_cont .service_polaroid figure figcaption h3 {
  padding-bottom: 0.5rem;
}
#services-section .services_cont .service_polaroid figure figcaption p {
  padding-bottom: 2.5rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #services-section .services_cont {
    grid-template-columns: repeat(2, 1fr);
  }
  #services-section .services_cont .service_polaroid {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
  #services-section .services_cont .service_polaroid figure {
    display: contents;
  }
  #services-section .services_cont .service_polaroid figure figcaption {
    grid-row: 2/span 2;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
  #services-section .services_cont .service_polaroid figure figcaption .tlm-button {
    align-self: end;
  }
}
@media screen and (min-width: 1200px) {
  #services-section .services_cont {
    grid-template-columns: repeat(3, 1fr);
  }
  #services-section .services_cont .service_polaroid figure .img-cont {
    aspect-ratio: 1/0.7;
  }
  #services-section .services_cont .service_polaroid figure .one img {
    top: -45%;
  }
  #services-section .services_cont .service_polaroid figure .two img {
    top: -38%;
  }
  #services-section .services_cont .service_polaroid figure .three img {
    left: -11%;
  }
  #services-section .services_cont .service_polaroid figure .four img {
    left: -15%;
  }
}
.gallery {
  padding: 6rem 1rem 0.5rem 1rem;
}
.gallery .splide {
  width: 100%;
  max-width: 1400px;
  padding-top: 3rem;
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.gallery .splide .splide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
  order: 999;
  padding-top: 0.5rem;
}
.gallery .splide .splide__arrows .splide__arrow {
  background-color: var(--green-400);
  opacity: 1;
  width: 44px;
  height: 44px;
  position: relative;
  transform: none;
}
.gallery .splide .splide__arrows .splide__arrow:disabled {
  opacity: 0.3;
}
.gallery .splide .splide__arrows .splide__arrow svg {
  fill: var(--black-100);
  stroke: none;
  width: 20px;
  height: 20px;
}
.gallery .splide .splide__track .splide__list .splide__slide .slide-img-cont {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}
.gallery .splide .splide__track .splide__list .splide__slide .slide-img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gallery .splide .splide__pagination {
  bottom: -1rem;
}
.gallery .splide .splide__pagination .splide__pagination__page {
  opacity: 1;
  background-color: var(--black-200);
}
.gallery .splide .splide__pagination .is-active {
  background-color: var(--green-400);
}
.gallery .gallery_grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
}
.gallery .gallery_grid .image-cont {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.gallery .gallery_grid .image-cont img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.gallery .gallery_grid .image-cont .image-landscape {
  min-width: 120%;
  min-height: 120%;
  width: auto;
  height: auto;
}
.gallery .gallery_grid .image-cont .image-portrait {
  width: 100%;
  height: auto;
  min-height: 120%;
}

@media screen and (min-width: 768px) {
  .gallery {
    padding-bottom: 3rem;
  }
  .gallery .gallery_grid {
    display: grid;
    grid-auto-flow: dense;
  }
  .gallery .gallery_grid .image-cont {
    aspect-ratio: auto;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .gallery {
    padding: 12.5rem 1rem 0.5rem 1rem;
  }
}
#content .gallery-la-rosa-rossa .gallery_grid #lrr-one img {
  left: -36%;
  top: -10%;
}
#content .gallery-la-rosa-rossa .gallery_grid #lrr-two img {
  top: -11%;
}
#content .gallery-la-rosa-rossa .gallery_grid #lrr-three img {
  top: -16%;
}
#content .gallery-la-rosa-rossa .gallery_grid #lrr-four img {
  top: -15%;
}
#content .gallery-la-rosa-rossa .gallery_grid #lrr-five img {
  top: -15%;
  left: -45%;
}
@media screen and (min-width: 768px) {
  #content .gallery-la-rosa-rossa .gallery_grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(3, 250px) !important;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-one {
    grid-column: span 2;
    grid-row: span 2;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-one img {
    top: -16%;
    left: -32%;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-two img {
    top: -15%;
    left: 0;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-three img {
    top: -20%;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-five {
    grid-column: span 2;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-five img {
    left: -5%;
    top: -40%;
  }
}
@media screen and (min-width: 1024px) {
  #content .gallery-la-rosa-rossa .gallery_grid {
    grid-template-rows: repeat(4, 250px) !important;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-one img {
    left: -20%;
    top: -16%;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-two {
    grid-row: span 3;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-two img {
    top: 0%;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-three {
    grid-row: span 2;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-three img {
    top: -10%;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-four img {
    top: -49%;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-five {
    grid-column: span 2;
  }
  #content .gallery-la-rosa-rossa .gallery_grid #lrr-five img {
    top: -60%;
  }
}
@media screen and (min-width: 1200px) {
  #content .gallery-la-rosa-rossa .gallery_grid {
    grid-template-rows: repeat(4, 300px) !important;
  }
}

.benefits {
  padding: 6rem 0.5rem 0 0.5rem;
}
.benefits .benefits_content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.benefits .benefits_content .benefit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.benefits .benefits_content .benefit .benefit_icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--green-400);
}
.benefits .benefits_content .benefit .benefit_title, .benefits .benefits_content .benefit .benefit_text {
  text-align: center;
}
.benefits .benefits_content .benefit .benefit_title {
  font-size: clamp(30px, 3vw + 0.1px, 40px) !important;
  line-height: clamp(30px, 3vw + 0.1px, 40px) !important;
}

@media screen and (min-width: 768px) {
  .benefits {
    padding: 6rem 5rem 0 5rem;
  }
  .benefits .benefits_content {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits .benefits_content .benefit {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    justify-items: center;
    align-items: start;
  }
  .benefits .benefits_content .col2-span2, .benefits .benefits_content .tlm-button {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1024px) {
  .benefits {
    padding: 12.5rem 5rem 0.5rem 5rem;
  }
  .benefits .benefits_content {
    grid-template-columns: repeat(6, 1fr);
  }
  .benefits .benefits_content .benefit {
    grid-column: span 2;
  }
  .benefits .benefits_content .col6-span3 {
    grid-column: span 3;
  }
  .benefits .benefits_content .col6-span6, .benefits .benefits_content .tlm-button {
    grid-column: span 6;
  }
  .benefits .benefits_content .span-center {
    grid-column: 3/span 2;
  }
}
@media screen and (min-width: 1300px) {
  .benefits {
    padding: 12.5rem 5rem 0.5rem 5rem;
  }
  .benefits .benefits_content {
    grid-template-columns: repeat(12, 1fr);
  }
  .benefits .benefits_content .benefit {
    grid-column: span 3;
  }
  .benefits .benefits_content .col12-span4 {
    grid-column: span 4;
  }
  .benefits .benefits_content .col12-span6 {
    grid-column: span 6;
  }
  .benefits .benefits_content .col12-span12, .benefits .benefits_content .tlm-button {
    grid-column: span 12;
  }
}
.maps {
  padding: 6rem 0.5rem 0 0.5rem;
  flex-direction: column;
  gap: 1rem;
}
.maps .maps_container {
  width: 100%;
}
.maps .maps_container iframe {
  width: 100%;
  border-radius: 1rem;
}

@media screen and (min-width: 1024px) {
  .maps {
    padding: 12.5rem 5rem 0.5rem 5rem;
  }
  .maps .maps_container iframe {
    min-height: 700px;
  }
}
.pt_first-section {
  padding-top: 3rem;
}

.pt_close {
  padding-top: 2rem;
}

.pt_0 {
  padding-top: 0;
}

.pt_1-5 {
  padding-top: 1.5rem;
}

.pt_3 {
  padding-top: 3rem;
}

.pt_6 {
  padding-top: 6rem;
}

.pb_0 {
  padding-bottom: 0;
}

.pb_05 {
  padding-bottom: 0.5rem;
}

.pb_3 {
  padding-bottom: 3rem;
}

.pb_6 {
  padding-bottom: 6rem;
}

@media screen and (min-width: 1024px) {
  .pt_first-section {
    padding-top: 6rem;
  }
  .pt_close {
    padding-top: 3rem;
  }
  .pt_0 {
    padding-top: 8rem;
  }
  .pt_3 {
    padding-top: 12.5rem;
  }
}

/*# sourceMappingURL=sections.css.map */
