@import "../fonts/Prompt/stylesheet.css";
@import "../fonts/RBFaktumNeueExtended/stylesheet.css";

html {
  position: relative;
  min-height: 100%;
  font-size: 55%;
}

@media (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}

/* Selection */
::selection {
  background: #000000;
  color: #FFFFFF !important;
}

::-moz-selection {
  background: #000000;
  color: #FFFFFF !important;
}

body {
  font-family: "Prompt", serif;
  background: #FFFFFF;
  font-size: 1.7rem;
  font-weight: 300;
  color: #000000;
  font-optical-sizing: auto;
}

*,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

button,
button:hover,
button:focus {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.btn-contact {
  font-family: "RB Faktum Neue Extended", serif;
  border-radius: 25px;
  background: #3B41FF;
  padding: 0.8rem 2.5rem;
  color: #ffffff;
  align-items: center;
  display: inline-flex;
  border: none;
}

.btn-contact:hover {
  background: #000000;
  color: #ffffff;
}

hr {
  margin: 0;
}

/* Container and Row 
.container-full {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1120px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -2rem;
  margin-left: -2rem;
}

@media (min-width: 992px) {
  .row {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

.row>* {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 992px) {
  .row>* {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}*/

@media(max-width: 767px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .row {
    margin-right: -2rem;
    margin-left: -2rem;
  }

  .row>* {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* Section */
section {
  padding: 15rem 0;
}

@media (max-width: 991px) {
  section {
    padding: 5rem 0;
  }
}

/* Header */
header {
  position: relative;
  height: 150px;
}

@media (max-width: 991px) {
  header {
    height: 60px;
  }
}

header.gray-bg {
  background-color: #F2F3F4;
}

header.no-height {
  height: 0;
}

header .menu {
  border-radius: 2.8rem;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2.8rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  top: 3rem;
  z-index: 10;
}

@media (max-width: 1199px) {
  header .menu {
    display: none;
  }
}

header .menu .logo {
  display: block;
  width: 161px;
  height: 23px;
}

header .menu nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7rem;
}

header .menu nav ul {
  display: flex;
  gap: 7rem;
}

header .menu nav ul li a,
header .menu nav ul li .drop {
  color: #000000;
  font-family: "Prompt", serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

header .menu nav ul li .drop:hover {
  cursor: pointer;
}

header .menu nav ul li a.active:after {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #000000;
  content: "";
  border-radius: 0.25rem;
  left: 50%;
  margin-left: -0.25rem;
  bottom: -1rem;
}

header .menu nav ul li .dropdown {
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  list-style: none;
  position: absolute;
  top: 5.8rem;
  text-align: left;
  padding: 3rem;
  visibility: hidden;
  opacity: 0;
  width: max-content;
  -webkit-transition: all 0.2s ease-in-out !important;
  -moz-transition: all 0.2s ease-in-out !important;
  -o-transition: all 0.2s ease-in-out !important;
  transition: all 0.2s ease-in-out !important;
}

header .menu nav ul li .dropdown ul {
  display: grid;
  gap: 1.5rem;
}

header .menu nav ul li .dropdown ul li .item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

header .menu nav ul li .dropdown ul li .item img {
  aspect-ratio: 1/1;
  width: 2.5rem;
  object-fit: contain;
}

header .menu nav ul li:hover .dropdown {
  visibility: visible;
  opacity: 1;
}

header .menu nav .search-icon {
  width: 2.4rem;
  height: 2.4rem;
}

header .nav-mobile {
  border-radius: 0;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
  z-index: 10;
  padding: 3rem 2rem;
  width: 100%;
}

@media (min-width: 1200px) {
  header .nav-mobile {
    display: none;
  }
}

header .nav-mobile .open-menu {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url("/img/black_hamburger.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

header .responsive-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 100%;
  background-color: #ffffff;
  padding: 5rem 4rem 5rem 4rem;
  z-index: 999999;
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.3s ease-in;
}

header .responsive-mobile-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}

header .responsive-mobile-menu ul {
  list-style: none;
  padding: 0;
}

header .responsive-mobile-menu ul li {
  color: #000000;
}

header .responsive-mobile-menu ul li a {
  font-size: 2rem;
  padding: 1rem 0;
  color: #000000;
  font-style: normal;
  font-weight: 400;
  display: block;
  text-decoration: none;
  text-transform: lowercase;
}

header .responsive-mobile-menu img.logo-mini {
  aspect-ratio: 79/49;
  width: 6rem;
  object-fit: contain;
}

header .responsive-mobile-menu .close-menu {
  display: flex;
}

header .responsive-mobile-menu .close-menu img {
  width: 2rem;
  height: 2rem;
}

header .responsive-mobile-menu .accordion {
  margin-top: 5rem;
}

header .responsive-mobile-menu .accordion .accordion-item {
  border: none;
}

header .responsive-mobile-menu .accordion .accordion-item .accordion-button {
  font-size: 2rem;
  padding: 1rem 0;
  color: #000000;
  font-style: normal;
  font-weight: 400;
  display: block;
  text-decoration: none;
  text-transform: lowercase;
  width: fit-content;
}

header .responsive-mobile-menu .accordion .accordion-item .accordion-button:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

header .responsive-mobile-menu .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: unset;
}

header .responsive-mobile-menu .accordion .accordion-item .dropdown ul {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 1rem 0 1rem 0;
}

header .responsive-mobile-menu .accordion .accordion-item .dropdown ul li .item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0;
  font-size: 1.8rem;
}

header .responsive-mobile-menu .accordion .accordion-item .dropdown ul li .item img {
  aspect-ratio: 1/1;
  width: 2.5rem;
  object-fit: contain;
}

header .responsive-mobile-menu .accordion .accordion-item .dropdown ul li:last-child {
  margin-top: 0;
}





.input-group.search> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group.search .input-group-text {
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--Black);
  padding: 0.8rem 1.6rem;
}

.input-group.search .input-group-text img {
  aspect-ratio: 1/1;
  width: 2rem;
  object-fit: cover;
}

.input-group.search .form-control {
  border-radius: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--Black);
  color: var(--Black);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 0 0 1.4rem 0;
}

.input-group.search .form-control:focus {
  box-shadow: none;
}


/* pager */

.pager {
  margin-top: 6rem;
}

.pager ul {
  flex-direction: row;
  display: flex;
  gap: 5px;
}

.pager ul li {
  border-radius: 0.5rem;
  border-color: #000000;
  color: #000000;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
}

ul li:after {
  display: none;
}

.pager ul li a {
  padding: 0.5rem 1.4rem;
  display: block;
}

.pager ul li.active {
  background-color: #000000;
  color: #ffffff;
}



/* Section 1 */
.section-1 {
  background-image: url("../img/section-1.svg");
  background-repeat: no-repeat;
  padding: 18rem 0 30rem 0;
}

@media (max-width: 991px) {
  .section-1 {
    padding: 10rem 0 10rem 0;
    background-image: none;
  }
}

.section-1 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 6rem;
}

@media (max-width: 991px) {
  .section-1 h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
    margin-bottom: 0;
    text-align: center;
  }
}

.section-1 h1 span {
  color: #3B41FF;
}

.section-1 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 8.5rem;
  line-height: 11rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .section-1 h2 {
    font-size: 3rem;
    line-height: 4rem;
    text-align: center;
  }
}

.section-1 h2 span {
  color: #3B41FF;
}

.section-1 p {
  font-size: 2rem;
}

