.kopra-header-login-container {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  transition: background-color 0.3s ease;
}

.hotnews-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #494949;
  transition: all 0.3s ease-in-out;
}

.hotnews-content-bell {
  color: #FFFFFF;
  margin: 0;
  font-weight: 600;
  font-size: 12px;
}


.hotnews-content {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 70%;
  white-space: nowrap;
  color: #FFFFFF;
  margin: 0;
  font-weight: 600;
  font-size: 12px;
}

.hotnews-icon {
  border-radius: 20px;
  height: 30px;
  background: #007DFE;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  margin-right: 8px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  padding: 12px 100px;
  transition: all 0.3s ease-in-out;
}

.header-text {
  font-size: 0.75rem;
  color: #ffffff;
}

.header-text:hover {
  color: #ffffff;
}

.header-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.kopra-logo:hover {
  cursor: pointer;  
}

.header-menu-container {
  width: 490px;
  display: flex;
  justify-content: space-between;
}

.content-navbar {
  padding: 16px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid white;
}

.item-menu {
  color: white;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (min-width: 1441px) {
  .kopra-header-login-container .header-text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .kopra-logo {
    margin-top: 8px;
  }

  .form-login {
      display: none;
  }

  .hotnews-content-bell {
    display: none;
  }

  .top-nav {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    transition: all 0.3s ease-in-out;
  }
}


.burger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 35px;
  height: 24px; 
  justify-content: space-between; /* Ensures equal spacing between bars */
  background: transparent;
  border: none;
  z-index: 2;
  transition: all 0.3s ease;
}

.burger-menu .bar1,
.burger-menu .bar2,
.burger-menu .bar3 {
  width: 35px; /* Adjust to match the width of .burger-menu */
  height: 4px; /* Adjust height of bars */
  background: white;
  transition: all 0.3s ease;
}

.burger-menu.open .bar1 {
  transform: rotate(45deg) translate(6.5px, 7px); /* Adjust based on the new size */
}

.burger-menu.open .bar2 {
  opacity: 0;
}

.burger-menu.open .bar3 {
  transform: rotate(-45deg) translate(7px, -7px); /* Adjust based on the new size */
}

.country-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container {
  padding: 40px 116px 40px 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #000000;
  margin: 0;
  gap: 40px;
}

.sub-footer-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.sub-footer-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.sub-footer-item-license {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.separator {
  border: 1px solid #494949;
  width: 175px;
}

.item-sub-footer-text {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
}
.title-footer {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.sub-footer-logo-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 11px;
}

.copyright-and-contact-container {
  padding: 16px 0px 0px 0px;
  border-top: 1px solid #494949;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.social-media-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-media-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.text-footer-bottom {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  margin-left: 10px;
}

.text-footer-bottom-empty {
  margin: 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-left: 10px;
}

.bg-footer {
  position: absolute;
  right: 0;
  margin-top: 150px;
}

/* Checkpoint */
@media only screen and (max-width: 480px) {
  .footer-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #000000;
    margin: 0;
    gap: 40px;
    position: relative;
  }

  .bg-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

.parallax-video-background {
  position: absolute;
  width: 100%;
  z-index: 0;
  object-fit: cover;
  background: black !important;
  overflow: hidden;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none; 
}

.background-middle {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.kopra-title-login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 2;
}

.title-login-text-wrapper {
  scroll-behavior: smooth;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.title-login-text-wrapper-forgot-password {
  scroll-behavior: smooth;
}

.Title-login-text-outer {
  width: 334px;
  padding: 0;
  margin: 0;
}

.Title-login-text {
  overflow: hidden;
  color: #ffffff;
  font-weight: 700;
}

.card-login-form {
  background-color: #fff;
  border: 0;
  padding: 48px 24px;
  border-radius: 16px;
  width: 100%;
}

.input-subtitle {
  color: #686868;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  transition: font-size 0.1s ease-in-out;
}

.button-login-form {
  width: 100%;
  border-radius: 0.5rem;
  height: 2.75rem;
  margin-top: 2.5rem;
  font-weight: bold;
}

.input-login-form {
  width: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  padding: 0;
  border-bottom: 1px solid #D1D1D1;
}

.input-login-form-password {
  width: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  padding: 0;
}

.input-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.input-wrapper2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 40px;
  width: 100%;
}

.single-input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 56px;
  padding: 6px 0;
}

input.input-login-form:focus {
  border: none;
  border-bottom: 1px solid #D1D1D1;
  outline: 0;
}

