@font-face {
  font-family: 'Porpora';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/Porpora/Porpora-Regular.ttf') format('truetype');
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Porpora', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

#content {
  margin: 0 auto;
  height: 100vh;
  overflow: auto;
  background-color: inherit;
}

.about-us-section {
  padding-left: 40px;
  padding-right: 40px;
  /* scroll-snap-type: y mandatory; */
}

#content>div,
#content>section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

#footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

#header {
  z-index: 1;
  width: 100%;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(0, 85vh, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.fadeInUp {
  animation: 1s ease-out fadeInUp 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: visible;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation: 2s ease-out fadeIn 1;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: hidden;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation: 1s ease-out fadeOut 1;
}

@keyframes headerFadeInUp {
  0% {
    transform: translate(0px, -110%) translate3d(0, 0, 0);
  }

  to {
    transform: translate(0px, 0%) translate3d(0, 0, 0);
  }
}

.headerFadeInUp {
  animation: 1s ease-out headerFadeInUp 1;
}

@keyframes rotate {
  0% {
    /* transform: rotate(0deg) */
    transform: rotate(-148.53deg) scale(3);
  }

  100% {
    /* transform: rotate(360deg) */
    transform: rotate(-108.53deg) scale(3);
  }
}

.endAnimation {
  visibility: visible !important;
}

.element-animate {
  animation-duration: 0.65s;
  visibility: hidden;
}

/* Header */
.header-content {
  color: #333333;
  background-color: white;
}

.header-content .menu-navigation li .nav-item::after {
  background-color: #8096A3;
}

.header-content .logo img {
  content: url('../images/JEGAGM_logo_grey.svg');
  object-fit: contain !important;
  max-width: 88px;
}

.header-content.light-theme {
  color: white;
  background-color: transparent;
}

.header-content.with-gradient {
  background: linear-gradient(0deg, rgba(128, 150, 163, 0.15) 50%, rgba(128, 150, 163, 0) 100%);
}

.header-content.light-theme .menu-navigation li .nav-item::after {
  background-color: white;
}

.header-content.light-theme .logo img {
  content: url('../images/JEGAGM_logo_white.svg');
  max-width: 88px;
}

.nav-item::after {
  display: inline;
  bottom: -6px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.33s linear;
  width: 0%;
}

.nav-item.active::after {
  width: 100%;
}

a:hover .nav-item::after {
  width: 100%;
}

li:hover .nav-item::after {
  width: 100%;
}

.diagonal-rounded-card>* {
  top: 50%;
  transform: skewY(16.5deg) translateY(-50%);
}

.diagonal-rounded-card .card-img {
  transform: skewY(16.5deg) translateY(-10%);
  height: 70%;
}

@keyframes floating {
  from {
    transform: translateY(150vh) skewY(-12deg);
  }

  to {
    transform: translateY(-150vh) skewY(-12deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.horizontal-scrollbar {
  width: 4px;
  height: 100%;
  overflow: hidden;
}

.horizontal-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  height: 100%;
  width: 4px;
}

.horizontal-scrollbar-thumb {
  background: #fff;
  border-radius: 6px;
  width: 4px;
}

.thumb-move-handle {
  width: 4px;
  animation-duration: 1s;
}

body::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.customer-slick .slick-track {
  display: flex !important;
}

.customer-slick .slick-slide {
  height: inherit !important;
  display: grid !important;
}

.scroll-content {
  will-change: transform;
}

.divider {
  height: 1px;
  background-color: white;
}

.announcement-press-release-section .announcement-press-release-container .announcements-container .announcement-item .description .announcement-description>a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}