@media (max-width: 991px) {
  .section-1 p {
    margin-top: 2rem;
  }
}

/* Section 2 */
.section-2 {
  background-color: #F2F3F4;
  margin-bottom: 15rem;
}

@media (max-width: 991px) {
  .section-2 {
    margin-bottom: 5rem;
  }
}

.section-2 .hashtag {
  color: #3B41FF;
  font-size: 2rem;
  font-family: "Prompt", serif;
}

@media (max-width: 991px) {
  .section-2 .hashtag {
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 1rem;
  }
}

.section-2 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
  font-size: 4rem;
}

@media (max-width: 991px) {
  .section-2 h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}

.section-2 .subtitle {
  font-size: 2rem;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .section-2 .subtitle {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.section-2 .services {
  margin-top: 14rem;
}

@media (max-width: 991px) {
  .section-2 .services {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 2rem;
    margin-right: 0;
    margin-left: 0;
    margin-top: 4rem;
  }
}

.section-2 .services .item {
  width: 20%;
  position: relative;
}

@media (max-width: 991px) {
  .section-2 .services .item {
    width: 40%;
    margin-right: 4%;
    padding-left: 0;
    padding-right: 0;
  }
}

.section-2 .services .item .content-mobile {
  display: block;
}

.section-2 .services .item .content-mobile h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .section-2 .services .item .content-mobile {
    display: none;
  }
}

.section-2 .services .item img {
  width: 100%;
}

.section-2 .services .item .item-hover {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 7px;
  z-index: 1;
  border-radius: 1.5rem;
  background: rgba(242, 243, 244, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 3rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-2 .services .item .item-hover .btn-contact {
  width: fit-content;
}

.section-2 .services .item .item-hover .content h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.section-2 .services .item .item-hover .content p {
  font-family: Prompt, serif;
  font-size: 1.7rem;
}

@media (min-width: 992px) {
  .section-2 .services .item .item-hover:hover {
    opacity: 1;
  }
}

/* Section 3 */
.section-3 .box {
  background-color: #F2F3F4;
  border-radius: 10rem;
  background-image: url("../img/overbi-big.svg");
  background-size: cover;
  background-position: 12% center;
  padding: 18rem 0;
}

@media (max-width: 991px) {
  .section-3 .box {
    padding: 5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 0;
  }
}

.section-3 .box h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .section-3 .box h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}

.section-3 .box h2 span {
  color: #3B41FF;
}

.section-3 .box p {
  font-size: 2rem;
}

/* Section 4 */
.section-4 {
  padding: 20rem 0 30rem 0;
}

@media (max-width: 991px) {
  .section-4 {
    padding: 5rem 0;
  }
}

.section-4 .subtitle {
  color: #3B41FF;
  font-size: 2rem;
  font-weight: 400;
}

.section-4 .title-1 {
  font-size: 8rem;
  line-height: 8rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-4 .title-1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

.section-4 .title-2 {
  font-size: 8rem;
  line-height: 8rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
}

.section-4 .title-3 {
  font-size: 8rem;
  line-height: 8rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-4 .desc {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Section 5 */
.section-5 {
  /* Contenitore della barra */
  /* Thumb della barra (parte scorrevole) */
}

.section-5 h3 {
  font-size: 4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .section-5 h3 {
    font-size: 2.5rem !important;
  }
}

.section-5 .row-with-scroll {
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: hidden;
  justify-content: left !important;
  margin-bottom: 2rem;
  cursor: grab;
}


@media (max-width: 991px) {
  .section-5 .row-with-scroll {
    overflow-x: scroll;
  }
}

.section-5 .row-with-scroll .item {
  width: 670px;
  position: relative;
  display: block;
}

@media (max-width: 991px) {
  .section-5 .row-with-scroll .item {
    width: auto;
  }
}

.section-5 .row-with-scroll .item .item-content {
  position: absolute;
  left: 40px;
  bottom: 1.5rem;
  z-index: 2;
}

@media (max-width: 991px) {
  .section-5 .row-with-scroll .item .item-content {
    left: 1.5rem;
  }
}

.section-5 .row-with-scroll .item .item-content h4 p {
  color: #ffffff;
  line-height: 4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.section-5 .row-with-scroll .item .item-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(0);
  z-index: 1;
  margin-right: 0.7rem;
  margin-left: 0.7rem;
  border-radius: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-5 .row-with-scroll .item .item-arrow {
  background-image: url("../img/arrow-service.svg");
  width: 46px;
  height: 27px;
  opacity: 0;
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-5 .row-with-scroll .item img {
  width: 100%;
  border-radius: 1.5rem;
}

@media (max-width: 991px) {
  .section-5 .row-with-scroll .item img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.section-5 .row-with-scroll .item:hover .item-hover {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.05);
}

.section-5 .row-with-scroll .item:hover .item-arrow {
  opacity: 1;
  bottom: 40px;
}

@media (min-width: 991px) {

  .section-5 .row-with-scroll::-webkit-scrollbar {
    height: 6px;
    /* Altezza della scrollbar orizzontale */
  }

  .section-5 .row-with-scroll::-webkit-scrollbar-thumb {
    background: #000000;
    /* Colore del cursore */
    border-radius: 4px;
    /* Angoli arrotondati */
    min-height: 20px;
  }

  .section-5 .row-with-scroll::-webkit-scrollbar-thumb:hover {
    background: #3B41FF;
    /* Colore al passaggio del mouse */
  }

  .section-5 .row-with-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    /* Colore del track */
    border-radius: 4px;
  }
}

.section-5 .custom-scrollbar {
  position: relative;
  height: 8px;
  /* Altezza della barra */
  background-image: url("../img/scrollbar-bg.svg");
  background-size: 2px;
  background-position: center;
  background-repeat: repeat-x;
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.section-5 .scroll-thumb {
  position: absolute;
  height: 100%;
  width: 50px;
  /* Larghezza iniziale del thumb */
  background-color: #000000;
  /* Colore del thumb */
  border-radius: 4px;
  cursor: grab;
}

.section-5 .scroll-arrow {
  transform: translateY(-50%);
  background-color: #ffffff;
  color: #000000;
  border: none;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-family: "RB Faktum Neue Extended-", serif;
  font-weight: 400;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.section-5 .scroll-arrow.left-arrow {
  transform: rotate(180deg);
}

.section-5 .scroll-arrow.right-arrow {
  margin-top: 10px;
  margin-left: 40px;
}

.section-5 .scroll-arrow:hover {
  opacity: 0.3;
}

/* Section 6 */
.section-6 .subtitle {
  color: #3B41FF;
  font-size: 2rem;
  font-weight: 400;
}

.section-6 h2 {
  font-size: 4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-6 h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}

.section-6 p {
  font-size: 2rem;
}

.section-6 .mt-5 {
  margin-top: 6rem !important;
}

@media (max-width: 991px) {
  .section-6 .mt-5 {
    margin-top: 3rem !important;
  }
}

.section-6 .box {
  background-color: #F2F3F4;
  border-radius: 1.5rem;
  padding: 6rem 4rem;
}

@media (max-width: 991px) {
  .section-6 .box {
    padding: 3.5rem 2rem 5rem 2rem;
  }
}

.section-6 .box h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.section-6 .box p {
  font-size: 1.7rem;
}

/* Section 7 */
.section-7 .subtitle {
  text-align: center;
  color: #3B41FF;
  font-size: 2rem;
  font-weight: 400;
}

.section-7 .title {
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 991px) {
  .section-7 .title {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}

.section-7 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  position: relative;
  aspect-ratio: 451/366;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
  cursor: pointer;
}

.section-7 .box img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 451/366;
  width: 100%;
  border-radius: 1.5rem;
  z-index: 0;
}

.section-7 .box .content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 3rem;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-7 .box .content .badge {
  margin-left: -4.6rem;
  background-color: #3B41FF;
  color: #ffffff;
  padding: 0 1.6rem;
  height: 2.3rem;
  line-height: 2.3rem;
  align-items: center;
  display: inline-flex;
  border-radius: 2rem;
  margin-bottom: 2.2rem;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section-7 .box .content .badge.case-study-1 {
  background-color: #B8F600;
  color: #000000;
}

.section-7 .box .content .badge.case-study-2 {
  background-color: #FF9700;
  color: #FFFFFF;
}

.section-7 .box .content .badge.case-study-3 {
  background-color: #000000;
  color: #FFFFFF;
}

.section-7 .box .content .badge.case-study-4 {
  background-color: #A8F9EE;
  color: #000000;
}

.section-7 .box .content .badge.case-study-5 {
  background-color: #9D00FF;
  color: #FFFFFF;
}

.section-7 .box .content .badge.case-study-6 {
  background-color: #FF5219;
  color: #FFFFFF;
}

.section-7 .box .content h4 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "RB Faktum Neue Extended", serif;
  margin-bottom: 1.5rem;
}

.section-7 .box .content p {
  font-size: 1.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-7 .box .box-arrow {
  background-image: url("../img/arrow-service.svg");
  width: 46px;
  height: 27px;
  opacity: 0;
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-7 .box .box-hover {
  backdrop-filter: blur(0);
  border-radius: 1.5rem;
  background: rgba(242, 243, 244, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-7 .box:hover .content {
  bottom: 8rem;
}

.section-7 .box:hover .box-hover {
  backdrop-filter: blur(10px);
  opacity: 1;
}

.section-7 .box:hover .box-arrow {
  opacity: 1;
  bottom: 40px;
}

.section-8 h1 {
  color: #3B41FF;
  font-size: 2rem;
  font-weight: 400;
}

.section-8 h2 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-8 h2 {
    font-size: 4rem;
  }
}

.section-8 h2 span {
  color: #3B41FF;
}

.section-8 p {
  margin-top: 2.6rem;
  font-size: 2rem;
}

.section-9 {
  background-color: #F2F3F4;
  padding: 15rem 0;
}

@media (max-width: 991px) {
  .section-9 {
    padding: 6rem 0;
  }
}

.section-9 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-9 h2 {
    margin-bottom: 2rem;
  }
}

.section-9 p {
  font-size: 1.7rem;
}

.section-9 .skills {
  margin-top: 13rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .section-9 .skills {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 2rem;
    margin-top: 3.5rem;
  }
}

.section-9 .skills img {
  width: 19%;
  margin-top: 0.5%;
  margin-bottom: 0.5%;
}

@media (max-width: 991px) {
  .section-9 .skills img {
    width: 60%;
    margin-right: 4%;
  }
}

.section-10 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3.8rem;
}

@media (max-width: 991px) {
  .section-10 h3 {
    margin-bottom: 2.5rem;
  }
}

.section-10 p {
  font-size: 1.7rem;
}

.section-11 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
}

.section-11 p {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}

.section-11 p span {
  color: #3B41FF;
}

.section-12 h5 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .section-12 h5 {
    font-size: 3rem !important;
    line-height: normal !important;
  }
}

.section-12 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  position: relative;
  padding: 3rem;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.section-12 .box .tag {
  position: absolute;
  left: -1.5rem;
  top: 3rem;
  display: flex;
  gap: 1.5rem;
}

.section-12 .box .tag .box-tag {
  padding: 0.2rem 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #000000;
  font-size: 1.3rem;
  border-radius: 3rem;
}

.section-12 .box .tag img {
  aspect-ratio: 93/13;
  width: 9rem;
  object-fit: contain;
}

.section-12 .box .box-content h6 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.3rem;
  margin-top: 5rem;
}

.section-12 .box .box-content p {
  font-size: 1.7rem;
}

.section-12 .box .box-image {
  height: 15rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}

@media (max-width: 991px) {
  .section-12 .box .box-image {
    height: 13rem;
  }
}

.section-13 h3 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-13 p {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3.9rem;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 991px) {
  .section-13 p {
    font-size: 3rem;
  }
}

.section-13 img {
  width: 100%;
}

.section-14 .box {
  border-radius: 1.5rem;
  background-color: #000000;
  padding: 6.5rem 0;
}

@media (max-width: 991px) {
  .section-14 {
    text-align: center;
  }

  .section-14 .box {
    padding: 3.5rem 2rem;
  }
}

.section-14 .box h4 {
  color: #ffffff;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}

.section-14 .box p {
  color: #ffffff;
  font-family: Prompt, serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: normal;
}

.section-14 .box .btn-contact {
  background-color: #ffffff;
  color: #3B41FF;
  font-size: 2rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-14 .box .btn-contact {
    margin-top: 2.5rem;
  }
}

.section-14 .box .btn-contact:hover {
  background-color: #3B41FF;
  color: #ffffff;
}

.section-16 {
  padding-bottom: 10rem;
}

@media (max-width: 991px) {
  .section-16 {
    padding-bottom: 6rem;
  }
}

.section-16 .item {
  display: flex;
  flex-direction: row;
  gap: 10rem;
}

@media (max-width: 991px) {
  .section-16 .item {
    gap: 6rem;
  }
}

.section-16 .item .item-line {
  position: relative;
}

.section-16 .item .item-line h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 8rem;
  font-weight: 400;
  line-height: normal;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .section-16 .item .item-line h3 {
    font-size: 6rem !important;
    line-height: normal !important;
  }
}

.section-16 .item .item-line:after {
  content: "";
  position: absolute;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  background-color: #3B41FF;
}

.section-16 .item .item-content h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .section-16 .item .item-content h4 {
    font-size: 2.5rem !important;
    margin-top: 2.5rem;
  }
}

.section-16 .item .item-content p {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 13rem;
  /*span {
    color: $primary-color;
    font-family: "RB Faktum Neue Extended", serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 13rem;
    display: block;
  }*/
}

@media (max-width: 991px) {
  .section-16 .item .item-content p {
    margin-bottom: 9rem;
  }
}

.section-16 .item:last-child .item-line:after {
  display: none;
}

.section-16 .item:last-child .item-content p span {
  margin-bottom: 0;
}

.section-17 .row {
  margin-bottom: 18rem;
}

@media (max-width: 991px) {
  .section-17 .row {
    margin-bottom: 8rem;
  }
}

.section-17 .row:last-child {
  margin-bottom: 0;
}

.section-17 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-17 h3 {
    font-size: 3rem;
  }
}

.section-17 p {
  font-size: 2rem;
}

.section-18 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 5.8rem;
  font-weight: 400;
}

.section-18 h2 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 3.6rem;
  margin-bottom: 2.9rem;
}

.section-18 p {
  font-size: 1.7rem;
}

.section-19 {
  background-color: #F2F3F4;
  padding: 12rem 0;
}

@media (max-width: 991px) {
  .section-19 {
    padding: 6rem 0;
  }
}

.section-19 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 6rem;
}

