@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

p {
  font-family: "Be Vietnam Thin";
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kanit";
  color: #ffffff;
}
.row {
  margin: 0;
}

.opacity-1 {
  opacity: 1 !important;
}
/* HEADER SECTION */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  background-color: transparent;
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.2s;
}
.navbar-active .navbar {
  background: #005aa2;
  padding: 25px !important;
}
.navbar.active {
  background: #fff;
  padding: 25px 25px !important;
  z-index: 99999999;
  box-shadow: 0 0 20px #00000012;
}
@media (min-width: 1600px) {
  .navbar .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.navbar-brand img {
  max-width: 180px;
}
.active .whitelogo {
  display: none;
}
.active .logonormal {
  display: block;
}

.logonormal {
  display: none;
}
.navbar-nav .nav-link {
  color: #dfe0dc;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 38px;
  letter-spacing: 1px;
}
.active .navbar-nav .nav-link {
  color: #005aa2;
}
.navbar-nav > li:nth-child(6) > .nav-link {
}

.navbar-nav > li:nth-child(5) > .nav-link {
  border-right: none;
}
.nav-link.mobile-i {
  border: 1px solid #005aa2;
  border-radius: 20px;
  margin-top: 1rem;
}
.nav-link.company {
  background: #d00000 !important;
  border: 0px solid #d00000;
  border-radius: 50px;
  font-size: 14px;
  padding: 7px 30px 9px !important;
  color: #fff !important;
  transition: 0.2s;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.button-wrapper {
  display: flex;
  gap: 10px; /* Spazio tra i bottoni */
  flex-wrap: wrap; /* Va a capo su mobile se non c'è spazio */
}


.nav-link.company:hover {
  transform: scale(0.9);
}
.nav-link {
  font-weight: 300;
  font-size: 20px;
  line-height: 44px;
  font-family: "Be Vietnam Thin";
  border-right: 1px solid #ffffff50;
  padding: 2px 20px !important;
}
/*
.active .nav-link {
  border-color: #005aa250;
}*/
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.active .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23005aa2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Custom styles for off-canvas sidebar */
.offcanvas {
  background-color: #f8f9faeb; /* Cambia il colore di sfondo secondo il tema */
  width: 340px;
  position: fixed;
  z-index: 999999999;
}

.offcanvas-body .nav-link {
  font-size: 1.1em;
  color: #333; /* Cambia il colore del testo */
}

.offcanvas-body .nav-link:hover {
  color: #d00000; /* Colore al passaggio */
}

/* HERO SECTION */

h1 span {
  border-right: 0.05em solid;
  animation: caret 1s steps(1) infinite;
  opacity: 0.5;
}

h1 .red {
  animation: none;
  color: #d00000;
  opacity: 1;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}
.heroSection {
  position: relative;
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center; /* Centra il contenuto verticalmente */
  justify-content: center; /* Centra il contenuto orizzontalmente */
  overflow: hidden; /* Evita overflow indesiderati */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ritaglia il video per coprire l'intera sezione */
  z-index: 0; /* Posiziona il video sotto il contenuto */
  pointer-events: none; /* Evita che il video sia interattivo */
}

.heroSection::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Posiziona il gradiente sopra il video */
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 89, 162, 0.644) 40%
  );
}

.heroHiring {
  position: relative; /* Permette di sovrapporsi al video */
  z-index: 2; /* Sopra il video e il gradiente */
  padding: 0px 20px;
  text-align: left;
  font-size: 32px;
  font-weight: 300;
}

.scroll-down svg {
  width: 30px;
  animation: scroll 0.4s alternate infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}

.heroHiring > h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 68 px;
}
.heroHiring > p {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  max-width: 535px;
}

/* CARD Carousel SECTION */

.card-section-title {
  font-size: 50px;
  padding-bottom: 2rem;
  padding-top: 2.5rem;
  padding-left: 10px;
}
.professionalServicesCarousel {
  display: none;
}
.card-section-title,
.professionalServicesTitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-section-title.visible,
.professionalServicesTitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.appear-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.afterCard-description {
  padding: 150px 0 50px;
}

.afterCard-description .col-md-7 p {
  max-width: 60%;
}
.afterCard-description .col-md-5 p:first-of-type {
  padding-bottom: 50px;
}
.afterCard-description .col-md-5 p:first-of-type,
.afterCard-description .col-md-5 p:last-of-type {
  max-width: 80%;
}

/* CARD SECTION */
.boxSection {
  background: linear-gradient(rgb(0, 90, 162) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 0 0 60px;
  position: relative;
}
/*
.boxSection::before {
  content: "";
  position: absolute;
  background: linear-gradient(rgb(0 89 160 / 0%) 0%, #005aa2 100%);
  width: 100%;
  height: 50px;
  top: -50px;
}
*/
.card-body {
  border: solid 1px #a4bcd0;
  padding: 60px;
  background-color: transparent;
  color: #ffffff;
  max-width: 508px;
}

.card-title {
  font-size: 45px;
  line-height: 50px;
  margin: 0;
  font-weight: 500;
  color: #fff;
}

.card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  min-width: 300px;
  padding: 42px 0;
  margin: 0;
}

.btn {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
  background-color: transparent;
  border: solid 2px white;
  border-radius: 40px;
  width: 185px;
  margin: 0;
  color: #ffffff;
  z-index: 9999;
}

.btn-effect {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9;
}

.btn-effect:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #ffffff;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-effect:hover:after {
  width: 100%;
  left: 0;
}
.btn-effect:hover {
  color: #005aa2;
}

