html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Prompt", sans-serif;
}

* {
  box-sizing: border-box;
}

.row,
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 2.4rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  font-family: "Prompt", sans-serif;
  color: #24252b;
}

h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: #34363f;
}

.bg-custom {
  background-color: #fafbff;
}

strong {
  font-weight: 700;
}

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  height: 80px;
  width: 100%;
}
header .container {
  height: 100%;
}
header .container .row {
  height: 100%;
}
header .nav-container {
  text-align: right;
}
header .nav-container .nav {
  display: inline-block;
}
header .nav-container .nav .dropdown {
  position: relative;
  display: inline-block;
}
header .nav-container .nav .dropdown.lang .dropdown-content {
  min-width: auto;
}
header .nav-container .nav .dropdown:hover .dropdown-content {
  display: block;
}
header .nav-container .nav .dropdown .dropbtn {
  background-color: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
header .nav-container .nav .dropdown .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 320px;
  border-radius: 6px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  text-align: left;
}
header .nav-container .nav .dropdown .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
}

#btn-up {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 5rem;
  background-color: #f6f6f6;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
#btn-up span:before {
  color: #0061ff;
}
#btn-up.show {
  opacity: 1;
  visibility: visible;
}

.section-block:not(.section-visore) {
  margin: 70px 0;
}

.section-visore {
  padding-top: 80px;
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.section-visore .carousel-hp {
  height: 100%;
  position: relative;
}
.section-visore .carousel-hp .item,
.section-visore .carousel-hp .owl-stage-outer,
.section-visore .carousel-hp .owl-stage,
.section-visore .carousel-hp .owl-item {
  height: 100%;
}
.section-visore .carousel-hp .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.section-visore .carousel-hp .item div:not(.col-6) {
  height: 100%;
}
.section-visore .carousel-hp .item h1 {
  font-weight: 700;
  font-size: 4.8rem;
  margin-bottom: 24px;
}
.section-visore .carousel-hp .item p {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #fff;
}
.section-visore .custom-nav {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
}
.section-visore .custom-nav button {
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
}
.section-visore .custom-nav button.disabled span:before {
  color: #c6c6c6;
}
.section-visore .custom-nav button span {
  font-size: 2rem;
}
.section-visore .custom-nav button span::before {
  color: #0061ff;
}
.section-visore .custom-nav button.owl-prev {
  left: 0;
}
.section-visore .custom-nav button.owl-prev span:before {
  display: block;
  transform: rotate(180deg);
}
.section-visore .custom-nav button.owl-next {
  right: 0;
}
.section-visore .custom-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  height: 50px;
  z-index: 3;
}
.section-visore .custom-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transform: translateY(-50%);
  padding: 0;
  border: 0;
  background-color: transparent;
}
.section-visore .custom-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  display: block;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.section-visore .custom-dots .owl-dot span:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.section-visore .custom-dots .owl-dot.active span {
  background-color: #fff;
}

.span-section {
  margin-bottom: 24px;
  display: inline-flex;
  font-size: 1.4rem;
  color: #16ac70;
  font-weight: 700;
  font-family: "Prompt", sans-serif;
}

.section-about-us {
  position: relative;
}
.section-about-us .block-img {
  position: absolute;
  overflow: hidden;
  left: 0;
}
.section-about-us .block-img figure {
  margin: 0;
  width: 100%;
  position: relative;
  left: -12px;
}
.section-about-us .block-img figure img {
  width: 100%;
}
.section-about-us .block-text h2 {
  margin-bottom: 16px;
}
.section-about-us .block-text p {
  margin: 0 0 40px 0;
}

.section-services .lists-box .item {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 80%;
  margin-bottom: 24px;
  border-radius: 8px;
  background-position: center center;
  background-size: cover;
}
.section-services .lists-box .item.full {
  padding-bottom: 40%;
}
.section-services .lists-box .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 6px;
}
.section-services .lists-box .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.section-services .lists-box .item .text {
  position: absolute;
  padding: 24px;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  color: #fff;
}

.section-technology {
  padding: 80px 0;
}
.section-technology .text {
  text-align: center;
}
.section-technology .loghi-lists {
  margin-top: 80px;
}
.section-technology .loghi-lists .item {
  background-color: #fff;
  margin-bottom: 16px;
  font-size: 0;
  padding: 5px;
}
.section-technology .loghi-lists .item figure {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  display: inline-block;
}
.section-technology .loghi-lists .item figure img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.section-technology .loghi-lists .item span {
  width: calc(100% - 50px);
  font-size: 1.8rem;
  vertical-align: middle;
  padding: 0 15px;
  color: #24252b;
}

.section-contact .text {
  text-align: center;
}

.section-intro-details {
  padding: 160px 0 0;
}
.section-intro-details .text {
  text-align: center;
}