@media (max-width: 991px) {
  .section-19 h2 {
    margin-bottom: 3rem;
  }
}

.section-19 p {
  font-size: 1.7rem;
}

.section-19 img {
  border-radius: 1.5rem;
}

.section-20 .title {
  margin-bottom: 5rem;
}

.section-20 .title h3 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem;
  font-weight: 400;
}

.section-20 .title h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-20 .title h4 {
    font-size: 3rem !important;
    line-height: normal !important;
    margin-bottom: 2rem;
  }
}

.section-20 .title p {
  font-size: 2rem;
}

.section-20 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  padding: 6.5rem 4.5rem 8rem 4.5rem;
  height: 100%;
}

@media (max-width: 991px) {
  .section-20 .box {
    padding: 3.5rem 2rem 5rem 2rem;
  }
}

.section-20 .box h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.section-20 .box p {
  font-size: 1.7rem;
}

.section-20 .box img {
  aspect-ratio: 1/1;
  width: 7rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.section-21 .mb-5 {
  margin-bottom: 12rem !important;
}

.section-21 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-21 h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.section-21 p {
  font-size: 1.7rem;
}

.section-22 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991px) {
  .section-22 h4 {
    font-size: 2.5rem !important;
  }
}

.section-22 h4 span {
  color: #3B41FF;
}