.ict {
  transform: translateY(-100px);
  z-index: 999;
}
.ict .card-body {
  margin-left: 0;
}
.firstLine {
  margin-left: 620px;
  margin-top: 500px;
  position: absolute;
  z-index: 999;
}
.second-line {
  margin-top: -100px;
  position: absolute;
  z-index: 999;
  right: 594px;
}
.third-line {
  margin-top: -355px;
  position: absolute;
  z-index: 999;
  left: 570px;
}
.cyber .card-body {
  margin-right: 0;
}
.cyber {
  display: flex;
  justify-content: flex-end;
  margin-top: -250px;
}
.professional .card-body {
  margin-left: 370px;
  margin-top: 150px;
}
@media (min-width: 1160px) {
  .boxSection .col-lg-6 {
    width: 33%;
  }
}
/*PROFESSIONAL SERVICES*/
.professionalServicesTitle {
  font-size: 50px;
  padding-bottom: 80px;
}
.professionalServicesSection {
  padding: 40px 0 200px;
  overflow-x: hidden;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 92%, #000000 100%, rgba(207, 0, 0, 0) 100%);
}
.professionalServicesSection .card {
  transition: 0.3s !important;
}

.professionalServicesSection .card:hover {
  transform: translate(5px, -10px);
}

.professionalServicesSection h2 {
  color: white;
  text-align: left;
}
.card a {
  /* font-family: "Kanit" !important; */
}
.card {
  background: rgb(0, 79, 143);
  background: linear-gradient(
    45deg,
    rgba(0, 79, 143, 1) 0%,
    rgba(0, 36, 73, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  border: 1px solid #005aa2;
  padding: 70px 50px;
  color: white;
  text-align: left;
  border-radius: 0;
  height: 100%;
  justify-content: space-between;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-effect {
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 20px;
}

.btn-effect:hover {
  background-color: white;
  color: #004488;
}
.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ritardo sequenziale per le card */
.card:nth-child(1) {
  transition-delay: 0.1s;
}

.card:nth-child(2) {
  transition-delay: 0.4s;
}

.card:nth-child(3) {
  transition-delay: 0.8s;
}

.card:nth-child(4) {
  transition-delay: 1.2s;
}

.card:nth-child(5) {
  transition-delay: 1.5s;
}

/*CAROUSEL SECTION*/

#carouselExampleCaptions h2,
#carouselExampleCaptions p {
  z-index: 99;
  position: relative;
}

.bgCarousel {
  position: relative;
  background-size: cover;
  width: 100%;
  height: 630px;
}
@media (max-width: 1280px) {
  .fullCog,
  .halfCog {
    display: none;
  }
  .bgCarousel {
    height: 630px;
  }
  .carouselText {
    top: 30px !important;
  }
}
.carouselArrow {
  z-index: 999;
  align-items: flex-end;
  bottom: 10%;
  /* left: 50%; */
  width: 30px;
}
.carousel-control-prev {
  left: calc(50% - 35px);
}
.carousel-control-next {
  left: calc(50% + 0px) !important;
}
.carouselText {
  padding: 80px 20px 300px 20px;
  text-align: left;
  left: 0px;
  bottom: 0px;
  right: 0;
  top: 0;
}

.carouselText h2 {
  max-width: 560px;
  color: #ffffff;
  font-weight: 500;
  font-size: 45px;
  line-height: 45px;
  padding: 0 0 35px;
}
.carouselText p {
  max-width: 450px;
  color: #ffffff;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}
.halfCog,
.fullCog,
.halfSquares,
.fullSquares,
.halfSoftware,
.fullSoftware {
  z-index: 999;
}
.halfCog {
  width: 200px;
  position: absolute;
  left: -82px;
  bottom: 26px;
}
.fullCog {
  width: 200px;
  position: absolute;
  bottom: 35px;
  left: 40px;
}
.halfSquares {
  width: 200px;
  position: absolute;
  left: -82px;
  bottom: 110px;
}

.fullSquares {
  width: 200px;
  position: absolute;
  bottom: 55px;
  left: 65px;
}
.halfSoftware {
  width: 200px;
  position: absolute;
  left: -85px;
  bottom: 110px;
}

.fullSoftware {
  width: 200px;
  position: absolute;
  bottom: 50px;
  left: 140px;
}

/* NUMBERS */
.numbersSection {
  background: linear-gradient(rgb(0, 90, 162) 0%, rgba(0, 0, 0, 1) 100%);
  /* padding: 0 0 60px; */
  position: relative;
}

.numbersSection::before {
  content: "";
  position: absolute;
  background: linear-gradient(rgb(0 89 160 / 0%) 0%, #005aa2 100%);
  width: 100%;
  height: 50px;
  top: -50px;
}

.numbersSection {
  background: linear-gradient(rgb(0, 90, 162) 0%, rgba(0, 0, 0, 1) 100%);
}
.counterNumPlus {
  display: flex;
  align-items: center;
}

.numbersSection .container .row {
  padding: 60px 0 150px;
}
.numbersSection .row .col {
  max-height: 200px;
  padding: 0 50px 0px;
  border-right: 2px #005aa2 solid;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1200px) {
  .infoSection:before {
    background: linear-gradient(to top, #cf0000 15%, rgba(181, 13, 15, 0) 40%),
      linear-gradient(to bottom, #cf0000 6%, rgba(181, 13, 15, 0) 22%),
      linear-gradient(121deg, #cf0000 30%, rgba(181, 13, 15, 0) 52%);
  }
  .numbersSection .row .col:nth-child(2) {
    border-right: none;
  }
	
  /*.us {
    padding-top: 50px !important;
  }*/
  .cursor {
    display: none;
  }
  /*
  .row .col:nth-child(2) {
    border: none;
  }*/
  .numbersSection .row .col {
    margin-bottom: 5rem;
  }
  .numbersSection .container .row {
    padding: 60px 0 !important;
  }
}
.row .col:nth-child(3) {
  border: none;
}
.numbersSection .row .col h2,
.numbersSection .row .col h3 {
  color: #005aa2;
  font-size: 100px;
  font-weight: 500;
  text-align: center;
  line-height: 96px;
  margin: 0;
}
.numbersSection .row .col p {
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  line-height: 28px;
  margin: 0;
}

.infoSection:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  z-index: 9;
  /* background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 25%,
    rgba(208, 0, 0, 0.4) 40%,
    rgba(208, 0, 0, 1) 100%
  ); */
}
/*INFO SECTION*/
.infoSection {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 0;
  padding-bottom: 120px;
}

.infoSection:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  z-index: 9;
  background: #cf0000;
}
.infoSection * {
  z-index: 99;
}
.infoSection .container-fluid {
  padding: 0 100px 230px 200px;
}
.infoSection > .row {
  padding-top: 200px;
  padding-left: 210px;
}
.us {
  text-align: left;
  max-width: 860px;
  padding-bottom: 20px;
  padding-top: 40px;
  padding: 100px;
}
.innovation {
  text-align: center;
  max-width: 800x;
  margin: 200px auto;
}
.firstRedLine {
  z-index: 999;
  position: absolute;
  left: 248px;
  /* bottom: 51px; */
}
.secondRedLine {
  z-index: 999;
  position: absolute;
  right: 390px;
  margin-top: -240px;
}

.partner {
  max-width: 395px;
}
.partner-container {
  display: flex;
	padding-left: 92px;
  margin-bottom: 5rem;
}
.infoSection .row .col-md-12 h2 {
  font-weight: 500;
  font-size: 64px;
  line-height: 74px;
  padding: 0 0 35px;
  margin: 0;
}
.infoSection .row .col-md-12 p {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  max-width: 580px;
}
.info-mobile-img {
  display: none;
}
/* LOGOS SECTION */
.logoSection {
  background: #d00000;
  padding: 0 0px 125px;
}
/* Stili per dispositivi mobili */
@media (max-width: 767px) {
  .logoSection .container {
    display: none;
  }
  .logoSection .container.mobile {
    display: block;
  }
}

/* Stili per tablet */
@media (min-width: 768px) and (max-width: 1280px) {
  .logoSection .container {
    display: none;
  }
  .logoSection .container.tablet {
    display: block;
  }
}

/* Stili per desktop */
@media (min-width: 1281px) {
  .logoSection .container {
    /* display: none; */
  }
  .logoSection .container.desktop {
    display: block;
  }
}

@media (max-width: 1400px) {
  .infoSection {
    /* background-position-y: 20vh; */
  }
  .logoSection {
    padding: 2rem 10px;
  }
}

.logoSection .row {
  padding: 30px 0;
}

.logoSection .row .col-md-4 {
  display: flex !important;
  justify-content: center;
  padding: 0;
}

.boxLogo {
  max-width: 255px;
  margin: 0 auto;
  max-height: 210px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
}

.logo-visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-visible.hover-enabled:hover {
  transform: translate(-10px, 10px);
  transition: transform 0.2s ease;
}

/*SEDE SECTION*/
.sedeSection {
  background: linear-gradient(180deg, rgba(208, 0, 0, 1) 0%, rgb(0, 0, 0) 98%);
  /*padding: 0 200px 140px;*/
}
.sedeSection h2 {
  padding-bottom: 115px;
  font-weight: 500;
  font-size: 70px;
}
.sedeSection h3 {
  padding-top: 64px;
  font-weight: 600;
  font-size: 32px;
  font-family: "Be Vietnam Thin";
}
.sedeSection p {
  font-size: 18px;
  font-weight: 300;
}
.sedeSection .col-md-4 {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/*CALL TO ACTION*/

.callToActionSection {
  position: relative;
  background-image: url("/assets/image/bgHeroSection.webp");
  height: 100vh;
  min-height: 900px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 1280px) {
  .callToActionSection {
    min-height: 600px !important;
    height: 50px !important;
  }
}
.callToActionSection:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 89, 162, 0.644) 60%
  );
}
.callToActionSection h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 40px;
}

.callToActionSection .btn {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: white;
  border: 1px solid white;
  border-radius: 40px;
  padding: 10px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.callToActionSection .btn:hover {
  background-color: white;
  color: #005aa2; /* Cambia il colore a seconda del tema */
}

.callToActionSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(208, 0, 0, 1) 0%,
    rgba(208, 0, 0, 0) 100%
  );
  z-index: 1;
}

.callToActionSection::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    0deg,
    rgba(0, 89, 162, 1) 0%,
    rgba(0, 89, 162, 0) 100%
  );
  z-index: 1;
}

