:root {
  --bg-gray: #f5f5f5;
  --white: #ffffff;
  --bg-blue: #0a2740;
  --text-blue: #0a2740;
  --gold: #d4af37;
  --black: #000000;
}

.custom-btn {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  border: 0;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom-btn:hover {
  transition: all 0.3s;
}

.custom-btn-gold {
  background-color: var(--gold);
  color: var(--white);
}
.custom-btn-gold:hover {
  font-size: 1.2rem;
}

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

@font-face {
  font-family: "Montserrat";
  src: url("../../assets/font/Montserrat/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Lato";
  src: url("../../assets/font/Lato/Lato-Regular.ttf");
}
body {
  font-family: "Lato";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
}

a {
  font-family: "Montserrat";
}

a {
  text-decoration: none !important;
  color: var(--white) !important;
}
a:hover {
  text-decoration: underline !important;
}

header#header {
  background-color: var(--bg-blue);
  max-height: 150px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  box-shadow: 0px 0px 10px 5px;
}
header#header .navbar-custom {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
header#header .navbar-custom .block-logo {
  display: flex;
  align-items: center;
}
header#header .navbar-custom .block-logo img {
  width: 200px;
}
header#header .navbar-custom #block-menu {
  flex-grow: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}
header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items li a:not(.custom-btn) {
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
  transition: all 0.3s;
}
header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items li a:not(.custom-btn):hover {
  font-size: 1.35rem;
  text-shadow: 0px 0px 2px white;
  transition: all 0.3s;
}
header#header .navbar-custom .hamburger-menu {
  visibility: hidden;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--white);
}
header#header .navbar-custom #block-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.25rem;
}
header#header .navbar-custom #block-lang #lang-dropdown button {
  background: transparent;
  color: var(--white);
  border: none;
}
header#header .navbar-custom #block-lang #lang-dropdown .dropdown-menu {
  background-color: var(--bg-blue);
  min-width: 80px !important;
}
header#header .navbar-custom #block-lang #lang-dropdown .dropdown-menu .dropdown-item {
  cursor: pointer;
}
header#header .navbar-custom #block-lang #lang-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--white);
  color: var(--bg-blue) !important;
}
header#header .navbar-custom #block-lang #lang-dropdown .lang-flag-header {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  header#header {
    max-height: 100px;
  }
  header#header .navbar-custom #block-menu {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background-color: var(--bg-blue);
    width: 100%;
    padding: 1.5rem;
    justify-content: center;
    transform: translate(100%, -100%);
    transition: all 0.5s;
  }
  header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items {
    flex-direction: column;
    align-items: center;
  }
  header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items .custom-menu-item {
    padding: 1rem 0;
  }
  header#header .navbar-custom #block-menu.open {
    transform: translate(0, 0);
    transition: all 0.5s;
  }
  header#header .navbar-custom #block-lang {
    margin-right: 5%;
  }
  header#header .navbar-custom .hamburger-menu {
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  header#header {
    max-height: 100px;
  }
  header#header .navbar-custom #block-menu {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background-color: var(--bg-blue);
    width: 100%;
    padding: 1.5rem;
    justify-content: center;
    transform: translate(100%, -100%);
    transition: all 0.5s;
  }
  header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items {
    flex-direction: column;
    align-items: center;
  }
  header#header .navbar-custom #block-menu nav.custom-navbar-menu ul.custom-menu-items .custom-menu-item {
    padding: 1rem 0;
  }
  header#header .navbar-custom #block-menu.open {
    transform: translate(0, 0);
    transition: all 0.5s;
  }
  header#header .navbar-custom .hamburger-menu {
    visibility: visible;
  }
}

