@font-face {
  font-family: "Montserrat";
  font-weight: normal;
  src: url("../fonts/Montserrat/static/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Bold";
  font-weight: bold;
  src: url("../fonts/Montserrat/static/Montserrat-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Italic";
  font-style: italic;
  src: url("../fonts/Montserrat/static/Montserrat-Italic.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Mansalva";
  src: url("../fonts/Mansalva/Mansalva-Regular.ttf");
  font-display: swap;
}
:root {
  --blue: #3f5e8c;
  --beige: #f5e0c3;
  --terracotta: #c66e4e;
  --terracotta-light: #e3735e;
  --white: #ffffff;
  --black: #000000;
}

.custom-btn {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.custom-btn-terracotta {
  background: var(--terracotta);
  color: var(--beige);
  transition: all 0.4s;
}
.custom-btn-terracotta:hover {
  text-decoration: underline;
  box-shadow: 0px 0px 10px 0px var(--black);
  color: var(--beige);
  transition: all 0.4s;
}

.custom-btn-blue {
  background: var(--blue);
  color: var(--beige);
  transition: all 0.4s;
}
.custom-btn-blue:hover {
  text-decoration: underline;
  box-shadow: 0px 0px 10px 0px var(--black);
  color: var(--beige);
  transition: all 0.4s;
}

.bg-blue {
  background-color: var(--blue);
}

.bg-terracotta {
  background-color: var(--terracotta);
}

.separate-div {
  height: auto;
  width: 1px;
  background-color: var(--blue);
}
@media screen and (max-width: 767px) {
  .separate-div {
    height: 1px;
    width: 100%;
    margin: 1rem 0;
  }
}

* {
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  font-family: "Montserrat";
  color: var(--black);
  background-color: var(--beige);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
body h1, body h2, body h3 {
  font-family: "Mansalva";
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  body h1, body h2, body h3 {
    font-size: 2rem;
  }
}
body h4, body h5, body h6 {
  font-family: "Montserrat Bold";
  color: var(--blue);
}
body a {
  text-decoration: none;
}
body button {
  border: 0;
}
body .container, body .container-fluid {
  overflow: hidden;
}
body section {
  padding: 2rem 0;
}
body main {
  margin-top: 150px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body main {
    margin-top: 100px;
  }
}

header#header {
  height: 150px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--blue);
  box-shadow: 0px 0px 10px 0px var(--black);
  z-index: 9;
  margin: 0;
}
header#header .main-header {
  text-align: center;
  display: flex; /* Opzionale: aiuta a centrare meglio il logo */
  justify-content: center;
  align-items: center;
  height: 100%;
}
header#header .main-header #block-header-image a img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header#header {
    height: 100px;
  }
  header#header .main-header #block-header-image a img {
    width: 100%;
    max-width: 100px;
    height: auto;
  }
}