.callToActionSection * {
  position: relative;
  z-index: 2;
}

/*NEWS SECTION*/
.newsSection {
  background: linear-gradient(rgb(0, 90, 162) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 40px 0 210px;
}
.newsSection .swiper-container {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}
/*PAGINATION DA RIFARE QUESTO E' PROVVISORIO*/
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: unset !important;
  top: unset !important;
  left: 0;
  width: 100%;
  padding-top: 25px;
}

.swiper-pagination-bullet {
  background-color: white !important;
}
.newsTitle {
  opacity: 0; /* Nasconde il titolo all'inizio */
  transition: opacity 0.6s ease-in-out; /* Smorza l'effetto di comparsa */
}
.visible {
  opacity: 1; /* Rende il titolo completamente visibile quando entra nella viewport */
}
.swiper-button-prev,
.swiper-button-next {
  color: white !important;
  opacity: 0.5;
}

.swiper-button-prev {
  left: -40px !important;
}
.swiper-button-next {
  right: -40px !important;
}

.swiperBtns {
  display: flex;
  position: absolute;
  bottom: -20px;
  max-width: 100px;
  left: calc(52% - 0px);
  flex-direction: row;
}
.newsSection h2 {
  font-size: 50px;
  padding: 0 0 80px;
}
.newsSection .cardNews {
  background-color: transparent;
}
.newsInfo {
  padding: 40px 60px 50px;
  border: 1px solid #a4bcd0;
}
.newsInfo .btn {
  margin-top: 1rem;
}
.cardNews {
  max-width: 500px;
}
.cardNews img {
  border: 1px solid #a4bcd0;
  border-bottom: none;
  width: 100%;
}
.cardNews h2 {
  font-size: 45px;
  font-weight: 500;
}
.cardNews p:first-of-type {
  font-size: 16px;
  font-weight: 300;
  color: #a4bcd0;
  font-family: "Kanit";
}