.section-details-services {
  position: relative;
  margin: 80px 0;
}
.section-details-services .block-img {
  position: absolute;
  overflow: hidden;
  left: 0;
}
.section-details-services .block-img figure {
  margin: 0;
  width: 100%;
  position: relative;
  left: -12px;
}
.section-details-services .block-img figure img {
  height: auto;
}
.section-details-services .block-text h3 {
  margin-bottom: 16px;
}
.section-details-services .block-text p {
  margin: 0 0 40px 0;
}

.section-service_stages {
  padding: 80px 0;
  text-align: center;
}
.section-service_stages .text h3 {
  margin-bottom: 30px;
}
.section-service_stages .lists {
  text-align: left;
  margin-top: 40px;
}
.section-service_stages .lists li {
  font-size: 0;
  margin-bottom: 64px;
}
.section-service_stages .lists li .number {
  font-size: 7.2rem;
  color: #3884ff;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
  width: 100px;
}
.section-service_stages .lists li .text {
  width: calc(100% - 100px);
  font-size: initial;
  display: inline-block;
  vertical-align: middle;
}
.section-service_stages .lists li .text h4 {
  margin-bottom: 30px;
}
.section-service_stages .lists li .text p {
  font-size: 1.8rem;
  color: #000;
}
.section-service_stages .text-final p {
  color: #34363f;
}
.section-service_stages .text-final p + p {
  margin-top: 60px;
}
.section-service_stages .text-final p + p a {
  color: #0061ff;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.section-service_stages .text-final p + p a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 3rem;
}
.section-service_stages .text-final p + p a span::before {
  color: #0061ff;
}

.footer {
  background-color: #24252a;
  height: 200px;
}
.footer .container {
  height: 100%;
}
.footer .container .row {
  height: 100%;
}
.footer .container .row .nav-container .lists .item {
  display: inline-block;
  color: #fff;
  padding-right: 32px;
}
.footer .container .row .nav-container .lists .item a {
  color: #fff;
  text-decoration: none;
}
.footer .container .row .nav-container .lists .item:last-child {
  padding-right: 0;
}
.footer .container .row .social {
  text-align: right;
}
.footer .container .row .social a span:before {
  color: #fff;
}
.about-us {
  width: 839px;
  height: 640px;
}
.about-us img {
  height: 100%;
  width: 100%;
}
.ciso {
  width: 830px;
  height: 1160px;
}
.ciso img {
  height: 100%;
  width: 100%;
  margin-left: -70px;
}
.dfir {
  width: 800px;
  height: 100%;
}
.dfir img {
  height: 90%;
  margin-left: -70px;
}
.digital-guarding {
  width: 830px;
  height: 100%;
}
.digital-guarding img {
  width: 100%;
  margin-left: -70px;

  height: 100%;
}
.industrial-risk {
  height: 100%;
}

.industrial-risk img {
  margin-left: -50px;
  height: 100%;
}
.managing {
  width: 830px;
  height: 100%;
}
.managing img {
  /* width: 100%; */
  height: 100%;
}
.language {
  width: 25px;
}

.nav-page {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4em;
  padding-top: 4em;
}
@media screen and (max-width: 1200px) {
  .mobile {
    display: block;
  }
  .not-show {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section-about-us .block-img {
    position: relative;
  }
  .section-about-us .block-img figure {
    left: 0;
  }
  .section-services .lists-box {
    margin-top: 50px;
  }
  .section-services .lists-box .item.full {
    padding-bottom: 80%;
  }
  .section-details-services .block-img {
    position: relative;
  }
}
.img-reference-section {
      object-position: right;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.list-files > li:first-child{
  margin-top: 0;
}
.list-files > li {
  margin-top: 10px;
}
#Reference{
  scroll-margin-top: 80px;
}
.drawer {
  position: fixed;
  height: 100vh;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 102;
  width: 280px;
  transition: .4s;
  transform: translateX(-280px);
}
.drawer-content{
  position: relative;
}
.drawer.open{
  transform: translateX(0px);
}
.drawer-link {
  background-color: transparent;
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: .3s;
}
.drawer-link:hover{
  opacity: .7;
}
.drawer-logo{
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.drawer-list {
  text-align: left;
}
.drawer-list > li {
  margin-bottom: 1rem;
}
.drawer-accordion{
  display: block;
  padding-left: 6px;
  color: #000;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
  font-family: "Arial";
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* opacity here */
  z-index: 101;
  display: none;
}
.btn-icon {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}
.btn-icon:hover{
  opacity: .7;
}
#MobileDrawerBtn{
  display: none;
}
.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}
.accordion.active>.accordion-chevron{
  transform: rotate(-180deg);
} 
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  #MobileDrawerBtn{
    display: block;
  }
  .link-desktop{
    display: none!important;
  }
  header .nav-container .nav {
    display: inline-flex!important;
    gap: 1rem;
  }
}