* {
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  margin: 0px;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 40px;
}
p {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0px;
}
.jj-header-content {
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  /* background-color: #FFFFFF; */
  z-index: 3;
}
.jj-header-content .jj-header-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
}
.jj-header-content .jj-head-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  width: 95px;
  /* width: 100%; */
  /* max-width: 180px; */
  /* padding: 4px 8px; */
  /* border-radius: 12px; */
  /* overflow: hidden; */
  /* background: #FFFFFFEE; */
  /* -webkit-backdrop-filter: blur(5px); */
  /* backdrop-filter: blur(5px); */
  border-radius: 50%;
  overflow: hidden;
}
.jj-header-content .jj-head-logo img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jj-group-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  /* height: calc( 100vh - 180px - 79.17px ); */
  height: calc( 100vh - 160px );
  padding: 24px;
  background-color: #202020;
  overflow: hidden;
  z-index: 0;
}
.jj-group-hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #10101055;
  mix-blend-mode: multiply;
  z-index: 2;
}
.jj-group-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.jj-group-hero-grid {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  z-index: 3;
}
.jj-group-hero-column-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.jj-group-hero-column-box .content-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  padding-left: 32px;
}
.jj-group-hero-column-box .title-content-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.jj-group-hero-column-box .content-block h1 {
  position: relative;
  font-size: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}
.jj-group-spacer-gradient {
  display: block;
  width: 100%;
  height: 3px;
  background: #D92F38;
  background: linear-gradient(90deg, rgba(217, 47, 56, 1) 0%, rgba(217, 47, 56, 1) 40%, rgba(43, 49, 137, 1) 40%);
}
.jj-group-hero-column-box .content-block h1:before {
  content: '';
  position: absolute;
  left: -32px;
  display: block;
  width: 3px;
  height: 100%;
  border-left: 3px solid #FFFFFF;
}
.jj-group-hero-column-box .content-block p {
  font-size: 18px;
  color: #EAEAEA;
}

button.jj-translate-btn {
  display: flex;
  align-items: center;
  font-size: 24px;
  padding: 4px;
  color: #FFFFFF;
  border: none;
  background: none;
}
button.jj-translate-btn span {
  font-size: 14px;
  margin-left: 4px;
}
button.jj-translate-btn svg {
  width: 24px;
  height: 24px;
}

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

.jj-group-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 160px;
  overflow: hidden;
  transition: grid-template-columns 0.4s ease;
}
.jj-group-content-grid .jj-content-box-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.jj-group-content-grid .jj-content-box-column:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .8;
  z-index: -1;
}
.jj-group-content-grid:has(.column-item-1 .content-box:hover) {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.jj-group-content-grid:has(.column-item-2 .content-box:hover) {
  grid-template-columns: 1fr 2fr 1fr 1fr;
}
.jj-group-content-grid:has(.column-item-3 .content-box:hover) {
  grid-template-columns: 1fr 1fr 2fr 1fr;
}
.jj-group-content-grid:has(.column-item-4 .content-box:hover) {
  grid-template-columns: 1fr 1fr 1fr 2fr;
}
.jj-content-box-column.column-item-1:before {
  background-color: #2588ff;
}
.jj-content-box-column.column-item-2:before {
  background-color: #2b3189;
}
.jj-content-box-column.column-item-3:before {
  background-color: #d92f38;
}
.jj-content-box-column.column-item-4:before {
  background-color: #f9f9f9;
}
.jj-content-box-column .column-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF22;
}
.jj-content-box-column .column-content .content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 24px;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUpScale 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.jj-content-box-column .column-content .animate-cubic-bezier-1 {
  animation-delay: .6s;
}
.jj-content-box-column .column-content .animate-cubic-bezier-2 {
  animation-delay: .9s;
}
.jj-content-box-column .column-content .animate-cubic-bezier-3 {
  animation-delay: 1.2s;
}
.jj-content-box-column .column-content .animate-cubic-bezier-4 {
  animation-delay: 1.5s;
}
.jj-content-box-column .column-content .content-box * {
  max-width: 420px;
}