body.path-homepage main #block-hero .wrapping-hero {
  display: flex;
  gap: 3rem;
}
body.path-homepage main #block-hero .wrapping-hero .custom-carousel-container {
  width: 50%;
  height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px var(--black);
}
body.path-homepage main #block-hero .wrapping-hero .custom-carousel-container .custom-carousel-items {
  display: flex;
  height: 100%;
  transition: all 0.4s;
}
body.path-homepage main #block-hero .wrapping-hero .custom-carousel-container .custom-carousel-items .custom-carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}
body.path-homepage main #block-hero .wrapping-hero .custom-carousel-container .custom-carousel-items .custom-carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
body.path-homepage main #block-hero .wrapping-hero .hero-description {
  width: 50%;
  padding: 1rem;
}
body.path-homepage main #block-services h2 {
  color: var(--beige);
}
body.path-homepage main #block-services .wrapping-services {
  display: flex;
  justify-content: space-around;
}
body.path-homepage main #block-services .wrapping-services .service-item {
  width: 25%;
  height: 350px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px var(--black);
  overflow: hidden;
}
body.path-homepage main #block-services .wrapping-services .service-item .service-item-overlay {
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
body.path-homepage main #block-services .wrapping-services .service-item .service-item-image {
  height: 100%;
}
body.path-homepage main #block-services .wrapping-services .service-item .service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.path-homepage main #block-services .wrapping-services .service-item .service-item-description {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 8;
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  font-family: "Montserrat Bold";
}
body.path-homepage main #block-services .wrapping-services .service-item .service-item-description h4 {
  color: var(--white);
}
body.path-homepage main #block-about .wrapping-about {
  display: flex;
  justify-content: space-around;
}
body.path-homepage main #block-about .wrapping-about > div:not(.separate-div) {
  width: 40%;
}
body.path-homepage main #block-about .wrapping-about .about-founders-wrapper {
  display: flex;
  justify-content: space-between;
}
body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder .image-founder {
  width: 250px;
  height: 250px;
  border: 2px solid var(--blue);
  overflow: hidden;
  border-radius: 50%;
}
body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder .image-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder .title-founder {
  text-align: center;
}
body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder:last-child {
  flex-direction: column-reverse;
}
body.path-homepage main #block-info {
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}
body.path-homepage main #block-info .wrapping-info {
  display: flex;
  justify-content: space-between;
}
body.path-homepage main #block-info .wrapping-info > div:not(.separate-div) {
  width: 45%;
}
body.path-homepage main #block-info .wrapping-info .info-wrapper h4, body.path-homepage main #block-info .wrapping-info .info-wrapper h5 {
  color: var(--beige);
}
body.path-homepage main #block-info .wrapping-info .form-wrapper form {
  width: 70%;
  margin: auto;
  padding: 1rem;
  background: var(--beige);
  border-radius: 15px;
  border: 2px solid var(--blue);
}
body.path-homepage main .action-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  body.path-homepage main #block-hero .wrapping-hero {
    flex-direction: column;
  }
  body.path-homepage main #block-hero .wrapping-hero .custom-carousel-container {
    width: 100%;
  }
  body.path-homepage main #block-hero .wrapping-hero .hero-description {
    width: 100%;
  }
  body.path-homepage main #block-services .wrapping-services {
    flex-direction: column;
    max-width: 100%;
    gap: 2rem;
  }
  body.path-homepage main #block-services .wrapping-services .service-item {
    width: 90%;
    margin: auto;
    height: 300px;
  }
  body.path-homepage main #block-about .wrapping-about {
    flex-direction: column;
  }
  body.path-homepage main #block-about .wrapping-about > div:not(.separate-div) {
    width: 100%;
  }
  body.path-homepage main #block-about .wrapping-about .about-founders-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder {
    align-items: center;
  }
  body.path-homepage main #block-about .wrapping-about .about-founders-wrapper .about-founder:last-child {
    flex-direction: column;
  }
  body.path-homepage main #block-info .wrapping-info {
    flex-direction: column;
  }
  body.path-homepage main #block-info .wrapping-info > div:not(.separate-div) {
    width: 100%;
  }
  body.path-homepage main #block-info .wrapping-info .form-wrapper #contactForm {
    width: 90%;
  }
}

footer#footer {
  background-color: var(--blue);
}
footer#footer .wrapping-footer {
  display: flex;
  justify-content: space-between;
}
footer#footer .wrapping-footer .footer-logo {
  width: 50%;
  height: 300px;
}
footer#footer .wrapping-footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer#footer .wrapping-footer .footer-social {
  width: 45%;
}
footer#footer .wrapping-footer .footer-social h3 {
  color: var(--beige);
  text-align: center;
}
footer#footer .wrapping-footer .footer-social .social-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer#footer .wrapping-footer .footer-social .social-list-items .social-list-item {
  color: var(--beige);
}
footer#footer .wrapping-footer .footer-social .social-list-items .social-list-item span {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
footer#footer .wrapping-footer .footer-social .social-list-items .social-list-item a {
  color: var(--beige);
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
footer#footer .wrapping-footer .footer-social .social-list-items .social-list-item a:hover {
  text-decoration: underline;
}
footer#footer .copyright-block {
  padding: 1rem;
  border-top: 1px solid var(--beige);
  color: var(--beige);
  text-align: center;
}
footer#footer .copyright-block a {
  color: var(--beige);
}
footer#footer .copyright-block a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  footer#footer .wrapping-footer {
    flex-direction: column;
  }
  footer#footer .wrapping-footer .footer-logo {
    width: 100%;
    height: 150px;
  }
  footer#footer .wrapping-footer .footer-social {
    width: 100%;
  }
  footer#footer .wrapping-footer .footer-social .social-list-items {
    width: 60%;
    margin: auto;
    margin-bottom: 2rem;
  }
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-250%);
  transition: all 0.4s;
}
.popup-container .popup-wrapper {
  z-index: 11;
  padding: 1rem;
  background: var(--beige);
  border-radius: 15px;
  border: 2px solid var(--blue);
  width: 30%;
  text-align: center;
  height: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popup-container .popup-wrapper {
    width: 90%;
    margin: auto;
  }
}
.popup-container .popup-wrapper .popup-close {
  background: transparent;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue);
  position: absolute;
  right: 3%;
  top: 3%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.popup-container .popup-wrapper .popup-close:hover {
  box-shadow: 0px 0px 10px 0px var(--blue);
  transition: all 0.4s;
}
.popup-container .popup-wrapper .popup-header {
  border-bottom: 1px solid var(--blue);
}
.popup-container .popup-wrapper .popup-body {
  padding: 1rem 0;
}
.popup-container.show {
  transition: all 0.4s;
  transform: translateY(0);
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid var(--beige);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.is-invalid {
  border-color: var(--terracotta-light);
}

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