main {
  margin-top: 150px;
  overflow: hidden;
}
main .main-wrapper section#block-jumbo .jumbo-wrapper {
  position: relative;
}
main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-image {
  position: relative;
}
main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-image img {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 991px) {
  main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-image img {
    object-fit: cover;
  }
}
main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-image .overlay-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  text-align: center;
  width: 100%;
  padding: 0 1.5rem;
}
main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-text h3 {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  main .main-wrapper section#block-jumbo .jumbo-wrapper .block-jumbo-text {
    width: 100%;
    padding: 0 1rem;
  }
}
main .main-wrapper #block-investment {
  text-align: center;
  padding: 2rem 0;
  background-color: var(--bg-blue);
  /* Layout piramidale */
  /* Centratura della seconda riga */
  /* Animazione ritardata progressiva */
}
main .main-wrapper #block-investment h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--white);
}
main .main-wrapper #block-investment .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}
main .main-wrapper #block-investment .custom-animation {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out forwards;
}
main .main-wrapper #block-investment .custom-animation span {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
  font-weight: 600;
  color: var(--white);
  padding: 1rem 2rem;
}
main .main-wrapper #block-investment .custom-animation:nth-child(-n+3) { /* primi 3 (riga sopra) */
  width: 30%;
  margin: 1rem;
}
main .main-wrapper #block-investment .custom-animation:nth-child(n+4) { /* ultimi 2 (riga sotto centrata) */
  width: 30%;
  margin: 1rem;
}
main .main-wrapper #block-investment .custom-animation:nth-child(4) {
  margin-left: 15%;
}
main .main-wrapper #block-investment .custom-animation:nth-child(5) {
  margin-right: 15%;
}
main .main-wrapper #block-investment .custom-animation:nth-child(1) {
  animation-delay: 0.3s;
}
main .main-wrapper #block-investment .custom-animation:nth-child(2) {
  animation-delay: 0.6s;
}
main .main-wrapper #block-investment .custom-animation:nth-child(3) {
  animation-delay: 0.9s;
}
main .main-wrapper #block-investment .custom-animation:nth-child(4) {
  animation-delay: 1.2s;
}
main .main-wrapper #block-investment .custom-animation:nth-child(5) {
  animation-delay: 1.5s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  main .main-wrapper #block-investment .custom-animation {
    width: 100%;
    margin: 1rem auto !important;
  }
  main .main-wrapper #block-investment .custom-animation:nth-child(-n+3) { /* primi 3 (riga sopra) */
    width: 100%;
  }
  main .main-wrapper #block-investment .custom-animation:nth-child(n+4) { /* primi 3 (riga sopra) */
    width: 100%;
  }
  main .main-wrapper #block-investment .custom-animation:nth-child(4) {
    margin-left: auto;
  }
  main .main-wrapper #block-investment .custom-animation:nth-child(5) {
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  main {
    margin-top: 100px;
  }
}

.video-modal-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: var(--bg-blue);
  padding: 5rem 2rem;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.video-modal-container.open {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}