.cardNews p:last-of-type {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  max-width: 400px;
}
/*FOOTER*/
footer {
  position: relative;
}
footer:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background-image: url(/assets/image/sfondo-DSmatic.webp);
  top: 0;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}
footer h2 {
  color: #005aa2;
}
.workWithUsSection .company {
  max-width: 172px;
}
/* CERTIFY SECTION*/
.certifyContainer {
  padding: 140px 0 0;
}
.certifyContainer .row .col-md-7 h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 70px;
  color: #005aa2;
  margin: 0;
}
.certifyContainer .row .col-md-7 {
  padding: 0;
}

.certifyLogo {
  padding: 0 !important;
}
.certifyLogo img {
  max-width: 100px;
}
.logoText {
  gap: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.rightText {
  display: flex !important;
  justify-content: flex-end;
  padding: 180px 250px 0;
}

.col-md-2 p {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 38px;
  color: #005aa2;
}

.workWithUsSection {
  text-align: left;
  margin-bottom: 50px;
  padding: 50px 0 0;
}

.workWithUsSection h2 {
  font-size: 2rem;
  color: #005aa2;
  margin-bottom: 10px;
}

.workWithUsSection p {
  color: #555;
  margin-bottom: 20px;
}

.workWithUsSection .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #005aa2;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.workWithUsSection .btn:hover {
  background-color: #003d6c;
}

/*FORM DESCRIPTION*/
.moduleDescription {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  margin: 0;
  color: #005aa2;
  max-width: 400px;
}
/*CONTACT SECTION*/

.row.contact {
  padding-top: 100px;
}
.contact .col-md-6 {
  padding: 0px 0 135px;
}
.contact h2 {
  /* padding: 0 0 60px; */
  /* font-size: 50px; */
  line-height: 80px;
  font-weight: 500;
  color: #005aa2;
}
.contact h5 {
  font-weight: 500;
  margin-bottom: 0;
  color: #005aa2;
}
.contact p {
  color: #005aa2;
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  margin: 0;
  margin-bottom: 1.3rem;
}
.contactLogoText {
  display: flex;
  gap: 10px;
  padding: 15px 0;
  align-items: flex-start;
}
.contactLogoText svg {
  max-width: 16px !important;
}
.contactLogoText img {
  max-width: 30px;
}
/*FORM SECTION*/
.form {
  color: #005aa2;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 15px 0px 0 00px !important;
}
.form .mb-3 input {
  border: none;
  border-radius: 0;
  border-bottom: 0.5px #005aa2 solid;
  max-width: 425px;
}

@media (max-width: 1280px) {
  .cardNews,
  .cardNews p:last-of-type {
    max-width: 100%;
  }
  .contact h2 {
    padding-bottom: 0px;
  }
  .form .mb-3 input,
  .form .mb-3 textarea {
    max-width: 100%;
  }
}
.check {
  font-family: "Work Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  padding-top: 25px;
  padding-bottom: 35px;
  margin: 0;
  gap: 5px;
}

textarea.form-control {
  max-width: 430px;
  min-height: 150px;
}

.sendBtn {
  padding: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #005aa2;
  border: #005aa2 2px solid;
  margin-bottom: 120px;
  max-width: 140px;
  background-color: transparent;
  border-radius: 40px;
  width: 140px;
  height: 35px;
  margin: 0;
  color: #005aa2;
}
.sendBtn:hover {
  color: #fff !important;
}
.sendBtn.btn-effect:after {
  background: #005aa2;
  color: #fff;
}
.successMessage {
  font-size: 35px;
  font-weight: 400;
  color: #005aa2;
}

/*SOCIAL ICON SECTION*/
.social {
  display: flex;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid #005aa250;
  max-height: 160px;
  margin-top: 2rem;
}
.social img {
  height: 20px;
}
/*FINAL SECTION*/
.copyright {
  margin: 30px auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #005aa2;
  text-align: center;
  font-family: "Be Vietnam Light";
}

.cursor {
  width: 20px;
  animation: pulse 0.5s alternate infinite;
  height: 20px;
  border-radius: 100%;
  background: #dfdfdf;
  z-index: 999999;
  box-shadow: 0 0 20px #e6f1f7;
  border: 0px solid black;
  transition: all 200ms;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  opacity: 0.7;
  transform: translate(calc(-50% + 15px), -50%);
}

.hover {
  width: 50px;
  height: 50px;
  background: #0055984f;
  filter: blur(30px);
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: 0.5;
}
@keyframes pulse {
  from {
    width: 20px;
    height: 20px;
    opacity: 0.4;
  }
  to {
    width: 25px;
    height: 25px;
    opacity: 0.7;
  }
}
/*NEWS DI PROVA PAGE*/
.cookie-privacy-style p {
  font-size: 14px !important;
  text-align: justify;
}
.table-cookie td {
  font-size: 14px !important;
  text-align: justify !important;
}
.cookie-privacy-style h3 {
  font-size: 20px !important;
}

.title-box {
  max-width: 500px;
  margin: 30px 0px 20px 10px;
  color: #cf0000;
  font-size: 46px;
}
.text-box {
  max-width: 500px;
  margin: 0px 0px 50px 10px;
  color: #000;
  font-size: 16px;
}