input.input-login-form-password:focus {
  border: none;
  outline: 0;
}

input.input-login-form-password:-webkit-autofill {
  background-color: white !important;
  color: #333;
  -webkit-text-fill-color: #333 !important;
}

input.input-login-form:-webkit-autofill {
  background-color: white !important;
  color: #333;
  -webkit-text-fill-color: #333 !important;
}

.select-input {
  max-height: 30px;
  font-size: 16px;
  font-weight: 700;
  padding: 2px 0;
  border: none;
  width: 100%;
  border-bottom: 1px solid rgba(247, 246, 246, 0.6);
}

.select-item {
  background-color: #181818;
  border-radius: 4px;
}

.ant-select {
  background-color: rgba(0, 0, 0, 0);
}

.kopra-login-content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2;
  margin-top: 2%;
}

.select-input:focus {
  border-bottom: 1px solid #ffffff;
}

.ant-select-selector {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 16px !important;
  height: 32px !important;
  font-weight: 700 !important;
  color: transparent !important;
}

.ant-select-selection-item {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000 !important;
  padding: 14px 0 !important;
}

.ant-select-selector:hover {
  border: none !important;
}

.ant-select-selector:focus {
  border: none !important;
}

.forgot-password {
  color: #333333;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}


.forgot-password:hover {
  color: #333333;
  text-decoration: underline;
}

.ant-select-arrow {
  color: #ffffff;
}

.ant-form-item-explain-error {
  font-weight: 400;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #333 !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.animate-text {
  scroll-behavior: smooth;
  height: 262px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.animate-text span {
  line-height: 46px;
  display: none;
}

.animate-text span .title-text {
  overflow: hidden;
  color: #ffffff;
  font-weight: 700;
  font-size: 48px;
}

.animate-text span.text-in {
  display: block;
  animation: textIn 0.5s ease;
}

.animate-text span.text-out {
  animation: textOut 1s ease;
}

.scroll-for-more-wrapper {
  position: absolute;
  left: 80px;
  bottom: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -webkit-max-content;
  width: max-content;
}

.image-scroll-for-more {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  animation: imageDownAndUp 1s ease infinite;
}

.text-scroll-for-more {
  color: white;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 16px;
  animation: textUpAndDown 1s ease infinite;
}

.toggle-eye-password {
  margin-bottom: 10px;
}

.toggle-eye-password:hover {
  cursor: pointer;
}

@keyframes textUpAndDown {
  0%,
  100% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(50%);
  }
}

@keyframes imageDownAndUp {
  0%,
  100% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(-20%);
  }
}