.section-23 h2 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem !important;
  font-weight: 400;
}

.section-23 h3 {
  color: #000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-23 h3 {
    font-size: 3rem !important;
    line-height: normal !important;
  }
}

.section-23 p {
  font-size: 2rem;
}

.section-24 {
  padding-top: 10rem;
}

.section-24 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  padding: 4.8rem 3rem 9rem 3rem;
  display: block;
  position: relative;
}

@media (max-width: 991px) {
  .section-24 .box {
    margin-top: 2rem;
    padding: 3.5rem 2rem 5rem 2rem;
  }
}

.section-24 .box .box-arrow {
  background-image: url("../img/arrow-service.svg");
  width: 46px;
  height: 27px;
  opacity: 0;
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-24 .box .date {
  font-family: Prompt, serif;
  font-size: 1.7rem;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .section-24 .box .date {
    font-weight: 400;
    margin-bottom: 2rem;
  }
}

.section-24 .box h4 {
  color: #3B41FF;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  display: -webkit-box;
  min-height: 7.2rem;
}

@media (max-width: 991px) {
  .section-24 .box h4 {
    font-size: 3rem !important;
    margin-bottom: 1rem;
    min-height: 6.3rem;
  }
}

.section-24 .box p {
  font-size: 1.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-24 .box:hover .box-arrow {
  opacity: 1;
  bottom: 40px;
}

.section-25 h2 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem !important;
  font-weight: 400;
}

.section-25 p {
  font-size: 1.7rem;
  margin-bottom: 5.5rem;
}

.section-25 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-25 h3 {
    font-size: 5rem !important;
    margin-bottom: 1.5rem;
  }
}

.section-25 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-weight: 400;
}

.section-26 {
  /* accordion */
}

.section-26 h1 {
  text-align: center;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-26 h1 {
    font-size: 4rem;
  }
}

.section-26 h2 {
  text-align: center;
  color: #3B41FF;
  font-size: 2rem !important;
  font-weight: 400;
}

.section-26 h3 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem !important;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.section-26 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 991px) {
  .section-26 h4 {
    font-size: 3rem !important;
    line-height: normal !important;
  }
}

.section-26 .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 2.5rem;
  background-color: #F2F3F4;
}

.section-26 .accordion-button {
  color: #000000;
  background-color: #F2F3F4;
  padding: 2.3rem 1.5rem 2.3rem 3rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  justify-content: space-between;
  border-radius: 1.5rem;
}

@media (max-width: 991px) {
  .section-26 .accordion-button {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
  }
}

.section-26 .accordion-button::after {
  background-image: none;
}

@media (max-width: 991px) {
  .section-26 .accordion-button::after {
    display: none;
  }
}

.section-26 .accordion-button::before {
  content: "+";
  width: 3.4rem;
  height: 3.4rem;
  background-image: none;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-26 .accordion-button:not(.collapsed)::before {
  content: "-";
}

.section-26 .accordion-item:first-of-type,
.section-26 .accordion-item:last-of-type,
.section-26 .accordion-item:first-of-type .accordion-button,
.section-26 .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 1.5rem;
}

.section-26 .accordion-button:not(.collapsed) {
  color: #3B41FF;
  background-color: #F2F3F4;
  box-shadow: none;
}

.section-26 .accordion-body {
  padding: 1rem 3rem 3rem 3rem;
}

.section-26 .accordion-header:hover button {
  color: #3B41FF;
}

.section-26 .accordion-button:focus {
  z-index: 3;
  outline: 0;
  border-color: #3B41FF;
  /*box-shadow: 0 0 4px 0 rgba(59, 65, 255, 0.50);*/
  box-shadow: none;
}

.section-27 {
  background-color: #F2F3F4;
  padding: 15rem 0;
}

@media (max-width: 991px) {
  .section-27 {
    padding: 6rem 0;
  }
}

.section-27 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 7rem;
}

@media (max-width: 991px) {
  .section-27 h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
}

.section-27 .box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 6.5rem 4.5rem 8rem 4.5rem;
  width: 100%;
}

@media (max-width: 991px) {
  .section-27 .box {
    padding: 3.5rem 2rem 5rem 2rem;
  }
}

.section-27 .box h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.section-27 .box p {
  font-size: 1.7rem;
}

.section-28 {
  text-align: center;
  padding-bottom: 0;
}

.section-28 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-weight: 400;
}

.section-28 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-28 h2 {
    font-size: 4rem;
  }
}

.section-28 h2 span {
  color: #3B41FF;
}

.section-29 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem !important;
  line-height: normal !important;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-29 h3 {
    margin-bottom: 2rem;
  }
}

/* Section 30 */
.section-30 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-30 h4 {
    font-size: 3rem !important;
    line-height: normal !important;
  }
}

.section-30 ul li {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 3rem;
  padding-left: 3.5rem;
  position: relative;
}

.section-30 ul li:before {
  content: "";
  background-image: url("../img/check.svg");
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: contain;
  background-repeat: no-repeat;
}

.section-30 .btn-contact {
  margin-top: 6rem;
}

/* Section 31 */
.section-31 {
  background-color: #F2F3F4;
  background-image: url("../img/section-30.svg");
  background-repeat: no-repeat;
  background-position: top right;
  padding: 20rem 0 11rem 0;
}

@media (max-width: 991px) {
  .section-31 {
    padding: 8rem 0;
  }
}

.section-31 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .section-31 h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
}

.section-31 h1 span {
  color: #3B41FF;
}

.section-31 .box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 6rem 4.5rem;
}

@media (max-width: 991px) {
  .section-31 .box {
    padding: 5rem 3rem;
  }
}

.section-31 .box form input.form-control,
.section-31 .box form textarea {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 1.4rem 0;
  border-bottom: 1px solid #000000;
  width: 100%;
  margin-top: 3.5rem;
  color: #000000;
  font-size: 1.7rem;
  font-family: "RB Faktum Neue Extended", serif;
  resize: none;
}