.newsNavPage {
  background-color: #005aa2;
  position: relative; /* Cambia da absolute a fixed */
  top: 0;
  left: 0;
  width: 100%;
}
.newsNavPage {
  padding: 3rem 10px 3rem !important;
}

.box-other-service {
  position: relative;
  height: 130px;
  max-width: 500px;
  margin: 50px 0px 50px 10px;
  overflow: hidden;
}

.box-other-service::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) -40%,
    rgba(0, 89, 162, 0.644) 27%
  );
}
.title {
  font-family: "Kanit";
  font-size: 32px;
  color: #ffff;
  padding-top: 4rem;
  padding-left: 2rem;
  position: relative;
  z-index: 9;
}
.box-other-service.one {
  background-image: url("/assets/image/cybersecurity.webp");
  background-size: 500px;
  background-position: center;
}
.box-other-service.two {
  background-repeat: no-repeat;
  background-image: url("/assets/image/cloud-computing.webp");
  background-size: 500px;
  background-position: center;
}
@media (max-width: 638px) {
  .numbersSection .row .col {
    border-right: unset;
  }
  .row .col:nth-child(4),
  .row .col:nth-child(2) {
    border: unset;
  }
}
.professionalServicePage {
  background: url("/assets/image/digital-solutions.webp") no-repeat center 25%!important;
}
.cybersecurytyPage {
 background: url(/assets/image/cybersecurity.webp) no-repeat center 29%!important;
}
.ICTPage {
  background: url("/assets/image/cloud-computing.webp")no-repeat center 55% !important;
}
@media (max-width: 480px) {
  .us {
    padding-top: 0px;
  }
  .infoSection {
    background-position: -25vh 0vh;
    padding-bottom: 0;
  }
  .cardNews {
    margin-left: auto;
    margin-right: auto;
  }
  .cybersecurytyPage {
  background-size: cover!important;
  background-position-y: 80px!important;
}
  .professionalServicePage{
  background-size:cover!important;
    background-position-y:50px!important;
}

}
@media (max-width: 450px) {
  .box-other-service.two {
    background-size: 390px;
  }
}
.box-other-service.three {
  background-repeat: no-repeat;
  background-image: url("/assets/image/digital-solutions.webp");
  background-size: 500px;
  background-position: center;
}

/*
.cybersecurytyPage {
  background-image: url("/assets/image/cybersecurity.webp") !important;
  background-position-x: center;
  background-position-y: -300px;
}*/
.ICTPage {
  background-image: url("/assets/image/cloud-computing.webp") !important;
  background-position: center;
}

.newsHeroPage,
.professionalServicePage,
.cybersecurytyPage,
.ICTPage {
  background-image: url("/assets/image/bgHeroSection.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: default;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 99;
  min-height: 450px;
}
@media (max-width: 960px) {
  .newsHeroPage {
    min-height: 100% !important;
  }
}
.newsHeroPage::before,
.professionalServicePage::before,
.cybersecurytyPage::before,
.ICTPage::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;

  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 89, 162, 0.644) 90%
  );
}
.newsInfoPage {
  padding: 200px 10px 50px;
  position: relative;
  z-index: 999;
}
.newsInfoPage h1 {
  font-size: 70px;
  font-weight: 500;
  line-height: 75px;
}
.newsInfoPage p {
  color: #d6ebfd;
  font-weight: 300;
  font-size: 24px;
  line-height: 18px;
  font-family: "Kanit";
}
/** ARTICLE PAGE SECTION*/
.articleInfoPage .col-xl-8 {
  padding: 0;
  border-right: 1px solid #005aa250;
}
.articleDescriptionPage {
  padding: 50px 0;
}
.articleInfoPage {
  margin-bottom: 50px;
}
.articleDescriptionPage h2 {
  color: #005aa2;
  font-weight: bold;
  font-size: 36px;
  padding-top: 30px;
}
.articleDescriptionPage h3 {
  padding-top: 30px;
  color: #005aa2;
  padding-left: 0;
  padding-right: 0;
}
.articleDescriptionPage p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  color: #000000;
  padding-right: 50px;
}
.servicePage .subtitle {
  font-size: 26px;
  font-family: "Be Vietnam Bold";
  color: #005aa2;
}
.servicePage {
  padding-right: 100px;
}
.servicePage ul {
  font-family: "Be Vietnam Bold";
  font-size: 18px;
  line-height: 25px;
  margin-left: 35px;
  padding-left: 35px;
  color: #005aa2;
}
.servicePage li {
  padding-bottom: 1rem;
}
.servicePage .text-normal {
  color: #000;
  font-family: "Be Vietnam Thin";
  font-weight: 400;
}
@media (max-width: 960px) {
  .afterCard-description {
    padding: 100px 0 80px;
  }

  .afterCard-description .col-md-5 p:first-of-type {
    padding-bottom: 20px;
  }
}
.articleImgsPage {
  padding: 50px 150px 50px 0;
  display: flex;
  width: 100%;
}

.articleImgsPage img:nth-child(1) {
  max-width: 60%;
  max-height: 300px;
}
.articleImgsPage img:nth-child(2) {
  max-width: 40%;
  max-height: 300px;
}
.newsArticlePage {
  padding: 50px 0px 50px 80px;
}
.newsArticlePage h2 {
  font-family: "Kanit";
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  color: #d00000;
}
.moreArticlePage {
  padding: 35px 0;
  display: flex;
  gap: 10px;
}
.moreArticlePage img {
  max-width: 220px;
  max-height: 130px;
}
.moreArticlePage h3 {
  font-family: "Kanit";
  font-weight: 500;
  font-size: 24px;
  color: #005aa2;
  padding-top: 0;
  margin-bottom: 0;
}
.moreArticlePage p {
  font: "Kanit";
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0;
  color: #005aa2;
}