@keyframes textIn {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes textOut {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.notif-forgot-password {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  border-left: 4px solid;
  margin: 18px 0;
  padding: 10px 12px;
}

.forgot-password-subtitle {
  color: #686868 !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  transition: font-size 0.1s ease-in-out;
}

.input-subtitle-transform {
  font-size: 12px;
  transition: font-size 0.1s ease-in-out;
}

.input-forgot-password {
  width: 100%;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  border-bottom: 1px solid #D1D1D1 !important;
}

.input-forgot-password::placeholder {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.input-forgot-password:focus{
  border: none;
  border-bottom: 1px solid #D1D1D1;
  outline: 0;
}

.input-forgot-password:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
  color: #333;
}

.input-forgot-password-container {
  margin-top: 12px;
  width: 100%;
}

.ant-form-item {
  margin-bottom: 0;
}

.ant-select-selection-placeholder {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  color: #ffffff !important;
  padding: 14px 0 !important;
}

.ant-select-focused .ant-select-selector {
  box-shadow: none !important;
}

.ant-select-selector,
.ant-select-selector:focus,
.ant-select-selector:hover {
  border: none !important;
}

.ant-select-focused .ant-select-selector,
.ant-select-selector:focus,
.ant-select-selector:active,
.ant-select-open .ant-select-selector {
  border-color: #d9d9d9 !important;
  box-shadow: none !important;
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector {
  border: none !important;
  background: #fff;
  background: var(--colors-main-white, #fff);
}

.ant-select:not(.ant-select-customize-input) .ant-select-selector:hover {
  border: none !important;
}

.ant-select-focused:not(.ant-select-disabled).ant-select:not(
    .ant-select-customize-input
  )
  .ant-select-selector {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-login {
  display: flex;
}

.hero-text {
  padding: 0 40px 0 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-screen-btn-container {
  display: none;
}

.np-label-error {
  color: #ED1C24;
}

.input-login-error {
  border-bottom: 1px solid #F04349;
}

@media only screen and (max-width: 1250px) {
  .video-background {
    transform: scale(2.3);
  }
}

@media only screen and (max-width: 1199px) {
  .animate-text {
    height: 410px !important;
  }

  .animate-text span .title-text {
    font-size: 46px;
  }
}

@media only screen and (max-height: 680px) and (min-width: 992px) {
  
  .hero-text {
    justify-content: flex-start;
  }

  .title-login-text-wrapper {
    justify-content: center;
    height: 100vh;
  }

  .animate-text span .title-text{
    font-size: 36px;
  }
}

@media only screen and (max-height: 500px) and (min-width: 992px) {
  .animate-text span .title-text{
    font-size: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .form-login {
    display: none;
  }

  .scroll-for-more-wrapper {
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, -30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: -webkit-max-content;
    width: max-content;
    cursor: pointer;
  }

  .hero-text {
    padding: 16px;
  }

  .login-screen-btn-container {
    display: block;
  }

  .animate-text span .title-text {
    text-align: center;
  }
}

@media only screen and (max-width: 825px) {
  .video-background {
    transform: scale(3.0);
  }
}

@media only screen and (max-width: 555px) {
  .video-background {
    transform: scale(4.0);
  }
}

@media only screen and (max-height: 680px) and (max-width: 991px) {
  .animate-text {
    height: 240px !important;
  }
}



@media only screen and (max-height: 680px) and (max-width: 710px) {
  .animate-text span .title-text{
    font-size: 32px;
  }
}

@media only screen and (max-width: 480px) {

  .animate-text {
    height: 210px !important;
  }

  .animate-text span .title-text {
    overflow: hidden;
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
  }

  .scroll-for-more-wrapper {
    display: flex;
    bottom: 20px;
    transform: translate(-50%, 15%)
  }

  .hero-text {
    gap: 40px;
  }
}
.testimoni-content-container {
  width: 100%;
  min-height: 100vh;
  background-color: #151515;
  padding-top: 121.69px;
  padding-bottom: 101.69px;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.testimoni-title-container {
  width: calc(52% + 2.843px);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.testimoni-title-text {
  text-align: center;
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  width: 333px;
  line-height: 30px !important;
  word-wrap: break-word;
}
.slider-title-container {
  position: relative;
  pointer-events: none;
  width: 100%;
}

.slider-title-wrapper {
  display: flex;
  scroll-snap-type: x proximity;
  overflow-x: auto;
  scroll-behavior: smooth;
  border-radius: 1.5rem;
}

.slider-card {
  scroll-snap-align: center;
  scroll-margin-left: 0.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  height: -webkit-fit-content;
  height: fit-content;
  border-style: none;
}

.inner-wrapper-component {
  padding-left: 19px;
  padding-right: 19px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.testimoni-name-and-position-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.testimoni-name-text {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
}
.testimoni-position-text {
  color: #686868;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
  margin: 0;
}

.testimoni-picture-container {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


.testimoni-picture-outer-wrapper {
  position: relative;
  width: 100%;
  top: -32px;
  display: flex;
  justify-content: center;
}

.titik-baru {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.testimoni-picture-inner-wrapper {
  position: relative;
  top: 85px;
  border-radius: 50%;
  width: 1000px;
  height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper-image-testimoni {
  position: relative;
  width: 500px;
  height: 500px;
  border: 50%;
  border-radius: 50%;
  text-align: center;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimoni-image {
  position: relative;
  border-radius: 50%;
  z-index: 6;
  -webkit-user-select: none;
          user-select: none;
}
.border-white {
  border: 5px solid white;
}
.circle-svg-path {
  height: 1000px;
  width: 1000px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 7;
}

.circle-path {
  stroke-width: 2;
  stroke: #000;
}

.button-slider-wrapper {
  display: flex;
  justify-content: center;
  gap: 18px;
  position: absolute;
  top: 680px;
  z-index: 30;
}

.button-slider {
  z-index: 30;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.footer-testimoni {
  opacity:0.5;
}

.slider-title-wrapper::-webkit-scrollbar {
  height: 0px;
}

.slider-title-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

.slider-title-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0);
}

.button-slider.active {
  border-color: white;
}

.wrapper-slider {
  width: 60%;
}

@media only screen and (max-width: 480px) {
  .button-slider-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: absolute;
    top: 808px;
    z-index: 30;
  }

  .testimoni-content-container {
    width: 100%;
    min-height: 0;
    background-color: #151515;
    padding-top: 121.69px;
    padding-bottom: 0;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    align-items: center;
    flex-direction: column;
    position: relative;
  }

  .wrapper-slider {
    width: 100%;
    padding: 0 16px
  }
}


.video-and-news-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: #151515;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  padding: 76.5px 157.5px;
}

.videos-content-wrapper {
  width: 100%;
  height: 340px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
}
.news-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
}

.title-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 32px;
  gap: 16px;
}

.title-content {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
}
.arrow-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ededed;
  border-radius: 50%;
  cursor: pointer;
}

.image-content-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  overflow: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.card-content-wrapper {
  width: 295px;
  cursor: pointer;
}

.image-content {
  width: 295px;
  height: 165px;
  border-radius: 4px;
  object-fit: cover;
  scale: 100%;
  overflow: clip;
  transition: scale 700ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.image-content:hover {
  scale: 110%;
  overflow: clip;
  object-fit: cover;
  transition: scale 700ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 295px;
  max-height: 165px;
}
.subtitle-content {
  font-size: 16px;
  font-weight: 400;
  color: #ededed !important;
}

.subtitle-content:hover {
  font-size: 16px;
  font-weight: 400;
  color: #ededed !important;
}

.right-button-slider {
  background-color: #ffffff;
  border: 1px solid #ededed;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: calc(82.5px + 32px + 16px);
  transform: translate(0, 50%);
  z-index: 5;
  cursor: pointer;
}
.blur-right {
  background: linear-gradient(
    270deg,
    rgb(0, 6, 21) 3.18%,
    rgba(0, 0, 0, 0) 36.72%
  );
  height: 100%;
  width: 155px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.background-container {
  min-height: 100vh;
  background-color: #000615;
}

.parent-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding: 160.5px 157.5px 0px;
}


.image-content-wrapper::-webkit-scrollbar {
  height: 0px;
}


.breadCrumb-item-news-videos{
  color: white;
}

.breadCrumb-item-news-videos a{
  color: white !important;
}

nav.ant-breadcrumb.breadCrumb-separator-news-videos span{
color: white !important;
}


li.ant-pagination-item.pagintaion-news-videos  .ant-pagination-item-active{
   height: -webkit-fit-content;
   height: fit-content;
   line-height: 22px;
}

.ant-pagination.pagintaion-news-videos li.ant-pagination-item {
   background: #000615;
  border: 0px;
   width: auto;
   width: initial;
   height: auto;
   height: initial;
 
   font-style: normal;
   font-weight: 600;
   font-size: 14px;
   color: white !important;
 
 }
 
 .ant-pagination.pagintaion-news-videos li.ant-pagination-item-active {
   border: 2px solid white !important;
   background-color: #2C3034 !important;
   color: white !important;
   border-radius: 8px !important;
   padding: 0px 8px;
 }
 
 .ant-pagination.pagintaion-news-videos li.ant-pagination-item.ant-pagination-item-active a {
   color: white !important;
 }
 
 .ant-pagination.pagintaion-news-videos li.ant-pagination-item a {
   color: #2C3034 !important;
   font-weight: 700;
 }
 
 .ant-pagination.pagintaion-news-videos .ant-pagination-jump-prev-custom-icon .anticon.anticon-double-left.ant-pagination-item-link-icon {
   display: none;
   pointer-events: none;
 }
 .ant-pagination.pagintaion-news-videos .ant-pagination-jump-prev-custom-icon {
   pointer-events: none;
 }
 
 .ant-pagination.pagintaion-news-videos .ant-pagination-jump-next-custom-icon {
   pointer-events: none;
 }
 
 .ant-pagination.pagintaion-news-videos .ant-pagination-jump-next-custom-icon .anticon.anticon-double-right.ant-pagination-item-link-icon {
   display: none;
   pointer-events: none;
 }
 .ant-pagination.pagintaion-news-videos span.anticon{
   color: #FFFFFF;
   font-weight: 700;
 }

 .ant-pagination.pagintaion-news-videos .ant-pagination-prev .ant-pagination-item-link, .ant-pagination-next .ant-pagination-item-link{
  background-color: #000615 !important;
 }

.parent-0 {
    z-index: 999;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
}


.parent-1 {
    width: 100%;
}

.image1 {
    opacity: 1.0;
    width: 100%;
    height: 50vh;
    position: relative;
}

.news__button:hover {
    background-color: #fff;
    color: #000;
}

.news__title-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.news__button {
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border: solid 1px white;
    border-radius: 10px;
    cursor: pointer;

}

.news__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #959595;
    margin-top: 1em;
}

.list-contact-support {
  padding: 12px 16px;
  background: #F7F6F6;
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  color: #5D5D5D;
  font-weight: 400;
  font-size: 12px;
}

.card-popover-modal {
  background: white;
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 0px 16px;
  position: relative;
}

.list-contact-support:hover {
  background: #EDEDED;
  font-weight: 600;
  font-size: 12px;
}



.card-popover {
  background: white;
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 0px 16px;
  position: relative;
}

.card-popover::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 32px; 
  width: 0;
  height: 0;
  border-left: 10px solid transparent; 
  border-right: 10px solid transparent; 
  border-top: 10px solid white; 
}

.layer-backdrop {
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  background-color: var(--sysSchrim, rgba(0, 0, 0, 0.6));
}

.label-contactus {
  color: 'black';
  font-size: 14px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  line-height: 20px;
  margin-bottom: 8px;
}

.card-modal-contact-support {
  z-index: 1001;
  border-radius: 5px;
  position: fixed;
  top: 50%; /* Move down 50% of the viewport height */
  left: 50%; /* Move right 50% of the viewport width */
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}



.floating-button {
  z-index: 1001;
  border-radius: 5px;
  position: fixed;
  bottom: 0px; /* Jarak dari bawah */
  right: 20px;  /* Jarak dari kanan */
  transition: background-color 0.3s;
}

/* checkpoint */
@media only screen and (max-width: 480px) {
  .news__button {
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border: solid 1px white;
    border-radius: 10px;
    cursor: pointer;
  
  }

  .card-content-wrapper {
    pointer-events: none;
  }
}

.background-container {
    width: 100%;
    height: 810px; /* or whatever height you need */
    background-color: black;
}

.content-background {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.content-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 32px;
}

.content-desc {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
}

.icon-play {
    width: 97px;
    height: 97px;
    margin-bottom: 40px;
    cursor: pointer;
}

@media only screen and (min-width: 481px) {
    .content-title, .content-desc{
        text-align: center;
        padding: 0 16px;
    }
  }
.news_slider {
  width: 100%;
}

.news_slider .slick-dots {
  bottom: -45px;
}


@media only screen and (max-width: 480px) {
  .news_slider .ckUSMx {
    gap: 10px;
  }
}
.contribution-container {
  position: relative;
  padding: 0 0;
  min-height: 100vh;
  z-index: 0;
  background-color: #060608;
  overflow: hidden;
}

.contribution-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  justify-content: flex-end;
  padding-right: 100px;
}

.contribution-body {
  position: relative;
  max-width: 56%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.contribution-body-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contribution-body-desc .title {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.contribution-body-desc .description {
  color: #959595;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contribution-body-values {
  width: 100%;
}

.contribution-body-values > div {
  width: 279px;
  padding-left: 16px;
  border-left: 2px solid #FFB700;
}

.contribution-body-values .percentage {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
}

.contribution-body-values .percentage .suffix {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.contribution-body-values .title {
  color: #959595;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.contribution-earth-image {
  width: 44%;
  position: absolute;
}

.contribution-earth-image img {
  width: auto;
  height: 1000px;
  object-fit: contain;
}

@media only screen and (max-width: 390px) {
  .contribution-wrapper {
    height: 125vh;
    justify-content: start;
    padding: 16px;
  }

  .contribution-body-desc {
    padding: 48px 0;
    margin-bottom: 0;
  }

  .contribution-earth-image {
    bottom: 0;
  }

  .contribution-earth-image img {
    transform: translateY(650px);
    height: 900px;
  }

  .contribution-body {
    max-width: 90%;
  }

  .contribution-body-values {
    width: 85%;
  }
}

@media only screen and (min-width: 391px) and (max-width: 991px) {
  .contribution-wrapper {
    min-height: 100vh;
    justify-content: start;
    align-items: flex-start;
    padding: 16px;
  }

  .contribution-body-desc {
    padding: 48px 0;
    margin-bottom: 0;
  }

  .contribution-earth-image {
    bottom: 0;
  }

  .contribution-earth-image img {
    transform: translateY(650px);
    height: 900px;
  }

  .contribution-body {
    max-width: 90%;
  }

  .contribution-body-values {
    width: 85%;
  }
}

@media only screen and (min-width: 481px) and (max-width: 991px) {
  .contribution-wrapper {
    align-items: center;
    justify-content: center;
  }

  .contribution-body-values {
    width: 100%;
  }
}

.custom-card-box {
  overflow: hidden;
  position: relative;
  height: 480px;
  width: 100%;
}

.custom-card-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  align-self: center;
  justify-self: center;
}

.custom-card-box > div {
  height: 100%;
  position: relative;
  z-index: 2;
  background-color: #000000B8;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px 24px;
}

.custom-card-box.hoverable {
  opacity: 0.9;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  border-radius: 12px;
}

.custom-card-box.hoverable .card-description {
  display: none;
  visibility: hidden;
  text-align: center;
}

.custom-card-box-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 250px;
  transition: margin-top 0.3s ease;
}

.custom-card-box-body .card-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  align-self: center;
  color: white;
}

.custom-card-box-body .card-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  color: #F7F6F6;
}

.custom-card-box.hoverable:hover {
  opacity: 1;
}

.custom-card-box.hoverable:hover .card-description {
  display: block;
  visibility: visible;
}

.custom-card-box.hoverable:hover .custom-card-box-body {
  margin-top: 5px;
}

.custom-card-box.hoverable:hover .custom-card-button {
  display: block;
}

.custom-card-box.hoverable > div {
  border: 1px solid #686868;
  border-radius: 12px;
  background-color: #000000B8;
  transition: background-color 0.5s ease-in-out, padding 0.5s ease-in-out, border 0.5s ease-in-out;
}

.custom-card-button {
  display: none;
}

@media only screen and (max-width: 1180px) {
  .custom-card-box.hoverable:hover .custom-card-box-body {
    margin-top: 5px;
  }

  .custom-card-box-body .card-title {
    text-align: center;
  }
}

@media only screen and (max-width: 960px) {
  .custom-card-box {
    overflow: visible;
  }

  .custom-card-box > div {
    height: 100%;
    width: 350px;
    position: relative;
    z-index: 2;
    background-color: #000000B8;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 80px 24px;
  }

  .custom-card-box.hoverable:hover .custom-card-button {
    display: none;
  }

  .custom-card-box.hoverable:hover > div {
    border: 1px solid #686868;
    border-radius: 12px;
    background-color: #000000B8;
  }
}

.card-box-container {
  width: 100%;
  min-height: 798px;
  position: relative;
  /*background: #070A0E;*/
  display: flex;
  flex-direction: column;
  gap: 60px;
  /*padding: 60px 100px 120px 100px;*/
}

.card-boxes {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.card-boxes::-webkit-scrollbar {
  display: none;
}

.card-box-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-box-header .title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  color: white;
}

.card-box-header .description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #959595;
}

@media only screen and (max-width: 960px) {
  .card-box-container {
    padding: 16px;
  }

  .card-box-header .title {
    text-align: start;
  }

  .card-box-header .description {
    text-align: start;
  }

  .card-boxes {
    overflow: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 24px;
  }
}

.benefits-container {
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    overflow: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 188px;
    width: 100%;
}

.benefits-wrapper {
    padding: 0 10%
}

.benefits-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    /*background-color:*/
}

.benefits-card {
    background: #0C1118;
    width: 100%;
    height: 207px;
    border-radius: 12px;
    padding: 24px;
}

.benefits-card-skelecton {
    width: 100%;
    height: 207px;
    border-radius: 12px;
}

.benefits-icon {
    background-color: #fff;
    width: 3em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10em;
    padding: 0px;
    margin-bottom: 16px;
}

.benefits-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin: 8px 0;
}

.benefits-desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #959595;
    width: 18em;
}

.benefits-title__main {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    padding: 80px 0 8px;
    color: #fff;
    /*padding: 1em 0;*/
}

.benefits-desc__main {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #959595;
    padding: .5em 0 3em;
}



/* Checkpoint */
@media only screen and (max-width: 480px) {
    .benefits-container {
        color: white;
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-bottom: 50px;
        width: 100%;
    }

    .benefits-wrapper {
        padding: 16px
    }

    .benefits-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        margin: 8px 0;
    }
    
    .benefits-desc {
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        color: #959595;
        width: 100%;
    }
}

.ant-notification-notice {
    border-radius: 8px;
    border-left: 5px solid !important;
    height: 100%;
}

.ant-notification-notice-error {
    border-left-color: var(--colors-main-red-main) !important;
}

.additional-handler {
    padding: 6px 16px;

    &:hover {
        cursor: pointer;
    }
}