.section-31 .box form input.form-control::placeholder,
.section-31 .box form textarea::placeholder {
  color: #000000;
  font-size: 1.7rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

.section-31 .box form input.form-control::-ms-input-placeholder,
.section-31 .box form textarea::-ms-input-placeholder {
  color: #000000;
  font-size: 1.7rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

.section-31 .box form input.form-check-input {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0;
}

.section-31 .box form h6 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 300;
}

.section-31 .box form .btn-select {
  font-family: "RB Faktum Neue Extended", serif;
  border-radius: 25px;
  background: #ffffff;
  padding: 0.7rem 1.4rem;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  color: #000000;
  align-items: center;
  display: inline-flex;
  border: 0.1rem solid #000000;
  margin-top: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-31 .box form .btn-select:hover {
  background: #F2F3F4;
  color: #000000;
  cursor: pointer;
  border: 0.1rem solid #F2F3F4;
}

.section-31 .box form .btn-select:checked {
  background: #F2F3F4;
  color: #000000;
  border: 0.1rem solid #F2F3F4;
}

.section-31 .box form .btn-contact {
  margin-top: 5rem;
}

/* Section 32 */
.section-32 {
  padding-top: 10rem;
  padding-bottom: 0;
}

.section-32 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 6rem;
}

@media (max-width: 991px) {
  .section-32 h1 {
    font-size: 4rem;
  }
}

.section-32 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.3rem;
}

.section-32 img {
  aspect-ratio: 214/107;
  width: 214px;
  object-fit: contain;
  margin-bottom: 2.3rem;
  object-position: bottom;
  opacity: 0.2;
}

@media (max-width: 991px) {
  .section-32 img {
    width: 150px;
    margin-bottom: 3rem;
  }
}

.section-32 p {
  color: #3B41FF;
  text-align: right;
  font-family: Prompt, serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-32 p {
    text-align: left;
    display: none;
  }
}

/* Section 33 */
.section-33 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 2.7rem;
}

.section-33 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  position: relative;
  padding: 4rem 3.8rem;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .section-33 .box {
    padding: 2rem 2rem;
  }
}

.section-33 .box h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 2.3rem;
}

.section-33 .box .box-tag {
  position: absolute;
  padding: 0.2rem 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #000000;
  font-size: 1.3rem;
  border-radius: 3rem;
  right: -1.5rem;
  top: 3.8rem;
}

@media (max-width: 991px) {
  .section-33 .box .box-tag {
    display: none;
  }
}

/* Section 34 */
.section-34 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  position: relative;
  width: 100%;
}

.section-34 .box .text {
  padding: 10rem 12rem;
}

@media (max-width: 991px) {
  .section-34 .box .text {
    padding: 4rem 3rem;
  }
}

.section-34 .box .text h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 2.7rem;
}

.section-34 .box img {
  aspect-ratio: 569/550;
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  height: 100%;
}

@media (max-width: 767px) {
  .section-34 .box img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
  }
}

/* Section 35 */
.section-35 {
  padding-top: 0;
}

.section-35 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-35 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 1.5rem;
  margin-top: 5rem;
}

.section-35 .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 2.5rem;
  background-color: #F2F3F4;
}

.section-35 .accordion-button {
  color: #000000;
  background-color: #F2F3F4;
  padding: 2.3rem 1.5rem 2.3rem 3rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  justify-content: space-between;
  border-radius: 1.5rem;
}

@media (max-width: 991px) {
  .section-35 .accordion-button {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
    justify-content: normal;
  }
}

.section-35 .accordion-button::after {
  background-image: none;
}

@media (max-width: 991px) {
  .section-35 .accordion-button::after {
    display: none;
  }
}

.section-35 .accordion-button::before {
  content: "+";
  width: 3.4rem;
  height: 3.4rem;
  background-image: none;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-35 .accordion-button:not(.collapsed)::before {
  content: "-";
}

.section-35 .accordion-item:first-of-type,
.section-35 .accordion-item:last-of-type,
.section-35 .accordion-item:first-of-type .accordion-button,
.section-35 .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 1.5rem;
}

.section-35 .accordion-button:not(.collapsed) {
  color: #3B41FF;
  background-color: #F2F3F4;
  box-shadow: none;
}

.section-35 .accordion-body {
  padding: 1rem 3rem 3rem 3rem;
}

.section-35 .accordion-header:hover button {
  color: #3B41FF;
}

.section-35 .accordion-button:focus {
  z-index: 3;
  outline: 0;
  border-color: #3B41FF;
  /*box-shadow: 0 0 4px 0 rgba(59, 65, 255, 0.50);*/
  box-shadow: none;
}

/* Section 36 */
.section-36 {
  padding-top: 6rem;
}

.section-36 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-36 h2 {
    margin-bottom: 2rem;
  }
}

.section-36 p {
  margin-bottom: 0;
}

.section-36 p a {
  color: #3B41FF;
  text-decoration: underline;
  margin-top: 2rem;
  display: inline-block;
  font-weight: 400;
}

/* Section 37 */
.section-37 {
  background-color: #F2F3F4;
  padding: 15rem 0;
}

@media (max-width: 991px) {
  .section-37 {
    padding: 6rem 0;
  }
}

.section-37 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .section-37 h2 {
    font-size: 3rem;
  }
}

.section-37 .box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  position: relative;
  width: 100%;
  padding: 3.5rem;
  margin-top: 3.4rem;
}

.section-37 .box .box-tag {
  position: absolute;
  padding: 0.2rem 1rem;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  background-color: #F2F3F4;
  font-size: 1.3rem;
  border-radius: 3rem;
  right: 3.5rem;
  top: 3.5rem;
}

.section-37 .box img {
  aspect-ratio: 2/1;
  height: 5rem;
  object-fit: contain;
  object-position: left;
  margin-bottom: 4rem;
}

.section-37 .box h3 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 2rem;
}

.section-37 .box p {
  margin-bottom: 0;
}

/* Section 38 */
.section-38 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  position: absolute;
  left: 1rem;
  width: calc(25% - 2rem);
}

@media (max-width: 991px) {
  .section-38 h2 {
    margin-bottom: 2rem;
    width: auto;
    position: relative;
    left: auto;
  }
}

.section-38 p {
  margin-bottom: 5.5rem;
}

.section-38 p:last-child {
  margin-bottom: 0;
}

.section-38 img {
  aspect-ratio: 924/460;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-top: 4rem;
  margin-bottom: 9.5rem;
}

.section-38 ul {
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.section-38 ul li {
  list-style: disc;
  margin-bottom: 1rem;
}

.section-38 ol li {
  list-style: decimal;
  margin-bottom: 1rem;
}

.section-38 ul li:last-child,
.section-38 ol li:last-child {
  margin-bottom: 0;
}

/* Section 39 */
.section-39 h2 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.section-39 h3,
.section-39 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .section-39 h3,
  .section-39 h4 {
    font-size: 4rem;
  }
}

.section-39 h5 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.section-39 p {
  margin-top: 2rem;
}

/* Section 40 */
.section-40 .box {
  background-color: #3B41FF;
  border-radius: 10rem;
  background-image: url("../img/ov-big.svg");
  background-size: cover;
  background-position: 12% center;
  padding: 18rem 0;
}

