* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 100%;
  margin: auto;
  width: 1202px;
}
.linkedin_refPI {
  flex: 0 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.nav_sitebarvn {
  flex: 1 0 auto;
}
.wrapping-containerIA {
  min-height: 100%;
  flex-direction: column;
  display: flex;
  height: 100%;
}
header,
footer {
  width: 100%;
}
html,
body {
  font-family: Arial, sans-serif;
  color: #000000;
  height: 100%;
  min-height: 100%;
}
svg {
  height: 30px;
  width: 30px;
}
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .container {
    padding: 0 12px;
  }
}
.learning_outcomespj {
  overflow: hidden;
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgb(191, 196, 171) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.learning_outcomespj::before {
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgb(144, 158, 145, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgb(100, 107, 100, 0.5) 0%,
      transparent 50%
    );
  top: 0;
  height: 100%;
  transform: translateZ(-10px);
  position: absolute;
  content: "";
  z-index: 0;
  opacity: 0.1;
  left: 0;
  width: 100%;
}
.learning_outcomespj .container {
  padding: 0 20px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.learning_outcomespj .training_classesbt {
  gap: 40px;
  justify-content: space-between;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
}
.learning_outcomespj .text_stackUb {
  position: relative;
  flex: 1;
  transform: translateZ(30px);
}
.learning_outcomespj .text_stackUb::before {
  background: linear-gradient(
    to bottom,
    rgb(144, 158, 145),
    rgb(100, 107, 100)
  );
  top: 0;
  content: "";
  left: -20px;
  position: absolute;
  transform-origin: top;
  height: 100%;
  width: 5px;
  animation: lineReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
  transform: scaleY(0);
}
.learning_outcomespj h4 {
  color: #000000;
  transform: translateY(20px);
  line-height: 1.4;
  margin-bottom: 30px;
  font-size: 35px;
  opacity: 0;
  font-weight: 700;
  animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
  position: relative;
}
.learning_outcomespj h4::after {
  left: 0;
  position: absolute;
  width: 80px;
  bottom: -10px;
  transform: scaleX(0);
  height: 3px;
  transform-origin: left;
  content: "";
  background: rgb(144, 158, 145);
  animation: lineWidth 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
}
.learning_outcomespj .text_stackUb > div {
  margin-top: 20px;
  gap: 30px;
  display: flex;
}
.learning_outcomespj ul {
  flex: 1;
  margin: 0;
  list-style: none;
  padding: 0;
}
.learning_outcomespj li {
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.3s ease;
  animation: fadeSlideIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  margin-bottom: 20px;
}
.learning_outcomespj li:nth-child(1) {
  animation-delay: 0.3s;
}
.learning_outcomespj li:nth-child(2) {
  animation-delay: 0.5s;
}
.learning_outcomespj li:nth-child(3) {
  animation-delay: 0.7s;
}
.learning_outcomespj li:hover {
  transform: translateX(5px) translateZ(10px);
}
.learning_outcomespj li p {
  margin: 0;
  line-height: 1.6;
  font-size: 12px;
  display: flex;
  color: #000000;
  align-items: flex-start;
  gap: 15px;
}
.learning_outcomespj li p span:first-child {
  flex-shrink: 0;
  margin-top: 3px;
}
.learning_outcomespj li p span:last-child {
  padding-bottom: 5px;
  position: relative;
}
.learning_outcomespj li p span:last-child::after {
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  transform-origin: left;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  left: 0;
  content: "";
  background: linear-gradient(to right, rgb(100, 107, 100, 0.5), transparent);
  bottom: 0;
}
.learning_outcomespj li:hover p span:last-child::after {
  transform: scaleX(1);
}
.learning_outcomespj svg {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
  height: 24px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  width: 24px;
}
.learning_outcomespj li:hover svg {
  transform: rotate(10deg) scale(1.1);
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}
.learning_outcomespj svg path {
  transition: fill 0.3s ease;
  fill: rgb(144, 158, 145);
}
.learning_outcomespj li:hover svg path {
  fill: rgb(100, 107, 100);
}
.learning_outcomespj .thumbnail_imglq {
  animation:
    floatImage 6s ease-in-out infinite alternate,
    fadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
  max-width: 450px;
  animation: floatImage 5s ease-in-out infinite alternate;
  z-index: 2;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  flex: 0 0 45%;
  border-radius: 26px;
  opacity: 0;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateZ(40px);
  box-shadow:
    15px 15px 30px rgba(0, 0, 0, 0.1),
    -5px -5px 30px rgba(255, 255, 255, 0.8);
}
.learning_outcomespj .thumbnail_imglq::before {
  background: linear-gradient(
    135deg,
    rgb(144, 158, 145, 0.5),
    rgb(100, 107, 100, 0.5)
  );
  z-index: -1;
  content: "";
  border-radius: 26px;
  inset: 0;
  opacity: 0.1;
  position: absolute;
  transform: translateZ(-5px);
}
.learning_outcomespj .thumbnail_imglq::after {
  right: -20px;
  position: absolute;
  top: -20px;
  height: 80px;
  border-radius: 50%;
  background: rgb(144, 158, 145, 0.5);
  filter: blur(20px);
  content: "";
  z-index: -1;
  width: 80px;
}
@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeSlideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes lineWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes lineReveal {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes floatImage {
  0% {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg)
      translateZ(40px) translateY(0);
  }
  100% {
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateZ(40px)
      translateY(-15px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .learning_outcomespj {
    padding: 80px 0;
  }
  .learning_outcomespj h4 {
    font-size: calc(35px * 0.9);
  }
  .learning_outcomespj .training_classesbt {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .learning_outcomespj .thumbnail_imglq {
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateZ(20px);
    max-width: 100%;
    flex: 0 0 100%;
  }
  .learning_outcomespj .text_stackUb > div {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .learning_outcomespj {
    padding: 60px 0;
  }
  .learning_outcomespj h4 {
    font-size: calc(35px * 0.8);
    margin-bottom: 20px;
  }
  .learning_outcomespj .text_stackUb::before {
    left: -15px;
    width: 3px;
  }
  .learning_outcomespj li p {
    gap: 10px;
    font-size: calc(12px * 0.95);
  }
  .learning_outcomespj svg {
    width: 20px;
    height: 20px;
  }
  .learning_outcomespj .thumbnail_imglq {
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateZ(10px);
  }
}
@media (max-width: 576px) {
  .learning_outcomespj {
    padding: 40px 0;
  }
  .learning_outcomespj h4 {
    font-size: calc(35px * 0.7);
  }
  .learning_outcomespj .training_classesbt {
    gap: 40px;
  }
  .learning_outcomespj li {
    margin-bottom: 15px;
  }
  .learning_outcomespj li p {
    font-size: calc(12px * 0.9);
  }
  .learning_outcomespj .thumbnail_imglq {
    animation:
      fadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards,
      simpleFloat 4s ease-in-out infinite alternate;
    box-shadow:
      10px 10px 20px rgba(0, 0, 0, 0.1),
      -3px -3px 15px rgba(255, 255, 255, 0.8);
    transform: none;
  }
  @keyframes simpleFloat {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-10px);
    }
  }
}
footer {
  width: 100%;
  position: relative;
}
footer .linkedin_refPI {
  font-family: Arial, sans-serif;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  padding: 80px 0 30px;
  background-color: rgb(100, 107, 100);
}
footer .linkedin_refPI::before {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  z-index: 0;
  left: 0;
  transform: skewY(-3deg);
  right: 0;
  content: "";
  position: absolute;
  top: -50px;
  background-color: rgb(100, 107, 100);
  height: 100px;
}
footer .trust_badgeEe {
  position: relative;
  z-index: 1;
}
footer .reach_outAS {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}
footer .info_item {
  border-radius: 0 5px 5px 0;
  flex: 1 1 200px;
  overflow: hidden;
  max-width: 300px;
  padding: 15px 20px 15px 25px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: rgb(100, 107, 100, 0.5);
  transition: all 0.3s ease;
}
footer .info_item::before {
  background-color: rgb(144, 158, 145);
  top: 0;
  content: "";
  left: 0;
  width: 5px;
  height: 100%;
  position: absolute;
}
footer .info_item::after {
  z-index: -1;
  position: absolute;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 50%
  );
  top: 0;
  content: "";
  height: 100%;
  left: 0;
  width: 100%;
}
footer .info_item:nth-child(even) {
  background-color: rgb(144, 158, 145, 0.5);
}
footer .info_item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) translateX(5px);
}
footer .info_item svg {
  top: -1px;
  vertical-align: middle;
  position: relative;
  height: 20px;
  width: 20px;
  fill: rgb(144, 158, 145);
  margin-right: 12px;
}
footer .info_item p,
footer .info_item a {
  font-size: 15px;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
}
footer .info_item a:hover {
  color: rgb(144, 158, 145);
}
footer .text_main_holder {
  position: relative;
  gap: 30px;
  display: grid;
  grid-template-columns: 1fr;
}
footer .top_knowKX {
  background-color: rgb(100, 107, 100, 0.5);
  position: relative;
  border-radius: 22px;
  padding: 30px;
}
footer .top_knowKX::before {
  border-radius: calc(22px - 8px);
  content: "";
  bottom: 15px;
  top: 15px;
  left: 15px;
  right: 15px;
  pointer-events: none;
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
footer .top_knowKX svg {
  width: auto;
  margin-bottom: 20px;
  height: 45px;
  filter: brightness(0) invert(1);
  display: block;
}
footer .alumni_netxD {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
footer .header_sitebarqA {
  position: relative;
}
footer .header_sitebarqA h5 {
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  font-size: 19px;
}
footer .header_sitebarqA h5::before {
  left: 0;
  background-color: rgb(144, 158, 145);
  height: 100%;
  content: "";
  top: 0;
  width: 3px;
  position: absolute;
}
footer .top_primaryDl {
  position: relative;
  margin-bottom: 25px;
}
footer .top_primaryDl a {
  color: rgba(255, 255, 255, 0.8);
  border-radius: 0 5px 5px 0;
  position: relative;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 15px;
  display: inline-block;
  margin: 0 10px 10px 0;
  transition: all 0.3s ease;
  background-color: rgb(100, 107, 100, 0.5);
}
footer .top_primaryDl a::before {
  transition: width 0.3s ease;
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 3px;
  content: "";
  background-color: rgb(144, 158, 145);
}
footer .top_primaryDl a:hover {
  transform: translateX(5px);
  background-color: rgb(144, 158, 145, 0.5);
  color: #ffffff;
}
footer .top_primaryDl a:hover::before {
  width: 5px;
}
footer .subscribe_holder {
  padding: 30px;
  position: relative;
  background-color: rgb(100, 107, 100, 0.5);
  border-radius: 22px;
}
footer .subscribe_holder::before {
  pointer-events: none;
  right: 15px;
  border-radius: calc(22px - 8px);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 15px;
  content: "";
  top: 15px;
  bottom: 15px;
}
footer .subscribe_holder h5 {
  position: relative;
  font-weight: 600;
  padding-left: 15px;
  font-size: 19px;
  color: #ffffff;
  margin-bottom: 15px;
}
footer .subscribe_holder h5::before {
  content: "";
  height: 100%;
  position: absolute;
  background-color: rgb(144, 158, 145);
  left: 0;
  top: 0;
  width: 3px;
}
footer .subscribe_holder p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}
footer .input_holder {
  gap: 15px;
  flex-direction: column;
  display: flex;
}
footer .input_holder input[type="email"] {
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
footer .input_holder input[type="email"]:focus {
  border-color: rgb(144, 158, 145);
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}
footer .input_holder input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .subscribe_alertyA {
  font-weight: 600;
  cursor: pointer;
  background-color: rgb(144, 158, 145);
  color: #ffffff;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  border-radius: 10px;
  padding: 14px 20px;
  overflow: hidden;
  position: relative;
}
footer .subscribe_alertyA::after {
  top: -50%;
  left: -100%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  width: 200%;
  transition: all 0.5s ease;
  transform: rotate(30deg);
  height: 200%;
  content: "";
}
footer .subscribe_alertyA:hover {
  background-color: rgb(100, 107, 100);
}
footer .subscribe_alertyA:hover::after {
  left: 100%;
}
footer .footer_benefitZk {
  position: relative;
  text-align: center;
  margin-top: 50px;
}
footer .footer_benefitZk::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  width: 50px;
  height: 1px;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  content: "";
  position: absolute;
}
footer .media_kitMA {
  position: relative;
  font-size: 14px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  footer .input_holder {
    flex-direction: row;
  }
  footer .subscribe_alertyA {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  footer .linkedin_refPI {
    padding: 60px 0 30px;
  }
  footer .reach_outAS {
    margin-bottom: 40px;
  }
  footer .top_knowKX,
  footer .subscribe_holder {
    padding: 25px 20px;
  }
  footer .top_primaryDl a {
    padding: 8px 12px;
    margin: 0 5px 8px 0;
  }
  footer .footer_benefitZk {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  footer .linkedin_refPI {
    padding: 50px 0 20px;
  }
  footer .header_sitebarqA h5,
  footer .subscribe_holder h5 {
    font-size: calc(19px - 2px);
    margin-bottom: 20px;
  }
  footer .top_knowKX::before,
  footer .subscribe_holder::before {
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  footer .input_holder input[type="email"],
  footer .subscribe_alertyA {
    padding: 12px;
  }
}
.gratContentVi {
  background: linear-gradient(
    135deg,
    rgb(191, 196, 171) 0%,
    rgb(191, 196, 171) 60%,
    rgba(rgb(144, 158, 145, 0.5), 0.05) 100%
  );
  overflow: hidden;
  position: relative;
  perspective: 1000px;
  padding: 6rem 0;
}
.gratContentVi::before,
.gratContentVi::after {
  pointer-events: none;
  position: absolute;
  content: "";
}
.gratContentVi::before {
  left: -10%;
  background: linear-gradient(
    45deg,
    rgb(144, 158, 145, 0.5) 10%,
    transparent 70%
  );
  width: 40%;
  height: 70%;
  top: -5%;
  filter: blur(20px);
  transform: rotate(-15deg) translateZ(-10px);
  opacity: 0.03;
}
.gratContentVi::after {
  background: linear-gradient(
    135deg,
    rgb(100, 107, 100, 0.5) 10%,
    transparent 70%
  );
  height: 60%;
  opacity: 0.04;
  transform: rotate(10deg) translateZ(-5px);
  bottom: -10%;
  width: 30%;
  right: -5%;
  filter: blur(15px);
}
.gratContentVi .container {
  position: relative;
  padding: 0 2rem;
  transform-style: preserve-3d;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}
.gratContentVi h2 {
  position: relative;
  font-weight: 700;
  margin-bottom: 3rem;
  transform: translateZ(10px);
  font-size: 28px;
  max-width: 90%;
  line-height: 1.3;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.gratContentVi h2::after {
  transform-origin: left;
  transform: translateZ(15px) scaleX(1);
  content: "";
  background: linear-gradient(
    90deg,
    rgb(144, 158, 145) 0%,
    rgb(144, 158, 145, 0.5) 100%
  );
  bottom: -0.8rem;
  transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  width: 80px;
  height: 3px;
  position: absolute;
  left: 0;
}
.gratContentVi .training_classesbt {
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    rgba(rgb(255, 255, 255, 0.5), 0.95) 100%
  );
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 21px;
  transform: translateZ(20px) rotateY(-2deg);
  box-shadow:
    0 20px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.1),
    0 10px 20px -10px rgba(rgba(0, 0, 0, 0.5), 0.07);
  padding: 2.5rem 3rem;
  margin: 1rem 0;
}
.gratContentVi .training_classesbt::before {
  bottom: -10px;
  top: -10px;
  border: 1px solid rgb(144, 158, 145, 0.5);
  content: "";
  opacity: 0.1;
  left: -10px;
  transform: translateZ(5px);
  position: absolute;
  border-radius: 100px;
  right: -10px;
  pointer-events: none;
}
.gratContentVi .training_classesbt:hover {
  transform: translateZ(25px) rotateY(0deg);
  box-shadow:
    0 25px 35px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
    0 15px 25px -10px rgba(rgba(0, 0, 0, 0.5), 0.1);
}
.gratContentVi ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gratContentVi li {
  padding-left: 0;
  position: relative;
}
.gratContentVi li::before {
  background: linear-gradient(
    135deg,
    rgb(144, 158, 145, 0.5) 0%,
    transparent 80%
  );
  left: -30px;
  opacity: 0.2;
  position: absolute;
  top: -20px;
  height: 60px;
  width: 60px;
  transition: all 0.4s ease-out;
  transform: translateZ(15px) scale(0.95);
  content: "";
  border-radius: 50%;
}
.gratContentVi li span {
  color: #000000;
  font-size: 14px;
  line-height: 1.7;
  transform: translateZ(5px);
  display: block;
  font-family: Arial, sans-serif;
  position: relative;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}
@media (min-width: 992px) {
  .gratContentVi {
    padding: 8rem 0;
  }
  .gratContentVi h2 {
    transform: translateZ(15px);
    font-size: calc(28px * 1.1);
    max-width: 80%;
  }
  .gratContentVi h2::after {
    width: 100px;
  }
  .gratContentVi .training_classesbt {
    padding: 3.5rem 4rem;
    margin: 2rem 0;
  }
  .gratContentVi li span {
    font-size: calc(14px * 1.05);
    line-height: 1.8;
  }
  .gratContentVi li::before {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 991px) {
  .gratContentVi {
    padding: 5rem 0;
  }
  .gratContentVi h2 {
    font-size: calc(28px * 0.9);
    max-width: 100%;
  }
  .gratContentVi .training_classesbt {
    transform: translateZ(10px) rotateY(-1deg);
    padding: 2rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .gratContentVi {
    padding: 4rem 0;
  }
  .gratContentVi h2 {
    margin-bottom: 2rem;
    font-size: calc(28px * 0.8);
  }
  .gratContentVi h2::after {
    height: 2px;
    width: 60px;
  }
  .gratContentVi .training_classesbt {
    transform: translateZ(5px) rotateY(0deg);
    padding: 1.5rem 2rem;
  }
  .gratContentVi li::before {
    height: 40px;
    width: 40px;
    top: -15px;
    left: -20px;
  }
}
@media (max-width: 480px) {
  .gratContentVi {
    padding: 3rem 0;
  }
  .gratContentVi .container {
    padding: 0 1.5rem;
  }
  .gratContentVi h2 {
    margin-bottom: 1.5rem;
    font-size: calc(28px * 0.7);
  }
  .gratContentVi .training_classesbt {
    margin: 0.5rem 0;
    padding: 1.25rem 1.5rem;
  }
  .gratContentVi li span {
    font-size: calc(14px * 0.95);
    line-height: 1.6;
  }
}
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px) translateZ(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateZ(20px);
  }
}
.gratContentVi .training_classesbt {
  animation: floatIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.title_introil {
  padding: 2rem;
  position: relative;
  background: linear-gradient(
    135deg,
    rgb(191, 196, 171) 0%,
    rgb(100, 107, 100, 0.5) 100%
  );
  min-height: 100vh;
  justify-content: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.title_introil::before {
  position: absolute;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgb(144, 158, 145, 0.5) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgb(100, 107, 100, 0.5) 0%,
      transparent 40%
    );
  width: 100%;
  z-index: 0;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0.4;
}
.title_introil::after {
  content: "";
  width: 40%;
  position: absolute;
  animation: floatElement 15s ease-in-out infinite;
  height: 40%;
  pointer-events: none;
  right: -5%;
  transform: rotate(-15deg) skew(20deg);
  opacity: 0.05;
  top: -5%;
  background: rgb(144, 158, 145);
}
.title_introil .course_baseqG {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  transform: translateY(-2%);
  z-index: 1;
  gap: 3rem;
}
.title_introil .course_baseqG > div:first-child {
  transform: perspective(1000px) rotateX(2deg);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  backface-visibility: hidden;
  transition:
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.6s ease;
  padding: 2rem;
  position: relative;
}
.title_introil .course_baseqG > div:first-child:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.08);
}
.title_introil .course_baseqG > div:first-child::before {
  height: 100%;
  top: 0;
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(
    to bottom,
    rgb(144, 158, 145),
    rgb(100, 107, 100)
  );
  left: 0;
}
.title_introil h3 {
  font-family: Arial, sans-serif;
  color: #000000;
  font-size: calc(22px - 0.1rem);
  position: relative;
  margin: 0;
  line-height: 1.5;
  padding-left: 1rem;
  font-weight: 600;
}
.title_introil .mentor_networkMU {
  padding: 3rem 2rem;
  transform: perspective(800px) rotateY(-2deg);
  transition:
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.7s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, rgb(191, 196, 171) 100%);
  position: relative;
}
.title_introil .mentor_networkMU:hover {
  transform: perspective(800px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.title_introil .mentor_networkMU::before {
  content: "";
  opacity: 0.1;
  background: rgb(100, 107, 100, 0.5);
  z-index: -1;
  animation: pulse 8s ease-in-out infinite alternate;
  position: absolute;
  width: 50%;
  right: -15px;
  height: 50%;
  bottom: -15px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.title_introil h1 {
  transform: translateX(-5px);
  line-height: 1.2;
  color: rgb(144, 158, 145);
  font-size: 38px;
  background-clip: text !important;
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s ease;
  margin: 0 0 2rem;
  text-fill-color: transparent;
  background: linear-gradient(
    135deg,
    rgb(144, 158, 145) 0%,
    rgb(100, 107, 100) 100%
  );
  font-weight: 700;
  -webkit-background-clip: text !important;
}
.title_introil .mentor_networkMU:hover h1 {
  transform: translateX(0);
}
.title_introil .mentor_networkMU > div {
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: 10px;
  padding: 2rem;
  transform: translateY(0);
  transition:
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.6s ease;
}
.title_introil .mentor_networkMU > div::before {
  width: 100%;
  position: absolute;
  transition: backdrop-filter 0.5s ease;
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}
.title_introil .mentor_networkMU:hover > div {
  transform: translateY(5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.title_introil .mentor_networkMU:hover > div::before {
  backdrop-filter: blur(0px);
}
.title_introil p {
  position: relative;
  padding: 0;
  font-size: calc(12px + 0.1rem);
  transition:
    transform 0.5s ease,
    text-shadow 0.5s ease;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  margin: 0;
  z-index: 1;
  transform: translateY(0);
  color: #ffffff;
}
.title_introil .mentor_networkMU:hover p {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}
@keyframes floatElement {
  0%,
  100% {
    transform: rotate(-15deg) skew(20deg) translate(0, 0);
  }
  50% {
    transform: rotate(-13deg) skew(18deg) translate(-15px, 15px);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.15;
  }
}
@media (min-width: 768px) {
  .title_introil {
    padding: 3rem;
  }
  .title_introil .course_baseqG {
    gap: 2rem;
    grid-template-columns: 1fr 1.2fr;
  }
  .title_introil .course_baseqG > div:first-child {
    margin-top: 4rem;
  }
  .title_introil h3 {
    font-size: 22px;
  }
  .title_introil h1 {
    font-size: calc(38px + 0.2rem);
  }
  .title_introil .mentor_networkMU {
    padding: 4rem 3rem;
  }
  .title_introil .mentor_networkMU > div {
    padding: 3rem;
  }
  .title_introil p {
    font-size: calc(12px + 0.2rem);
  }
}
@media (min-width: 992px) {
  .title_introil {
    padding: 0;
  }
  .title_introil .course_baseqG {
    gap: 3rem;
    grid-template-columns: 1fr 1.5fr;
  }
  .title_introil .course_baseqG > div:first-child {
    margin-top: 6rem;
    padding: 3rem;
  }
  .title_introil h3 {
    font-size: calc(22px + 0.1rem);
  }
  .title_introil h1 {
    margin-bottom: 3rem;
    font-size: calc(38px + 0.5rem);
  }
  .title_introil .mentor_networkMU {
    padding: 5rem 4rem;
  }
  .title_introil p {
    font-size: calc(12px + 0.3rem);
  }
}
@media (max-width: 767px) {
  .title_introil {
    padding: 1.5rem;
  }
  .title_introil .course_baseqG {
    gap: 2rem;
  }
  .title_introil .course_baseqG > div:first-child {
    padding: 1.5rem;
  }
  .title_introil h3 {
    font-size: calc(22px - 0.2rem);
  }
  .title_introil h1 {
    font-size: calc(38px - 0.2rem);
    margin-bottom: 1.5rem;
  }
  .title_introil .mentor_networkMU {
    padding: 2rem 1.5rem;
  }
  .title_introil .mentor_networkMU > div {
    padding: 1.5rem;
  }
  .title_introil p {
    font-size: 12px;
  }
}
.company_infopD {
  background: linear-gradient(
    145deg,
    rgb(191, 196, 171) 0%,
    rgba(245, 247, 250, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.company_infopD::before {
  opacity: 0.1;
  width: 40%;
  right: -5%;
  animation: float 20s infinite ease-in-out;
  z-index: 1;
  height: 70%;
  content: "";
  top: -10%;
  position: absolute;
  transform: rotate(-15deg) skew(15deg);
  background: linear-gradient(
    135deg,
    rgb(144, 158, 145, 0.5) 0%,
    transparent 80%
  );
}
.company_infopD::after {
  height: 60%;
  animation: float 25s infinite ease-in-out reverse;
  width: 30%;
  transform: rotate(15deg) skew(-15deg);
  opacity: 0.1;
  position: absolute;
  content: "";
  left: -5%;
  background: linear-gradient(
    225deg,
    rgb(100, 107, 100, 0.5) 0%,
    transparent 80%
  );
  bottom: -10%;
  z-index: 1;
}
.company_infopD .container {
  max-width: 1200px;
  z-index: 2;
  padding: 0 1.5rem;
  position: relative;
  margin: 0 auto;
}
.company_infopD h1 {
  font-weight: 700;
  text-align: left;
  font-size: 43px;
  color: #000000;
  position: relative;
  font-family: Arial, sans-serif;
  margin-bottom: 3rem;
  transform: translateX(-0.5rem);
}
.company_infopD h1::before {
  position: absolute;
  background: rgb(144, 158, 145);
  content: "";
  height: 0.25rem;
  left: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  bottom: -0.75rem;
  width: 6rem;
}
.company_infopD h1::after {
  height: 0.25rem;
  position: absolute;
  content: "";
  left: 0;
  width: 3rem;
  background: rgb(100, 107, 100);
  bottom: -0.75rem;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  transform: translateX(6.5rem) scaleX(0.3);
  transform-origin: left;
}
.company_infopD:hover h1::before {
  transform: scaleX(1);
}
.company_infopD:hover h1::after {
  transform: translateX(7rem) scaleX(0.5);
}
.company_infopD .virtual_studyEf {
  position: relative;
}
.company_infopD .virtual_studyEf ul {
  margin: 0;
  list-style: none;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: 0;
}
.company_infopD .learn_guideslB {
  border-radius: 10px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(0);
  padding: 2.5rem;
}
.company_infopD .learn_guideslB::before {
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(
    to bottom,
    rgb(144, 158, 145),
    rgb(100, 107, 100)
  );
  transform-origin: center;
  transform: scaleY(0.6);
  position: absolute;
  width: 0.25rem;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
  left: 0;
  content: "";
}
.company_infopD .learn_guideslB:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.company_infopD .learn_guideslB:hover::before {
  transform: scaleY(1);
}
.company_infopD .learn_guideslB h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000000;
  font-size: calc(19px * 1.1);
  display: inline-block;
  position: relative;
  margin-top: 0;
  font-family: Arial, sans-serif;
}
.company_infopD .learn_guideslB h4::after {
  left: 0;
  content: "";
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  height: 0.125rem;
  bottom: -0.5rem;
  width: 100%;
  transform-origin: left;
  background: linear-gradient(to right, rgb(144, 158, 145), transparent);
  transform: scaleX(0.3);
}
.company_infopD .learn_guideslB:hover h4::after {
  transform: scaleX(1);
}
.company_infopD .learn_guideslB div {
  color: #000000;
  font-family: Arial, sans-serif;
  padding-right: 0.5rem;
  max-height: 350px;
  line-height: 1.7;
  font-size: 15px;
  overflow-y: auto;
}
.company_infopD .learn_guideslB div::-webkit-scrollbar {
  width: 0.25rem;
}
.company_infopD .learn_guideslB div::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
}
.company_infopD .learn_guideslB div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgb(144, 158, 145, 0.5);
}
@keyframes float {
  0%,
  100% {
    transform: rotate(-15deg) skew(15deg) translate(0, 0);
  }
  50% {
    transform: rotate(-15deg) skew(15deg) translate(1rem, 1rem);
  }
}
@media (min-width: 768px) {
  .company_infopD {
    padding: 8rem 0;
  }
  .company_infopD h1 {
    font-size: calc(43px * 1.2);
    margin-bottom: 4rem;
  }
  .company_infopD .virtual_studyEf ul {
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .company_infopD .learn_guideslB {
    padding: 3rem;
  }
  .company_infopD .learn_guideslB h4 {
    font-size: calc(19px * 1.2);
    margin-bottom: 2rem;
  }
  .company_infopD .learn_guideslB div {
    font-size: calc(15px * 1.05);
    max-height: 400px;
  }
  .company_infopD::before {
    width: 45%;
    height: 75%;
  }
  .company_infopD::after {
    height: 65%;
    width: 35%;
  }
}
@media (min-width: 992px) {
  .company_infopD {
    padding: 10rem 0;
  }
  .company_infopD .container {
    padding: 0 2rem;
  }
  .company_infopD h1 {
    transform: translateX(-1rem);
    font-size: calc(43px * 1.4);
  }
  .company_infopD .learn_guideslB {
    padding: 3.5rem;
    transition:
      transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
      box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .company_infopD .learn_guideslB:first-child {
    transform: translateY(2rem);
  }
  .company_infopD .learn_guideslB:last-child {
    transform: translateY(-2rem);
  }
  .company_infopD .learn_guideslB:first-child:hover {
    transform: translateY(1.5rem);
  }
  .company_infopD .learn_guideslB:last-child:hover {
    transform: translateY(-2.5rem);
  }
  .company_infopD .learn_guideslB div {
    font-size: calc(15px * 1.1);
    max-height: 450px;
    padding-right: 1rem;
  }
  .company_infopD .learn_guideslB h4 {
    font-size: calc(19px * 1.3);
  }
  .company_infopD::before {
    height: 80%;
    width: 50%;
  }
  .company_infopD::after {
    height: 70%;
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .company_infopD {
    padding: 12rem 0;
  }
  .company_infopD .container {
    padding: 0;
  }
  .company_infopD h1 {
    font-size: calc(43px * 1.5);
  }
  .company_infopD .virtual_studyEf ul {
    gap: 4rem;
  }
  .company_infopD .learn_guideslB {
    padding: 4rem;
  }
  .company_infopD .learn_guideslB:first-child {
    transform: translateY(3rem);
  }
  .company_infopD .learn_guideslB:last-child {
    transform: translateY(-3rem);
  }
  .company_infopD .learn_guideslB:first-child:hover {
    transform: translateY(2.5rem);
  }
  .company_infopD .learn_guideslB:last-child:hover {
    transform: translateY(-3.5rem);
  }
}
.privacy_spaceXH {
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgb(191, 196, 171) 0%,
    rgba(246, 246, 250, 0.95) 100%
  );
  padding: 5rem 2rem;
  position: relative;
}
.privacy_spaceXH::before {
  background-size: 50px 50px;
  background-image:
    linear-gradient(
      45deg,
      transparent 48%,
      rgb(144, 158, 145, 0.5) 49%,
      rgb(144, 158, 145, 0.5) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgb(100, 107, 100, 0.5) 49%,
      rgb(100, 107, 100, 0.5) 51%,
      transparent 52%
    );
  width: 100%;
  z-index: 1;
  content: "";
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  opacity: 0.07;
}
.privacy_spaceXH .container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  background: #ffffff;
  transform: perspective(1200px) rotateX(1deg);
  padding: 3rem;
}
.privacy_spaceXH h1 {
  color: rgb(144, 158, 145);
  transform: translateX(-0.5rem);
  font-size: 43px;
  padding-bottom: 1rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 2rem;
}
.privacy_spaceXH h1::after {
  height: 4px;
  bottom: 0;
  transform-origin: left center;
  content: "";
  width: 80px;
  animation: widthPulse 3s infinite alternate ease-in-out;
  background: linear-gradient(
    90deg,
    rgb(144, 158, 145) 0%,
    rgb(100, 107, 100) 100%
  );
  left: 0;
  position: absolute;
}
.privacy_spaceXH h2 {
  font-size: 33px;
  border-left: 3px solid rgb(100, 107, 100);
  position: relative;
  padding-left: 1rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  color: #000000;
}
.privacy_spaceXH h3 {
  color: #000000;
  font-size: calc(33px * 0.85);
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid rgb(100, 107, 100, 0.5);
  margin: 2rem 0 1.2rem;
  font-weight: 600;
}
.privacy_spaceXH h4 {
  margin: 1.8rem 0 1rem;
  font-size: calc(33px * 0.7);
  color: #000000;
  padding-left: 1rem;
  font-weight: 600;
  position: relative;
  border-left: 1px solid rgb(100, 107, 100, 0.5);
}
.privacy_spaceXH p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: Arial, sans-serif;
  line-height: 1.8;
}
.privacy_spaceXH p strong {
  font-weight: 600;
  position: relative;
  color: #000000;
  display: inline-block;
}
.privacy_spaceXH p strong::after {
  z-index: -1;
  bottom: 0;
  background-color: rgb(100, 107, 100, 0.5);
  opacity: 0.3;
  height: 8px;
  left: 0;
  content: "";
  position: absolute;
  width: 100%;
}
.privacy_spaceXH ul {
  list-style-type: none;
  margin: 1.5rem 0 2rem 1.5rem;
  padding: 0;
}
.privacy_spaceXH li {
  padding-left: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.7;
  position: relative;
}
.privacy_spaceXH li::before {
  position: absolute;
  left: 0;
  content: "";
  transform: rotate(45deg);
  height: 8px;
  background-color: rgb(144, 158, 145);
  border-radius: 10px;
  top: 0.65rem;
  width: 8px;
  transition: transform 0.3s ease;
}
.privacy_spaceXH li:hover::before {
  transform: rotate(135deg);
}
.privacy_spaceXH span {
  line-height: 1.8;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  padding: 0.5rem 0 1.5rem;
  position: relative;
  display: block;
}
.privacy_spaceXH span::before {
  opacity: 0.5;
  top: 0;
  left: -1rem;
  width: 3px;
  content: "";
  height: 100%;
  position: absolute;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(144, 158, 145, 0.5),
    transparent
  );
}
@keyframes widthPulse {
  0% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
  100% {
    width: 80px;
  }
}
@media (max-width: 992px) {
  .privacy_spaceXH {
    padding: 3rem 1.5rem;
  }
  .privacy_spaceXH .container {
    transform: perspective(1000px) rotateX(0.5deg);
    padding: 2rem;
  }
  .privacy_spaceXH h1 {
    font-size: calc(43px * 0.9);
  }
  .privacy_spaceXH h2 {
    font-size: calc(33px * 0.9);
  }
}
@media (max-width: 768px) {
  .privacy_spaceXH {
    padding: 2rem 1rem;
  }
  .privacy_spaceXH .container {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
  }
  .privacy_spaceXH h1 {
    transform: translateX(0);
    font-size: calc(43px * 0.8);
  }
  .privacy_spaceXH h2 {
    margin: 2rem 0 1rem;
    font-size: calc(33px * 0.8);
  }
  .privacy_spaceXH h3 {
    font-size: calc(33px * 0.7);
  }
  .privacy_spaceXH h4 {
    font-size: calc(33px * 0.6);
  }
  .privacy_spaceXH p,
  .privacy_spaceXH li,
  .privacy_spaceXH span {
    font-size: calc(14px * 0.95);
  }
  .privacy_spaceXH ul {
    margin-left: 0.5rem;
  }
}
@media (max-width: 576px) {
  .privacy_spaceXH {
    padding: 1.5rem 0.5rem;
  }
  .privacy_spaceXH .container {
    padding: 1.25rem;
  }
  .privacy_spaceXH h1 {
    font-size: calc(43px * 0.7);
  }
  .privacy_spaceXH h2 {
    font-size: calc(33px * 0.7);
  }
  .privacy_spaceXH h3 {
    font-size: calc(33px * 0.6);
  }
  .privacy_spaceXH h4 {
    font-size: calc(33px * 0.5);
  }
  .privacy_spaceXH p,
  .privacy_spaceXH li,
  .privacy_spaceXH span {
    font-size: calc(14px * 0.9);
  }
  .privacy_spaceXH span::before {
    left: -0.75rem;
  }
}
.study_processzj {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgb(191, 196, 171);
  min-height: 70vh;
}
.study_processzj::before {
  left: -50%;
  animation: rotateBg 25s linear infinite;
  z-index: 0;
  width: 200%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgb(144, 158, 145, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgb(100, 107, 100, 0.5) 0%,
      transparent 50%
    );
  top: -50%;
  content: "";
  position: absolute;
  height: 200%;
}
.study_processzj::after {
  content: "";
  left: 0;
  width: 100%;
  top: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
  z-index: 1;
  position: absolute;
  height: 100%;
}
.study_processzj .container {
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 5rem 2rem;
}
.study_processzj .training_classesbt {
  position: relative;
  flex-direction: column;
  padding: 4rem 2rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  display: flex;
}
.study_processzj .training_classesbt::before {
  top: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(144, 158, 145, 0.5),
    transparent
  );
  height: 30px;
  width: 120%;
  opacity: 0.7;
  content: "";
  left: -10%;
  z-index: -1;
  animation: waveEffect 8s ease-in-out infinite;
  position: absolute;
  filter: blur(15px);
}
.study_processzj .training_classesbt::after {
  bottom: 0;
  content: "";
  width: 120%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(100, 107, 100, 0.5),
    transparent
  );
  height: 30px;
  opacity: 0.7;
  z-index: -1;
  filter: blur(15px);
  left: -10%;
  position: absolute;
  animation: waveEffect 8s ease-in-out infinite reverse;
}
.study_processzj h3 {
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
  transform-style: preserve-3d;
  perspective: 500px;
  position: relative;
  color: rgb(144, 158, 145);
  font-size: 38px;
  font-weight: 700;
  padding-bottom: 2rem;
}
.study_processzj h3::before {
  width: 100%;
  position: absolute;
  z-index: 1;
  height: 100%;
  transform: translateX(-100%);
  content: "";
  left: 0;
  animation: shimmerEffect 5s infinite;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  top: 0;
}
.study_processzj h3::after {
  position: absolute;
  height: 100%;
  z-index: -1;
  left: 0;
  opacity: 0;
  color: transparent;
  top: 0;
  content: attr(data-text);
  width: 100%;
  transform: translateZ(20px);
  text-shadow:
    0 0 15px rgb(144, 158, 145),
    0 0 10px rgb(144, 158, 145);
  animation: glowPulse 4s ease-in-out infinite;
}
.study_processzj span {
  backdrop-filter: blur(5px);
  font-size: 13px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #000000;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: floatText 6s ease-in-out infinite;
  border-radius: 13px;
  line-height: 1.8;
  display: block;
  z-index: 2;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  text-align: center;
  padding: 2rem;
}
.study_processzj span::before {
  content: "";
  top: -50%;
  animation: holographicShine 10s linear infinite;
  width: 200%;
  height: 200%;
  position: absolute;
  left: -50%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
  transform: rotate(45deg);
}
.study_processzj span::after {
  bottom: -10px;
  background: rgb(100, 107, 100, 0.5);
  width: 80%;
  animation: shadowPulse 6s ease-in-out infinite;
  left: 10%;
  content: "";
  filter: blur(10px);
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
  height: 10px;
  position: absolute;
}
@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes waveEffect {
  0%,
  100% {
    transform: translateX(-30%) scaleX(1.2);
  }
  50% {
    transform: translateX(30%) scaleX(0.8);
  }
}
@keyframes shimmerEffect {
  0% {
    transform: translateX(-100%);
  }
  20%,
  100% {
    transform: translateX(100%);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes holographicShine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}
@keyframes shadowPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1.2);
  }
}
@media (max-width: 992px) {
  .study_processzj {
    min-height: 60vh;
  }
  .study_processzj .container {
    padding: 4rem 1.5rem;
  }
  .study_processzj .training_classesbt {
    padding: 3rem 1.5rem;
  }
  .study_processzj h3 {
    padding-bottom: 1.5rem;
    font-size: calc(38px * 0.9);
  }
  .study_processzj span {
    font-size: calc(13px * 0.95);
    padding: 1.8rem;
  }
}
@media (max-width: 768px) {
  .study_processzj {
    min-height: 50vh;
  }
  .study_processzj .container {
    padding: 3rem 1.2rem;
  }
  .study_processzj .training_classesbt {
    padding: 2.5rem 1.2rem;
    gap: 1.5rem;
  }
  .study_processzj h3 {
    font-size: calc(38px * 0.8);
    padding-bottom: 1.2rem;
  }
  .study_processzj span {
    padding: 1.5rem;
    font-size: calc(13px * 0.9);
    line-height: 1.7;
  }
}
@media (max-width: 576px) {
  .study_processzj {
    min-height: 40vh;
  }
  .study_processzj .container {
    padding: 2.5rem 1rem;
  }
  .study_processzj .training_classesbt {
    gap: 1.2rem;
    padding: 2rem 1rem;
  }
  .study_processzj h3 {
    font-size: calc(38px * 0.7);
    padding-bottom: 1rem;
  }
  .study_processzj span {
    padding: 1.2rem;
    font-size: calc(13px * 0.85);
    line-height: 1.6;
  }
  .study_processzj .training_classesbt::before,
  .study_processzj .training_classesbt::after {
    height: 20px;
  }
}
.mentorship_profileUP {
  padding: 5rem 2rem;
  isolation: isolate;
  overflow: hidden;
  background: rgb(191, 196, 171);
  position: relative;
}
.mentorship_profileUP::before {
  top: -20%;
  width: 60%;
  right: -5%;
  height: 140%;
  content: "";
  position: absolute;
  filter: blur(3px);
  z-index: -1;
  transform: rotate(15deg);
  background: rgb(144, 158, 145, 0.5);
}
.mentorship_profileUP::after {
  height: 30%;
  animation: morph 15s linear infinite alternate;
  content: "";
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  left: -5%;
  background: rgb(100, 107, 100, 0.5);
  position: absolute;
  width: 30%;
  z-index: -1;
  bottom: -5%;
}
@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
.mentorship_profileUP .student_perspectivesdl {
  margin: 0 auto;
  gap: 0;
  display: grid;
  max-width: 1100px;
  position: relative;
  grid-template-columns: 1fr 1fr;
}
.mentorship_profileUP .thumbnail_imglq {
  border-radius: 0;
  height: 450px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  position: relative;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  z-index: 2;
  transform: translateX(-5%);
  width: 100%;
}
.mentorship_profileUP .thumbnail_imglq::after {
  width: 100%;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  content: "";
  left: 0;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  position: absolute;
  top: 0;
}
.mentorship_profileUP .student_perspectivesdl:hover .thumbnail_imglq {
  transform: translateX(0) scale(1.02);
  filter: contrast(1.1);
}
.mentorship_profileUP .work_milestoneszm {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  z-index: 1;
  transform: translateX(-15%);
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding: 3rem 3rem 3rem 5rem;
}
.mentorship_profileUP .student_perspectivesdl:hover .work_milestoneszm {
  transform: translateX(-10%) translateY(-5px);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.5);
}
.mentorship_profileUP .name {
  color: rgb(144, 158, 145);
  position: relative;
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-size: 36px;
  display: inline-block;
}
.mentorship_profileUP .name::before {
  height: 30px;
  position: absolute;
  width: 30px;
  transition: transform 0.4s ease 0.2s;
  left: -20px;
  border-radius: 10px;
  z-index: -1;
  content: "";
  top: -10px;
  background: rgb(100, 107, 100, 0.5);
  transform: rotate(45deg) scale(0);
}
.mentorship_profileUP .student_perspectivesdl:hover .name::before {
  transform: rotate(45deg) scale(1);
}
.mentorship_profileUP .work_milestoneszm > div:nth-child(2) {
  font-weight: 600;
  transition: all 0.5s ease 0.3s;
  transform: translateX(-20px);
  margin-bottom: 2rem;
  color: rgb(100, 107, 100);
  opacity: 0;
  opacity: 0.9;
  font-size: 20px;
}
.mentorship_profileUP
  .student_perspectivesdl:hover
  .work_milestoneszm
  > div:nth-child(2) {
  transform: translateX(0);
  opacity: 1;
}
.mentorship_profileUP .job_viewGz {
  transition: all 0.5s ease 0.5s;
  font-style: italic;
  transform: translateY(20px);
  line-height: 1.7;
  font-weight: 400;
  padding-top: 20px;
  opacity: 0;
  color: #000000;
  position: relative;
  font-size: 13px;
}
.mentorship_profileUP .student_perspectivesdl:hover .job_viewGz {
  opacity: 1;
  transform: translateY(0);
}
.mentorship_profileUP .job_viewGz::before {
  top: 0;
  content: "";
  height: 3px;
  left: 0;
  width: 60px;
  position: absolute;
  background: linear-gradient(to right, rgb(144, 158, 145), transparent);
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.mentorship_profileUP .work_milestoneszm::after {
  border-radius: 50%;
  background: rgb(144, 158, 145, 0.5);
  animation: float 4s ease-in-out infinite;
  content: "";
  right: 20px;
  height: 40px;
  width: 40px;
  bottom: 20px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 992px) {
  .mentorship_profileUP .student_perspectivesdl {
    gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
  .mentorship_profileUP .thumbnail_imglq {
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transform: none;
  }
  .mentorship_profileUP .thumbnail_imglq::after {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }
  .mentorship_profileUP .work_milestoneszm {
    transform: none;
    grid-row: 2 / 3;
    padding: 2rem;
    clip-path: none;
    grid-column: 1 / 2;
  }
  .mentorship_profileUP .student_perspectivesdl:hover .work_milestoneszm {
    transform: translateY(-5px);
  }
}
.pricing_rowkH {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.pricing_rowkH::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}
.pricing_rowkH .container {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  z-index: 2;
}
.pricing_rowkH .learn_priceIo {
  perspective: 1000px;
  transform-style: preserve-3d;
}
.pricing_rowkH h2 {
  transform: translateZ(20px);
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #ffffff;
  font-size: 29px;
  position: relative;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.pricing_rowkH .cost_optionsan {
  text-align: center;
  color: rgb(255, 255, 255, 0.5);
  transform: translateZ(15px);
  max-width: 700px;
  font-size: calc(18px * 1.1);
  margin: 0 auto 50px;
  line-height: 1.6;
  position: relative;
}
.pricing_rowkH .pricing_tiersmC {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  display: grid;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.pricing_rowkH .pricing_tiersmC li {
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-style: preserve-3d;
  perspective: 800px;
}
.pricing_rowkH .rate_packagesxz {
  height: 100%;
  transform: translateZ(0);
  position: relative;
  display: block;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}
.pricing_rowkH .program_priceHQ {
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateZ(0);
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
}
.pricing_rowkH .program_priceHQ::before {
  transform: scaleX(0.8);
  transition: all 0.4s ease;
  background: linear-gradient(
    90deg,
    rgb(144, 158, 145) 0%,
    rgb(100, 107, 100) 100%
  );
  position: absolute;
  content: "";
  height: 4px;
  opacity: 0.8;
  left: 0;
  width: 100%;
  top: 0;
}
.pricing_rowkH .program_priceHQ::after {
  transition: all 0.5s ease;
  background: radial-gradient(
    circle,
    rgb(144, 158, 145, 0.5) 0%,
    transparent 70%
  );
  content: "";
  height: 120px;
  z-index: -1;
  width: 120px;
  opacity: 0.5;
  position: absolute;
  right: -60px;
  bottom: -60px;
}
.pricing_rowkH .monthly_planLZ {
  position: relative;
  z-index: 2;
}
.pricing_rowkH .monthly_planLZ h4 {
  padding-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  margin: 0 0 20px;
  font-size: calc(23px * 1.2);
}
.pricing_rowkH .monthly_planLZ h4::after {
  background-color: rgb(100, 107, 100);
  position: absolute;
  transition: width 0.3s ease;
  content: "";
  width: 40px;
  bottom: 0;
  left: 0;
  height: 2px;
}
.pricing_rowkH .monthly_planLZ p {
  scrollbar-width: thin;
  max-height: 200px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
  padding-right: 10px;
  overflow-y: auto;
  color: rgb(255, 255, 255, 0.5);
  scrollbar-color: rgb(100, 107, 100) transparent;
}
.pricing_rowkH .monthly_planLZ p::-webkit-scrollbar {
  width: 4px;
}
.pricing_rowkH .monthly_planLZ p::-webkit-scrollbar-track {
  background: transparent;
}
.pricing_rowkH .monthly_planLZ p::-webkit-scrollbar-thumb {
  background-color: rgb(100, 107, 100, 0.5);
  border-radius: 20px;
}
.pricing_rowkH .study_ratesHk {
  position: relative;
  display: block;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  font-size: calc(23px * 1.4);
  padding: 10px 0;
}
.pricing_rowkH .study_ratesHk::before {
  left: 0;
  height: 3px;
  width: 60px;
  bottom: 0;
  content: "";
  background: linear-gradient(90deg, rgb(100, 107, 100) 0%, transparent 100%);
  position: absolute;
}
.pricing_rowkH .rate_packagesxz:hover .program_priceHQ {
  transform: translateY(-8px) translateZ(20px);
  box-shadow:
    0 25px 45px rgba(0, 0, 0, 0.25),
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.pricing_rowkH .rate_packagesxz:hover .program_priceHQ::before {
  opacity: 1;
  transform: scaleX(1);
}
.pricing_rowkH .rate_packagesxz:hover .program_priceHQ::after {
  opacity: 0.7;
  transform: scale(1.2);
}
.pricing_rowkH .rate_packagesxz:hover .monthly_planLZ h4::after {
  width: 60px;
}
@keyframes priceFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pricing_rowkH .pricing_tiersmC li {
  opacity: 0;
  animation: priceFadeIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.pricing_rowkH .pricing_tiersmC li:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing_rowkH .pricing_tiersmC li:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing_rowkH .pricing_tiersmC li:nth-child(3) {
  animation-delay: 0.3s;
}
.pricing_rowkH .pricing_tiersmC li:nth-child(4) {
  animation-delay: 0.4s;
}
@media (max-width: 1200px) {
  .pricing_rowkH {
    padding: 100px 0 80px;
  }
  .pricing_rowkH .pricing_tiersmC {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 992px) {
  .pricing_rowkH h2 {
    font-size: calc(29px * 0.9);
  }
  .pricing_rowkH .cost_optionsan {
    margin-bottom: 40px;
  }
  .pricing_rowkH .program_priceHQ {
    padding: 35px 25px;
  }
}
@media (max-width: 768px) {
  .pricing_rowkH {
    padding: 80px 0 60px;
  }
  .pricing_rowkH h2 {
    font-size: calc(29px * 0.8);
  }
  .pricing_rowkH .cost_optionsan {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .pricing_rowkH .pricing_tiersmC {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .pricing_rowkH .monthly_planLZ p {
    max-height: 180px;
    font-size: calc(18px * 0.95);
  }
}
@media (max-width: 576px) {
  .pricing_rowkH {
    padding: 60px 0 40px;
  }
  .pricing_rowkH .container {
    padding: 0 15px;
  }
  .pricing_rowkH h2 {
    margin-bottom: 15px;
    font-size: calc(29px * 0.7);
  }
  .pricing_rowkH .cost_optionsan {
    font-size: calc(18px * 0.95);
    margin-bottom: 25px;
  }
  .pricing_rowkH .pricing_tiersmC {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .pricing_rowkH .program_priceHQ {
    padding: 30px 20px;
  }
  .pricing_rowkH .monthly_planLZ h4 {
    font-size: 23px;
  }
  .pricing_rowkH .study_ratesHk {
    font-size: calc(23px * 1.2);
  }
}
.contactlv {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.contactlv::before {
  top: 0;
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 1;
  background-color: rgb(144, 158, 145, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
}
.contactlv::after {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  pointer-events: none;
  top: 0;
  background: linear-gradient(
    135deg,
    rgb(100, 107, 100, 0.5) 0%,
    transparent 50%,
    rgb(144, 158, 145, 0.5) 100%
  );
  content: "";
}
.contactlv .container {
  z-index: 3;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  position: relative;
}
.contactlv .query_feedbackCp {
  border-radius: 20px;
  gap: 30px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
}
.contactlv .request_queryKu {
  padding: 60px 40px;
  background: linear-gradient(
    to bottom right,
    rgb(144, 158, 145),
    rgb(100, 107, 100)
  );
  position: relative;
  overflow: hidden;
  width: 40%;
}
.contactlv .request_queryKu::before {
  right: -100px;
  top: -100px;
  background: rgb(100, 107, 100);
  opacity: 0.4;
  content: "";
  border-radius: 50%;
  position: absolute;
  width: 200px;
  height: 200px;
}
.contactlv .request_queryKu::after {
  left: -75px;
  position: absolute;
  height: 150px;
  content: "";
  border-radius: 50%;
  width: 150px;
  background: rgb(144, 158, 145);
  bottom: -75px;
  opacity: 0.3;
}
.contactlv .request_queryKu h3 {
  position: relative;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
  z-index: 5;
  font-size: 30px;
}
.contactlv .request_queryKu div {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  z-index: 5;
}
.contactlv .request_queryKu div:hover {
  transform: translateX(10px);
}
.contactlv .request_queryKu div svg {
  width: 24px;
  flex-shrink: 0;
  height: 24px;
  margin-right: 15px;
}
.contactlv .request_queryKu div svg path {
  fill: #ffffff;
  transition: fill 0.3s ease;
}
.contactlv .request_queryKu div:hover svg path {
  fill: rgb(191, 196, 171);
}
.contactlv .request_queryKu div span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.contactlv .request_queryKu div span a {
  color: #ffffff;
  transition: color 0.3s ease;
  text-decoration: none;
}
.contactlv .request_queryKu div span a:hover {
  color: rgb(191, 196, 171);
  text-decoration: underline;
}
.contactlv .query_blocklw {
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  width: 60%;
  overflow: hidden;
}
.contactlv .query_blocklw::before {
  top: 0;
  content: "";
  width: 100%;
  height: 5px;
  left: 0;
  position: absolute;
  background: linear-gradient(to right, rgb(144, 158, 145), rgb(100, 107, 100));
}
.contactlv .query_blocklw h3 {
  color: #ffffff;
  position: relative;
  font-size: 21px;
  margin-bottom: 30px;
  font-weight: 600;
}
.contactlv .query_blocklw h3::after {
  bottom: -10px;
  background: rgb(100, 107, 100);
  height: 3px;
  content: "";
  width: 50px;
  position: absolute;
  left: 0;
}
.contactlv form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contactlv form input[type="text"],
.contactlv form input[type="email"] {
  font-family: Arial, sans-serif;
  border: 1px solid transparent;
  border: none;
  margin-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  border-radius: 10px;
  color: #ffffff;
}
.contactlv form input[type="text"]:focus,
.contactlv form input[type="email"]:focus {
  outline: none;
  transform: translateY(-2px);
  border-color: rgb(100, 107, 100);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(rgb(100, 107, 100), 0.2);
}
.contactlv form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contactlv .inquiry_gridqH {
  align-items: flex-start;
  display: flex;
  position: relative;
  margin-bottom: 25px;
}
.contactlv .inquiry_gridqH input[type="checkbox"] {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.contactlv .inquiry_gridqH label {
  line-height: 1.5;
  font-size: 15px;
  cursor: pointer;
  padding-left: 35px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
.contactlv .inquiry_gridqH label::before {
  border-radius: 10px;
  left: 0;
  top: 2px;
  background: transparent;
  border: 2px solid rgb(100, 107, 100);
  content: "";
  width: 22px;
  transition: all 0.3s ease;
  height: 22px;
  position: absolute;
}
.contactlv .inquiry_gridqH input[type="checkbox"]:checked + label::before {
  background: rgb(100, 107, 100);
}
.contactlv .inquiry_gridqH input[type="checkbox"]:checked + label::after {
  position: absolute;
  width: 6px;
  content: "";
  transform: rotate(45deg);
  left: 8px;
  top: 5px;
  height: 12px;
  border-width: 0 2px 2px 0;
  border: solid white;
}
.contactlv .inquiry_gridqH label a {
  text-decoration: none;
  color: rgb(100, 107, 100);
  transition: color 0.3s ease;
}
.contactlv .inquiry_gridqH label a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.contactlv form .inquiry_reachMG {
  color: #ffffff;
  font-size: 19px;
  background: linear-gradient(to right, rgb(144, 158, 145), rgb(100, 107, 100));
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 16px 30px;
  border: none;
  font-weight: 600;
}
.contactlv form .inquiry_reachMG::before {
  top: 0;
  left: -100%;
  width: 100%;
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  content: "";
  height: 100%;
  transition: all 0.5s ease;
}
.contactlv form .inquiry_reachMG:hover::before {
  left: 100%;
}
.contactlv form .inquiry_reachMG:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.contactlv .request_queryKu div:nth-child(2) {
  animation: float 5s infinite ease-in-out;
}
.contactlv .request_queryKu div:nth-child(3) {
  animation: float 7s infinite ease-in-out;
}
.contactlv .request_queryKu div:nth-child(4) {
  animation: float 6s infinite ease-in-out;
}
.contactlv .request_queryKu div:nth-child(5) {
  animation: float 8s infinite ease-in-out;
}
@media screen and (max-width: 992px) {
  .contactlv {
    padding: 80px 0;
  }
  .contactlv .query_feedbackCp {
    flex-direction: column;
  }
  .contactlv .request_queryKu,
  .contactlv .query_blocklw {
    padding: 40px 30px;
    width: 100%;
  }
  .contactlv .request_queryKu h3 {
    font-size: calc(30px * 0.9);
    margin-bottom: 30px;
  }
  .contactlv .request_queryKu div {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .contactlv {
    padding: 60px 0;
  }
  .contactlv .container {
    width: 95%;
  }
  .contactlv .request_queryKu,
  .contactlv .query_blocklw {
    padding: 30px 20px;
  }
  .contactlv .request_queryKu h3 {
    font-size: calc(30px * 0.8);
    margin-bottom: 25px;
  }
  .contactlv .query_blocklw h3 {
    font-size: calc(21px * 0.9);
  }
  .contactlv form input[type="text"],
  .contactlv form input[type="email"] {
    margin-bottom: 15px;
    padding: 14px 16px;
  }
  .contactlv .inquiry_gridqH label {
    font-size: calc(15px * 0.9);
  }
  .contactlv form .inquiry_reachMG {
    padding: 14px 20px;
  }
}
header {
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  top: 0;
  position: fixed;
  border-bottom: 1px solid rgb(144, 158, 145, 0.5);
  left: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(135deg, #000000 0%, rgb(144, 158, 145) 100%);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
header:before {
  left: 0;
  width: 100%;
  opacity: 0.4;
  background-size: 200% 100%;
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(144, 158, 145, 0.5),
    transparent
  );
  content: "";
  pointer-events: none;
  top: 0;
  height: 100%;
  animation: shine 8s infinite linear;
}
header .first_classpF {
  width: 100%;
}
header .container {
  padding: 15px 20px;
  margin: 0 auto;
  max-width: 1200px;
}
header .head_primaryfw {
  position: relative;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
header .header_sitebarqA {
  display: flex;
  position: relative;
  gap: 25px;
}
header .header_sitebarqA:before {
  bottom: -8px;
  transform-origin: left;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(144, 158, 145),
    transparent
  );
  content: "";
  transform: scaleX(0);
  transition: transform 0.6s ease;
  width: 100%;
  position: absolute;
}
header .header_sitebarqA:hover:before {
  transform: scaleX(1);
}
header .site_studydm {
  padding: 8px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  font-weight: 400;
}
header .site_studydm:after {
  transform-origin: right;
  position: absolute;
  background: rgb(144, 158, 145);
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  bottom: 0;
  content: "";
  transform: scaleX(0);
  height: 2px;
  left: 0;
}
header .site_studydm:before {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  transform: translateX(-50%);
  height: 4px;
  background: rgb(144, 158, 145);
  left: 50%;
  width: 4px;
  top: 0;
  border-radius: 50%;
  opacity: 0;
}
header .site_studydm:hover {
  color: rgb(144, 158, 145);
  text-shadow: 0 0 8px rgb(144, 158, 145, 0.5);
}
header .site_studydm:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}
header .site_studydm:hover:before {
  opacity: 1;
}
header .nav_trainXl {
  display: flex;
  transition: all 0.3s ease;
  position: relative;
  align-items: center;
  text-decoration: none;
}
header .nav_trainXl svg {
  filter: drop-shadow(0 0 4px rgb(144, 158, 145, 0.5));
  height: 40px;
  transition: transform 0.5s ease;
  width: auto;
}
header .nav_trainXl:hover svg {
  transform: scale(1.05);
}
header .nav_trainXl:after {
  background: rgb(144, 158, 145);
  content: "";
  transform: translateX(-50%);
  width: 0;
  position: absolute;
  height: 1px;
  left: 50%;
  bottom: -8px;
  transition: width 0.4s ease;
}
header .nav_trainXl:hover:after {
  width: 100%;
}
@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@media (max-width: 991px) {
  header .container {
    padding: 12px 15px;
  }
  header .header_sitebarqA {
    gap: 15px;
  }
  header .site_studydm {
    font-size: calc(14px - 1px);
  }
  header .nav_trainXl svg {
    height: 35px;
  }
}
@media (max-width: 767px) {
  header .header_sitebarqA {
    max-width: 300px;
    flex-direction: column;
    background: #000000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    height: 100vh;
    overflow-y: auto;
    transition: right 0.4s ease;
    right: -100%;
    position: fixed;
    width: 80%;
    gap: 20px;
    z-index: 1001;
    top: 0;
    padding: 80px 30px 30px;
  }
  header .menu.active {
    right: 0;
  }
  header .site_studydm {
    width: 100%;
    padding: 10px 5px;
    border-bottom: 1px solid rgb(144, 158, 145, 0.5);
  }
  header .header_sitebarqA:before {
    display: none;
  }
  header .nav_trainXl {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  header .container {
    padding: 10px;
  }
  header .nav_trainXl svg {
    height: 30px;
  }
}
.program_detailsyq {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(
    135deg,
    rgb(191, 196, 171) 0%,
    rgba(245, 245, 245, 0.95) 100%
  );
  overflow: hidden;
}
.program_detailsyq::before {
  top: 0;
  position: absolute;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgb(144, 158, 145, 0.5) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgb(100, 107, 100, 0.5) 0%,
      transparent 25%
    );
  opacity: 0.1;
  content: "";
  width: 100%;
  left: 0;
  z-index: 0;
  height: 100%;
}
.program_detailsyq::after {
  right: -50px;
  height: 200px;
  z-index: 1;
  width: 200px;
  top: -50px;
  transform: rotate(15deg);
  border: 1px solid rgb(144, 158, 145, 0.5);
  position: absolute;
  opacity: 0.2;
  content: "";
}
.program_detailsyq .container {
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.program_detailsyq h2 {
  position: relative;
  font-size: 37px;
  line-height: 1.4;
  transform: translateX(-5px);
  font-weight: 700;
  margin-bottom: 50px;
  color: #000000;
}
.program_detailsyq h2::after {
  width: 80px;
  bottom: -15px;
  height: 3px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  left: 0;
  position: absolute;
  transform: scaleX(1);
  background: rgb(144, 158, 145);
  transform-origin: left center;
  content: "";
}
.program_detailsyq h2:hover::after {
  transform: scaleX(1.5);
}
.program_detailsyq .tech_learnPU {
  gap: 40px;
  position: relative;
  grid-template-columns: 1fr;
  display: grid;
}
.program_detailsyq .thumbnail_imglq {
  position: relative;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  transform: perspective(1000px) rotateY(-2deg);
}
.program_detailsyq .thumbnail_imglq::before {
  content: "";
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.3));
  bottom: 0;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0;
  left: 0;
}
.program_detailsyq .thumbnail_imglq::after {
  width: 120%;
  top: -10%;
  transition: opacity 0.5s ease;
  opacity: 0;
  height: 120%;
  content: "";
  position: absolute;
  left: -10%;
  background: rgb(144, 158, 145);
  mix-blend-mode: overlay;
}
.program_detailsyq .thumbnail_imglq:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(0deg);
}
.program_detailsyq .thumbnail_imglq:hover::after {
  opacity: 0.1;
}
.program_detailsyq .text_stackUb {
  background: #ffffff;
  position: relative;
  transform: translateY(-5px);
  padding: 30px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.program_detailsyq .text_stackUb::before {
  background: rgb(144, 158, 145);
  left: 0;
  position: absolute;
  transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  top: 0;
  content: "";
  height: 0;
  width: 3px;
}
.program_detailsyq .text_stackUb:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}
.program_detailsyq .text_stackUb:hover::before {
  height: 100%;
}
.program_detailsyq .description {
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 14px;
  position: relative;
  color: #000000;
}
.program_detailsyq .description:last-child {
  margin-bottom: 0;
}
.program_detailsyq .description::before {
  height: 5px;
  position: absolute;
  width: 5px;
  opacity: 0.7;
  left: 0;
  top: 0.7em;
  background: rgb(144, 158, 145);
  content: "";
  border-radius: 50%;
}
.program_detailsyq .container:hover .description::before {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .program_detailsyq {
    padding: 120px 0;
  }
  .program_detailsyq h2 {
    font-size: calc(37px * 1.1);
    max-width: 85%;
  }
  .program_detailsyq .tech_learnPU {
    gap: 60px;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
  .program_detailsyq .thumbnail_imglq {
    height: 450px;
  }
  .program_detailsyq .text_stackUb {
    max-height: 450px;
    scrollbar-color: rgb(144, 158, 145, 0.5) rgba(0, 0, 0, 0.05);
    scrollbar-width: thin;
    overflow-y: auto;
    padding: 40px 50px;
  }
  .program_detailsyq .text_stackUb::-webkit-scrollbar {
    width: 6px;
  }
  .program_detailsyq .text_stackUb::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
  }
  .program_detailsyq .text_stackUb::-webkit-scrollbar-thumb {
    background-color: rgb(144, 158, 145, 0.5);
  }
}
@media (min-width: 992px) {
  .program_detailsyq {
    padding: 150px 0;
  }
  .program_detailsyq::before {
    background:
      radial-gradient(
        circle at 10% 30%,
        rgb(144, 158, 145, 0.5) 0%,
        transparent 30%
      ),
      radial-gradient(
        circle at 90% 70%,
        rgb(100, 107, 100, 0.5) 0%,
        transparent 35%
      );
  }
  .program_detailsyq h2 {
    max-width: 70%;
    margin-left: 30px;
    transform: translateX(0);
  }
  .program_detailsyq .tech_learnPU {
    gap: 80px;
  }
  .program_detailsyq .thumbnail_imglq {
    height: 500px;
    transform: perspective(1000px) rotateY(-5deg) translateX(-20px);
    transition:
      transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
      box-shadow 0.8s ease;
  }
  .program_detailsyq .thumbnail_imglq:hover {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
  }
  .program_detailsyq .text_stackUb {
    max-height: 500px;
    transform: translateY(0) translateX(20px);
    padding: 50px 60px;
  }
  .program_detailsyq .text_stackUb:hover {
    transform: translateY(0) translateX(0);
  }
  .program_detailsyq .description {
    font-size: calc(14px * 1.05);
    padding-left: 25px;
  }
  .program_detailsyq .description::before {
    width: 6px;
    left: 10px;
    height: 6px;
  }
}
@media (min-width: 1200px) {
  .program_detailsyq h2 {
    margin-left: 50px;
  }
  .program_detailsyq .tech_learnPU {
    gap: 100px;
  }
  .program_detailsyq .thumbnail_imglq {
    transform: perspective(1200px) rotateY(-8deg) translateX(-30px);
  }
  .program_detailsyq .text_stackUb {
    transform: translateY(0) translateX(30px);
  }
}
@media (max-width: 767px) {
  .program_detailsyq {
    padding: 60px 0;
  }
  .program_detailsyq h2 {
    font-size: calc(37px * 0.9);
    margin-bottom: 30px;
  }
  .program_detailsyq h2::after {
    width: 60px;
    bottom: -10px;
  }
  .program_detailsyq .description {
    font-size: calc(14px * 0.95);
  }
  .program_detailsyq .thumbnail_imglq {
    height: 250px;
    margin-bottom: 20px;
  }
  .program_detailsyq .text_stackUb {
    padding: 25px 20px;
  }
}
.cookie_popup_interruptbL {
  border-radius: 12px;
  font-family: Arial, sans-serif;
  transform: translateX(-50%);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  position: fixed;
  width: 90%;
  align-items: center;
  max-width: 600px;
  bottom: 20px;
  text-align: center;
  background: rgb(191, 196, 171);
  left: 50%;
  flex-direction: column;
  z-index: 1050;
}
.cookie_eductrlLR {
  display: flex;
  z-index: 1;
  align-items: center;
  flex-direction: column;
}
.privacy_ctrlOF {
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}
.privacy_ctrlOF svg,
.privacy_ctrlOF svg path,
.privacy_ctrlOF img {
  height: 80px;
  fill: rgb(144, 158, 145);
  width: 80px;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.cookie_popup_interruptbL h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgb(144, 158, 145);
}
.cookie_popup_interruptbL p {
  margin-bottom: 20px;
  color: #000000;
  font-size: 13px;
}
.cookie_controlzK {
  width: calc(50% - 10px);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 19px;
  background: rgb(144, 158, 145);
  transition:
    background 0.3s ease-in-out,
    transform 0.2s ease-in-out;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin: 5px;
  color: #ffffff;
  padding: 10px 20px;
}
.cookie_controlzK:hover {
  background: rgb(100, 107, 100);
  transform: translateY(-3px);
}
.cookie_button.consent_boxNm {
  background: rgba(0, 0, 0, 0.5);
}
.cookie_button.consent_boxNm:hover {
  background: rgb(100, 107, 100, 0.5);
}
.cookie_popup_interruptbL p a {
  transition: color 0.3s ease-in-out;
  color: rgb(144, 158, 145);
  text-decoration: underline;
}
.cookie_popup_interruptbL p a:hover {
  color: rgb(100, 107, 100);
}
@media only screen and (max-width: 600px) {
  .cookie_popup_interruptbL {
    bottom: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    width: 100%;
  }
  .cookie_eductrlLR {
    padding: 15px;
  }
  .privacy_ctrlOF svg {
    width: 50px;
    height: 50px;
  }
  .cookie_popup_interruptbL h5 {
    font-size: calc(20px - 2px);
  }
  .cookie_popup_interruptbL p {
    font-size: calc(13px - 2px);
  }
  .cookie_controlzK {
    width: calc(100% - 10px);
    padding: 8px 16px;
    font-size: calc(19px - 2px);
  }
}
#cookieInfoPromptBarLt {
  display: none;
}
#cookieInfoPromptBarLt:checked ~ .cookie_popup_interruptbL {
  opacity: 0;
  visibility: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
}


@media screen and (max-width: 768px) {
  header,
  header.first_classpF,
  .first_classpF,
  .first_classpF .container,
  .head_primaryfw {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    z-index: 10 !important;

    width: 100% !important;
    height: auto !important;

    transform: none !important;
  }

  header {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;

    background: var(--dark-color) !important;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35) !important;
  }

  header .first_classpF {
    background: var(--dark-color) !important;
  }

  header .first_classpF .container {
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 0 auto !important;
  }

  header .head_primaryfw {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  header #header_sitebarqA {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    background: var(--dark-var-1-color) !important;

    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    overflow: visible !important;
  }

  header #header_sitebarqA .site_studydm {
    display: block !important;

    width: 100% !important;
    box-sizing: border-box !important;

    margin: 0 !important;
    padding: 14px 18px !important;

    color: var(--white-color) !important;

    background: transparent !important;

    border-bottom: 1px solid var(--dark-var-2-color) !important;

    text-align: left !important;
    text-decoration: none !important;

    font-size: 15px !important;
    line-height: 1.4 !important;

    transition:
      background-color 0.25s ease,
      color 0.25s ease,
      padding-left 0.25s ease !important;
  }

  header #header_sitebarqA .site_studydm:last-child {
    border-bottom: none !important;
  }

  header #header_sitebarqA .site_studydm:hover,
  header #header_sitebarqA .site_studydm:focus {
    color: var(--green-color) !important;
    background: var(--dark-var-2-color) !important;
    padding-left: 24px !important;
  }

  header .nav_trainXl {
    display: block !important;

    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    width: auto !important;
    height: auto !important;

    margin: 15px auto !important;
    padding: 0 !important;

    transform: none !important;

    opacity: 1 !important;
    visibility: visible !important;
  }

  header .nav_trainXl img {
    display: block !important;

    width: 50px !important;
    height: auto !important;

    margin: 0 auto !important;
  }
}