/*COLORS */
/*TEXT COLORS */
/*SHADOW */
/* BORDER RADIUS */
/* GRADIENTS */
@import url("../assets/fonts/font.css");
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.hero-section {
  position: relative;
}
.hero-section .frame {
  position: absolute;
  left: -85px;
}
.hero-section .frame .frame-img {
  width: 100px;
  animation: bounce 5s infinite;
  max-width: 100%;
  height: auto;
}
.hero-section .hero-title {
  font-size: 40px;
  font-family: "Poppins";
  font-weight: 700;
  background: linear-gradient(90deg, #101828 0%, #364153 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section .hero-title .span-text {
  background: linear-gradient(180deg, #0d85c4 0%, #0d85c4 50%, #37944d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section .content-text {
  width: 100%;
  max-width: 496px;
  color: #4a5565;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px;
}

.content-text-subtitle{
   color: #37944d !important;
   font-weight: 600;
}
.quote-card {
  border-radius: 18px;
  background: #ffffff;
  border: none;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}
.quote-card .quote-icon {
  width: 62px;
  height: 40px;
  background: linear-gradient(135deg, #37944d 0%, rgba(55, 148, 77, 0.8) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.quote-card .quote-icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.quote-card p {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  line-height: 22px;
}

.overlayCards {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-top: 20px;
}

.cardsStack {
  position: relative;
  height: auto;
  min-height: 273px;
}

.stackCard {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: 0.35s ease;
  pointer-events: none;
  min-height: 255px;
}
.stackCard.active {
  opacity: 1;
  transform: translateY(0px) scale(1);
  pointer-events: auto;
  z-index: 3;
  height: -moz-fit-content;
  height: fit-content;
}
.stackCard.stack2 {
  opacity: 0.85;
  transform: translateY(-7px) scale(0.98);
  z-index: 2;
}
.stackCard.stack3 {
  opacity: 0.65;
  transform: translateY(5px) scale(0.96);
  z-index: 1;
}
.stackCard .stackCardInner {
  position: relative;
  padding: 24px;
}
.stackCard .stackIcon {
  width: 35px;
  height: 35px;
  border-radius: 16px;
  background: linear-gradient(135deg, #37944d 0%, rgba(55, 148, 77, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stackCard .stackIcon img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stackCard .stackContent {
  margin-top: 16px;
}
.stackCard .stackText {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 18px;
  padding-right: 6px;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 66px;
  transition: max-height 0.25s ease;
}
.stackCard .stackText.is-expanded {
  -webkit-line-clamp: unset;
  display: block;
  max-height: 80px;
  overflow-y: auto;
  scrollbar-width: none;
}
.stackCard .stackText.is-expanded::-webkit-scrollbar {
  width: 2px;
}
.stackCard .stackText.is-expanded::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.stackCard .stackText.is-expanded::-webkit-scrollbar-track {
  background: transparent;
}
.stackCard .stackUser {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stackAvatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stackName {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 600;
  color: #101828;
}
.stackRole {
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 400;
  color: #4a5565;
}
.stackCompany {
  font-family: "Poppins";
  font-size: 11px;
  font-weight: 400;
  color: #37944d;
}
.stackPlayBtn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #37944d 0%, rgba(55, 148, 77, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.stackPlayBtn img {
  width: 15px;
  height: 15px;
}

.play-btn-text{
  font-size: 12px;
  margin-right: 6px;
  font-weight: 600;
}

.overlayPagination {
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.overlayPagination .pg-btn {
  border: none;
  background: #ffffff;
  font-size: 12px;
  font-weight: 600;
  color: #0d85c4;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 13px;
}
.overlayPagination .pg-count {
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 500;
  width: 86px;
  height: 34px;
  color: #717182;
  border-radius: 13px;
  background: #ffffff;
}
.overlayPagination .pg-count .pgCurrent {
  color: #37944d !important;
}
.overlayPagination .pg-count .pgTotal {
  color: #4a5565 !important;
}

.videoInlineCard {
  height: 270px;
  width: 100%;
  max-width: 436px;
  border-radius: 22px;
  background: #ffffff;
  padding: 16px;
  position: relative;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.videoInlineCard .videoHeader {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.videoInlineCard .videoHeader .videoCloseBtnInline {
  width: 36px;
  border-radius: 26px;
  height: 36px;
  color: #ffffff;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
  border: none;
  background: linear-gradient(90deg, #0d85c4 0%, #0d85c4 50%, rgba(13, 133, 196, 0.9) 100%);
}
.videoInlineCard .videoAvatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videoInlineCard .videoUserInfo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.videoInlineCard .videoName {
  font-family: "Poppins";
  font-size: 15px;
  font-weight: 600;
  color: #101828;
}
.videoInlineCard .videoRole {
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 400;
  color: #4a5565;
}
.videoInlineCard .videoCompany {
  font-family: "Poppins";
  font-size: 12px;
  font-weight: 400;
  color: #37944d;
}
.videoInlineCard .videoBox {
  font-family: "Poppins";
  font-size: 12px;
  font-weight: 400;
  color: #37944d;
}
.videoInlineCard .videoPlayer {
  width: 93%;
  height: 164px;
  border-radius: 14px;
}

.login-card {
  width: 100%;
  max-width: 425px;
  height: auto;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}
.login-card .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card .form-logo {
  width: 90px;
  height: 90px;
}
.login-card .form-container .group-input-b {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
}
.login-card .form-container .form-label-text {
  color: #364153;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-family: "Poppins";
  font-weight: 600;
}
.login-card .form-container .input-group-text {
  background-color: rgba(255, 255, 255, 0.6) !important;
  border-color: #E5E7EB;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top-right-radius: 14px;
}
.login-card .form-container .input-group-text.left-icon {
  padding-right: 3px;
}
.login-card .form-container .input-group-text img {
  width: 18px;
  height: 18px;
}
.login-card .form-container .form-input-box {
  font-size: 13px;
  font-weight: 400;
  height: 38px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.6);
  border-color: #E5E7EB;
  font-family: "Poppins";
}
.login-card .form-container .form-input-box::-moz-placeholder {
  color: #717182;
}
.login-card .form-container .form-input-box::placeholder {
  color: #717182;
}
.login-card .form-container .form-input-box:focus {
  box-shadow: none;
}
.login-card .form-container .captcha-container {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  height: 38px;
  margin-top: 29px;
}
.login-card .form-container .captcha-container span {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 600;
  color: #101828;
}
.login-card .form-container .captcha-container img {
  /* width: 18px;
  height: 18px; */
  cursor: pointer;
}
.login-card .form-container .captcha-container .captcha-img {
  width: inherit;
  height: 25px;
}
.login-card .form-container .remember-check:checked {
  background-color: #0d85c4;
  border-color: #0d85c4;
}
.login-card .form-container .remember-text {
  color: #364153;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins";
}
.login-card .form-container .forgot-link {
  color: #0d85c4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.login-card .form-container .forgot-link:hover {
  text-decoration: underline;
  text-decoration-color: #0d85c4;
}
.login-card .form-container .login-button {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(90deg, #0d85c4 0%, #0d85c4 50%, rgba(13, 133, 196, 0.9) 100%);
  border: none;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  font-family: "Poppins";
  box-shadow: 0px 4px 6px -4px rgba(13, 133, 196, 0.3), 0px 10px 15px -3px rgba(13, 133, 196, 0.3);
}

@media (max-width: 576px) {
  .hero-section {
    padding: 16px !important;
  }
  .hero-section .frame {
    display: none;
  }
  .hero-section .hero-title {
    font-size: 30px;
    line-height: 38px;
  }
  .hero-section .content-text {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-section .overlayCards {
    max-width: 100%;
    margin-top: 18px;
  }
  .hero-section .cardsStack {
    min-height: 240px;
  }
  .hero-section .stackCard {
    border-radius: 18px;
  }
  .hero-section .stackCard .stackCardInner {
    padding: 16px;
  }
  .hero-section .stackCard .stackText {
    font-size: 13px;
  }
  .hero-section .stackCard .stackAvatar {
    width: 40px;
    height: 40px;
  }
  .hero-section .stackCard .stackName {
    font-size: 14px;
  }
  .hero-section .stackCard .stackRole {
    font-size: 12px;
  }
  .hero-section .stackCard .stackCompany {
    font-size: 11px;
  }
  .hero-section .overlayPagination {
    width: 100%;
    justify-content: space-between;
    top: 12px;
  }
  .hero-section .overlayPagination .pg-count {
    width: auto;
    padding: 0px 14px;
  }
  #loginCard {
    justify-content: center !important;
  }
  .login-card {
    padding: 18px !important;
    max-width: 100%;
    border-radius: 18px;
  }
  .login-card .form-logo {
    width: 85px;
    height: 85px;
  }
  .login-card .form-container .form-input-box {
    height: 44px;
    font-size: 12px;
  }
  .login-card .form-container .captcha-container {
    height: 44px;
    margin-top: 28px;
  }
  .login-card .form-container .login-button {
    height: 48px;
    font-size: 14px;
  }
  .videoInlineCard {
    max-width: 100%;
    padding: 14px;
    border-radius: 18px;
  }
  .videoInlineCard .videoPlayer {
    height: 160px;
  }
  .videoInlineCard .videoCloseBtnInline {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-title {
    font-size: 38px;
    line-height: 46px;
  }
  .hero-section .content-text {
    max-width: 100%;
  }
  .hero-section .overlayCards {
    max-width: 100%;
  }
  #loginCard {
    justify-content: center !important;
    margin-top: 25px;
  }
  .login-card {
    max-width: 520px;
  }
  .videoInlineCard {
    max-width: 520px;
  }
}
@media (min-width: 1200px) {
  .hero-section .hero-title {
    font-size: 25px;
  }
}