@media (max-width: 991px) {
  .section-40 .box {
    padding: 6rem 2rem;
    border-radius: 0;
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

.section-40 .box h2 {
  color: #ffffff;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: normal;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .section-40 .box h2 {
    font-size: 4rem;
    line-height: normal;
  }
}

.section-40 .box p {
  color: #ffffff;
  font-size: 2rem;
}

.section-40 .box .btn-contact {
  color: #000000;
  background-color: #ffffff;
  font-weight: 500;
}

@media (max-width: 991px) {
  .section-40 .box .btn-contact {
    margin-top: 2rem;
  }
}

.section-40 .box .btn-contact:hover {
  color: #3B41FF;
}

/* Section 41 */
.section-41 .box {
  background-color: #F2F3F4;
  border-radius: 1.5rem;
  padding: 6rem;
}

@media (max-width: 991px) {
  .section-41 .box {
    padding: 4rem 3rem;
  }
}

.section-41 .box h2 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .section-41 .box h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

.section-41 .box h2 span {
  color: #3B41FF;
}

.section-41 .box p {
  font-size: 1.7rem;
  font-weight: 300;
}

.section-41 .box .btn-contact {
  color: #ffffff;
  background-color: #000000;
  font-weight: 500;
}

@media (max-width: 991px) {
  .section-41 .box .btn-contact {
    margin-top: 2rem;
  }
}

.section-41 .box .btn-contact:hover {
  background-color: #3B41FF;
}

/* Section 42 */
.section-42 h1,
.section-42 h2.h1 {
  color: #000000;
  text-align: center;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 7rem;
}

@media (max-width: 991px) {

  .section-42 h1,
  .section-42 h2.h1 {
    font-size: 4rem;
  }
}

.section-42 h1 span,
.section-42 h2.h1 span {
  color: #3B41FF;
}

.section-42 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  padding: 4.5rem 5.5rem;
  display: flex;
  gap: 7rem;
  width: 100%;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .section-42 .box {
    gap: 5rem;
    padding: 2rem 3rem;
  }
}

.section-42 .box img {
  aspect-ratio: 1/1;
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  object-position: top;
}

.section-42 .box h2 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
}

/* Section 43 */
.section-43 {
  padding-top: 10rem;
  padding-bottom: 0;
}

.section-43 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.5rem;
  text-align: center;
}

@media (max-width: 991px) {
  .section-43 h1 {
    font-size: 3rem;
    text-align: left;
    line-height: 3.5rem;
  }
}

.section-43 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.3rem;
  text-align: center;
}

.section-43 p {
  color: #3B41FF;
  text-align: center;
  font-family: Prompt, serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .section-43 p {
    text-align: left;
    margin-bottom: 1rem;
  }
}

/* Section 44 */
.section-44 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  position: relative;
  width: 100%;
}

.section-44 .box .text {
  padding: 10rem 12rem;
}

@media (max-width: 991px) {
  .section-44 .box .text {
    padding: 4rem 3rem;
  }
}

.section-44 .box .text h3 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 2rem;
}

.section-44 .box .text h4 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 6rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .section-44 .box .text h4 {
    font-size: 4rem;
  }
}

.section-44 .box .text h5 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4rem;
}

.section-44 .box .text a {
  margin-top: 2.5rem;
  display: block;
}

.section-44 .box .text a img {
  width: 46px;
  height: 27px;
}

.section-44 .box img.logo {
  position: absolute;
  z-index: 2;
  filter: brightness(0) invert(1);
  aspect-ratio: 250/111;
  width: 50%;
  height: 100%;
  object-fit: contain;
  top: 0;
  object-position: center;
  left: 25%;
}

.section-44 .box img {
  aspect-ratio: 569/550;
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  height: 100%;
}

@media (max-width: 767px) {
  .section-44 .box img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
  }
}

/* Section 45 */
.section-45 h1 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 5.8rem;
  font-weight: 400;
}

@media (max-width: 991px) {
  .section-45 h1 {
    font-size: 4rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

.section-45 img {
  aspect-ratio: 1/1;
  width: 12.8rem;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 991px) {
  .section-45 img {
    width: 100%;
  }
}

.section-45 h2 {
  color: #000;
  font-family: "RB Faktum Neue Extended";
  font-size: 6rem;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 991px) {
  .section-45 h2 {
    font-size: 3.5rem !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
  }
}

.section-45 h3 {
  color: #3B41FF;
  font-family: Prompt, serif;
  font-size: 2rem !important;
  line-height: normal !important;
  font-weight: 400;
  margin-bottom: 2rem;
}

.section-45 p {
  font-size: 1.7rem;
}

/* Section 46 */
.section-46 h1 {
  color: #000000;
  text-align: center;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 5.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10rem;
}

@media (max-width: 991px) {
  .section-46 h1 {
    font-size: 3.4rem;
    margin-bottom: 0;
  }
}

.section-46 h1 span {
  color: #3B41FF;
}

.section-46 img {
  position: absolute;
  aspect-ratio: 145/154;
  width: 14rem;
  object-fit: contain;
  top: 15rem;
  right: 0;
}

@media (max-width: 991px) {
  .section-46 img {
    position: relative;
    top: 0;
    margin-bottom: 4rem;
  }
}

/* Section 47 */
.section-47 .cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .section-47 .cards {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 2rem;
    margin-top: 3.5rem;
  }
}

.section-47 .cards img {
  width: 19%;
  margin-top: 0.5%;
  margin-bottom: 0.5%;
}

@media (max-width: 991px) {
  .section-47 .cards img {
    width: 70%;
    margin-right: 4%;
  }
}

/* Section 48 */
.section-48 h2 {
  color: #3B41FF;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 3rem;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5rem;
}

.section-48 .content {
  align-items: center;
  margin-top: 12rem;
}

@media (max-width: 991px) {
  .section-48 .content {
    margin-top: 6rem;
  }
}

.section-48 .content h3 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.section-48 .content img {
  aspect-ratio: 1/1;
  object-fit: contain;
  width: 9.6rem;
}

.section-48 .content ul li {
  list-style: inside !important;
}

/* Section 49 */
.section-49 h2 {
  color: #3B41FF;
  font-size: 2rem !important;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.section-49 h3 {
  font-family: "RB Faktum Neue Extended", serif;
  color: #000000;
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal !important;
}

@media (max-width: 991px) {
  .section-49 h3 {
    font-size: 3rem !important;
    margin-bottom: 2rem;
  }
}

.section-49 h4 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 1.5rem;
  margin-top: 5rem;
}

.section-49 .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 2.5rem;
  background-color: #F2F3F4;
}

.section-49 .accordion-button {
  color: #000000;
  background-color: #F2F3F4;
  padding: 2.3rem 1.5rem 2.3rem 3rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  justify-content: space-between;
  border-radius: 1.5rem;
}

@media (max-width: 991px) {
  .section-49 .accordion-button {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
    justify-content: left;
  }
}

.section-49 .accordion-button::after {
  background-image: none;
}

@media (max-width: 991px) {
  .section-49 .accordion-button::after {
    display: none;
  }
}

.section-49 .accordion-button::before {
  content: "+";
  width: 3.4rem;
  height: 3.4rem;
  background-image: none;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-49 .accordion-button:not(.collapsed)::before {
  content: "-";
}

.section-49 .accordion-item:first-of-type,
.section-49 .accordion-item:last-of-type,
.section-49 .accordion-item:first-of-type .accordion-button,
.section-49 .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 1.5rem;
}

.section-49 .accordion-button:not(.collapsed) {
  color: #3B41FF;
  background-color: #F2F3F4;
  box-shadow: none;
}

.section-49 .accordion-body {
  padding: 1rem 3rem 3rem 3rem;
}

.section-49 .accordion-header:hover button {
  color: #3B41FF;
}

.section-49 .accordion-button:focus {
  z-index: 3;
  outline: 0;
  border-color: #3B41FF;
  /*box-shadow: 0 0 4px 0 rgba(59, 65, 255, 0.50);*/
  box-shadow: none;
}