.video-modal-container .close-video-modal {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 1%;
  font-size: 2rem;
  padding: 1.25rem;
  border: 0;
  color: white;
  z-index: 99;
}
.video-modal-container .video-modal {
  height: 100%;
  position: relative;
}
.video-modal-container .video-modal .first-step-modal,
.video-modal-container .video-modal .second-step-modal {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-modal-container .video-modal .progress-container {
  background-color: gray;
  height: 3px;
  width: 350px;
  position: relative;
  margin: 2rem 0;
}
.video-modal-container .video-modal .progress-container .progress-bar {
  height: 3px;
  width: 175px;
  position: absolute;
  background-color: gray;
  top: 0;
}
.video-modal-container .video-modal .progress-container .progress-bar.active {
  background-color: white;
}
.video-modal-container .video-modal .progress-container .first-bar {
  left: 0;
}
.video-modal-container .video-modal .progress-container .second-bar {
  left: 50%;
}
.video-modal-container .video-modal .progress-container .progress-ball {
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: gray;
  position: absolute;
}
.video-modal-container .video-modal .progress-container .progress-ball.active {
  background-color: white;
}
.video-modal-container .video-modal .progress-container .first-progress {
  top: -5px;
  left: -1%;
}
.video-modal-container .video-modal .progress-container .second-progress {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.video-modal-container .video-modal .progress-container .third-progress {
  top: -5px;
  right: -1%;
}
.video-modal-container .video-modal .first-step-modal .video-modal-body p {
  text-align: center;
  color: white;
  font-size: 1.2rem;
}
.video-modal-container .video-modal .first-step-modal.hide {
  left: -200%;
  opacity: 0;
  transition: all 0.4s;
}
.video-modal-container .video-modal .second-step-modal {
  right: 200%;
  opacity: 0;
}
.video-modal-container .video-modal .second-step-modal.show {
  right: 0;
  opacity: 1;
  transition: all 0.4s;
}
.video-modal-container .video-modal .second-step-modal h2 {
  color: white;
  margin-bottom: 2rem;
}
.video-modal-container .video-modal .second-step-modal .video-js {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .video-modal-container .video-modal .second-step-modal .video-js {
    height: 220px;
  }
}
#videoForm {
  margin-top: 2rem;
  width: 75%;
  margin: auto;
}
#videoForm .input-group {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #videoForm .input-group {
    width: 100%;
  }
}
#videoForm .input-group .form-select {
  flex-grow: 0;
  width: 25%;
}
#videoForm .input-group #phone {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
#videoForm .consent-block {
  flex-grow: 1;
}
#videoForm .consent-block .form-check > label {
  color: white;
}
@media screen and (max-width: 767px) {
  #videoForm {
    width: 100%;
  }
}

#block-about {
  padding-top: 2rem;
}
#block-about .description-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#block-about .description-about h2 {
  text-align: center;
  font-weight: bold;
}
#block-about .description-about h3 {
  font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
}
#block-about .body-description-about ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#block-about .body-description-about ul li.items-place-investment {
  display: flex;
  align-items: center;
  justify-content: center;
}
#block-about .body-description-about ul li.items-place-investment .description-place-investment {
  flex-grow: 1;
}
#block-about .body-description-about ul li.items-place-investment .description-place-investment h3 {
  font-style: normal;
  font-weight: 600;
}
#block-about .body-description-about ul li.items-place-investment .flag-place-investment {
  overflow: hidden;
  width: 100%;
  max-width: 25%;
}
#block-about .body-description-about ul li.items-place-investment .flag-place-investment img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
}
#block-about .photo-about {
  text-align: center;
}
#block-about .photo-about img {
  width: 100%;
  max-width: 75%;
}

#block-project {
  margin: 2rem auto;
}
#block-project .custom-carousel {
  padding: 2rem;
  margin: auto;
  position: relative;
}
#block-project .custom-carousel .custom-carousel-container {
  overflow-x: scroll;
  width: 95%;
  height: 500px;
  margin: auto;
  background: white;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items {
  display: flex;
  gap: 2rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 100%;
  padding: 1rem;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items::-webkit-scrollbar {
  display: none;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item {
  flex: 0 0 calc(20% - 2rem);
  min-width: 250px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px 0px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (max-width: 576px) {
  #block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item {
    flex: 0 0 100%;
  }
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item .custom-carousel-item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item .custom-carousel-item-card .custom-carousel-item-card-header .carousel-image-card {
  width: 100%;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item .custom-carousel-item-card .custom-carousel-item-card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item .custom-carousel-item-card .custom-carousel-item-card-body h3 {
  text-align: center;
}
#block-project .custom-carousel .custom-carousel-container .custom-carousel-items .custom-carousel-item .custom-carousel-item-card .custom-carousel-item-card-body .card-footer-wrapper {
  text-align: center;
}
#block-project .custom-carousel .custom-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#block-project .custom-carousel .custom-carousel-arrow .btn-carousel {
  color: var(--bg-blue) !important;
  cursor: pointer;
  background-color: var(--bg-gray);
  padding: 0.25rem;
  text-align: center;
}
#block-project .custom-carousel .carousel-left-arrow {
  left: 1%;
}
#block-project .custom-carousel .carousel-right-arrow {
  right: 1%;
}