@media (min-width: 768px) and (max-width: 990px) {
  .certifyLogo .logos {
    justify-content: flex-start !important;
    gap: 3rem;
    margin-top: 3rem;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logoSection .container.d-none.d-lg-none.d-md-block {
    display: block !important;
  }
  .logoSection .container.d-md-none,
  .logoSection .container.d-lg-block {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .cursor {
    display: none;
  }
  .card-body {
    width: 100%;
    margin-bottom: 20px;
    max-width: 100% !important;
  }
  .card {
    padding: 50px 30px;
  }

  .carouselText,
  .heroHiring {
    padding-bottom: 90px;
  }
  .afterCard-description {
    padding: 100px 0 80px;
  }
  .afterCard-description .col-md-7 p {
    max-width: 85%;
  }
  .afterCard-description .col-md-5 p:first-of-type {
    padding-bottom: 25px;
  }
  .afterCard-description .col-md-5 p:first-of-type,
  .afterCard-description .col-md-5 p:last-of-type {
    max-width: 95%;
  }
  .form {
    /* width: 50%; */
  }
}

@media (max-width: 400px) {
  .card-body .card-text {
    padding: 20px 0px 35px;
  }
}
@media (max-width: 767px) {
  .infoSection:before {
    background: linear-gradient(to top, #cf0000 30%, rgba(181, 13, 15, 0) 61%),
      linear-gradient(to bottom, #cf0000 6%, rgba(181, 13, 15, 0) 22%),
      linear-gradient(137deg, #cf0000 30%, rgba(181, 13, 15, 0) 40%);
  }
  .afterCard-description {
    padding: 100px 0 80px;
  }
  .afterCard-description .col-md-7 {
    padding-bottom: 50px;
  }
  .afterCard-description .col-md-5 p:first-of-type {
    padding-bottom: 20px;
  }

  .afterCard-description .col-md-7 p {
    max-width: 90%;
  }
  .afterCard-description .col-md-5 p:first-of-type,
  .afterCard-description .col-md-5 p:last-of-type {
    max-width: 90%;
  }

  .box-other-service {
    max-width: 100%;
    margin-left: 0;
  }
  .articleDescriptionPage ul {
    max-width: 90%;
  }
}
@media (max-width: 1199px) {
  .offcanvas-body .nav-link.company,
  .offcanvas-body .nav-link.mobile-i {
    display: none;
  }
  .box-other-service {
    margin-top: 0;
    max-width: 100%;
    margin-left: 0;
  }
  .box-other-service .title {
    padding-left: 15px;
  }
  .articleInfoPage .col-xl-8 {
    border-right: none;
  }
  .newsArticlePage {
    padding: 35px 0px 0;
  }
  .articleDescriptionPage {
    padding: 50px 0 20px 0;
  }
  .articleImgsPage {
    padding: 50px 0;
    display: flex;
    width: 100%;
  }
  .moreArticlePage {
    padding: 30px 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  .moreArticlePage img {
    max-width: none;
    max-height: none;
  }
}
.certifyLogo .logos {
  display: flex;
  gap: 2rem;
  padding: 0 !important;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .professionalServicesSection {
    padding: 100px 0;
  }
  .newsInfoPage {
    padding: 200px 10px 15px;
  }
  .ict {
    transform: translateY(0);
  }
  .certifyLogo .logos {
    display: block;
    width: 250px;
    margin: 0 auto;
    padding: 0;
  }
  .logoText {
    /* float: left; */
    width: 30%;
    /* max-width: -webkit-fill-available; */
    /* align-items: normal; */
  }
  .certifyContainer .row .col-md-7 h2 {
    font-size: 40px;
    text-align: center;
  }
}

@media (min-width: 300px) {
  .boxSection {
    background: #000000;
    padding: 0 0 150px;
    position: relative;
  }
  /*
  .boxSection::before {
    content: ""; 
    position: absolute; 
    background: linear-gradient(rgb(0 89 160 / 0%) 0%, #005aa2 100%); 
     width: 100%; 
     height: 50px; 
    top: -50px; 
  }
*/
  .card-body {
    border: solid 1px #a4bcd0;
    padding: 60px;
    background-color: transparent;
    color: #ffffff;
    max-width: 520px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card-title {
    font-size: 35px;
    line-height: 50px;
    margin: 0;
    font-weight: 500;
  }

  .card-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    min-width: 100%;
    padding: 42px 0;
    margin: 0;
  }
  .card-body h4 {
    font-size: 22px;
  }
  .btn {
    font-size: 14px !important;
    font-weight: 300;
    line-height: 14px !important;
    font-family: "Be Vietnam Thin";
    text-align: center;
    background-color: transparent;
    border: solid 1px white;
    border-radius: 40px;
    width: 185px;
    padding: 11px 0 14px !important;
    margin: 0;
    color: #ffffff;
    z-index: 9999;
  }

  .btn-effect:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #ffffff;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .btn-effect:hover:after {
    width: 100%;
    left: 0;
  }
  .btn-effect:hover {
    color: #005aa2;
  }

  .ict {
    transform: translateY(-100px);
    z-index: 999;
    /* margin-left: 136px; */
  }
  .ict .card-body {
    margin-left: 0;
    margin-left: 136px;
  }
  .firstLine {
    margin-left: 660px;
    margin-top: 65px;
    position: absolute;
    z-index: 999;
    width: 608px;
  }
  .second-line {
    margin-top: -100px;
    position: absolute;
    z-index: 999;
    /* width: 57%; */
    right: 418px;
  }
  .third-line {
    margin-top: -355px;
    position: absolute;
    z-index: 999;
    left: 570px;
  }
  .cyber .card-body {
    margin-right: 0;
  }
  .cyber {
    display: flex;
    justify-content: flex-end;
    margin-top: -250px;
  }
  .professional .card-body {
    margin-left: 344px;
  }
}
@media (max-width: 767px) {
  footer.container.bg-white {
    padding: 0;
  }
  .cursor {
    display: none;
  }
  .heroHiring {
    padding: 0;
  }
  .heroSection {
    min-height: 0;
  }
  .card-body {
    margin: 10px !important;
    padding: 15px;
  }
  .card-body .btn {
    margin-bottom: 25px;
  }
  .ict,
  .cyber,
  .professional {
    margin: 0;
    padding: 0;
  }

  .numbersSection .container .row {
    row-gap: 20px;
  }
  .innovation {
    margin: 170px 0;
  }
  .logoSection {
    padding: 10px;
  }
  .logoSection .row {
    padding: 20px 0;
  }
  .certifyContainer {
    padding: 60px 20px;
  }
  .certifyContainer .container {
    padding: 0;
  }
  .certifyContainer .col-md-8,
  .certifyContainer .col-md-4 {
    padding: 0;
  }
  .certifyLogo .logos {
    display: flex;
    gap: 1rem;
    margin: 0;
    width: 100%;
  }
  .certifyLogo img {
    width: 80%;
  }
  .certifyContainer h2 {
    margin-bottom: 0;
  }
  .certifyContainer .moduleDescription {
    display: block;
    padding-bottom: 30px !important;
  }

  .rightText {
    padding: 20px 0;
  }
  .contact .col-md-6 {
    padding: 0;
    max-width: none;
  }
  .contact .col-md-6 h2 {
    padding: 0 !important;
  }
  .form {
    padding: 40px 0 !important;
    margin: 0;
  }

  .copyright {
    padding: 20px;
  }
  .sendBtn {
    margin-bottom: 0;
  }
  .infoSection .container-fluid {
    padding: 20px;
  }
  .heroSection {
    padding: 20px;
  }
  .navbar {
    padding: 25px 25px;
  }
 
	 .partner-container {
    padding-left: 50px;
  }
	.us {
    padding: 50px;
}
  .firstLine,
  .second-line,
  .third-line,
  .firstRedLine,
  .secondRedLine {
    display: none;
  }

  .infoSection .row .col-md-12 h2 {
    font-size: 40px;
    line-height: 43px;
  }

  .numbersSection .container .row {
    padding: 100px 0 100px;
  }
  .carouselText {
    padding: 0px 30px;
    top: 126px;
  }
  .heroHiring > h1 {
    font-size: 70px;
    font-weight: 500;
    padding-bottom: 0px;
  }

  .ict {
    transform: unset;
  }
  .certifyContainer .row .col h2 {
    font-size: 42px;
    line-height: 44px;
  }
  .logoSection {
    padding: 50px 0 !important;
  }

  .logoSection .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .logoSection .col-6 {
    display: flex;
    justify-content: center;
  }
  .logoSection .col-md-4 {
    width: 32%;
  }

  .logoSection img.boxLogo {
    width: 100%;
    height: auto;
  }
  .numbersSection .row .col h2,
  .numbersSection .row .col h3 {
    font-size: 82px;
  }
  .numbersSection .row .col {
    padding: 20px;
  }
  .bgCarousel {
    width: auto;
    height: 630px;
  }
  .sedeSection h2 {
    font-size: 55px;
    line-height: 55px;
    padding-bottom: 60px;
    text-align: center;
  }
  .sedeSection h3 {
    padding-top: 20px;
  }
  .sedeSection .row {
    gap: 50px;
    justify-content: center !important;
  }
  .newsSection {
    padding: 100px 0 100px;
  }
  .row.contact {
    margin-top: 50px;
    padding-top: 20px;
    padding: 0;
  }
  .contactLogoText {
    padding: 10px 0;
  }
  footer h2,
  .workWithUsSection h2 {
    padding-bottom: 0px;
    font-size: 32px;
  }
  .contact h2 {
    padding-bottom: 0;
  }
  .swiperBtns {
    position: absolute;
  }
  .swiper-button-prev {
    /* padding-left: 80px; */
    color: white !important;
  }
  .swiper-button-next {
    /* padding-right: 80px; */
    color: white !important;
  }
}

@media (max-width: 1280px) {
  .navbar-brand img {
    max-width: 180px;
  }
}

@media (max-width: 1500px) {
  .boxLogo {
    max-width: 80% !important;
  }
  .logoSection .row {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 767px) and (max-width: 960px) {
  .ict .card-body {
    margin-left: 0;
    margin-left: 15px;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .card-body {
    padding: 0;
    max-width: 100%;
    margin-bottom: 40px;
    gap: 0;
    min-height: 100%!important;
    /* height: 0; */
  }
  .card-body .card-text {
    padding-bottom: 0;
  }
  .card-body .btn {
    display: block;
    margin: 25px;
  }
  .card-body div {
    padding: 30px 30px 0 30px;
  }
  .ict .card-body {
    margin-left: 0 !important;
  }
  .cyber {
    /* margin-right: 25px; */
    position: relative;
    right: 43px;
  }
  .firstLine {
    max-width: 40vw;
    margin-left: 404px;
  }
  .second-line {
    max-width: 510px;
    right: 368px;
    top: 394px;
  }

  .third-line {
    max-width: 500px;
    top: 692px;
    left: 378px;
  }
  .professional .card-body {
    margin-left: 200px;
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .infoSection:before {
    background: linear-gradient(to top, #cf0000 104%, rgba(181, 13, 15, 0) 51%),
      linear-gradient(to bottom, #cf0000 8%, rgba(181, 13, 15, 0) 23%),
      linear-gradient(145deg, #cf0000 22%, rgba(181, 13, 15, 0) 38%);
  }
  .info-mobile-img-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100vw;
  }

  .info-mobile-img {
    display: block;
    width: 100%;
    max-width: 100vw;
    height: auto;
    position: relative; /* Necessario per mantenere il livello dell'immagine */
    z-index: 0; /* Assicura che l'immagine resti sotto il gradiente */
  }

  .info-mobile-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(        to top,        rgba(207, 0, 0, 1) 2%,        rgba(207, 0, 0, 0) 11%      ),      linear-gradient(to bottom, rgba(207, 0, 0, 1) 2%, rgba(207, 0, 0, 0) 11%);
    pointer-events: none;
    z-index: 1; /* Assicura che il gradiente stia sopra l'immagine */
  }
}
@media (min-width: 960px) and (max-width: 1230px) {
  .card-body div {
    padding: 15px !important;
  }
}
@media (min-width: 300px) and (max-width: 960px) {
  .card-body {
    padding: 20px;
    max-width: 400px;
  }
  .ict {
    margin-left: 0 !important;
  }
  .cyber {
    /* margin-right: 25px; */
    position: relative;
    right: 10px;
  }
  .firstLine {
    max-width: 40vw;
    margin-left: 344px;
  }
  .second-line {
    max-width: 510px;
    right: 277px;
    top: 338px;
    width: 425px;
  }

  .third-line {
    max-width: 500px;
    top: 631px;
    left: 245px;
  }
  .professional .card-body {
    margin-left: 143px;
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .navbar-brand img {
    max-width: 120px;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .navbar .container {
    padding: 0px;
  }
  .boxSection {
    padding: 0 0 100px !important;
  }
  h1 {
    padding-bottom: 0;
    font-size: 30px !important;
  }

  .articleDescriptionPage {
    padding: 30px 0px;
  }
  .servicePage .subtitle {
    line-height: 1.1;
    padding-bottom: 1rem;
  }
  .servicePage p {
    padding: 0 10px;
  }
}
@media (min-width: 767px) and (max-width: 1200px) {
  .infoSection:before {
    background: linear-gradient(to top, #cf0000 34%, rgba(181, 13, 15, 0) 52%),
      linear-gradient(to bottom, #cf0000 6%, rgba(181, 13, 15, 0) 22%),
      linear-gradient(121deg, #cf0000 25%, rgba(181, 13, 15, 0) 52%);
  }
}
.nav-link.i {
  display: inline-block;
  overflow: hidden;
  width: 10px; /* Larghezza per mostrare solo la "i" */
  transition: width 0.3s ease;
  position: relative;
  padding: 20px !important;
  margin-left: 1rem;
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: #fff;
}

.active .nav-link.i {
  border-color: #005aa2;
}
.active .nav-link.i > * {
  color: #005aa2 !important;
}
.nav-link.i:hover {
  width: 205px; /* Regola questa larghezza in base alla lunghezza del testo */
}

.nav-link.i .short,
.nav-link.i .full {
  position: absolute;
  right: 10px;
  top: -1px;
  z-index: 999999999;
  white-space: nowrap;
}

.nav-link.i .full {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #005aa2 !important;
}

.nav-link.i:hover .full {
  opacity: 1;
  color: #fff;
}

.nav-link.i:hover .short {
  opacity: 0;
}

.newsHeroPage h1 {
  color: #ffffff;
}

.home h1 {
  color: #fff;
}

td,
th {
  text-align: left;
  padding: 8px;
}

tr {
  border-bottom: 1px solid #dddddd;
}

tr:first-child {
  border-top: 1px solid #dddddd;
}
p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.table-responsive {
  padding: 0;
}
@media (max-width: 767px) {
  .newsHeroPage h1 {
    font-size: 40px !important;
    line-height: 35px;
  }
}

@media (min-width: 767px) and (max-width: 1700px) {
  .navbar .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .carouselText,
  .heroHiring {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  /*.partner-container {
    padding-left: 35px !important;
    padding-right: 20px !important;
  }*/
  .navbar-toggler {
    padding: 0;
  }
  .form {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 991px) {
  .card-body {
    height: auto !important;
  }
  .professionalServicesCarousel {
    display: block;
  }
  .card.visible {
    opacity: 1;
    transform: translateY(0);
    /* max-width: 400px; */
    margin-left: auto;
    margin-right: auto;
    height: calc(350px + 7vh);
  }
  .boxSection .card-body {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .professionalServicesSection {
    background-color: #000;
    padding: 40px 0 200px;
  }
  .card h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
/* Back to Top Button Styles */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background-color: #0056b3;
}

#backToTop:active {
  transform: scale(0.95);
}

@keyframes fadeInEffect {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Preparazione dell'elemento, nascosto di default */
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Attiva l'animazione quando visibile */
.fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInEffect 1s forwards;
}
/* Stile iniziale dei paragrafi, nascosti di default */
.afterCard-description p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Quando 'is-visible' viene aggiunta, i paragrafi diventano visibili */
.afterCard-description p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-section-title,
.professionalServicesTitle,
.callToActionSection .container,
.newsSection .swiper-container,
.us,
.partner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-section-title.visible,
.professionalServicesTitle.visible,
.callToActionSection .container.visible,
.newsSection .swiper-container.visible,
.us.visible,
.partner.visible {
  opacity: 1;
  transform: translateY(0);
}

.rc-anchor-invisible {
  display: none;
}
.info-mobile-img {
    display: block;
    width: 100% !important;
    height: auto;
}

.infoSection {
		margin-top: -10px;
	}
@media (min-width: 768px) and (max-width: 1024px) {
  .infoSection .row {
    flex-direction: column !important;
  }
  .infoSection .col-md-4,
  .infoSection .col-md-8 {
    max-width: 100%;
    flex: 0 0 100%;
	width: 100%;
  }
}
	