.jj-content-box-column .column-content .content-box .front,
.jj-content-box-column .column-content .content-box .back {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.jj-content-box-column .column-content .content-box .position-up {
  opacity: 0;
  transform: translateY(-40px);
}
.jj-content-box-column .column-content .content-box .position-down {
  opacity: 0;
  transform: translateY(40px);
}

.jj-content-box-column .column-content .logo {
  height: 65px;
  margin-bottom: 16px;
}

.jj-content-box-column .column-content .description {
  /* display: none; */
  /* height: 0px; */
  /* overflow: hidden; */
  text-align: center;
  transition: height .4s ease .45s;
}
/* .jj-content-box-column .content-box:hover .description {
  height: calc-size(max-content, size);
} */
.jj-content-box-column .content-box .description.desc-active {
  display: block;
}

.jj-content-box-column .column-content .logo img {
  width: 100%;
  height: 100%;
}
.jj-content-box-column .column-content .title h3 {
  font-size: 16px;
  margin: 0px;
  text-align: center;
  color: #FFFFFF;
}
.jj-content-box-column .column-content .description p {
  font-size: 16px;
  margin: 8px 0px 0px;
  text-align: center;
  color: #FFFFFF;
}
.jj-content-box-column .column-content .description a {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 16px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  transition: all .3s ease-out;
}
.jj-content-box-column .column-content .description a:hover {
  color: #2B3189;
  background-color: #FFFFFF;
}
.jj-content-box-column.column-item-4 .title h3,
.jj-content-box-column.column-item-4 .description p {
  color: #2B3189;
}
.jj-content-box-column.column-item-4 .description a {
  color: #2B3189;
  border: 1px solid #2B3189;
}
@media only screen and (max-width: 1024px) {
  .jj-header-content .jj-head-logo {
    height: 70px;
    width: 70px;
  }
  .jj-group-hero-content {
    height: 100vh;
  }
  .jj-group-hero-column-box.box-column-1 {
    width: 70%;
  }
  .jj-group-hero-column-box.box-column-2 {
    width: 30%;
  }
  .jj-group-hero-column-box .content-block h1 {
    font-size: 36px;
  }
  .jj-group-content-grid {
    height: 100vh;
    grid-template-columns: 1fr 1fr;
  }
  .jj-group-content-grid:has(.column-item-1 .content-box:hover) {
    grid-template-columns: 2fr 1fr;
  }
  .jj-group-content-grid:has(.column-item-2 .content-box:hover) {
    grid-template-columns: 1fr 2fr;
  }
  .jj-group-content-grid:has(.column-item-3 .content-box:hover) {
    grid-template-columns: 2fr 1fr;
  }
  .jj-group-content-grid:has(.column-item-4 .content-box:hover) {
    grid-template-columns: 1fr 2fr;
  }
}
@media only screen and (max-width: 767px) {
  .jj-header-content {
    height: 70px;
    padding: 8px 24px;
  }
  .jj-header-content .jj-head-logo {
    height: 48px;
    width: 48px;
  }
  .jj-group-hero-content {
    height: 100vh;
    /* height: calc( 100dvh - 70px ); */
  }
  .jj-group-hero-grid {
    flex-direction: column;
  }
  .jj-group-hero-column-box {
    height: 100%;
  }
  .jj-group-hero-column-box.box-column-1,
  .jj-group-hero-column-box.box-column-2 {
    width: 100%;
  }
  .jj-group-hero-column-box.box-column-2 {
    display: none;
  }
  .jj-group-hero-column-box .content-block {
    justify-content: space-between;
    height: 100%;
    padding-left: 24px;
    padding-top: 70px;
  }
  .jj-group-hero-column-box .content-block h1 {
    font-size: 26px;
    text-align: center;
  }
  .jj-group-hero-column-box .content-block h1:before {
    left: -24px;
  }
  .jj-group-hero-column-box .content-block p {
    font-size: 16px;
    text-align: center;
  }
  .jj-group-content-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }
  .jj-content-box-column .column-content .logo {
    height: 50px;
    margin-bottom: 5px;
  }
  .jj-content-box-column .column-content .description {
    transition: height .4s ease;
  }
  .jj-content-box-column .column-content .title h3 {
    font-size: 14px;
  }
  .jj-content-box-column .column-content .description p {
    font-size: 14px;
    margin: 7px 0px 0px;
  }
  .jj-group-content-grid:has(.column-item-1 .content-box:hover) {
    grid-template-columns: 1fr;
  }
  .jj-group-content-grid:has(.column-item-2 .content-box:hover) {
    grid-template-columns: 1fr;
  }
  .jj-group-content-grid:has(.column-item-3 .content-box:hover) {
    grid-template-columns: 1fr;
  }
  .jj-group-content-grid:has(.column-item-4 .content-box:hover) {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 390px) {
  .jj-content-box-column .column-content .logo {
    height: 40px;
  }
  .jj-content-box-column .column-content .title h3 {
    font-size: 13px;
  }
  .jj-content-box-column .column-content .description p {
    font-size: 13px;
    margin: 5px 0px 0px;
  }
}

/** Counter **/
.jj-group-statistics-content {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background: #D92F38;
  background: linear-gradient(135deg, rgba(217, 47, 56, 0.11) 0%, rgba(43, 49, 137, 0.19) 50%);
  z-index: 2;
}
.jj-group-statistics-box {
  position: absolute;
  bottom: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.jj-group-statistics-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  width: 100%;
  max-width: 960px;
  padding: 16px;
  border-radius: 40px;
  background-color: #1c3877;
  overflow: hidden;
}
.jj-group-statistics-grid .statistics-column {
  display:flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}
.jj-group-statistics-grid .statistics-column:not(:last-child) {
  border-right: 2px solid #486596;
}
.statistics-column .statistics-icon-box {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
}
.statistics-column .statistics-icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
}
.statistics-column .statistics-icon-box .icon img {
  display: inline-block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.statistics-column .statistics-icon-box .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: #FFFFFF;
}
.statistics-column .statistics-icon-box .content .numbers {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  font-size: 46px;
}
.statistics-icon-box .content .numbers .prefix {
  font-size: 24px;
  font-weight: bold;
}
.statistics-icon-box .content .numbers h3 {
  font-size: 28px;
}
.statistics-column .statistics-icon-box .content span.desc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
}