#block-main-developer {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
#block-main-developer h2 {
  text-align: center;
  margin-bottom: 1rem;
}
#block-main-developer .infinite-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}
#block-main-developer .infinite-slider-items {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}
#block-main-developer .infinite-slider-item {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 35px;
  background-color: var(--bg-blue);
}
#block-main-developer .infinite-slider-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.custom-accordion {
  display: flex;
  height: 400px;
  justify-content: center;
}
.custom-accordion .custom-accordion-item {
  width: 70px;
  height: 100%;
  transition: all 0.4s;
  box-shadow: 0px 0px 10px;
}
.custom-accordion .custom-accordion-item .custom-accordion-header {
  width: 100%;
  height: 100%;
  display: flex;
  border: 1px solid lightgrey;
  padding: 1rem;
  position: relative;
  justify-content: space-between;
  transition: all 0.4s;
  background-color: var(--bg-blue);
}
.custom-accordion .custom-accordion-item .custom-accordion-header .custom-accordion-title {
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  font-weight: bold;
  color: var(--white);
}
.custom-accordion .custom-accordion-item .custom-accordion-header .custom-accordion-title .custom-accordion-title-text {
  transition: all 0.4s;
  flex-grow: 1;
  writing-mode: vertical-lr;
  align-self: flex-start;
  text-align: start;
  margin-top: 10px;
}
.custom-accordion .custom-accordion-item .custom-accordion-header .custom-accordion-arrow {
  transition: all 0.4s;
  color: var(--white);
}
.custom-accordion .custom-accordion-item .custom-accordion-container {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  height: 100%;
  border: 1px solid lightgray;
  padding: 1rem;
  background-color: var(--bg-gray);
}
.custom-accordion .custom-accordion-item.custom-accordion-open {
  width: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s;
}
.custom-accordion .custom-accordion-item.custom-accordion-open .custom-accordion-header {
  height: 100px;
  transition: all 0.4s;
}
.custom-accordion .custom-accordion-item.custom-accordion-open .custom-accordion-header .custom-accordion-title {
  flex-direction: row;
  transition: all 0.4s;
}
.custom-accordion .custom-accordion-item.custom-accordion-open .custom-accordion-header .custom-accordion-title .custom-accordion-title-text {
  transition: all 0.4s;
  opacity: 1;
  visibility: visible;
  width: auto;
  writing-mode: horizontal-tb;
  margin-left: 10px;
  margin-top: 0;
}
.custom-accordion .custom-accordion-item.custom-accordion-open .custom-accordion-container {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .custom-accordion {
    flex-direction: column;
    height: auto;
  }
  .custom-accordion .custom-accordion-item {
    width: 100%;
  }
  .custom-accordion .custom-accordion-item .custom-accordion-header {
    align-items: center;
    height: 100%;
  }
  .custom-accordion .custom-accordion-item .custom-accordion-header .custom-accordion-title {
    flex-direction: row;
    align-items: center;
  }
  .custom-accordion .custom-accordion-item .custom-accordion-header .custom-accordion-title .custom-accordion-title-text {
    writing-mode: horizontal-tb;
    align-self: center;
    margin-top: 0px;
    margin-left: 10px;
  }
  .custom-accordion .custom-accordion-item .custom-accordion-container {
    height: 0;
    padding: 0;
  }
  .custom-accordion .custom-accordion-item.custom-accordion-open .custom-accordion-header {
    height: 100%;
  }
  .custom-accordion .custom-accordion-item.custom-accordion-open .custom-accordion-container {
    height: 100%;
    padding: 1rem;
  }
}

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