/* Section 50 */

.section-50 {
  padding-top: 0;
  padding-bottom: 8rem;
}

.section-50 .container {
  justify-content: center;
  display: flex;
}

@media (max-width: 991px) {
  .section-50 .container {
    display: block;
  }
}

.section-50 .container .filter {
  display: flex;
  gap: 2rem;
}

@media (max-width: 991px) {
  .section-50 .container .filter {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: left !important;
  }
}

.section-50 .container .filter a {
  border-radius: 2.5rem;
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #F2F3F4;
  padding: 0.5rem 2rem;
}

@media (max-width: 991px) {
  .section-50 .container .filter a {
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
  }

  .filter>a {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: fit-content;
  }
}

.section-50 .container .filter a.qea:hover,
.section-50 .container .filter a.qea.active {
  background-color: #B8F600;
}

.section-50 .container .filter a.problem_solving:hover,
.section-50 .container .filter a.problem_solving.active {
  background-color: #FF9700;
}

.section-50 .container .filter a.featuring:hover,
.section-50 .container .filter a.featuring.active {
  color: #ffffff;
  background-color: #000000;
}

.section-50 .container .filter a.digital_updates:hover,
.section-50 .container .filter a.digital_updates.active {
  background-color: #A8F9EE;
}

.section-50 .container .filter a.trend:hover,
.section-50 .container .filter a.trend.active {
  color: #ffffff;
  background-color: #9D00FF;
}

.section-50 .container .filter a.corporate:hover,
.section-50 .container .filter a.corporate.active {
  background-color: #FF5219;
}


/* Section 51 */
.section-51 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 5rem !important;
  font-weight: 400;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .section-51 h2 {
    font-size: 4rem !important;
  }
}

.section-51 h2 span {
  color: #3B41FF;
}

.section-51 .box {
  border-radius: 1.5rem;
  background-color: #F2F3F4;
  padding: 6rem 4.5rem;
}

@media (max-width: 992px) {
  .section-51 .box {
    padding: 5rem 3rem;
  }
}

.section-51 .box form input.form-control,
.section-51 .box form textarea {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 1.4rem 0;
  border-bottom: 1px solid #000000;
  width: 100%;
  margin-top: 3.5rem;
  color: #000000;
  font-size: 1.7rem;
  font-family: "RB Faktum Neue Extended", serif;
  resize: none;
}

.section-51 .box form input.form-control::placeholder,
.section-51 .box form textarea::placeholder {
  color: #000000;
  font-size: 1.7rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

.section-51 .box form input.form-control::-ms-input-placeholder,
.section-51 .box form textarea::-ms-input-placeholder {
  color: #000000;
  font-size: 1.7rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

.section-51 .box form input.form-check-input {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0;
  border: 0.1rem solid #000000;
}

.section-51 .box form h6 {
  color: #000000;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 300;
}

.section-51 .box form .btn-select {
  font-family: "RB Faktum Neue Extended", serif;
  border-radius: 25px;
  background: #ffffff;
  padding: 0.7rem 1.4rem;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 500;
  color: #000000;
  align-items: center;
  display: inline-flex;
  border: 0.1rem solid #000000;
  margin-top: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-51 .box form .btn-select:hover {
  background: #F2F3F4;
  color: #000000;
  cursor: pointer;
  border: 0.1rem solid #F2F3F4;
}

.section-51 .box form .btn-select:checked {
  background: #F2F3F4;
  color: #000000;
  border: 0.1rem solid #F2F3F4;
}

.section-51 .box form .btn-contact {
  margin-top: 5rem;
}

/* Section 52 */
.section-52 h2 {
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .section-52 h2 {
    margin-bottom: 2rem;
  }
}

.section-52 h3 {
  margin-bottom: 1.5rem;
}

.section-52 p {
  margin-bottom: 5.5rem;
}

.section-52 p:last-child {
  margin-bottom: 0;
}

.section-52 img {
  aspect-ratio: 924/460;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-top: 4rem;
  margin-bottom: 9.5rem;
}


.section-52 ol li {
  list-style: decimal;
  margin-bottom: 2.5rem;
}

.section-52 ul li {
  list-style: disc;
  margin-bottom: 1rem;
}

.section-52 ul li:last-child {
  margin-bottom: 0;
}

/* Section 53 */
.section-53 .block {
  border-radius: 1.5rem;
  padding: 3.5rem 3.5rem 5rem 3.5rem;
  width: 100%;
  margin-top: 5rem;
}

.section-53 .block.black {
  background-color: #000000;
}

.section-53 .block.red {
  background-color: #F54C15;
}

.section-53 .block.light {
  background-color: #A8F9EE;
}

.section-53 .block.light h2 {
  color: #000000;
}

.section-53 .block.light p {
  color: #000000;
}

.section-53 .block.blue {
  background-color: #3B41FF;
}

.section-53 .block h2 {
  color: #ffffff;
  font-family: "RB Faktum Neue Extended", serif;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
}

.section-53 .block p {
  color: #ffffff;
  font-weight: 400;
}

/* Section 54 */
.section-54 h2 {
  font-family: "RB Faktum Neue Extended";
  font-size: 6rem;
  font-weight: 500;
  line-height: 4rem;
  margin-bottom: 9.5rem;
}

.section-54 img {
  aspect-ratio: 171/126;
  object-fit: contain;
  width: 170px;
  height: auto;
  position: absolute;
  z-index: -1;
}

.section-54 img.dx {
  bottom: 0;
  right: 0;
}

.section-54 img.sx {
  left: 0;
  top: 0;
}

.section-54 p {
  font-family: "RB Faktum Neue Extended";
  font-size: 4rem;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}

.section-54 p.bold {
  font-weight: 500;
}

.section-54 h3 {
  font-family: "RB Faktum Neue Extended";
  font-size: 2rem;
  font-weight: 500;
  margin-top: 3rem;
}

/* Section 77 */
.section-77 .subtitle {
  text-align: center;
  color: #3B41FF;
  font-size: 2rem;
  font-weight: 400;
}

.section-77 .title {
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 991px) {
  .section-77 .title {
    font-size: 2.5rem;
    line-height: 3.5rem;
    margin-bottom: 3rem;
  }
}

.section-77 .box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  position: relative;
  aspect-ratio: 451/523;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
  cursor: pointer;
}

.section-77 .box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 451/321;
  width: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-77 .box img.logo {
  position: absolute;
  z-index: 2;
  filter: brightness(0) invert(1);
  aspect-ratio: 250/111;
  width: 50%;
  object-fit: contain;
  top: 25%;
  object-position: center;
  left: 25%;
}

.section-77 .box .img-cut-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  aspect-ratio: 451/202;
  width: 100%;
  border-radius: 0 0 1.5rem 1.5rem;
  backdrop-filter: blur(25px);
  z-index: 2;
}

.section-77 .box .img-cut {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: top center;
  background-size: cover;
  aspect-ratio: 451/202;
  width: 100%;
  border-radius: 0 0 1.5rem 1.5rem;
  opacity: 0.4;
  z-index: 1;
}

.section-77 .box .content {
  position: absolute;
  top: 50%;
  margin-top: 5rem;
  padding: 3rem;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  z-index: 3;
}

@media (max-width: 1199px) {
  .section-77 .box .content {
    padding: 2rem;
  }
}

.section-77 .box .content .badge {
  margin-left: -4rem;
  background-color: #3B41FF;
  color: #ffffff;
  padding: 0 1.6rem;
  height: 2.3rem;
  line-height: 2.3rem;
  align-items: center;
  display: inline-flex;
  border-radius: 2rem;
  margin-bottom: 2.2rem;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .section-77 .box .content .badge {
    margin-bottom: 1rem;
    margin-left: -4rem;
  }
}

.section-77 .box .content .badge.case-study-1 {
  background-color: #B8F600;
  color: #000000;
}

.section-77 .box .content .badge.case-study-2 {
  background-color: #FF9700;
  color: #000000;
}

.section-77 .box .content .badge.case-study-3 {
  background-color: #000000;
  color: #FFFFFF;
}

.section-77 .box .content .badge.case-study-4 {
  background-color: #A8F9EE;
  color: #000000;
}

.section-77 .box .content .badge.case-study-5 {
  background-color: #9D00FF;
  color: #FFFFFF;
}

.section-77 .box .content .badge.case-study-6 {
  background-color: #FF5219;
  color: #000000;
}

.section-77 .box .content h4 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "RB Faktum Neue Extended", serif;
  margin-bottom: 1.5rem;
}

