@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Jost", Arial, sans-serif;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

ul {
  list-style: none;
}

/* -------------------------------------- */
/* text */
h1,
h5 {
  color: #092657;
  margin: 0px 0px 5px 0px;
}

h2,
h3,
h4,
h6 {
  color: #092657;
}

.bold {
  font-weight: 600;
}

p {
  color: #7a7a7c;
  margin: 0px;
  padding: 0px;
}

.text-blue {
  color: #092657;
}

.text-gray {
  color: #7a7a7c;
}

.hover-text-white {
  color: #092657 !important;
}

.hover-text-white:hover {
  color: #7a7a7c !important;
}
/* -------------------------------------- */


/* -------------------------------------- */
/* banner e colori */
.banner-hero {
  height: calc((100vh - 80px) / 2);
  background-color: #7a7a7c;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.bg-blue {
  background-color: #092657;
}

.h-80px {
  height: 80px;
}


.border-blue {
  border-color: #092657 !important;
}

.banner-line {
  width: 100%;
  background-color: #092657;
  height: 16px;
}
.banner {
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner img {
  object-fit: cover;
  width: 100%;
  height: 400px;
}
/* -------------------------------------- */


/* ---------------------------------------- */
/* animazioni hero section e navbar */
/* .text-animation-sx {
  animation: moveUpFade 1s ease-out forwards;
}
.text-animation-dx {
  animation: moveLeftFade 1s ease-out forwards;
} */

.pipe {
  display: inline-block;
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.nav-item:hover .pipe {
  transform: rotate(90deg);
}

/* @keyframes moveUpFade {
  from {
    transform: translateY(150px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveLeftFade {
  from {
    transform: translateX(150px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
} */
/* ---------------------------------------- */

@media (max-width: 1024px) {
  .banner-line {
    height: 8px;
  }
  .banner {
    height: 100px;
  }
}

@media (max-width: 768px) {

}

/* -------------------------------------- */
/* Classi base */
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-28 {
  font-size: 28px;
}
.fs-32 {
  font-size: 32px;
}
.fs-36 {
  font-size: 36px;
}

/* Breakpoints Bootstrap */
@media (min-width: 576px) {
  .fs-sm-12 {
    font-size: 12px;
  }
  .fs-sm-14 {
    font-size: 14px;
  }
  .fs-sm-16 {
    font-size: 16px;
  }
  .fs-sm-18 {
    font-size: 18px;
  }
  .fs-sm-20 {
    font-size: 20px;
  }
  .fs-sm-24 {
    font-size: 24px;
  }
  .fs-sm-28 {
    font-size: 28px;
  }
  .fs-sm-32 {
    font-size: 32px;
  }
  .fs-sm-36 {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 12px;
  }
  .fs-md-14 {
    font-size: 14px;
  }
  .fs-md-16 {
    font-size: 16px;
  }
  .fs-md-18 {
    font-size: 18px;
  }
  .fs-md-20 {
    font-size: 20px;
  }
  .fs-md-24 {
    font-size: 24px;
  }
  .fs-md-28 {
    font-size: 28px;
  }
  .fs-md-32 {
    font-size: 32px;
  }
  .fs-md-36 {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .fs-lg-12 {
    font-size: 12px;
  }
  .fs-lg-14 {
    font-size: 14px;
  }
  .fs-lg-16 {
    font-size: 16px;
  }
  .fs-lg-18 {
    font-size: 18px;
  }
  .fs-lg-20 {
    font-size: 20px;
  }
  .fs-lg-24 {
    font-size: 24px;
  }
  .fs-lg-28 {
    font-size: 28px;
  }
  .fs-lg-32 {
    font-size: 32px;
  }
  .fs-lg-36 {
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .fs-xl-12 {
    font-size: 12px;
  }
  .fs-xl-14 {
    font-size: 14px;
  }
  .fs-xl-16 {
    font-size: 16px;
  }
  .fs-xl-18 {
    font-size: 18px;
  }
  .fs-xl-20 {
    font-size: 20px;
  }
  .fs-xl-24 {
    font-size: 24px;
  }
  .fs-xl-28 {
    font-size: 28px;
  }
  .fs-xl-32 {
    font-size: 32px;
  }
  .fs-xl-36 {
    font-size: 36px;
  }
}

@media (min-width: 1400px) {
  .fs-xxl-12 {
    font-size: 12px;
  }
  .fs-xxl-14 {
    font-size: 14px;
  }
  .fs-xxl-16 {
    font-size: 16px;
  }
  .fs-xxl-18 {
    font-size: 18px;
  }
  .fs-xxl-20 {
    font-size: 20px;
  }
  .fs-xxl-24 {
    font-size: 24px;
  }
  .fs-xxl-28 {
    font-size: 28px;
  }
  .fs-xxl-32 {
    font-size: 32px;
  }
  .fs-xxl-36 {
    font-size: 36px;
  }
}
/* -------------------------------------- */