@media only screen and (min-width: 1441px) {
  .jj-group-statistics-grid {
    max-width: 1200px;
  }
  .jj-group-statistics-grid .statistics-column {
    padding: 4px 8px;
  }
  .statistics-column .statistics-icon-box .icon {
    width: 80px;
    height: 80px;
  }
  .statistics-column .statistics-icon-box .content {
    gap: 8px;
  }
  .statistics-icon-box .content .numbers .prefix {
    font-size: 33px;
  }
  .statistics-icon-box .content .numbers h3 {
    font-size: 38px;
  }
  .statistics-column .statistics-icon-box .content span.desc {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .jj-group-statistics-content {
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .jj-group-statistics-box {
    position: static;
  }
  .jj-group-statistics-grid {
    grid-template-columns: auto auto;
    max-width: 700px;
    gap: 16px;
    border-radius: 24px;
  }
  .jj-group-statistics-grid .statistics-column {
    justify-content: flex-start;
  }
  .jj-group-statistics-grid .statistics-column:not(:last-child) {
    border: none;
  }
  .jj-group-statistics-grid .statistics-column:nth-child(1),
  .jj-group-statistics-grid .statistics-column:nth-child(3) {
    border-right: 2px solid #486596;
  }
  .jj-group-statistics-grid .statistics-column:nth-child(2) .statistics-icon-box,
  .jj-group-statistics-grid .statistics-column:nth-child(4) .statistics-icon-box {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 600px) {
  .jj-group-statistics-grid {
    grid-template-columns: auto;
    justify-content: center;
  }
  .jj-group-statistics-grid .statistics-column {
    width: 100%;
    max-width: 300px;
    padding: 16px 8px;
  }
  .jj-group-statistics-grid .statistics-column:nth-child(1),
  .jj-group-statistics-grid .statistics-column:nth-child(3) {
    border: none;
  }
  .statistics-column .statistics-icon-box {
    justify-content: flex-start !important;
  }
}