.section-77 .box .content p {
  font-size: 1.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-77 .box .box-arrow {
  background-image: url("../img/arrow-service.svg");
  width: 46px;
  height: 27px;
  opacity: 0;
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 4;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

.section-77 .box:hover .box-arrow {
  opacity: 1;
  bottom: 40px;
}

.section-77 .box:hover img {
  opacity: 0.8;
}

/* Section 404 */
.section-404 {
  background-image: url("/img/back-404.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  padding: 0;
  height: 1000px;
  position: relative;
  display: grid;
  place-items: center;
}

.section-404 h1 {
  font-family: "RB Faktum Neue Extended";
  font-size: 6rem;
  font-weight: 500;
  line-height: 4rem;
  margin-bottom: 0;
}

.section-404 h2.blue {
  color: #3B41FF;
  font-family: "RB Faktum Neue Extended";
  font-size: 20rem;
  font-weight: 500;
  line-height: 20rem;
  margin-bottom: 0;
}

.section-404 h2 {
  font-family: "RB Faktum Neue Extended";
  font-size: 6rem;
  font-weight: 500;
  line-height: 4rem;
  margin-bottom: 0;
}

.section-404 p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-404 {
    height: 700px;
  }

  .section-404 h1 {
    font-size: 4rem !important;
    line-height: 3rem !important;
  }

  .section-404 h2.blue {
    font-size: 15rem !important;
    line-height: 15rem !important;
  }

  .section-404 h2 {
    font-size: 4rem !important;
    line-height: 3rem !important;
  }
}

/* Footer */
footer {
  background-color: #000000;
  padding: 7rem 0 2rem;
}

footer .logo {
  width: 7rem;
}

footer .footer-info {
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
  line-height: 2.8rem;
  color: #ffffff;
  margin-top: 1.5rem;
}

footer .title {
  font-size: 2rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 400;
  color: #ffffff;
}

footer .desc {
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
  color: #ffffff;
  margin-top: 1.5rem;
}

footer ul li {
  margin-bottom: 1rem;
}

footer ul li a {
  color: #ffffff;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
}

footer ul li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

footer ul li a:focus {
  color: #ffffff;
}

footer form {
  position: relative;
}

footer form input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  margin-top: 3.5rem;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
  border-radius: 0;
  padding-left: 1rem;
}

footer form input::placeholder {
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

footer form input::-ms-input-placeholder {
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

footer form .form-check {
  padding-left: 2rem;
}

footer form .form-check .form-check-input {
  border-radius: 0;
}

footer form .form-check label {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "RB Faktum Neue Extended", serif;
}

footer form button {
  position: absolute;
  right: 0;
  bottom: -25px;
  border: none;
  background: none;
}

footer .copy {
  color: #ffffff;
  margin-top: 13.5rem;
  font-size: 1.4rem;
  font-family: "RB Faktum Neue Extended", serif;
  font-weight: 300;
}

footer .copy .social {
  gap: 1rem;
  display: flex;
}

@media (max-width: 991px) {
  footer .copy .social {
    margin-bottom: 2rem;
  }
}

footer .copy .social img {
  aspect-ratio: 1/1;
  height: 2rem;
  object-fit: contain;
  object-position: left;
}

footer .copy a {
  display: contents;
}

/* Responsive */
img.desktop {
  border-radius: 13rem;
  aspect-ratio: 1400/550;
  height: 55rem;
  object-fit: cover;
}

@media (max-width: 991px) {
  img.desktop {
    display: none;
  }
}

img.mobile {
  border-radius: 3rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (min-width: 992px) {
  img.mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }

  p {
    font-size: 1.8rem !important;
    line-height: 2.8rem !important;
  }

  .section-38 ul li {
    font-size: 1.8rem !important;
    line-height: 2.8rem !important;
  }

  .desc {
    font-size: 1.8rem !important;
  }

  h2 {
    font-size: 3rem !important;
    line-height: 4rem !important;
    margin-bottom: 1.5rem !important;
  }

  h3 {
    font-size: 2.2rem !important;
    line-height: 3.2rem !important;
  }

  h4,
  h5 {
    font-size: 2.0rem !important;
    line-height: 3.0rem !important;
  }

  .rounded-div-wrapper {
    display: none;
  }

  .section-11 h4 {
    font-size: 3rem !important;
  }

  .section-42 .box h2 {
    font-size: 2rem !important;
    line-height: 3rem !important;
    margin-top: 0;
  }

  .section-18 h1 {
    font-size: 3rem !important;
    line-height: 4rem !important;
  }

  .section-18 h2 {
    margin-top: 0;
    font-size: 2rem !important;
    line-height: 3rem !important;
  }

  .section-19 h2 {
    font-size: 2.2rem !important;
    line-height: 3.2rem !important;
  }

  .section-38 h2 {
    font-size: 2.2rem !important;
    line-height: 3.2rem !important;
  }

  .section-14 .box h4 {
    font-size: 3rem !important;
    line-height: 4rem !important;
  }

  .section-5 .row-with-scroll .item .item-content h4 p {
    font-size: 2.5rem !important;
    line-height: 2.5rem !important;
  }
}

@media (min-width: 992px) {
  .mobile {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .row-with-scroll {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: left !important;
    margin-bottom: 2rem;
  }

  .row-with-scroll .col-12,
  .row-with-scroll .col {
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 1023px) {
  .row-with-scroll-small {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: left !important;
    margin-bottom: 2rem;
  }

  .row-with-scroll-small>.col-12,
  .row-with-scroll-small>.col {
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 1023px) {
  .row-with-scroll-mini {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: left !important;
    margin-bottom: 2rem;
  }

  .row-with-scroll-mini>.col-12,
  .row-with-scroll-mini>.col {
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
    margin-bottom: 2.5rem;
  }
}

.content-round {
  background-color: #F2F3F4;
}

.rounded-div-wrapper {
  z-index: 1;
  height: 100px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  transform: translate(0, -1px);
}

.rounded-div {
  border-radius: 50%;
  width: 150%;
  height: 750%;
  position: absolute;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -86.6%);
}

.rounded-div-background {
  background-color: #ffffff;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

#mdp-readabler-popup-footer {
  background-color: #FFFFFF !important;
}

.accessibility-button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.accessibility-button span {
  display: block;
  width: 22px;
  height: 22px;
  background-position: center;
  background-size: contain;
}

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