body {
  font-family: "Inter", sans-serif !important;
}

.text-gray-600 {
  color: #232333 !important;
}

.text-gray-300 {
  color: #616161 !important;
}

.text-gray-200 {
  color: #878787 !important;
}

.title {
  color: #232333;
}

.subtitle {
  color: #878787;
}

.text-blue-gdi {
  color: #146AD9;
}

.gradient-background {
  background-image: url('/images/home/bg-comparison-new.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-yellow-gdi {
  background: linear-gradient(#FDCE6D 0%, #F8BB3D 100%);
}

.bg-gdi {
  background-image: url('/images/bg-contact.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.navigation {
  z-index: 100;
}

.button-menu {
  z-index: 100;
}

.menu {
  z-index: 100;
}

@media (max-width: 412px) {
  .table-comparison {
    min-width: 900px;
  }
}

.privacy>p {
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: justify;
}

.sticky-header {
  -webkit-animation: bounce-down 0.5s forwards;
  animation: bounce-down 0.5s forwards;
}

@-webkit-keyframes bounce-down {
  0% {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce-down {
  0% {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.sticky-header .text-custom>li>a {
  color: initial;
}

nav li {
  position: relative;
}

/* nav li::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #DF9E19;
  transition: width 0.5s ease;
}

nav li:hover::before {
  width: 100%;
  transition: width 0.5s ease;
} */