* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 100%;
  margin: auto;
  width: 1155px;
}
.head_learning_96 {
  flex: 1 0 auto;
}
header,
footer {
  width: 100%;
}
svg {
  width: 30px;
  height: 30px;
}
.license_cta_74 {
  flex: 0 0 auto;
}
.wrapper-skeleton_90 {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
html,
body {
  height: 100%;
  font-family: Arial, sans-serif;
  min-height: 100%;
  color: #000000;
}
@media only screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 800px) {
  .container {
    padding: 0 12px;
  }
}
header .top_plank {
  background: rgb(183, 169, 202);
  color: #ffffff;
}
header .top_plank .edu_nav_72 div svg,
header .top_plank .edu_nav_72 div svg path {
  fill: #ffffff;
}
header .top_plank .edu_nav_72 div span {
  color: #ffffff;
}
header .top_plank .edu_nav_72 {
  line-height: 21px;
  flex-wrap: wrap;
  padding: 15px 0 10px 0;
  width: 100%;
  font-size: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
header .top_plank .edu_nav_72 div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 24px;
}
header .top_plank .edu_nav_72 div img,
header .top_plank .edu_nav_72 div svg {
  margin-right: 8px;
  height: 16px;
  width: 16px;
}
.tyDiv_85 {
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    145deg,
    rgb(218, 214, 225) 0%,
    rgba(240, 242, 245, 0.9) 100%
  );
  padding: 7rem 0;
}
.tyDiv_85::before {
  width: 40%;
  position: absolute;
  z-index: 0;
  transform: rotate(15deg) skewX(-15deg);
  height: 70%;
  right: -10%;
  top: -5%;
  opacity: 0.07;
  background: linear-gradient(
    135deg,
    rgb(183, 169, 202, 0.5) 0%,
    rgb(144, 115, 176, 0.5) 100%
  );
  animation: float 15s ease-in-out infinite alternate;
  content: "";
}
.tyDiv_85::after {
  width: 30%;
  left: -5%;
  background: linear-gradient(
    225deg,
    rgb(144, 115, 176, 0.5) 0%,
    rgb(183, 169, 202, 0.5) 100%
  );
  height: 60%;
  position: absolute;
  animation: float 18s ease-in-out infinite alternate-reverse;
  content: "";
  opacity: 0.05;
  bottom: -5%;
  transform: rotate(-10deg) skewX(10deg);
  z-index: 0;
}
.tyDiv_85 .container {
  z-index: 2;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
  position: relative;
}
.tyDiv_85 h2 {
  font-weight: 700;
  line-height: 1.3;
  font-size: 34px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(0);
  color: #000000;
  position: relative;
  animation: slideUp 0.8s 0.2s ease-out forwards;
}
.tyDiv_85 h2::after {
  left: 0;
  animation: expand 1s 0.8s ease-out forwards;
  transform-origin: left;
  position: absolute;
  width: 80px;
  content: "";
  height: 3px;
  bottom: -15px;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    rgb(183, 169, 202) 0%,
    rgb(144, 115, 176) 100%
  );
}
.tyDiv_85 .principles_list_20 {
  opacity: 0;
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.03);
  transform: translateY(20px);
  background: #ffffff;
  border-left: 4px solid rgb(183, 169, 202);
  position: relative;
  animation: fadeSlideUp 1s 0.4s ease-out forwards;
  padding: 3rem;
}
.tyDiv_85 .principles_list_20::before {
  position: absolute;
  width: 150px;
  opacity: 0.1;
  content: "";
  top: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  background: linear-gradient(
    135deg,
    rgb(144, 115, 176, 0.5) 0%,
    transparent 70%
  );
  right: 0;
  height: 150px;
}
.tyDiv_85 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tyDiv_85 li {
  padding-left: 0;
  position: relative;
}
.tyDiv_85 li span {
  font-size: calc(16px + 0.05rem);
  line-height: 1.8;
  font-family: Arial, sans-serif;
  transform: translateY(10px);
  display: block;
  animation: fadeIn 1s 0.7s ease-out forwards;
  color: #000000;
  opacity: 0;
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes float {
  0% {
    transform: rotate(15deg) skewX(-15deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) skewX(-18deg) translateY(-10px);
  }
  100% {
    transform: rotate(15deg) skewX(-15deg) translateY(0);
  }
}
@media screen and (max-width: 992px) {
  .tyDiv_85 {
    padding: 5rem 0;
  }
  .tyDiv_85 h2 {
    font-size: calc(34px - 0.2rem);
    margin-bottom: 2.5rem;
  }
  .tyDiv_85 .principles_list_20 {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .tyDiv_85 {
    padding: 4rem 0;
  }
  .tyDiv_85 h2 {
    font-size: calc(34px - 0.4rem);
    margin-bottom: 2rem;
  }
  .tyDiv_85 h2::after {
    bottom: -12px;
    width: 60px;
  }
  .tyDiv_85 .principles_list_20 {
    padding: 2rem;
  }
  .tyDiv_85 .principles_list_20::before {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 576px) {
  .tyDiv_85 {
    padding: 3rem 0;
  }
  .tyDiv_85 .container {
    padding: 0 1.5rem;
  }
  .tyDiv_85 h2 {
    line-height: 1.4;
    font-size: calc(34px - 0.6rem);
    margin-bottom: 1.8rem;
  }
  .tyDiv_85 h2::after {
    bottom: -10px;
    width: 50px;
    height: 2px;
  }
  .tyDiv_85 .principles_list_20 {
    padding: 1.5rem;
    border-left-width: 3px;
  }
  .tyDiv_85 li span {
    font-size: 16px;
    line-height: 1.7;
  }
}
.price_card_item_08 {
  background: rgb(218, 214, 225);
  overflow: hidden;
  padding: 120px 0;
  position: relative;
}
.price_card_item_08::before {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.05) 0%,
    rgba(var(--secondary-color-rgb), 0.03) 100%
  );
  z-index: 0;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
}
.price_card_item_08 .container {
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.price_card_item_08 .trial_pricing_23 {
  gap: 60px;
  display: grid;
  grid-template-columns: 1fr;
}
.price_card_item_08 .rate_options_78 {
  margin: 0 auto;
  transform: translateY(20px);
  text-align: center;
  max-width: 800px;
  animation: fadeSlideUp 0.8s forwards 0.2s;
  opacity: 0;
}
.price_card_item_08 .rate_options_78 h2 {
  color: #000000;
  font-weight: 700;
  font-size: 38px;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
.price_card_item_08 .rate_options_78 h2::after {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, rgb(183, 169, 202), rgb(144, 115, 176));
  position: absolute;
  transform: translateX(-50%);
  content: "";
  bottom: -10px;
  left: 50%;
}
.price_card_item_08 .price_panel_71 {
  color: #000000;
  margin-top: 30px;
  font-size: calc(15px + 0.1rem);
  line-height: 1.6;
}
.price_card_item_08 .rate_choices_05 {
  animation: fadeSlideUp 0.8s forwards 0.4s;
  margin-top: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  display: grid;
  opacity: 0;
  transform: translateY(30px);
}
.price_card_item_08 .class_rates_86 {
  position: relative;
  display: block;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  text-decoration: none;
  color: inherit;
  will-change: transform;
}
.price_card_item_08 .class_rates_86:hover {
  transform: translateY(-10px) scale(1.02);
}
.price_card_item_08 .fee_deals_60 {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  min-height: 420px;
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex-direction: column;
  position: relative;
}
.price_card_item_08 .class_rates_86:hover .fee_deals_60 {
  box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.15);
}
.price_card_item_08 .class_rates_86:nth-child(odd) .fee_deals_60::before {
  width: 5px;
  transform-origin: bottom;
  background: rgb(183, 169, 202);
  top: 0;
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
}
.price_card_item_08 .class_rates_86:nth-child(even) .fee_deals_60::before {
  width: 5px;
  top: 0;
  right: 0;
  position: absolute;
  height: 100%;
  content: "";
  transform-origin: bottom;
  background: rgb(144, 115, 176);
  transform: scaleY(0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.price_card_item_08 .class_rates_86:hover .fee_deals_60::before {
  transform: scaleY(1);
}
.price_card_item_08 .member_fees_29 {
  position: relative;
  flex: 1;
  padding: 40px 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.price_card_item_08 .member_fees_29 h3 {
  font-weight: 700;
  color: #000000;
  position: relative;
  font-size: calc(24px + 0.2rem);
  display: inline-block;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.price_card_item_08 .class_rates_86:hover .member_fees_29 h3 {
  color: rgb(183, 169, 202);
}
.price_card_item_08 .class_rates_86:nth-child(even):hover .member_fees_29 h3 {
  color: rgb(144, 115, 176);
}
.price_card_item_08 .pricing_options_54 {
  margin: 10px 0 20px;
  padding-bottom: 10px;
  position: relative;
  font-size: calc(24px + 0.5rem);
  display: inline-block;
  color: rgb(183, 169, 202);
  font-weight: 700;
}
.price_card_item_08 .class_rates_86:nth-child(even) .pricing_options_54 {
  color: rgb(144, 115, 176);
}
.price_card_item_08 .pricing_options_54::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  width: 40px;
  height: 3px;
  background: currentColor;
  opacity: 0.6;
}
.price_card_item_08 .member_fees_29 p {
  margin-top: auto;
  overflow-wrap: break-word;
  line-height: 1.6;
  hyphens: auto;
  word-wrap: break-word;
  font-size: 15px;
  word-break: break-word;
  color: #000000;
}
.price_card_item_08 .portrait_image_81 {
  position: relative;
  transition: transform 0.5s ease;
  width: 100%;
  transform-origin: center;
  height: 200px;
}
.price_card_item_08 .class_rates_86:hover .portrait_image_81 {
  transform: scale(1.05);
}
.price_card_item_08 .portrait_image_81::after {
  height: 40%;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  bottom: 0;
  content: "";
  transition: opacity 0.4s ease;
  left: 0;
  opacity: 0;
  width: 100%;
}
.price_card_item_08 .class_rates_86:hover .portrait_image_81::after {
  opacity: 1;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .price_card_item_08 .trial_pricing_23 {
    grid-template-columns: 1fr;
  }
  .price_card_item_08 .rate_choices_05 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .price_card_item_08 {
    padding: 150px 0;
  }
  .price_card_item_08 .trial_pricing_23 {
    gap: 80px;
    grid-template-columns: 1fr;
  }
  .price_card_item_08 .rate_choices_05 {
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
  .price_card_item_08 .fee_deals_60 {
    min-height: 480px;
  }
}
@media (min-width: 1200px) {
  .price_card_item_08 .rate_choices_05 {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .price_card_item_08 {
    padding: 80px 0;
  }
  .price_card_item_08 .rate_options_78 h2 {
    font-size: calc(38px - 0.4rem);
  }
  .price_card_item_08 .price_panel_71 {
    font-size: 15px;
  }
  .price_card_item_08 .member_fees_29 {
    padding: 30px 20px;
  }
  .price_card_item_08 .fee_deals_60 {
    min-height: 400px;
  }
  .price_card_item_08 .portrait_image_81 {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .price_card_item_08 {
    padding: 60px 0;
  }
  .price_card_item_08 .trial_pricing_23 {
    gap: 40px;
  }
  .price_card_item_08 .rate_choices_05 {
    gap: 25px;
  }
  .price_card_item_08 .member_fees_29 h3 {
    font-size: 24px;
  }
  .price_card_item_08 .pricing_options_54 {
    font-size: 24px;
  }
  .price_card_item_08 .member_fees_29 p {
    font-size: calc(15px - 0.1rem);
  }
}
header {
  margin-top: 0;
  overflow: visible;
  position: relative;
  padding: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgb(218, 214, 225);
}
header::before {
  z-index: 0;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background:
    linear-gradient(135deg, transparent 25%, rgba(rgb(183, 169, 202), 0.03) 25%)
      0 0 / 20px 20px,
    linear-gradient(225deg, transparent 25%, rgba(rgb(183, 169, 202), 0.03) 25%)
      0 0 / 20px 20px,
    linear-gradient(315deg, transparent 25%, rgba(rgb(183, 169, 202), 0.03) 25%)
      0 0 / 20px 20px,
    linear-gradient(45deg, transparent 25%, rgba(rgb(183, 169, 202), 0.03) 25%)
      0 0 / 20px 20px;
  content: "";
}
header::after {
  width: 100%;
  position: absolute;
  transform: scaleX(0.7);
  bottom: 0;
  height: 5px;
  transform-origin: center;
  background: linear-gradient(
    to right,
    rgb(183, 169, 202),
    rgb(144, 115, 176),
    rgb(183, 169, 202)
  );
  content: "";
  left: 0;
  transition: transform 0.5s ease;
}
header:hover::after {
  transform: scaleX(1);
}
header .nav_section_91 {
  padding: 1.3rem 2.5rem;
  align-items: center;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
}
header .nav_primary_01 {
  position: relative;
  margin-right: 2rem;
  flex: 0 0 auto;
  perspective: 800px;
}
header .top_class_30 {
  transform-style: preserve-3d;
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
header .top_class_30:hover {
  transform: rotateY(10deg) rotateX(5deg);
}
header .top_class_30::before {
  top: 0;
  width: 100%;
  opacity: 0.1;
  background: rgb(183, 169, 202);
  content: "";
  height: 100%;
  filter: blur(10px);
  transform: translateZ(-10px);
  left: 0;
  position: absolute;
}
header .top_class_30 img {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
  transform: translateZ(20px);
  max-height: 40px;
}
header .main_header_07 {
  list-style: none;
  position: relative;
  margin: 0;
  perspective: 1000px;
  padding: 0;
  display: flex;
  transform-style: preserve-3d;
}
header .main_header_07::before {
  top: 100%;
  transform-origin: top;
  height: 10px;
  position: absolute;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  width: 100%;
  content: "";
  left: 0;
  transform: rotateX(90deg);
}
header .main_learning_03 {
  transform-style: preserve-3d;
  position: relative;
  margin: 0 0.3rem;
}
header .main_learning_03 a {
  background: #ffffff;
  padding: 0.7rem 1.2rem;
  transition: all 0.4s ease;
  align-items: center;
  font-size: 15px;
  justify-content: center;
  color: #000000;
  transform-style: preserve-3d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transform: translateZ(0);
  display: flex;
  border-radius: 10px;
  position: relative;
  text-decoration: none;
  font-weight: 600;
}
header .main_learning_03 a::before {
  background: linear-gradient(
    135deg,
    rgb(183, 169, 202, 0.5) 0%,
    rgb(144, 115, 176, 0.5) 100%
  );
  height: 100%;
  transform: translateZ(-5px);
  position: absolute;
  transition: opacity 0.4s ease;
  content: "";
  opacity: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
}
header .main_learning_03 a:hover {
  color: #ffffff;
  transform: translateZ(15px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
header .main_learning_03 a:hover::before {
  opacity: 1;
}
header .main_learning_03 a::after {
  transition: all 0.4s ease;
  right: 5px;
  bottom: -5px;
  height: 5px;
  content: "";
  position: absolute;
  left: 5px;
  background: rgb(183, 169, 202);
  opacity: 0;
  transform: translateZ(-10px);
}
header .main_learning_03 a:hover::after {
  opacity: 0.3;
  bottom: -8px;
}
header .nav_section_91::before {
  left: 35%;
  position: absolute;
  content: "";
  height: 1px;
  width: 30%;
  background: linear-gradient(
    to right,
    transparent,
    rgb(183, 169, 202),
    transparent
  );
  top: 0;
}
.head_learning_96 {
  background: #ffffff;
  position: relative;
  padding-top: 2rem;
  z-index: 1;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media (min-width: 1400px) {
  header .nav_section_91 {
    margin: 0 auto;
    max-width: 1320px;
  }
  header .main_learning_03 {
    margin: 0 0.5rem;
  }
  header .main_learning_03 a {
    padding: 0.7rem 1.5rem;
  }
}
@media (max-width: 991px) {
  header .nav_section_91 {
    flex-wrap: wrap;
    padding: 1rem 2rem;
  }
  header .nav_primary_01 {
    margin-bottom: 0;
    margin-right: 0;
  }
  header .main_header_07 {
    justify-content: flex-end;
    flex-basis: 100%;
    margin-top: 1rem;
  }
  header .main_learning_03 a {
    font-size: calc(15px - 1px);
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 767px) {
  header {
    padding: 0;
  }
  header .nav_section_91 {
    padding: 0.8rem 1.5rem;
  }
  header .nav_primary_01 {
    max-width: 140px;
  }
  header .top_class_30 img {
    max-height: 35px;
  }
  header .main_header_07 {
    overflow-x: auto;
    margin-top: 0.8rem;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
    scrollbar-width: thin;
  }
  header .main_header_07::-webkit-scrollbar {
    height: 3px;
  }
  header .main_header_07::-webkit-scrollbar-thumb {
    background: rgb(183, 169, 202, 0.5);
    border-radius: 10px;
  }
  header .main_learning_03 {
    margin: 0 0.2rem;
    flex: 0 0 auto;
  }
  header .main_learning_03 a {
    font-size: calc(15px - 2px);
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
  }
}
@media (max-width: 479px) {
  header .nav_section_91 {
    padding: 0.7rem 1.2rem;
  }
  header .nav_primary_01 {
    max-width: 120px;
  }
  header .main_learning_03 a {
    font-size: calc(15px - 3px);
    padding: 0.4rem 0.6rem;
  }
  header::after {
    height: 3px;
  }
}
@supports not (transform-style: preserve-3d) {
  header .top_class_30:hover {
    transform: translateY(-3px);
  }
  header .main_learning_03 a:hover {
    transform: translateY(-3px);
  }
}
.training_specialist_12 {
  overflow: hidden;
  background-color: rgb(218, 214, 225);
  padding: 6rem 0;
  position: relative;
}
.training_specialist_12::before {
  position: absolute;
  top: -5%;
  transform: rotate(-15deg) skewX(15deg);
  filter: blur(25px);
  content: "";
  background: linear-gradient(
    135deg,
    rgb(183, 169, 202, 0.5),
    rgb(144, 115, 176, 0.5)
  );
  z-index: 1;
  width: 45%;
  right: -10%;
  opacity: 0.15;
  height: 70%;
}
.training_specialist_12::after {
  height: 60%;
  bottom: -10%;
  z-index: 1;
  opacity: 0.1;
  transform: rotate(10deg) skewX(-10deg);
  filter: blur(20px);
  width: 35%;
  content: "";
  background: linear-gradient(
    225deg,
    rgb(144, 115, 176, 0.5),
    rgb(183, 169, 202, 0.5)
  );
  left: -5%;
  position: absolute;
}
.training_specialist_12 .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
}
.training_specialist_12 .testimonial_sharing_03 {
  gap: 2.5rem;
  padding: 3rem;
  position: relative;
  transform: perspective(1000px) rotateY(1deg) rotateX(1deg);
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.6s ease;
  display: grid;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: blur(10px);
  grid-template-columns: 1fr;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}
.training_specialist_12 .testimonial_sharing_03:hover {
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
}
.training_specialist_12 .testimonial_sharing_03 > div:first-child {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.training_specialist_12 .testimonial_sharing_03 .portrait_image_81 {
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
  padding-bottom: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateZ(20px);
}
.training_specialist_12 .testimonial_sharing_03 .portrait_image_81::before {
  position: absolute;
  background: linear-gradient(
    to bottom,
    transparent 65%,
    rgb(144, 115, 176, 0.5) 100%
  );
  left: 0;
  opacity: 0.7;
  z-index: 1;
  width: 100%;
  content: "";
  height: 100%;
  top: 0;
}
.training_specialist_12 .testimonial_sharing_03 .portrait_image_81::after {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(
    45deg,
    rgb(183, 169, 202, 0.5) 0%,
    transparent 50%
  );
  opacity: 0.4;
  z-index: 1;
  position: absolute;
}
.training_specialist_12 .testimonial_sharing_03:hover .portrait_image_81 {
  box-shadow:
    0 15px 35px -10px rgba(0, 0, 0, 0.2),
    0 1px 5px rgba(0, 0, 0, 0.1);
  transform: translateZ(30px) scale(1.02);
}
.training_specialist_12 .testimonial_sharing_03 > div:nth-child(2) {
  position: relative;
  text-align: center;
}
.training_specialist_12 .testimonial_sharing_03 .name {
  font-size: calc(18px * 1.1);
  margin-bottom: 0.5rem;
  position: relative;
  color: #000000;
  display: inline-block;
  font-weight: 700;
}
.training_specialist_12 .testimonial_sharing_03 .name::after {
  border-radius: 10px;
  transform: translateX(-50%);
  bottom: -5px;
  width: 35%;
  background: linear-gradient(90deg, rgb(144, 115, 176), rgb(183, 169, 202));
  left: 50%;
  content: "";
  position: absolute;
  height: 3px;
}
.training_specialist_12 .testimonial_sharing_03 > div:nth-child(2) > div {
  color: rgb(144, 115, 176);
  letter-spacing: 0.5px;
  font-size: calc(14px * 0.95);
  margin-top: 0.8rem;
  font-weight: 600;
}
.training_specialist_12 .testimonial_sharing_03 > div:nth-child(3) {
  position: relative;
}
.training_specialist_12 .testimonial_sharing_03 .experience_summary_30 {
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  margin: 0;
  border-left: 3px solid rgb(183, 169, 202, 0.5);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  color: #000000;
}
.training_specialist_12 .testimonial_sharing_03 .experience_summary_30::before {
  color: rgb(183, 169, 202, 0.5);
  position: absolute;
  z-index: -1;
  font-size: 5rem;
  font-family: serif;
  left: -10px;
  content: "";
  opacity: 0.2;
  top: -20px;
}
@media (min-width: 768px) {
  .training_specialist_12 .testimonial_sharing_03 {
    padding: 3.5rem;
    gap: 2rem 3.5rem;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "photo info" "photo quote";
  }
  .training_specialist_12 .testimonial_sharing_03 > div:first-child {
    margin: 0;
    grid-area: photo;
  }
  .training_specialist_12 .testimonial_sharing_03 > div:nth-child(2) {
    grid-area: info;
    align-self: flex-end;
    text-align: left;
  }
  .training_specialist_12 .testimonial_sharing_03 > div:nth-child(3) {
    grid-area: quote;
    align-self: flex-start;
  }
  .training_specialist_12 .testimonial_sharing_03 .name::after {
    transform: none;
    left: 0;
    width: 50px;
  }
  .training_specialist_12 .testimonial_sharing_03 .portrait_image_81 {
    border-radius: 8px;
  }
}
@media (min-width: 992px) {
  .training_specialist_12 {
    padding: 8rem 0;
  }
  .training_specialist_12 .testimonial_sharing_03 {
    padding: 4rem;
    gap: 2.5rem 4rem;
    grid-template-columns: 320px 1fr;
  }
  .training_specialist_12 .testimonial_sharing_03 .name {
    font-size: calc(18px * 1.2);
  }
  .training_specialist_12 .testimonial_sharing_03 > div:nth-child(2) > div {
    font-size: 14px;
  }
  .training_specialist_12 .testimonial_sharing_03 .experience_summary_30 {
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-size: calc(14px * 1.05);
  }
}
@media (max-width: 576px) {
  .training_specialist_12 {
    padding: 4rem 0;
  }
  .training_specialist_12 .testimonial_sharing_03 {
    gap: 1.5rem;
    padding: 2rem;
  }
  .training_specialist_12 .testimonial_sharing_03 .portrait_image_81 {
    max-width: 220px;
  }
  .training_specialist_12 .testimonial_sharing_03 .name {
    font-size: 18px;
  }
  .training_specialist_12 .testimonial_sharing_03 > div:nth-child(2) > div {
    font-size: calc(14px * 0.9);
  }
  .training_specialist_12 .testimonial_sharing_03 .experience_summary_30 {
    line-height: 1.6;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: calc(14px * 0.95);
  }
}
.our_info_86 {
  position: relative;
  background: rgb(218, 214, 225);
  padding: 120px 0;
  isolation: isolate;
  overflow: hidden;
}
.our_info_86::before {
  content: "";
  background:
    repeating-linear-gradient(
      -45deg,
      rgb(183, 169, 202, 0.5) 0,
      rgb(183, 169, 202, 0.5) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      45deg,
      rgb(144, 115, 176, 0.5) 0,
      rgb(144, 115, 176, 0.5) 1px,
      transparent 1px,
      transparent 20px
    );
  position: absolute;
  top: 0;
  opacity: 0.1;
  z-index: -1;
  width: 100%;
  left: 0;
  height: 100%;
}
.our_info_86::after {
  content: "";
  animation: floatGlow 15s infinite alternate ease-in-out;
  position: absolute;
  height: 100%;
  width: 100%;
  right: -50%;
  opacity: 0.05;
  top: -50%;
  z-index: -1;
  filter: blur(60px);
  background: radial-gradient(
    circle at center,
    rgb(183, 169, 202) 0%,
    transparent 70%
  );
}
.our_info_86 .container {
  position: relative;
}
.our_info_86 .send_message_01 {
  gap: 2rem;
  display: grid;
  position: relative;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1fr;
}
.our_info_86 .get_contactus_42 {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.our_info_86 .get_contactus_42:nth-child(1) {
  border-radius: 26px;
  grid-column: 1 / 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  z-index: 2;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid rgb(183, 169, 202);
  grid-row: 1 / 3;
  padding: 3rem;
}
.our_info_86 .get_contactus_42:nth-child(1)::before {
  opacity: 0.2;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgb(183, 169, 202, 0.5) 0%,
    transparent 20%
  );
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 26px;
}
.our_info_86 .get_contactus_42:nth-child(2) {
  border-radius: 26px;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  transform: perspective(1000px) rotateY(-5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.our_info_86 .get_contactus_42:nth-child(2):hover {
  transform: perspective(1000px) rotateY(0deg);
}
.our_info_86 .get_contactus_42 .portrait_image_81 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform: scale(1.05);
}
.our_info_86 .get_contactus_42 .portrait_image_81::after {
  content: "";
  background: linear-gradient(
    to bottom right,
    rgb(183, 169, 202) 0%,
    transparent 100%
  );
  position: absolute;
  opacity: 0.3;
  inset: 0;
  mix-blend-mode: overlay;
}
.our_info_86 .get_contactus_42 .portrait_image_81::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
  z-index: 1;
  position: absolute;
  content: "";
  inset: 0;
}
.our_info_86 .get_contactus_42:nth-child(3) {
  border-radius: 26px;
  background: rgb(183, 169, 202);
  background-position:
    100% 0%,
    0% 0%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background-image:
    radial-gradient(
      circle at top right,
      rgb(144, 115, 176) 0%,
      transparent 80%
    ),
    linear-gradient(135deg, rgb(183, 169, 202) 0%, rgb(183, 169, 202) 100%);
  animation: backgroundShift 15s infinite alternate ease-in-out;
  padding: 2.5rem;
  transform: perspective(1000px) rotateY(5deg);
  grid-row: 2 / 3;
  background-size:
    150% 150%,
    100% 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  grid-column: 2 / 3;
}
.our_info_86 .get_contactus_42:nth-child(3):hover {
  transform: perspective(1000px) rotateY(0deg);
}
.our_info_86 .get_contactus_42 h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
  position: relative;
  letter-spacing: 0.5px;
}
.our_info_86 .get_contactus_42 h2::after {
  content: "";
  background: rgb(144, 115, 176);
  border-radius: 2px;
  height: 4px;
  width: 60px;
  left: 0;
  position: absolute;
  bottom: 0;
}
.our_info_86 .support_info_43 {
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  font-size: calc(17px * 1.2);
  color: rgb(144, 115, 176);
}
.our_info_86 .reach_us_73 {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #000000;
}
.our_info_86 .get_contactus_42 > p {
  align-items: center;
  color: #000000;
  position: relative;
  display: flex;
  margin-bottom: 1.25rem;
}
.our_info_86 .get_contactus_42 > p svg {
  fill: rgb(144, 115, 176);
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(144, 115, 176);
}
.our_info_86 .get_contactus_42 > p svg path {
  fill: rgb(144, 115, 176);
}
.our_info_86 .get_contactus_42 > p span {
  margin-left: 0.5rem;
  font-weight: 600;
}
.our_info_86 .support_now_29 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(5px);
  margin-top: 2.5rem;
}
.our_info_86 .support_now_29::before {
  position: absolute;
  content: "";
  height: 100%;
  border-radius: 10px 0 0 10px;
  top: 0;
  background: rgb(144, 115, 176);
  left: 0;
  width: 4px;
}
.our_info_86 .support_now_29 h3 {
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: rgb(144, 115, 176);
}
.our_info_86 .reach_team_59 {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  display: grid;
  gap: 0.75rem;
}
.our_info_86 .reach_team_59 span {
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  font-size: calc(17px * 0.9);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: #000000;
}
.our_info_86 .reach_team_59 span:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: rgb(144, 115, 176, 0.5);
  transform: translateY(-3px);
}
.our_info_86 .contact_widget_31 {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.our_info_86 .contact_widget_31 a {
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  display: flex;
  position: relative;
  flex-direction: column;
  padding-left: 2.5rem;
}
.our_info_86 .contact_widget_31 a:last-child {
  margin-bottom: 0;
}
.our_info_86 .contact_widget_31 a:hover {
  transform: translateX(5px);
}
.our_info_86 .contact_widget_31 svg {
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  left: 0;
  top: 0.25rem;
}
.our_info_86 .contact_widget_31 svg path {
  fill: #ffffff;
}
.our_info_86 .contact_widget_31 a span {
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: calc(17px * 0.85);
  text-transform: uppercase;
}
.our_info_86 .contact_widget_31 a p {
  position: relative;
  margin-bottom: 0;
  font-weight: 600;
  color: #ffffff;
  font-size: 17px;
}
.our_info_86 .contact_widget_31 a p::after {
  width: 0;
  height: 1px;
  content: "";
  transition: width 0.3s ease;
  left: 0;
  bottom: -5px;
  position: absolute;
  background: #ffffff;
}
.our_info_86 .contact_widget_31 a:hover p::after {
  width: 100%;
}
@keyframes floatGlow {
  0% {
    transform: translate(0, 0);
    opacity: 0.03;
  }
  50% {
    transform: translate(-10%, -10%);
    opacity: 0.05;
  }
  100% {
    transform: translate(-5%, 5%);
    opacity: 0.03;
  }
}
@keyframes backgroundShift {
  0% {
    background-position:
      100% 0%,
      0% 0%;
  }
  50% {
    background-position:
      0% 100%,
      0% 0%;
  }
  100% {
    background-position:
      100% 0%,
      0% 0%;
  }
}
@media (max-width: 1200px) {
  .our_info_86 {
    padding: 80px 0;
  }
  .our_info_86 .send_message_01 {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .our_info_86 .get_contactus_42:nth-child(1) {
    padding: 2.5rem;
  }
}
@media (max-width: 992px) {
  .our_info_86 .send_message_01 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
  .our_info_86 .get_contactus_42:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .our_info_86 .get_contactus_42:nth-child(2) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    transform: perspective(1000px) rotateY(0);
  }
  .our_info_86 .get_contactus_42:nth-child(3) {
    grid-column: 1 / 2;
    transform: perspective(1000px) rotateY(0);
    grid-row: 3 / 4;
  }
}
@media (max-width: 768px) {
  .our_info_86 {
    padding: 60px 0;
  }
  .our_info_86 .get_contactus_42:nth-child(1) {
    padding: 2rem;
  }
  .our_info_86 .get_contactus_42 .portrait_image_81 {
    aspect-ratio: 16/9;
  }
  .our_info_86 .reach_team_59 {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
@media (max-width: 576px) {
  .our_info_86 {
    padding: 40px 0;
  }
  .our_info_86 .get_contactus_42:nth-child(1) {
    padding: 1.5rem;
  }
  .our_info_86 .get_contactus_42 h2 {
    font-size: calc(36px * 0.9);
  }
  .our_info_86 .support_now_29 {
    padding: 1.25rem;
  }
  .our_info_86 .reach_team_59 {
    grid-template-columns: 1fr 1fr;
  }
  .our_info_86 .contact_widget_31 a {
    padding-left: 2rem;
  }
  .our_info_86 .contact_widget_31 svg {
    height: 1.25rem;
    width: 1.25rem;
  }
}
.training_structure_20 {
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgb(218, 214, 225) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  position: relative;
}
.training_structure_20::before {
  z-index: 1;
  left: 0;
  position: absolute;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgb(183, 169, 202) 0%,
    rgb(144, 115, 176) 100%
  );
  content: "";
  right: 0;
  top: 0;
}
.training_structure_20::after {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(rgb(183, 169, 202, 0.5), 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(rgb(144, 115, 176, 0.5), 0.07) 0%,
      transparent 40%
    );
}
.training_structure_20 .container {
  margin: 0 auto;
  z-index: 2;
  position: relative;
  padding: 0 20px;
  max-width: 1200px;
}
.training_structure_20 .principles_list_20 {
  align-items: center;
  position: relative;
  justify-content: center;
  display: flex;
}
.training_structure_20 .principles_list_20 > div {
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateY(-2deg);
  padding: 40px;
  position: relative;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.4),
    box-shadow 0.5s ease;
  background: rgba(255, 255, 255, 0.9);
  max-width: 900px;
}
.training_structure_20 .principles_list_20 > div:hover {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.05);
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}
.training_structure_20 .principles_list_20 > div::before {
  left: -10px;
  border-left: 2px solid rgb(183, 169, 202);
  border-top: 2px solid rgb(183, 169, 202);
  opacity: 0.3;
  height: calc(100% - 60px);
  position: absolute;
  transition: all 0.4s ease;
  top: -10px;
  z-index: -1;
  content: "";
  width: calc(100% - 60px);
}
.training_structure_20 .principles_list_20 > div::after {
  bottom: -10px;
  right: -10px;
  content: "";
  position: absolute;
  transition: all 0.4s ease;
  height: calc(100% - 60px);
  width: calc(100% - 60px);
  border-right: 2px solid rgb(144, 115, 176);
  opacity: 0.3;
  z-index: -1;
  border-bottom: 2px solid rgb(144, 115, 176);
}
.training_structure_20 .principles_list_20 > div:hover::before,
.training_structure_20 .principles_list_20 > div:hover::after {
  transform: scale(1.03);
  opacity: 0.6;
}
.training_structure_20 h3 {
  font-weight: 700;
  transform: translateX(-10px);
  margin-bottom: 25px;
  font-family: Arial, sans-serif;
  color: #000000;
  position: relative;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  font-size: calc(30px * 0.85);
}
.training_structure_20 .principles_list_20 > div:hover h3 {
  transform: translateX(0);
}
.training_structure_20 h3::after {
  content: "";
  left: 0;
  position: absolute;
  height: 3px;
  width: 50px;
  background: linear-gradient(
    90deg,
    rgb(183, 169, 202) 0%,
    rgb(144, 115, 176) 100%
  );
  transition: width 0.4s ease;
  bottom: -8px;
}
.training_structure_20 .principles_list_20 > div:hover h3::after {
  width: 80px;
}
.training_structure_20 p {
  font-family: Arial, sans-serif;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.8;
  opacity: 0.95;
  color: #000000;
  transform: translateY(5px);
}
.training_structure_20 .principles_list_20 > div:hover p {
  opacity: 1;
  transform: translateY(0);
}
.training_structure_20 p span {
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}
.training_structure_20 p span::before {
  position: absolute;
  content: "";
  opacity: 0.5;
  transition: width 0.6s ease;
  background-color: rgb(144, 115, 176);
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
}
.training_structure_20 .principles_list_20 > div:hover p span::before {
  width: 100%;
}
@media (max-width: 991px) {
  .training_structure_20 {
    padding: 80px 0;
  }
  .training_structure_20 .principles_list_20 > div {
    transform: perspective(1000px) rotateY(-1deg);
    padding: 30px;
  }
  .training_structure_20 h3 {
    margin-bottom: 20px;
    font-size: calc(30px * 0.75);
  }
}
@media (max-width: 767px) {
  .training_structure_20 {
    padding: 60px 0;
  }
  .training_structure_20 .principles_list_20 > div {
    transform: none;
    padding: 25px;
  }
  .training_structure_20 .principles_list_20 > div:hover {
    transform: translateY(-3px);
  }
  .training_structure_20 h3 {
    font-size: calc(30px * 0.7);
    transform: none;
    margin-bottom: 15px;
  }
  .training_structure_20 h3::after {
    height: 2px;
  }
  .training_structure_20 p {
    font-size: calc(15px * 0.95);
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .training_structure_20 {
    padding: 40px 0;
  }
  .training_structure_20 .principles_list_20 > div {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
  }
  .training_structure_20 .principles_list_20 > div::before,
  .training_structure_20 .principles_list_20 > div::after {
    display: none;
  }
  .training_structure_20 h3 {
    font-size: calc(30px * 0.65);
    margin-bottom: 15px;
  }
  .training_structure_20 p {
    font-size: calc(15px * 0.9);
    line-height: 1.6;
  }
}
@media (hover: none) {
  .training_structure_20 .principles_list_20 > div {
    transform: none;
  }
  .training_structure_20 .principles_list_20 > div:hover {
    transform: none;
  }
  .training_structure_20 h3 {
    transform: none;
  }
  .training_structure_20 p {
    transform: none;
  }
}
.training_benefits_94 {
  padding: 10rem 0;
  position: relative;
  background: rgb(218, 214, 225);
  overflow: hidden;
}
.training_benefits_94::before {
  z-index: 1;
  opacity: 0.4;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgb(183, 169, 202, 0.5) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgb(144, 115, 176, 0.5) 0%,
      transparent 40%
    );
  width: 100%;
  position: absolute;
}
.training_benefits_94 .principles_list_20 {
  z-index: 5;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
}
.training_benefits_94 h2 {
  width: 60%;
  position: relative;
  line-height: 1.2;
  margin-left: 2rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 2.5rem;
  font-size: calc(33px * 1.5);
}
.training_benefits_94 h2::after {
  bottom: -15px;
  content: "";
  border-radius: 10px;
  width: 120px;
  position: absolute;
  background: rgb(183, 169, 202);
  height: 6px;
  left: 0;
}
.training_benefits_94 .portrait_image_81 {
  height: 80%;
  position: absolute;
  box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.15);
  top: 10%;
  border-radius: 20px 0 0 20px;
  right: 0;
  width: 45%;
  z-index: 2;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.training_benefits_94 .portrait_image_81::after {
  background: linear-gradient(
    90deg,
    rgb(183, 169, 202, 0.5) 0%,
    transparent 100%
  );
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  position: absolute;
  width: 100%;
}
.training_benefits_94 .text_arch_81 {
  position: relative;
  z-index: 3;
  padding-left: 2rem;
  width: 65%;
}
.training_benefits_94 .text_main_holder {
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
  display: grid;
}
.training_benefits_94 .text_main_holder > div {
  display: flex;
  background: #ffffff;
  align-items: flex-start;
  transition: all 0.4s ease;
  padding: 2rem 2.5rem;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.training_benefits_94 .text_main_holder > div::before {
  left: 0;
  content: "";
  height: 100%;
  transition: width 0.4s ease;
  top: 0;
  width: 0;
  background: linear-gradient(90deg, rgb(183, 169, 202) 0%, transparent 100%);
  opacity: 0.1;
  border-radius: 20px;
  z-index: 1;
  position: absolute;
}
.training_benefits_94 .text_main_holder > div:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}
.training_benefits_94 .text_main_holder > div:hover::before {
  width: 100%;
}
.training_benefits_94 .text_main_holder svg {
  width: 3rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  height: 3rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.training_benefits_94 .text_main_holder > div:hover svg {
  transform: rotate(10deg) scale(1.1);
}
.training_benefits_94 .text_main_holder svg path {
  fill: rgb(183, 169, 202);
  transition: fill 0.3s ease;
}
.training_benefits_94 .text_main_holder > div:hover svg path {
  fill: rgb(144, 115, 176);
}
.training_benefits_94 .text_main_holder p {
  font-size: 15px;
  margin: 0;
  z-index: 2;
  line-height: 1.6;
  color: #000000;
  position: relative;
}
@media (max-width: 1200px) {
  .training_benefits_94 h2 {
    font-size: calc(33px * 1.3);
    width: 70%;
  }
  .training_benefits_94 .text_arch_81 {
    width: 70%;
  }
  .training_benefits_94 .portrait_image_81 {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .training_benefits_94 {
    padding: 8rem 0;
  }
  .training_benefits_94 h2 {
    font-size: calc(33px * 1.2);
    width: 80%;
  }
  .training_benefits_94 .text_arch_81 {
    padding-left: 2rem;
    width: 80%;
    padding-right: 2rem;
  }
  .training_benefits_94 .text_main_holder {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .training_benefits_94 .portrait_image_81 {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 768px) {
  .training_benefits_94 {
    padding: 7rem 0 20rem;
  }
  .training_benefits_94 .principles_list_20 {
    flex-direction: column;
    display: flex;
  }
  .training_benefits_94 h2 {
    width: auto;
    margin-right: 2rem;
    font-size: 33px;
    margin-left: 2rem;
  }
  .training_benefits_94 .text_arch_81 {
    padding: 0 2rem;
    width: auto;
  }
  .training_benefits_94 .portrait_image_81 {
    border-radius: 20px;
    width: 90%;
    top: auto;
    right: auto;
    height: 300px;
    position: relative;
    margin: 2rem auto 0;
    clip-path: none;
  }
  .training_benefits_94 .text_main_holder > div {
    padding: 1.8rem 2rem;
  }
}
@media (max-width: 576px) {
  .training_benefits_94 {
    padding: 5rem 0 18rem;
  }
  .training_benefits_94 h2 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .training_benefits_94 .text_arch_81 {
    padding: 0 1.5rem;
  }
  .training_benefits_94 .text_main_holder > div {
    padding: 1.5rem;
  }
  .training_benefits_94 .text_main_holder svg {
    width: 2.5rem;
    margin-right: 1rem;
    height: 2.5rem;
  }
  .training_benefits_94 .portrait_image_81 {
    height: 250px;
  }
}
footer {
  perspective: 1000px;
  position: relative;
  z-index: 1;
}
footer::before {
  z-index: -2;
  top: 0;
  background: linear-gradient(
    135deg,
    rgb(144, 115, 176, 0.5) 0%,
    rgb(183, 169, 202, 0.5) 100%
  );
  left: 0;
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
}
footer::after {
  left: 0;
  bottom: 0;
  position: absolute;
  background:
    radial-gradient(
      circle at 20% 20%,
      transparent 0,
      transparent 80px,
      rgba(255, 255, 255, 0.03) 81px
    ),
    radial-gradient(
      circle at 80% 40%,
      transparent 0,
      transparent 120px,
      rgba(255, 255, 255, 0.03) 121px
    ),
    radial-gradient(
      circle at 40% 70%,
      transparent 0,
      transparent 100px,
      rgba(255, 255, 255, 0.03) 101px
    );
  top: 0;
  content: "";
  right: 0;
  z-index: -1;
}
.license_cta_74 {
  color: #ffffff;
  padding: 5rem 0 2.5rem;
  position: relative;
}
.license_cta_74::before {
  top: 0;
  left: 0;
  height: 20px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    rgb(183, 169, 202) 0px,
    rgb(183, 169, 202) 40px,
    rgb(144, 115, 176) 40px,
    rgb(144, 115, 176) 80px
  );
  position: absolute;
  width: 100%;
}
.license_cta_74 .container {
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  display: flex;
  gap: 4rem;
}
.license_cta_74 .company_holder {
  padding: 2rem;
  border-radius: 0;
  position: relative;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 6px solid rgb(183, 169, 202);
  background: rgba(26, 25, 25, 0.651);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  flex: 1 1 380px;
  transform: rotateX(5deg);
}
.license_cta_74 .company_holder:hover {
  transform: rotateX(0deg);
}
.license_cta_74 .company_holder h3 {
  position: relative;
  font-weight: 700;
  transform: translateZ(20px);
  letter-spacing: 1px;
  display: inline-block;
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: 29px;
}
.license_cta_74 .company_holder h3::before {
  width: 30px;
  left: -10px;
  height: 30px;
  border-top: 3px solid #ffffff;
  content: "";
  top: -10px;
  position: absolute;
  border-left: 3px solid #ffffff;
}
.license_cta_74 .company_holder h3::after {
  position: absolute;
  right: -10px;
  height: 30px;
  border-right: 3px solid #ffffff;
  width: 30px;
  border-bottom: 3px solid #ffffff;
  content: "";
  bottom: -10px;
}
.license_cta_74 .recycle_info_31 {
  padding: 1.5rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  line-height: 1.6;
  border-radius: 10px;
  font-size: 14px;
  transform: translateZ(10px);
}
.license_cta_74 .comm_guide_40 {
  min-width: 400px;
  flex: 1 1 calc(100% - 480px);
}
.license_cta_74 .nav_know_28 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.license_cta_74 .main_header_07 {
  transition: all 0.4s ease;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-5deg);
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 220px;
}
.license_cta_74 .main_header_07:hover {
  transform: rotateX(0deg);
}
.license_cta_74 .main_header_07 h5 {
  color: #ffffff;
  min-width: 200px;
  background: rgb(144, 115, 176, 0.5);
  position: relative;
  padding: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  display: inline-block;
  font-weight: 600;
  transform: translateZ(15px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  font-size: 20px;
}
.license_cta_74 .main_header_07 h5::after {
  bottom: -5px;
  right: 0;
  position: absolute;
  left: 0;
  content: "";
  background: rgb(144, 115, 176);
  height: 5px;
}
.license_cta_74 .main_header_07 .nav_know_28 {
  border-radius: 10px;
  display: flex;
  background: rgba(26, 25, 25, 0.651);
  flex-direction: column;
  transform: translateZ(5px);
  gap: 1rem;
  padding: 1rem;
}
.license_cta_74 .main_header_07 .nav_know_28 a {
  transform: translateZ(10px);
  text-decoration: none;
  display: block;
  color: #ffffff;
  transition: all 0.3s ease;
  overflow: hidden;
  font-size: 14px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.7rem 1rem;
  border-radius: 10px;
}
.license_cta_74 .main_header_07 .nav_know_28 a::before {
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  content: "";
  height: 100%;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: -100%;
}
.license_cta_74 .main_header_07 .nav_know_28 a:hover {
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: rgb(144, 115, 176, 0.5);
}
.license_cta_74 .main_header_07 .nav_know_28 a:hover::before {
  left: 100%;
}
.facebook_cta_57 {
  background: rgb(144, 115, 176, 0.5);
  transform-style: preserve-3d;
  perspective: 1000px;
  margin-top: 3rem;
  padding: 2rem 0;
  position: relative;
}
.facebook_cta_57::before {
  transform-origin: bottom;
  background: rgb(144, 115, 176);
  width: 100%;
  transform: rotateX(45deg);
  top: -20px;
  left: 0;
  content: "";
  position: absolute;
  height: 20px;
}
.facebook_cta_57 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.facebook_cta_57 .conduct_code_13 {
  transform: translateZ(5px);
  font-size: 13px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 2rem;
  text-align: center;
}
@media (max-width: 1200px) {
  .license_cta_74 .container {
    gap: 3rem;
  }
  .license_cta_74 .company_holder {
    flex: 1 1 350px;
  }
  .license_cta_74 .comm_guide_40 {
    flex: 1 1 calc(100% - 430px);
    min-width: 350px;
  }
  .license_cta_74 .nav_know_28 {
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .license_cta_74 {
    padding: 4rem 0 2rem;
  }
  .license_cta_74 .container {
    flex-direction: column;
    gap: 3rem;
  }
  .license_cta_74 .company_holder,
  .license_cta_74 .comm_guide_40 {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .license_cta_74 .main_header_07 {
    min-width: 220px;
    flex: 1 1 calc(50% - 1.5rem);
  }
  .license_cta_74 .company_holder,
  .license_cta_74 .main_header_07 {
    transform: none;
  }
}
@media (max-width: 768px) {
  .license_cta_74 {
    padding: 3.5rem 0 1.5rem;
  }
  .license_cta_74 .nav_know_28 {
    gap: 1.5rem;
  }
  .license_cta_74 .company_holder h3 {
    font-size: calc(29px - 2px);
  }
  .license_cta_74 .company_holder h3::before,
  .license_cta_74 .company_holder h3::after {
    height: 20px;
    width: 20px;
  }
  .facebook_cta_57 {
    margin-top: 2rem;
  }
  .facebook_cta_57::before {
    top: -15px;
    height: 15px;
  }
}
@media (max-width: 576px) {
  .license_cta_74 {
    padding: 3rem 0 1rem;
  }
  .license_cta_74 .main_header_07 {
    min-width: 100%;
    flex: 1 1 100%;
  }
  .license_cta_74 .nav_know_28 {
    gap: 0.7rem;
  }
  .license_cta_74 .main_header_07 .nav_know_28 a {
    padding: 0.6rem 0.8rem;
  }
  .facebook_cta_57 {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }
  .facebook_cta_57::before {
    display: none;
  }
}
@media (max-width: 420px) {
  .license_cta_74::before {
    height: 10px;
  }
  .license_cta_74 .company_holder h3::before,
  .license_cta_74 .company_holder h3::after {
    display: none;
  }
  .license_cta_74 .main_header_07 h5 {
    width: 100%;
    min-width: auto;
  }
  .facebook_cta_57 .conduct_code_13 {
    padding: 0.7rem 1.5rem;
    width: 90%;
  }
}
.cookie_popup_warning_79 {
  bottom: 0;
  animation: fadeInUp 0.5s ease-out;
  border-top: 1px solid rgb(183, 169, 202);
  background-color: rgb(218, 214, 225);
  padding: 20px 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}
.cookie_popup_warning_79 .cookie_review_37 {
  flex-shrink: 0;
  transform-origin: center;
  animation: logoScale 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  margin-right: 20px;
}
.cookie_popup_warning_79 .cookie_review_37 svg {
  fill: rgb(183, 169, 202);
  height: 60px;
  width: 60px;
}
@keyframes logoScale {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.cookie_popup_warning_79 .gdpr_banner_71 {
  flex-grow: 1;
}
.cookie_popup_warning_79 .gdpr_banner_71 h5 {
  margin-bottom: 6px;
  font-size: 21px;
  color: rgb(183, 169, 202);
}
.cookie_popup_warning_79 .gdpr_banner_71 p {
  line-height: 1.5;
  font-size: 12px;
  color: #000000;
  margin: 0;
}
.cookie_popup_warning_79 .cookie_screen_51 {
  font-size: 17px;
  padding: 10px 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  color: #ffffff;
  margin-top: 20px;
  margin-right: 15px;
  display: inline-block;
  text-decoration: none;
  background-color: rgb(183, 169, 202);
  border-radius: 5px;
}
.cookie_popup_warning_79 .cookie_screen_51:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.cookie_popup_warning_79 .cookie_screen_51:active {
  box-shadow: none;
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .cookie_popup_warning_79 .cookie_review_37 {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .cookie_popup_warning_79 .cookie_screen_51 {
    margin-left: 0;
    width: 48%;
    text-align: center;
  }
}
#cookieInfoPromptBar_21 {
  display: none;
}
#cookieInfoPromptBar_21:checked ~ .cookie_popup_warning_79 {
  visibility: hidden;
  opacity: 0;
}
.contact_section_26 {
  padding: 100px 0;
  position: relative;
  background-color: rgb(218, 214, 225);
  overflow: hidden;
}
.contact_section_26::before {
  background: linear-gradient(
    120deg,
    rgb(183, 169, 202, 0.5) 0%,
    transparent 75%
  );
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  content: "";
}
.contact_section_26::after {
  background: linear-gradient(
    240deg,
    rgb(144, 115, 176, 0.5) 0%,
    transparent 70%
  );
  content: "";
  opacity: 0.1;
  bottom: 0;
  height: 70%;
  right: 0;
  width: 70%;
  position: absolute;
}
.contact_section_26 .container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.contact_section_26 h2 {
  position: relative;
  font-weight: 700;
  font-size: 33px;
  margin-bottom: 15px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #000000;
}
.contact_section_26 .help_card_63 {
  background: #ffffff;
  flex-direction: row-reverse;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  flex-wrap: wrap;
  overflow: hidden;
  display: flex;
}
.contact_section_26 .portrait_image_81 {
  min-height: 500px;
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
}
.contact_section_26 .portrait_image_81::after {
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.4));
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
  content: "";
  bottom: 0;
}
.contact_section_26 .inquiry_grid_62 {
  position: relative;
  padding: 60px;
  flex: 0 0 60%;
}
.contact_section_26 .inquiry_grid_62::before {
  height: calc(100% - 80px);
  top: 40px;
  content: "";
  left: 0;
  background: linear-gradient(
    to bottom,
    rgb(183, 169, 202),
    rgb(144, 115, 176)
  );
  position: absolute;
  width: 5px;
  border-radius: 2.5px;
}
.contact_section_26 form {
  width: 100%;
  padding-left: 25px;
}
.contact_section_26 form h3 {
  font-size: 24px;
  color: #000000;
  font-family: Arial, sans-serif;
  margin-bottom: 35px;
  font-weight: 600;
}
.contact_section_26 form input[type="text"] {
  font-family: Arial, sans-serif;
  width: 100%;
  padding: 18px 25px;
  margin-bottom: 20px;
  background: rgb(218, 214, 225);
  color: #000000;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  font-size: 15px;
}
.contact_section_26 form input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgb(183, 169, 202, 0.5);
  background: rgba(rgb(183, 169, 202), 0.05);
}
.contact_section_26 form input[type="text"]::placeholder {
  color: rgba(#000000, 0.4);
}
.contact_section_26 .inquiry_info_50 {
  align-items: flex-start;
  display: flex;
  margin: 10px 0 30px;
}
.contact_section_26 .inquiry_info_50 input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.contact_section_26 .inquiry_info_50 label {
  cursor: pointer;
  line-height: 1.5;
  color: #000000;
  padding-left: 35px;
  font-size: 14px;
  position: relative;
}
.contact_section_26 .inquiry_info_50 label::before {
  width: 22px;
  transition: all 0.2s ease;
  height: 22px;
  position: absolute;
  border: 2px solid rgb(183, 169, 202, 0.5);
  left: 0;
  border-radius: 10px;
  content: "";
  top: 2px;
}
.contact_section_26
  .inquiry_info_50
  input[type="checkbox"]:checked
  + label::before {
  border-color: rgb(183, 169, 202);
  background-color: rgb(183, 169, 202);
}
.contact_section_26
  .inquiry_info_50
  input[type="checkbox"]:checked
  + label::after {
  width: 6px;
  left: 8px;
  transform: rotate(45deg);
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  top: 9px;
  position: absolute;
  height: 11px;
  content: "";
}
.contact_section_26 .inquiry_info_50 label a {
  text-decoration: none;
  color: rgb(183, 169, 202);
  transition: all 0.3s ease;
}
.contact_section_26 .inquiry_info_50 label a:hover {
  text-decoration: underline;
  color: rgb(144, 115, 176);
}
.contact_section_26 form .support_query_62 {
  padding: 15px 35px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: #ffffff;
  position: relative;
  background: linear-gradient(45deg, rgb(183, 169, 202), rgb(144, 115, 176));
  display: inline-block;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
.contact_section_26 form .support_query_62::before {
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  height: 120%;
  transform: rotate(45deg) translateX(-200%);
  top: -10%;
  left: -10%;
  position: absolute;
  content: "";
  width: 120%;
}
.contact_section_26 form .support_query_62:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(rgb(183, 169, 202), 0.3);
}
.contact_section_26 form .support_query_62:hover::before {
  transform: rotate(45deg) translateX(200%);
}
.contact_section_26 svg {
  width: 22px;
  height: 22px;
  fill: rgb(183, 169, 202);
}
.contact_section_26 svg path {
  fill: rgb(183, 169, 202);
  transition: fill 0.3s ease;
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.1;
  }
}
@media screen and (max-width: 1024px) {
  .contact_section_26 .inquiry_grid_62 {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 991px) {
  .contact_section_26 .portrait_image_81 {
    min-height: 300px;
    flex: 0 0 100%;
  }
  .contact_section_26 .inquiry_grid_62 {
    flex: 0 0 100%;
  }
  .contact_section_26 .inquiry_grid_62::before {
    left: 40px;
    background: linear-gradient(
      to right,
      rgb(183, 169, 202),
      rgb(144, 115, 176)
    );
    width: calc(100% - 80px);
    top: 0;
    height: 5px;
  }
  .contact_section_26 form {
    padding-left: 0;
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact_section_26 {
    padding: 70px 0;
  }
  .contact_section_26 .portrait_image_81 {
    min-height: 250px;
  }
  .contact_section_26 .inquiry_grid_62 {
    padding: 40px 30px;
  }
  .contact_section_26 .inquiry_grid_62::before {
    width: calc(100% - 60px);
    left: 30px;
  }
}
@media screen and (max-width: 480px) {
  .contact_section_26 {
    padding: 50px 0;
  }
  .contact_section_26 h2 {
    font-size: calc(33px * 0.8);
  }
  .contact_section_26 .portrait_image_81 {
    min-height: 200px;
  }
  .contact_section_26 .inquiry_grid_62 {
    padding: 30px 20px;
  }
  .contact_section_26 .inquiry_grid_62::before {
    left: 20px;
    width: calc(100% - 40px);
  }
  .contact_section_26 form h3 {
    margin-bottom: 25px;
    font-size: calc(24px * 0.9);
  }
  .contact_section_26 form input[type="text"] {
    padding: 15px 20px;
  }
  .contact_section_26 form .support_query_62 {
    text-align: center;
    width: 100%;
  }
}
.program_information_92 {
  position: relative;
  background-color: rgb(144, 115, 176);
  overflow: hidden;
  padding: 120px 0;
}
.program_information_92::before {
  top: 0;
  z-index: 1;
  position: absolute;
  height: 100%;
  content: "";
  left: 0;
  background:
    radial-gradient(
      ellipse at bottom right,
      rgb(183, 169, 202, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at top left,
      rgb(144, 115, 176, 0.5) 0%,
      transparent 60%
    );
  width: 100%;
}
.program_information_92::after {
  background-size: 50px 50px;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-image:
    linear-gradient(
      0deg,
      transparent 24%,
      rgba(255, 255, 255, 0.02) 25%,
      rgba(255, 255, 255, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(255, 255, 255, 0.02) 75%,
      rgba(255, 255, 255, 0.02) 76%,
      transparent 77%
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(255, 255, 255, 0.02) 25%,
      rgba(255, 255, 255, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(255, 255, 255, 0.02) 75%,
      rgba(255, 255, 255, 0.02) 76%,
      transparent 77%
    );
  content: "";
  height: 100%;
}
.program_information_92 .container {
  position: relative;
  z-index: 2;
}
.program_information_92 .ready_skills_51 {
  display: flex;
  gap: 60px;
  position: relative;
  flex-direction: column;
}
.program_information_92 .text_arch_81 {
  display: grid;
  order: 2;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.program_information_92 .text_arch_81 h2 {
  grid-column: 1 / -1;
  padding-bottom: 20px;
  font-weight: 700;
  position: relative;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  font-size: 44px;
}
.program_information_92 .text_arch_81 h2::after {
  bottom: 0;
  background: linear-gradient(90deg, rgb(183, 169, 202), rgb(144, 115, 176));
  border-radius: 10px;
  position: absolute;
  transform: translateX(-50%);
  width: 100px;
  content: "";
  left: 50%;
  height: 3px;
}
.program_information_92 .text_arch_81 .description {
  line-height: 1.8;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  color: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 29px;
  padding: 25px;
  backdrop-filter: blur(10px);
  margin: 0;
  position: relative;
}
.program_information_92 .text_arch_81 .description:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.program_information_92 .text_arch_81 .description::before {
  position: absolute;
  height: 4px;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  background: rgb(183, 169, 202);
}
.program_information_92 .text_arch_81 .description:last-of-type::before {
  background: rgb(144, 115, 176);
}
.program_information_92 .text_arch_81 .description::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  top: 0;
  height: 100%;
}
.program_information_92 .portrait_image_81 {
  order: 1;
  height: 400px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-radius: 29px;
}
.program_information_92 .portrait_image_81::before {
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
  z-index: 1;
  inset: 0;
  position: absolute;
  content: "";
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float-tech {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(15px) rotate(-5deg);
  }
}
@keyframes scan-move {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .program_information_92 .ready_skills_51 {
    gap: 80px;
  }
  .program_information_92 .portrait_image_81 {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .program_information_92 {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .program_information_92 {
    padding: 60px 0;
  }
  .program_information_92 .text_arch_81 {
    grid-template-columns: 1fr;
  }
  .program_information_92 .text_arch_81 h2 {
    font-size: calc(44px * 0.9);
  }
  .program_information_92 .portrait_image_81 {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .program_information_92 {
    padding: 40px 0;
  }
  .program_information_92 .ready_skills_51 {
    gap: 40px;
  }
  .program_information_92 .text_arch_81 h2 {
    font-size: calc(44px * 0.8);
    padding-bottom: 15px;
  }
  .program_information_92 .text_arch_81 h2::after {
    width: 80px;
  }
  .program_information_92 .text_arch_81 .description {
    padding: 20px;
  }
  .program_information_92 .portrait_image_81 {
    height: 250px;
  }
}
.sign_up_now_34 {
  z-index: 1;
  background: linear-gradient(
    125deg,
    rgb(144, 115, 176) 0%,
    rgb(183, 169, 202) 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.sign_up_now_34::before {
  height: 100%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgb(183, 169, 202, 0.5) 0deg,
    transparent 5deg,
    transparent 55deg,
    rgb(183, 169, 202, 0.5) 60deg
  );
  animation: rotatePortal 20s linear infinite;
  left: 0;
  opacity: 0.05;
  z-index: -1;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
}
.sign_up_now_34::after {
  width: 200%;
  animation: rotatePortalReverse 30s linear infinite;
  height: 200%;
  left: -50%;
  opacity: 0.1;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgb(144, 115, 176) 0deg,
    rgb(183, 169, 202) 120deg,
    rgb(144, 115, 176) 240deg,
    rgb(183, 169, 202) 360deg
  );
  top: -50%;
  z-index: -2;
  content: "";
  position: absolute;
}
.sign_up_now_34 .principles_list_20 {
  z-index: 2;
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  overflow: hidden;
  border-radius: 17px;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  max-width: 1000px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sign_up_now_34 .principles_list_20::before {
  content: "";
  filter: blur(20px);
  position: absolute;
  background: linear-gradient(
    45deg,
    rgb(183, 169, 202, 0.5),
    rgb(144, 115, 176, 0.5),
    rgb(183, 169, 202, 0.5)
  );
  animation: gradientFlow 8s ease infinite;
  right: -10px;
  bottom: -10px;
  opacity: 0.2;
  left: -10px;
  z-index: -1;
  top: -10px;
}
.sign_up_now_34 .principles_list_20::after {
  left: 0;
  width: 100%;
  position: absolute;
  z-index: -1;
  content: "";
  background-size: 40px 40px;
  animation: gridScale 15s ease infinite;
  opacity: 0.2;
  background:
    linear-gradient(
      0deg,
      transparent 49.5%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50.5%
    ),
    linear-gradient(
      90deg,
      transparent 49.5%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 50.5%
    );
  top: 0;
  height: 100%;
}
.sign_up_now_34 h3 {
  margin-bottom: 60px;
  color: #ffffff;
  font-size: 28px;
  position: relative;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 10px #ffffff;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
}
.sign_up_now_34 h3::before {
  left: 0;
  filter: blur(15px);
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0.1;
  position: absolute;
  content: "";
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: -1;
  background: radial-gradient(circle at center, #ffffff 0%, transparent 70%);
}
.sign_up_now_34 h3::after {
  content: "";
  bottom: -80px;
  height: 60px;
  left: 50%;
  width: 60px;
  animation: pulseCircle 4s ease-in-out infinite;
  box-shadow: 0 0 20px #ffffff;
  transform: translateX(-50%);
  border: 1px solid #ffffff;
  opacity: 0.1;
  position: absolute;
  border-radius: 50%;
}
.sign_up_now_34 .help_form_54 {
  margin-top: 30px;
  letter-spacing: 3px;
  display: inline-block;
  padding: 20px 55px;
  font-weight: 700;
  position: relative;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 0 15px #ffffff;
  font-size: 15px;
  transition: all 0.4s ease;
  background: #ffffff;
  border-radius: 17px;
  z-index: 1;
  color: rgb(183, 169, 202);
  text-decoration: none;
  overflow: hidden;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}
.sign_up_now_34 .help_form_54::before {
  top: 0;
  height: 100%;
  transition: opacity 0.4s ease;
  left: 0;
  width: 100%;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at center, #ffffff 0%, transparent 70%);
  position: absolute;
  z-index: -1;
}
.sign_up_now_34 .help_form_54::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, transparent, #ffffff, transparent);
  height: 300%;
  transform: translateX(-50%) rotate(20deg);
  transition: all 0.6s ease;
  left: 50%;
  opacity: 0;
  top: -100%;
  width: 15px;
}
.sign_up_now_34 .help_form_54:hover {
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.2),
    0 0 30px #ffffff;
  color: rgb(183, 169, 202);
  transform: translateY(-5px) scale(1.05);
}
.sign_up_now_34 .help_form_54:hover::before {
  opacity: 0.5;
  animation: pulseGlow 2s ease-in-out infinite;
}
.sign_up_now_34 .help_form_54:hover::after {
  opacity: 0.6;
  animation: lightBeam 1.5s ease-in-out;
}
@media screen and (max-width: 992px) {
  .sign_up_now_34 {
    padding: 100px 0;
  }
  .sign_up_now_34 .principles_list_20 {
    max-width: 90%;
    padding: 50px 30px;
  }
  .sign_up_now_34 h3 {
    margin-bottom: 50px;
    font-size: calc(28px * 0.9);
  }
  .sign_up_now_34 h3::after {
    width: 50px;
    bottom: -70px;
    height: 50px;
  }
  .sign_up_now_34 .help_form_54 {
    padding: 18px 50px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .sign_up_now_34 {
    padding: 80px 0;
  }
  .sign_up_now_34 .principles_list_20 {
    padding: 40px 25px;
  }
  .sign_up_now_34 h3 {
    margin-bottom: 45px;
    letter-spacing: 3px;
    font-size: calc(28px * 0.8);
  }
  .sign_up_now_34 h3::after {
    bottom: -60px;
    height: 40px;
    width: 40px;
  }
  .sign_up_now_34 .help_form_54 {
    letter-spacing: 2px;
    margin-top: 20px;
    padding: 16px 45px;
    font-size: calc(15px * 0.95);
  }
}
@media screen and (max-width: 576px) {
  .sign_up_now_34 {
    padding: 60px 0;
  }
  .sign_up_now_34 .principles_list_20 {
    padding: 30px 20px;
  }
  .sign_up_now_34 h3 {
    letter-spacing: 2px;
    font-size: calc(28px * 0.7);
    margin-bottom: 40px;
  }
  .sign_up_now_34 h3::after {
    bottom: -50px;
    height: 30px;
    width: 30px;
  }
  .sign_up_now_34 .help_form_54 {
    letter-spacing: 1px;
    margin-top: 15px;
    font-size: calc(15px * 0.9);
    padding: 14px 35px;
  }
}
@keyframes rotatePortal {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes rotatePortalReverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gridScale {
  0% {
    background-size: 40px 40px;
    opacity: 0.1;
  }
  50% {
    background-size: 45px 45px;
    opacity: 0.2;
  }
  100% {
    background-size: 40px 40px;
    opacity: 0.1;
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 0.1;
    filter: blur(15px);
  }
  50% {
    opacity: 0.2;
    filter: blur(20px);
  }
  100% {
    opacity: 0.1;
    filter: blur(15px);
  }
}
@keyframes pulseCircle {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.1;
  }
}
@keyframes lightBeam {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(20deg);
  }
  25% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateX(300%) rotate(20deg);
  }
}
.future_members_10 {
  overflow: hidden;
  background: rgb(218, 214, 225);
  padding: 100px 0;
  position: relative;
}
.future_members_10::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  top: 0;
  z-index: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgb(183, 169, 202, 0.5) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgb(144, 115, 176, 0.5) 0%,
      transparent 40%
    );
  content: "";
}
.future_members_10 .container {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 1;
}
.future_members_10 .principles_list_20 {
  padding: 50px;
  background: rgb(218, 214, 225);
  border-radius: 23px;
  position: relative;
  box-shadow:
    20px 20px 60px rgba(0, 0, 0, 0.1),
    -20px -20px 60px rgba(255, 255, 255, 0.8);
}
.future_members_10 h4 {
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  position: relative;
  font-size: 36px;
}
.future_members_10 h4::after {
  transform: translateX(-50%);
  height: 4px;
  border-radius: 2px;
  position: absolute;
  width: 80px;
  left: 50%;
  content: "";
  background: linear-gradient(90deg, rgb(183, 169, 202), rgb(144, 115, 176));
  bottom: -15px;
}
.future_members_10 div {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
}
.future_members_10 div p {
  border-radius: 23px;
  font-size: 16px;
  position: relative;
  display: flex;
  padding: 25px;
  align-items: center;
  background: rgb(218, 214, 225);
  min-width: 250px;
  line-height: 1.6;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.05),
    -8px -8px 16px rgba(255, 255, 255, 0.8),
    inset 1px 1px 1px rgba(255, 255, 255, 0.3);
  margin: 0;
  flex: 1 1 calc(33.333% - 20px);
  color: #000000;
}
.future_members_10 div p:hover {
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.08),
    -12px -12px 24px rgba(255, 255, 255, 0.9),
    inset 1px 1px 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}
.future_members_10 div p::before {
  background: linear-gradient(180deg, rgb(183, 169, 202), rgb(144, 115, 176));
  top: 0;
  width: 5px;
  position: absolute;
  opacity: 0.7;
  border-radius: 5px 0 0 5px;
  left: 0;
  content: "";
  height: 100%;
}
.future_members_10 div p svg {
  background: rgb(218, 214, 225);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
  width: 40px;
  padding: 8px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-right: 20px;
}
.future_members_10 div p:hover svg {
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.15),
    -6px -6px 12px rgba(255, 255, 255, 0.9),
    inset 1px 1px 1px rgba(255, 255, 255, 0.4);
  transform: rotate(10deg);
}
.future_members_10 div p svg path {
  transition: fill 0.3s ease;
  fill: rgb(183, 169, 202);
}
.future_members_10 div p:hover svg path {
  fill: rgb(144, 115, 176);
}
@media (max-width: 1100px) {
  .future_members_10 div p {
    flex: 1 1 calc(50% - 15px);
  }
}
@media (max-width: 991px) {
  .future_members_10 {
    padding: 80px 0;
  }
  .future_members_10 .principles_list_20 {
    padding: 40px 30px;
  }
  .future_members_10 h4 {
    margin-bottom: 40px;
    font-size: calc(36px - 2px);
  }
  .future_members_10 div {
    gap: 20px;
  }
  .future_members_10 div p {
    padding: 20px;
  }
  .future_members_10 div p svg {
    height: 35px;
    min-width: 35px;
    width: 35px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .future_members_10 {
    padding: 60px 0;
  }
  .future_members_10 .principles_list_20 {
    padding: 30px 20px;
  }
  .future_members_10 h4 {
    margin-bottom: 35px;
    font-size: calc(36px - 4px);
  }
  .future_members_10 div p {
    padding: 18px;
    flex: 1 1 100%;
  }
  .future_members_10 div p svg {
    height: 30px;
    width: 30px;
    min-width: 30px;
    margin-right: 15px;
    padding: 6px;
  }
}
@media (max-width: 479px) {
  .future_members_10 {
    padding: 40px 0;
  }
  .future_members_10 .principles_list_20 {
    padding: 25px 15px;
  }
  .future_members_10 h4 {
    margin-bottom: 30px;
    font-size: calc(36px - 6px);
  }
  .future_members_10 div {
    gap: 15px;
  }
  .future_members_10 div p {
    font-size: calc(16px - 1px);
    padding: 15px;
  }
  .future_members_10 div p svg {
    min-width: 26px;
    padding: 5px;
    margin-right: 12px;
    height: 26px;
    width: 26px;
  }
}
.privacy_sanctuary_59 {
  position: relative;
  color: #ffffff;
  padding: 50px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    to bottom right,
    rgb(183, 169, 202, 0.5),
    rgb(144, 115, 176, 0.5)
  );
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
}
.privacy_sanctuary_59 h1,
.privacy_sanctuary_59 h2 {
  padding-left: 15px;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0;
}
.privacy_sanctuary_59 h1 {
  font-weight: 700;
  color: #ffffff;
  font-size: 44px;
}
.privacy_sanctuary_59 h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}
.privacy_sanctuary_59 ul {
  margin: 20px 0;
  list-style-type: none;
  padding: 0;
}
.privacy_sanctuary_59 ul li {
  padding-left: 30px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  padding: 10px 0;
  position: relative;
}
.privacy_sanctuary_59 ul li::before {
  font-size: 19px;
  position: absolute;
  left: 0;
  color: rgb(144, 115, 176);
  content: "•";
}
.privacy_sanctuary_59 p {
  font-size: 15px;
  margin: 20px 0;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 300;
}
.privacy_sanctuary_59 div {
  margin: 20px 0;
}
@media only screen and (max-width: 800px) {
  .privacy_sanctuary_59 {
    padding: 30px;
  }
  .privacy_sanctuary_59 h1 {
    font-size: calc(19px - 8px);
  }
  .privacy_sanctuary_59 h2 {
    font-size: calc(19px - 8px);
  }
  .privacy_sanctuary_59 ul li {
    font-size: calc(15px - 2px);
  }
  .privacy_sanctuary_59 p {
    font-size: calc(15px - 2px);
  }
}
.meet_us_92 {
  background: rgb(218, 214, 225);
  overflow: hidden;
  padding: 120px 0;
  position: relative;
}
.meet_us_92::before {
  z-index: 1;
  position: absolute;
  top: 0;
  background: linear-gradient(
    135deg,
    rgb(183, 169, 202, 0.5) 0%,
    transparent 25%
  );
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.meet_us_92::after {
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: linear-gradient(
    225deg,
    rgb(144, 115, 176, 0.5) 0%,
    transparent 25%
  );
  position: absolute;
}
.meet_us_92 .container {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 5;
}
.meet_us_92 h2 {
  text-align: center;
  font-weight: 700;
  color: #000000;
  margin-bottom: 70px;
  position: relative;
  font-size: 37px;
}
.meet_us_92 h2::after {
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  position: absolute;
  width: 80px;
  content: "";
  bottom: -20px;
  background: rgb(183, 169, 202);
}
.meet_us_92 .how_started_14 {
  display: grid;
  gap: 40px;
  position: relative;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}
.meet_us_92 .teach_method_56 {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 0;
  border-radius: 27px;
}
.meet_us_92 .teach_method_56:first-child {
  transform-origin: left center;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.meet_us_92 .teach_method_56:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
  transform-origin: right center;
}
.meet_us_92 .teach_method_56:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.meet_us_92 .teach_method_56 h3 {
  z-index: 2;
  font-size: 23px;
  position: relative;
  padding: 20px 30px;
  margin: 0;
  background: rgb(183, 169, 202);
  font-weight: 600;
  color: #ffffff;
}
.meet_us_92 .teach_method_56:nth-child(2) h3 {
  background: rgb(144, 115, 176);
}
.meet_us_92 .teach_method_56 p {
  color: #000000;
  display: flex;
  flex-grow: 1;
  position: relative;
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
  align-items: center;
  padding: 30px;
  z-index: 1;
}
.meet_us_92 .teach_method_56 p::first-letter {
  margin-right: 8px;
  font-size: calc(14px * 1.8);
  line-height: 1;
  color: rgb(183, 169, 202);
  float: left;
  font-weight: 700;
}
.meet_us_92 .teach_method_56:nth-child(2) p::first-letter {
  color: rgb(144, 115, 176);
}
.meet_us_92 .teach_method_56::before {
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(rgb(183, 169, 202, 0.5), 0.1) 50%
  );
  height: 100px;
  bottom: 0;
  z-index: 1;
  right: 0;
  position: absolute;
  content: "";
  width: 100px;
}
.meet_us_92 .teach_method_56:nth-child(2)::before {
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(rgb(144, 115, 176, 0.5), 0.1) 50%
  );
}
.meet_us_92 .teach_method_56::after {
  background: linear-gradient(90deg, rgb(183, 169, 202), transparent);
  top: 0;
  position: absolute;
  z-index: 3;
  content: "";
  height: 5px;
  width: 100%;
  right: 0;
}
.meet_us_92 .teach_method_56:nth-child(2)::after {
  background: linear-gradient(90deg, rgb(144, 115, 176), transparent);
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media screen and (max-width: 991px) {
  .meet_us_92 {
    padding: 90px 0;
  }
  .meet_us_92 h2 {
    margin-bottom: 60px;
  }
  .meet_us_92 .how_started_14 {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .meet_us_92 {
    padding: 70px 0;
  }
  .meet_us_92 h2 {
    margin-bottom: 50px;
  }
  .meet_us_92 .how_started_14 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .meet_us_92 .teach_method_56:first-child,
  .meet_us_92 .teach_method_56:nth-child(2) {
    grid-row: auto;
    grid-column: 1;
  }
}
@media screen and (max-width: 576px) {
  .meet_us_92 {
    padding: 60px 0;
  }
  .meet_us_92 .container {
    padding: 0 15px;
  }
  .meet_us_92 h2 {
    margin-bottom: 40px;
    font-size: calc(37px * 0.9);
  }
  .meet_us_92 h2::after {
    width: 60px;
    height: 3px;
    bottom: -15px;
  }
  .meet_us_92 .teach_method_56 h3 {
    padding: 15px 20px;
    font-size: calc(23px * 0.9);
  }
  .meet_us_92 .teach_method_56 p {
    line-height: 1.7;
    padding: 20px;
    font-size: calc(14px * 0.95);
  }
}
.title_section_52 {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgb(183, 169, 202, 0.5),
    rgb(144, 115, 176)
  );
  overflow: hidden;
  position: relative;
  justify-content: center;
  padding: 2rem;
  align-items: center;
}
.title_section_52::before {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgb(183, 169, 202, 0.5) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgb(144, 115, 176, 0.5) 0%,
      transparent 70%
    );
  opacity: 0.7;
  left: 0;
  content: "";
}
.title_section_52::after {
  position: absolute;
  height: 100%;
  content: "";
  width: 100%;
  top: -50%;
  filter: blur(70px);
  transform: rotate(45deg);
  background: rgb(255, 255, 255, 0.5);
  z-index: 0;
  right: -50%;
}
.title_section_52 .main_intro_98 {
  display: grid;
  width: 100%;
  gap: 2rem;
  max-width: 1200px;
  z-index: 2;
  position: relative;
  transform: translateY(-2%);
  grid-template-columns: 1fr;
}
.title_section_52 .main_intro_98 > div:first-child {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transform: translateX(-5%);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 1.5rem;
  border-left: 4px solid rgb(183, 169, 202);
}
.title_section_52 .main_intro_98 > div:first-child:hover {
  transform: translateX(0) scale(1.02);
}
.title_section_52 .main_intro_98 > div:first-child p {
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-family: Arial, sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}
.title_section_52 .founders_team_50 {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.4, 1.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}
.title_section_52 .founders_team_50:hover {
  transform: translateY(-10px);
}
.title_section_52 .founders_team_50 > div {
  justify-content: space-between;
  padding: 3rem 2rem;
  flex-direction: column;
  min-height: 400px;
  display: flex;
  height: 100%;
  position: relative;
}
.title_section_52 .founders_team_50 > div::before {
  top: 0;
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  left: 0;
  z-index: 1;
}
.title_section_52 .founders_team_50 h3 {
  color: #ffffff;
  transform: translateX(5%);
  background: linear-gradient(
    120deg,
    rgb(183, 169, 202, 0.5),
    rgb(144, 115, 176, 0.5)
  );
  font-family: Arial, sans-serif;
  padding: 1.2rem;
  letter-spacing: 0.01em;
  max-width: 90%;
  z-index: 2;
  border-radius: 10px;
  line-height: 1.5;
  backdrop-filter: blur(5px);
  margin: 0 0 2rem 0;
  font-weight: 400;
  transition: transform 0.4s ease-out;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  position: relative;
}
.title_section_52 .founders_team_50:hover h3 {
  transform: translateX(0);
}
.title_section_52 .founders_team_50 > div > div {
  z-index: 2;
  margin-top: auto;
  position: relative;
}
.title_section_52 .founders_team_50 > div > div > div {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  transform: translateY(10px);
  animation-delay: 0.3s;
}
.title_section_52 .title_style_header {
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.03em;
  font-family: Arial, sans-serif;
  position: relative;
  padding: 1rem 0;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 46px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.title_section_52 .title_style_header::after {
  height: 6px;
  position: absolute;
  background: linear-gradient(to right, rgb(183, 169, 202), rgb(144, 115, 176));
  left: 0;
  transition: width 0.5s ease;
  width: 80px;
  bottom: 0;
  content: "";
}
.title_section_52 .founders_team_50:hover .title_style_header::after {
  width: 150px;
}
@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .title_section_52 .main_intro_98 {
    gap: 3rem;
    grid-template-columns: 0.4fr 0.6fr;
  }
  .title_section_52 .main_intro_98 > div:first-child {
    margin-top: 10%;
    align-self: center;
  }
  .title_section_52 .founders_team_50 > div {
    min-height: 500px;
    padding: 4rem 3rem;
  }
  .title_section_52 .founders_team_50 h3 {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .title_section_52 {
    padding: 4rem;
  }
  .title_section_52 .main_intro_98 {
    grid-template-columns: 0.35fr 0.65fr;
  }
  .title_section_52 .main_intro_98 > div:first-child {
    transform: translateX(-10%);
    padding: 2rem;
  }
  .title_section_52 .founders_team_50 > div {
    min-height: 550px;
  }
  .title_section_52 .title_style_header::after {
    height: 8px;
  }
}
@media (max-width: 767px) {
  .title_section_52 {
    padding: 1.5rem;
  }
  .title_section_52 .main_intro_98 > div:first-child {
    padding: 1.2rem;
  }
  .title_section_52 .founders_team_50 > div {
    padding: 2rem 1.5rem;
    min-height: 350px;
  }
  .title_section_52 .founders_team_50 h3 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
  }
  .title_section_52 .title_style_header {
    padding: 0.75rem 0;
  }
  .title_section_52 .title_style_header::after {
    width: 60px;
    height: 4px;
  }
}

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