/* ---------- Palette primaria del sito ---------- */
:root {
  --evin-primary: #14152a;
  --evin-navy: #101124; /* sfondo pagina */
  --evin-cream: #fffaf2; /* card chiara intro */
  --evin-accent: #ff1f6d; /* pink bottone */
}

body {
  color: var(--evin-primary);
}

.bg-color-dark {
  background: var(--evin-primary);
}

@media screen and (min-width: 768px) {
  .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.navbar-sticky {
  position: sticky !important;
  top: 0;
  z-index: 1020;
  transition: all 0.3s ease-in-out;
  padding: 10px 0 0 0;
}

header {
  transition: padding 0.3s ease, box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s;
  transition: padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s;
  transition: padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
}
header.header--shrink {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header.header--shrink .navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
header .navbar {
  background-color: #ffffff;
}
header .navbar .logo {
  width: 150px;
}
header .navbar .navbar-collapse {
  justify-content: flex-end;
  margin-right: 1rem;
}
@media screen and (max-width: 992px) {
  header .navbar .navbar-collapse {
    border-radius: 25px;
    padding: 30px 44px;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  header .navbar .navbar-collapse {
    margin-right: 3rem;
  }
}
header .navbar .navbar-collapse .navbar-nav .menu-item a {
  text-transform: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
header .navbar .navbar-collapse .navbar-nav .menu-item .sub-menu {
  background-color: var(--evin-primary);
}

.btn__dot {
  background-color: var(--evin-accent);
}
.btn__dot:hover {
  background-color: var(--evin-accent);
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--evin-primary);
  font-weight: 400 !important;
}

.section-title h2 {
  font-size: 40px;
  line-height: 45px;
  margin-top: -7px;
}
@media screen and (min-width: 577px) {
  .section-title h2 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media screen and (min-width: 769px) {
  .section-title h2 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media screen and (min-width: 1025px) {
  .section-title h2 {
    font-size: 70px;
    line-height: 75px;
  }
}

.section-subtitle h3 {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  font-size: 25px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .section-subtitle h3 {
    font-size: 40px;
    line-height: 44px;
  }
}

.text-fill > span {
  background-image: linear-gradient(var(--evin-primary), var(--evin-primary));
}
.text-fill.inverse > span {
  background-image: linear-gradient(#fff, #fff);
}
.text-fill.dotted > span::after {
  content: "";
  width: 45px;
  height: 10px;
  background: var(--evin-accent);
  border-radius: 10px;
  position: absolute;
  transform: rotate(90deg);
  top: 20px;
  left: -50px;
}
@media screen and (min-width: 769px) {
  .text-fill.dotted > span::after {
    top: 29px;
    left: -40px;
  }
}

.hero_video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero_video .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
.hero_video .banner_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 70vw;
  height: 22vw;
  -webkit-mask: url(../images/logo/logo_ift_light.svg) no-repeat center/contain;
  mask: url(../images/logo/logo_ift_light.svg) no-repeat center/contain;
  -webkit-mask-size: contain;
  mask-size: contain;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .hero_video .banner_logo {
    width: 35vw;
  }
}
@media screen and (min-width: 1024px) {
  .hero_video .banner_logo {
    width: 60vw;
  }
}
@media screen and (min-width: 1200px) {
  .hero_video .banner_logo {
    width: 35vw;
  }
}
.hero_video .banner_video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -46.5%, 0);
  height: 110vh;
  width: auto;
}

@media (min-width: 1200px) {
  .hero__header-text h2 {
    font-size: 80px;
    line-height: 80px;
    margin-top: -7px;
  }
}
@media (min-width: 1600px) {
  .hero__header-text h2 {
    font-size: 100px;
    line-height: 100px;
    margin-top: -7px;
  }
}
.hero__header-text h2:nth-child(2) {
  text-indent: 80px;
}

.intro .row {
  display: flex;
  align-items: stretch;
  gap: 3rem;
}
@media screen and (min-width: 1025px) {
  .intro .row {
    gap: 0rem;
  }
}
.intro .row > [class^=col-] {
  display: flex;
}
.intro .row .box_light,
.intro .row .box_dark {
  flex: 1;
  display: flex;
}
.intro .box_light {
  background: var(--evin-cream);
  border-radius: 44px;
  padding: 40px 30px;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .intro .box_light {
    padding: 50px 60px;
  }
}
.intro .box_light .logo_ift {
  width: 196px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 40px;
}
.intro .box_light h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 700 !important;
}
@media screen and (min-width: 1025px) {
  .intro .box_light h1 {
    font-size: 75px;
    line-height: 80px;
  }
}
.intro .box_dark {
  background: var(--evin-accent);
  border-radius: 44px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 577px) {
  .intro .box_dark {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .intro .box_dark {
    flex-direction: column;
    justify-content: center;
    padding: 30px 60px;
  }
}
.intro .box_dark h5 {
  color: #ffffff;
  font-weight: 400;
}

.company-info .company-info__heading h2 span {
  border: none;
}
.company-info .btn__dot {
  margin: 30px auto 0;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}

.plyr__control--overlaid {
  background: var(--evin-accent);
}

.services .service__item {
  border-bottom: 3px solid var(--evin-accent);
}
.services .service__item:first-child {
  border-top: 3px solid var(--evin-accent);
}
.services .service__item .service__heading .title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
}
@media screen and (min-width: 577px) {
  .services .service__item .service__heading .title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media screen and (min-width: 769px) {
  .services .service__item .service__heading .title {
    font-size: 40px;
    line-height: 45px;
  }
}
.services .service__item .service__content {
  margin-left: 0;
  background-color: transparent;
}
@media screen and (min-width: 577px) {
  .services .service__item .service__content {
    margin-left: calc(5% + 122px);
  }
}
@media screen and (min-width: 769px) {
  .services .service__item .service__content {
    margin-left: calc(5% + 122px);
  }
}
@media screen and (min-width: 1025px) {
  .services .service__item .service__content {
    margin-left: calc(28% + 122px);
  }
}
.services .service__item .service__content .service__content-text {
  padding-left: 10px;
}
.services .service__item .service__content .service__content-text p {
  margin-bottom: 0;
}
.services .service__item .service__content .service__content-thumbnail img {
  width: 200px;
}
.services .service__item .number {
  font-size: 25px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  border: 1px solid var(--evin-accent);
  padding: 20px 50px;
  background: var(--evin-accent);
}

.about__info {
  background-color: var(--evin-primary);
}

.about__lists {
  background-color: var(--evin-primary);
  grid-template-columns: repeat(1, 1fr);
  margin-top: -1px;
}
@media screen and (min-width: 769px) {
  .about__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .about__lists {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about__lists h3 {
  color: #fff;
  border-bottom: 1px solid var(--evin-accent);
}
.about__lists p {
  color: #999999;
}
.about__lists .about__list-timer {
  color: #fff;
  padding: 20px 0;
}
.about__lists .about__list-timer span {
  font-size: 50px;
  line-height: 55px;
}
@media screen and (min-width: 1025px) {
  .about__lists .about__list-timer span {
    font-size: 75px;
    font-weight: 500;
    line-height: 80px;
  }
}

.about__award-text h4 {
  max-width: 220px;
}

.about__info h2 {
  text-indent: 0px;
  padding-left: 25px;
  font-size: 23px;
  line-height: 28px;
}
@media screen and (min-width: 577px) {
  .about__info h2 {
    padding-left: 0px;
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (min-width: 769px) {
  .about__info h2 {
    padding-left: 0px;
    margin-inline: 15%;
    font-size: 40px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .about__info h2 {
    margin-inline: 15%;
    font-size: 50px;
    line-height: 55px;
  }
}

.about__info h5 {
  color: var(--evin-accent);
  margin-bottom: 30px;
}
.about__info h5.inverse::after {
  background: #fff;
}

.about__award {
  display: none;
  background: var(--evin-cream);
}
@media screen and (min-width: 1025px) {
  .about__award {
    display: block;
    min-width: 400px;
  }
}
.about__award h3 {
  margin: auto;
}
.about__award .about__award-box {
  background-color: transparent;
  padding: 0;
}
.about__award .about__award-box .about__award-text {
  margin-top: 0px;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.process .section-subtitle {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.process .process__items {
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}
@media screen and (min-width: 1025px) {
  .process .process__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process .process__items .process__item {
  border: 3px solid var(--evin-accent) !important;
  border-radius: 44px;
  padding: 30px 20px;
  text-align: left;
  flex-direction: column;
}
@media screen and (min-width: 577px) {
  .process .process__items .process__item {
    flex-direction: row;
    padding: 60px 50px;
  }
}
.process .process__items .process__item:hover {
  background-color: var(--evin-accent);
}
.process .process__items .process__item:hover p {
  color: #ffffff;
}
.process .process__items .process__item h3 {
  color: #ffffff;
}
.process .process__items .process__item p {
  color: #ffffff;
  max-width: 100%;
}
.process .process__items .process__item img {
  width: auto;
  height: 150px;
  max-width: -moz-max-content;
  max-width: max-content;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .discover__block {
    margin-top: -150px;
    margin-bottom: 150px;
  }
}
.discover__block .discover {
  background-color: var(--evin-primary);
  padding: 270px 20px 150px;
}
.discover__block .discover h2 {
  max-width: 800px;
}
.discover__block .discover__btn .btn__full .btn__full-inner > span {
  background-color: var(--evin-accent);
}
.discover__block .discover__btn .btn__full .icon {
  background-color: var(--evin-accent);
}
.discover__block .discover__thumbnails-top img:nth-child(1) {
  top: 3.25vw;
  left: -7.65vw;
  width: 530px;
}
.discover__block .discover__thumbnails-top img:nth-child(2) {
  display: none;
}
.discover__block .discover__thumbnails-top img:nth-child(3) {
  display: none;
}
.discover__block .discover__thumbnails-bottom img:nth-child(2) {
  display: none;
}
.discover__block .discover__thumbnails-bottom img:nth-child(1) {
  display: none;
}
.discover__block .discover__thumbnails-bottom img:nth-child(3) {
  display: none;
}
@media screen and (min-width: 1025px) {
  .discover__block .discover__thumbnails-bottom img:nth-child(3) {
    right: 0vh;
    bottom: -8vh;
    display: block;
    max-width: 460px;
  }
}

.evin-modal {
  background: var(--evin-cream);
  border-radius: 24px;
  padding: 1rem 1.5rem;
}
.evin-modal .modal-title {
  color: var(--evin-navy);
  font-size: 1.5rem;
}
.evin-modal .form-control {
  border-radius: 12px;
  border: 1px solid #d9d9d9;
}
.evin-modal .form-control:focus {
  border-color: var(--evin-accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 31, 109, 0.25);
}

.modal-backdrop.show {
  background: var(--evin-navy);
  opacity: 0.9;
}

.btn-primary {
  background: var(--evin-accent);
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e51b63;
}

.btn-outline-secondary {
  color: var(--evin-navy);
  border-color: var(--evin-navy);
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background: var(--evin-navy);
  color: #fff;
}

.footer {
  background-color: #14152a;
}
.footer .footer__items .footer__item a img {
  width: 150px;
}/*# sourceMappingURL=custom.css.map */