* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-wrap: anywhere;
  color: #000000;
  min-height: 100%;
  font-family: Arial, sans-serif;
  height: 100%;
}
.layer-container {
  height: 100%;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
svg {
  height: 30px;
  width: 30px;
}
.container {
  width: 1122px;
  margin: auto;
  max-width: 100%;
}
.top_site {
  flex: 1 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.diploma_cta {
  flex: 0 0 auto;
}
header,
footer {
  width: 100%;
}
header {
  overflow-x: clip;
  overflow-y: visible;
}
@media only screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 800px) {
  .container {
    padding: 0 12px;
  }
}
.data_overview {
  color: #ffffff;
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
.data_overview::before {
  width: 100%;
  backdrop-filter: blur(5px);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
}
.data_overview::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187, 0.5) 0%,
    transparent 50%,
    rgb(123, 110, 160, 0.5) 100%
  );
  animation: gradientShift 15s infinite alternate;
  top: 0;
}
@keyframes gradientShift {
  0% {
    opacity: 0.6;
    background-position: 0% 0%;
  }
  50% {
    opacity: 0.8;
    background-position: 100% 50%;
  }
  100% {
    opacity: 0.6;
    background-position: 0% 100%;
  }
}
.data_overview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 5;
  position: relative;
}
.data_overview .edu_statistics {
  border-radius: 25px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(2deg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 50px 40px;
}
.data_overview .edu_statistics::before {
  height: 200%;
  position: absolute;
  content: "";
  background: radial-gradient(
    circle,
    rgb(170, 192, 187, 0.5) 0%,
    transparent 70%
  );
  width: 200%;
  animation: pulse 10s infinite ease-in-out;
  left: -50%;
  opacity: 0.3;
  top: -50%;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.2;
  }
}
.data_overview .statistics_edges {
  height: 80px;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187) 0%,
    rgb(123, 110, 160) 100%
  );
  width: 80px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  transform: translateY(0);
  display: block;
  align-items: center;
  display: flex;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  margin: 0 auto 20px;
  justify-content: center;
}
.data_overview .statistics_edges:hover {
  transform: translateY(-5px);
}
.data_overview .statistics_edges svg {
  height: 40px;
  width: 40px;
  fill: #ffffff;
}
.data_overview .statistics_edges svg path {
  fill: #ffffff;
}
.data_overview .pro_gains {
  -webkit-text-fill-color: transparent;
  text-align: center;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  margin-bottom: 20px;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  position: relative;
  font-size: 34px;
}
.data_overview .pro_gains::after {
  border-radius: 10px;
  display: block;
  height: 3px;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187) 0%,
    rgb(123, 110, 160) 100%
  );
  content: "";
  margin: 20px auto 0;
  width: 80px;
}
.data_overview .statistics_wins {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  font-weight: 400;
  font-size: 18px;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-left: auto;
  letter-spacing: 0.5px;
}
.data_overview .statistics_highlights {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 30px;
  display: grid;
  margin-top: 30px;
}
.data_overview .statistics_elevation {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(5px);
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.data_overview .statistics_elevation::before {
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187) 0%,
    rgb(123, 110, 160) 100%
  );
  border-radius: 50%;
  height: 40px;
  position: absolute;
  top: -10px;
  transition: all 0.5s ease;
  left: -10px;
  width: 40px;
  content: "";
  opacity: 0.2;
}
.data_overview .statistics_elevation:hover {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}
.data_overview .statistics_elevation:hover::before {
  opacity: 0.05;
  transform: scale(10);
}
.data_overview .benefits_block {
  display: flex;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187, 0.5) 0%,
    rgb(123, 110, 160, 0.5) 100%
  );
  width: 60px;
  border-radius: 50%;
  justify-content: center;
  height: 60px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
  align-items: center;
  margin: 0 auto 15px;
}
.data_overview .benefits_block svg {
  height: 30px;
  width: 30px;
  fill: #ffffff;
}
.data_overview .benefits_block svg path {
  fill: #ffffff;
}
.data_overview .statistics_elevation span {
  background-clip: text !important;
  -webkit-background-clip: text !important;
  font-size: calc(34px * 1.2);
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
  transform: translateZ(30px);
  position: relative;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  font-weight: 700;
}
.data_overview .statistics_elevation span::after {
  border-radius: 10px;
  display: block;
  height: 2px;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187) 0%,
    rgb(123, 110, 160) 100%
  );
  width: 40px;
  margin: 10px auto;
  content: "";
}
.data_overview .statistics_elevation p {
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  .data_overview {
    padding: 80px 0;
  }
  .data_overview .edu_statistics {
    padding: 40px 30px;
    transform: perspective(1000px) rotateX(1deg);
  }
  .data_overview .statistics_edges {
    height: 70px;
    width: 70px;
  }
  .data_overview .statistics_edges svg {
    width: 35px;
    height: 35px;
  }
  .data_overview .statistics_highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .data_overview .benefits_block {
    width: 50px;
    height: 50px;
  }
  .data_overview .benefits_block svg {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .data_overview {
    padding: 60px 0;
  }
  .data_overview .edu_statistics {
    padding: 30px 20px;
    transform: none;
  }
  .data_overview .pro_gains {
    font-size: calc(34px * 0.9);
  }
  .data_overview .statistics_wins {
    font-size: calc(18px * 0.95);
    margin-bottom: 40px;
  }
  .data_overview .statistics_highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .data_overview .statistics_elevation span {
    font-size: calc(34px * 1.1);
  }
}
@media screen and (max-width: 480px) {
  .data_overview {
    padding: 50px 0;
  }
  .data_overview .container {
    padding: 0 15px;
  }
  .data_overview .edu_statistics {
    padding: 25px 15px;
  }
  .data_overview .statistics_edges {
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
  }
  .data_overview .statistics_edges svg {
    width: 30px;
    height: 30px;
  }
  .data_overview .pro_gains {
    margin-bottom: 15px;
    font-size: calc(34px * 0.8);
  }
  .data_overview .pro_gains::after {
    width: 60px;
    margin: 15px auto 0;
  }
  .data_overview .statistics_wins {
    font-size: calc(18px * 0.9);
    margin-bottom: 30px;
  }
  .data_overview .statistics_elevation {
    padding: 20px 15px;
  }
  .data_overview .benefits_block {
    width: 45px;
    margin-bottom: 10px;
    height: 45px;
  }
  .data_overview .benefits_block svg {
    height: 22px;
    width: 22px;
  }
  .data_overview .statistics_elevation span {
    font-size: calc(34px * 1);
  }
  .data_overview .statistics_elevation span::after {
    width: 30px;
    margin: 8px auto;
  }
  .data_overview .statistics_elevation p {
    font-size: calc(18px * 0.9);
  }
}
.course_program_details {
  background-color: rgb(218, 225, 220);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
.course_program_details::before {
  right: -10%;
  background: linear-gradient(
    45deg,
    rgb(123, 110, 160, 0.5),
    rgb(123, 110, 160)
  );
  position: absolute;
  content: "";
  z-index: 0;
  transform: rotate(-15deg);
  opacity: 0.05;
  top: -5%;
  width: 65%;
  height: 65%;
}
.course_program_details::after {
  width: 55%;
  z-index: 0;
  left: -10%;
  transform: rotate(15deg);
  position: absolute;
  height: 55%;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187, 0.5),
    rgb(170, 192, 187)
  );
  opacity: 0.05;
  content: "";
  bottom: -5%;
}
.course_program_details .container {
  z-index: 1;
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 1.5rem;
}
.course_program_details h2 {
  font-weight: 700;
  position: relative;
  color: #000000;
  margin-bottom: 3rem;
  max-width: 85%;
  line-height: 1.3;
  font-size: 38px;
}
.course_program_details h2::after {
  transition: transform 0.5s ease;
  transform: scaleX(1);
  height: 3px;
  position: absolute;
  bottom: -0.75rem;
  width: 5rem;
  transform-origin: left center;
  content: "";
  left: 0;
  background: linear-gradient(90deg, rgb(123, 110, 160), rgb(170, 192, 187));
}
.course_program_details .container:hover h2::after {
  transform: scaleX(1.5);
}
.course_program_details .future_class {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  position: relative;
}
.course_program_details .photo {
  transform: perspective(1000px) rotateY(-3deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    box-shadow 0.6s ease;
  position: relative;
  height: 400px;
}
.course_program_details .photo::before {
  top: 0;
  background: linear-gradient(45deg, rgb(123, 110, 160, 0.5), transparent);
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease;
  content: "";
  height: 100%;
  position: absolute;
  opacity: 0.3;
}
.course_program_details .photo::after {
  top: 30%;
  left: -100%;
  position: absolute;
  transition: left 0.8s ease-out;
  height: 200%;
  transform: rotate(45deg);
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  width: 200%;
}
.course_program_details .container:hover .photo {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.course_program_details .container:hover .photo::before {
  opacity: 0.5;
}
.course_program_details .container:hover .photo::after {
  left: 100%;
}
.course_program_details .text_holder {
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  transform: translateY(0);
  overflow: hidden;
  position: relative;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.course_program_details .text_holder::before {
  position: absolute;
  transform-origin: center;
  left: 0;
  content: "";
  width: 4px;
  background: linear-gradient(
    to bottom,
    rgb(123, 110, 160),
    rgb(170, 192, 187)
  );
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  top: 0;
  transform: scaleY(0.3);
}
.course_program_details .container:hover .text_holder {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.course_program_details .container:hover .text_holder::before {
  transform: scaleY(1);
}
.course_program_details .description {
  transition: color 0.3s ease;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #000000;
  font-size: 15px;
  position: relative;
}
.course_program_details .description:last-child {
  margin-bottom: 0;
}
.course_program_details .description::first-letter {
  font-weight: 600;
  font-size: 1.3em;
  color: rgb(123, 110, 160);
}
.course_program_details .description strong {
  background-clip: text !important;
  color: #000000;
  -webkit-background-clip: text !important;
  background: linear-gradient(to right, rgb(123, 110, 160, 0.5), transparent);
}
@media (min-width: 768px) {
  .course_program_details {
    padding: 8rem 0;
  }
  .course_program_details h2 {
    max-width: 70%;
    margin-bottom: 3.5rem;
    font-size: calc(38px * 1.1);
  }
  .course_program_details .future_class {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .course_program_details .photo {
    height: 500px;
  }
  .course_program_details .text_holder {
    overflow-y: auto;
    scrollbar-width: thin;
    padding: 3rem;
    scrollbar-color: rgb(123, 110, 160, 0.5) #ffffff;
    max-height: 500px;
  }
  .course_program_details .text_holder::-webkit-scrollbar {
    width: 6px;
  }
  .course_program_details .text_holder::-webkit-scrollbar-track {
    background: #ffffff;
  }
  .course_program_details .text_holder::-webkit-scrollbar-thumb {
    background-color: rgb(123, 110, 160, 0.5);
    border-radius: 20px;
  }
}
@media (min-width: 992px) {
  .course_program_details {
    padding: 10rem 0;
  }
  .course_program_details h2 {
    font-size: calc(38px * 1.2);
    max-width: 60%;
  }
  .course_program_details .future_class {
    gap: 4rem;
  }
  .course_program_details .photo {
    transform: perspective(1000px) rotateY(-5deg) translateX(-20px);
    height: 550px;
  }
  .course_program_details .container:hover .photo {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
  }
  .course_program_details .text_holder {
    padding: 3.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    margin-right: -2rem;
    max-height: 550px;
    backdrop-filter: blur(10px);
  }
  .course_program_details .description {
    font-size: calc(15px * 1.05);
    line-height: 1.9;
  }
}
@media (min-width: 1200px) {
  .course_program_details h2 {
    font-size: calc(38px * 1.3);
    max-width: 50%;
  }
  .course_program_details .future_class {
    gap: 5rem;
  }
  .course_program_details .photo {
    transform: perspective(1000px) rotateY(-5deg) translateX(-30px);
    height: 600px;
  }
  .course_program_details .text_holder {
    padding: 4rem;
    margin-right: -3rem;
    max-height: 600px;
  }
  .course_program_details .description {
    font-size: calc(15px * 1.1);
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .course_program_details {
    padding: 4rem 0;
  }
  .course_program_details h2 {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: calc(38px * 0.9);
  }
  .course_program_details .photo {
    transform: perspective(1000px) rotateY(0deg);
    height: 300px;
  }
  .course_program_details .text_holder {
    padding: 2rem;
  }
  .course_program_details .description {
    font-size: calc(15px * 0.95);
    line-height: 1.7;
  }
}
footer {
  width: 100%;
  position: relative;
}
.diploma_cta {
  font-family: Arial, sans-serif;
  background-color: rgb(218, 225, 220);
  position: relative;
  color: #000000;
  padding: 100px 0 30px;
}
.diploma_cta::before {
  position: absolute;
  background:
    linear-gradient(135deg, rgb(218, 225, 220) 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, rgb(218, 225, 220) 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, rgb(218, 225, 220) 25%, transparent 25%),
    linear-gradient(45deg, rgb(218, 225, 220) 25%, transparent 25%);
  background-size: 100px 100px;
  background-color: rgb(170, 192, 187, 0.5);
  height: 120px;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
}
footer .proposal_cta {
  z-index: 1;
  margin-top: -70px;
  position: relative;
}
footer .connect_section {
  background-color: #ffffff;
  position: relative;
  justify-content: space-between;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 60px;
  transform: translateY(-30px);
  z-index: 2;
  display: flex;
}
footer .info_item {
  flex: 1 1 200px;
  border-radius: 10px;
  background-color: rgb(218, 225, 220);
  position: relative;
  margin: 10px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
footer .info_item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transform: translateY(-5px);
}
footer .info_item::before {
  left: 0;
  content: "";
  border-radius: 3px 0 0 3px;
  width: 3px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: 0;
  height: 100%;
  background-color: rgb(170, 192, 187);
}
footer .info_item:hover::before {
  opacity: 1;
}
footer .info_item svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  fill: rgb(170, 192, 187);
}
footer .info_item p,
footer .info_item a {
  text-decoration: none;
  vertical-align: middle;
  font-size: 18px;
  color: #000000;
  display: inline-block;
  transition: color 0.3s ease;
}
footer .info_item a:hover {
  color: rgb(170, 192, 187);
}
footer .text_main_holder {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  position: relative;
}
footer .text_main_holder::before {
  left: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  content: "";
  top: -40px;
  z-index: -1;
  border-radius: 25px;
  height: calc(100% + 80px);
  width: 100%;
  position: absolute;
  background-color: #ffffff;
}
footer .head_teach {
  position: relative;
  padding: 0 30px;
}
footer .head_teach::after {
  right: 30px;
  position: absolute;
  left: 30px;
  background: linear-gradient(90deg, rgb(170, 192, 187), transparent);
  height: 1px;
  content: "";
  bottom: -15px;
}
footer .head_teach svg {
  width: auto;
  margin-bottom: 15px;
  height: 45px;
}
footer .learn_nav {
  color: #000000;
  max-width: 330px;
  font-size: 13px;
  line-height: 1.6;
}
footer .nav_mainbar {
  margin-left: 20px;
  padding: 30px;
  background-color: rgb(218, 225, 220);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 25px;
  z-index: 1;
  margin-top: -10px;
  margin-right: 20px;
  flex-direction: column;
}
footer .nav_mainbar h5 {
  position: relative;
  color: #000000;
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 20px;
}
footer .nav_mainbar h5::after {
  width: 50px;
  position: absolute;
  background-color: rgb(170, 192, 187);
  content: "";
  left: 0;
  height: 2px;
  bottom: -7px;
}
footer .nav_block {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
footer .nav_block a {
  color: #000000;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 18px;
}
footer .nav_block a::after {
  width: 0;
  transition: width 0.3s ease;
  height: 2px;
  content: "";
  background-color: rgb(170, 192, 187);
  left: 0;
  bottom: 5px;
  position: absolute;
}
footer .nav_block a:hover {
  color: rgb(170, 192, 187);
  transform: translateX(5px);
}
footer .nav_block a:hover::after {
  width: 100%;
}
footer .subscribe_holder {
  border-radius: 25px;
  color: #ffffff;
  margin-top: -10px;
  background-color: rgb(170, 192, 187);
  z-index: 0;
  padding: 30px;
  margin-right: 40px;
  position: relative;
  margin-left: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
footer .subscribe_holder::before {
  height: 30px;
  background-color: rgb(170, 192, 187);
  position: absolute;
  content: "";
  z-index: -1;
  right: 30px;
  width: 30px;
  top: -15px;
  transform: rotate(45deg);
}
footer .subscribe_holder h5 {
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}
footer .subscribe_holder p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 18px;
}
footer .input_holder {
  position: relative;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
footer .input_holder input[type="email"] {
  border: none;
  transition: background-color 0.3s ease;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  font-size: 18px;
  padding: 14px 16px;
}
footer .input_holder input[type="email"]:focus {
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
footer .input_holder input[type="email"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
footer .news_optin {
  font-size: 17px;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 14px 20px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  background-color: #000000;
  font-weight: 600;
}
footer .news_optin:hover {
  background-color: rgb(123, 110, 160);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
footer .contest_info {
  margin-top: 60px;
  z-index: 1;
  text-align: center;
  position: relative;
}
footer .sec_cert {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  padding: 8px 20px;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 30px;
  color: #000000;
}
@media (min-width: 768px) {
  footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
  }
  footer .nav_block {
    grid-template-columns: 1fr;
  }
  footer .input_holder {
    flex-direction: row;
  }
  footer .news_optin {
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  footer .nav_mainbar {
    margin-top: 0;
  }
  footer .subscribe_holder {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  footer .text_main_holder {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  footer .diploma_cta {
    padding: 80px 0 30px;
  }
  footer .connect_section {
    justify-content: center;
    padding: 20px;
  }
  footer .info_item {
    width: 100%;
  }
  footer .nav_mainbar,
  footer .subscribe_holder {
    margin-right: 10px;
    padding: 25px 20px;
    margin-left: 10px;
  }
  footer .contest_info {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  footer .diploma_cta {
    padding: 60px 0 20px;
  }
  footer .connect_section {
    padding: 15px;
    transform: translateY(-20px);
    margin-bottom: 40px;
  }
  footer .text_main_holder::before {
    top: -30px;
    height: calc(100% + 60px);
  }
  footer .head_teach {
    padding: 0 20px;
  }
  footer .head_teach::after {
    right: 20px;
    left: 20px;
  }
  footer .nav_mainbar {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 15px;
    align-items: stretch;
  }
  footer .nav_mainbar h5,
  footer .subscribe_holder h5 {
    font-size: calc(22px - 2px);
    overflow-wrap: anywhere;
  }
  footer .nav_block {
    min-width: 0;
  }
  footer .nav_block a {
    max-width: 100%;
    padding: 6px 0;
    overflow-wrap: anywhere;
  }
  footer .input_holder input[type="email"],
  footer .news_optin {
    padding: 12px 15px;
  }
}
header {
  top: 0;
  background: linear-gradient(
    120deg,
    rgb(170, 192, 187) 0%,
    rgb(170, 192, 187, 0.5) 100%
  );
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: fixed;
  z-index: 1000;
  width: 100%;
  left: 0;
}
header:before {
  pointer-events: none;
  position: absolute;
  opacity: 0.1;
  left: 0;
  content: "";
  width: 100%;
  top: 0;
  height: 100%;
}
header:after {
  height: 100%;
  content: "";
  background-size: 100px 100px;
  background-image:
    linear-gradient(
      to right,
      transparent 20%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0.05) 60%,
      transparent 80%
    ),
    linear-gradient(
      to bottom,
      transparent 20%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0.05) 60%,
      transparent 80%
    );
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  position: absolute;
}
header .head_learn {
  position: relative;
}
header .head_learn:before {
  width: 100%;
  bottom: -1px;
  position: absolute;
  height: 2px;
  left: 0;
  opacity: 0.3;
  content: "";
  background: linear-gradient(to right, transparent, #ffffff, transparent);
}
header .head_learn:after {
  opacity: 0.5;
  position: absolute;
  transform: translateY(-50%);
  height: 60px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  filter: blur(8px);
  width: 60px;
  left: 0;
  content: "";
  pointer-events: none;
}
header .container {
  padding: 15px 25px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
header .container:before {
  height: 30px;
  background-size:
    6px 2px,
    6px 2px;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  position: absolute;
  background-repeat: repeat-x;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%),
    linear-gradient(90deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
  background-position:
    0 0,
    0 10px;
  width: 50px;
}
header .nav_lesson {
  align-items: center;
  display: flex;
  position: relative;
  justify-content: space-between;
}
header .nav_lesson:before {
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translateY(-50%) translateX(-40px);
  position: absolute;
  top: 50%;
  content: "";
  height: 20px;
  opacity: 0.5;
  width: 20px;
}
header .nav_lesson:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  height: 20px;
  transform: translateY(-50%) translateX(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.5;
  right: 0;
  width: 20px;
}
header .nav_mainbar {
  align-items: center;
  position: relative;
  gap: 30px;
  display: flex;
}
header .nav_mainbar:before {
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  opacity: 0;
  position: absolute;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease;
  height: 2px;
  content: "";
  bottom: -10px;
}
header .nav_mainbar:hover:before {
  opacity: 0.7;
}
header .main_page {
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  font-weight: 400;
  transition: all 0.3s ease;
}
header .main_page:before {
  transition: all 0.3s ease;
  background: #ffffff;
  left: -12px;
  top: 50%;
  content: "";
  opacity: 0;
  height: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  position: absolute;
  border-radius: 50%;
  transform: translateY(-50%);
  width: 6px;
}
header .main_page:after {
  transition: all 0.3s ease;
  transform: translateY(-50%) scaleX(0);
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: right;
  position: absolute;
  width: 20px;
  top: 50%;
  left: -30px;
  content: "";
}
header .main_page:hover {
  transform: translateX(5px);
  color: #ffffff;
}
header .main_page:hover:before {
  left: -20px;
  opacity: 1;
}
header .main_page:hover:after {
  transform: translateY(-50%) scaleX(1);
}
header .nav_class {
  text-decoration: none;
  display: flex;
  position: relative;
  align-items: center;
  transition: all 0.3s ease;
  padding: 5px;
}
header .nav_class:before {
  content: "";
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 10px;
  position: absolute;
  width: calc(100% + 20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: -10px;
  height: calc(100% + 20px);
  left: -10px;
}
header .nav_class:after {
  opacity: 0;
  background: #ffffff;
  position: absolute;
  width: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  left: -5px;
  top: -5px;
  content: "";
  height: 10px;
}
header .nav_class:hover:before {
  opacity: 1;
}
header .nav_class:hover:after {
  animation: circuit 3s infinite;
  opacity: 1;
}
header .nav_class svg {
  transition: all 0.3s ease;
  width: auto;
  height: 40px;
}
header .nav_class:hover svg {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}
@keyframes circuit {
  0%,
  100% {
    top: -5px;
    left: -5px;
  }
  25% {
    top: -5px;
    left: calc(100% - 5px);
  }
  50% {
    top: calc(100% - 5px);
    left: calc(100% - 5px);
  }
  75% {
    top: calc(100% - 5px);
    left: -5px;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  header .container {
    padding: 12px 20px;
  }
  header .nav_mainbar {
    gap: 20px;
  }
  header .nav_class svg {
    height: 35px;
  }
}
@media (max-width: 767px) {
  header .nav_mainbar {
    width: 80%;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    max-width: 320px;
    background: rgb(170, 192, 187);
    top: 0;
    gap: 25px;
    right: -100%;
    height: 100vh;
    padding: 80px 30px 30px;
    z-index: 1001;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  header .nav_mainbar:before {
    top: 60px;
    bottom: auto;
    width: 80%;
    left: 10%;
  }
  header .nav_mainbar:after {
    height: 30px;
    right: 20px;
    top: 20px;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 30px;
    content: "";
  }
  header .menu.active {
    right: 0;
  }
  header .main_page {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .main_page:hover {
    transform: translateX(0);
  }
  header .main_page:last-child {
    border-bottom: none;
  }
  header .nav_class {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  header .container {
    padding: 10px 15px;
  }
  header .nav_class svg {
    height: 30px;
  }
}
.operation_process {
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187, 0.5),
    rgb(123, 110, 160, 0.5),
    rgb(218, 225, 220)
  );
  padding: 8rem 0;
  perspective: 1000px;
}
.operation_process::before {
  top: -10%;
  position: absolute;
  left: -5%;
  content: "";
  height: 120%;
  width: 120%;
  opacity: 0.4;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgb(123, 110, 160, 0.5) 2px,
      transparent 12px
    ),
    radial-gradient(
      circle at 70% 60%,
      rgb(123, 110, 160, 0.5) 2px,
      transparent 10px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgb(123, 110, 160, 0.5) 2px,
      transparent 8px
    ),
    radial-gradient(
      circle at 90% 15%,
      rgb(123, 110, 160, 0.5) 2px,
      transparent 14px
    );
  animation: constellation 30s infinite linear;
  z-index: 0;
}
.operation_process::after {
  z-index: 1;
  height: 100%;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.3;
  content: "";
  top: 0;
  position: absolute;
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgb(170, 192, 187, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgb(123, 110, 160, 0.5) 0%,
      transparent 60%
    );
}
.operation_process .legacy_story {
  margin: 0 auto;
  z-index: 2;
  position: relative;
  transform-style: preserve-3d;
  padding: 0 2rem;
  max-width: 1200px;
}
.operation_process h2 {
  color: #000000;
  text-align: left;
  display: inline-block;
  position: relative;
  font-size: 33px;
  transform: translateZ(20px);
  margin-bottom: 3rem;
  font-weight: 700;
}
.operation_process h2::after {
  width: 60%;
  transform: scaleX(0.8);
  height: 3px;
  content: "";
  left: 0;
  position: absolute;
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  bottom: -12px;
  background: linear-gradient(90deg, rgb(170, 192, 187), rgb(123, 110, 160));
}
.operation_process .legacy_story:hover h2::after {
  transform: scaleX(1);
}
.operation_process .text_holder {
  padding: 2.5rem;
  box-shadow:
    0 10px 30px -15px rgba(0, 0, 0, 0.15),
    0 3px 10px -5px rgba(0, 0, 0, 0.08);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  border-left: 4px solid rgb(170, 192, 187);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 95%);
  transform: translateZ(10px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.operation_process .text_holder::before {
  transition: opacity 0.5s ease-in-out;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  z-index: -1;
  position: absolute;
  width: 100%;
  content: "";
  left: 0;
  opacity: 0;
  top: 0;
}
.operation_process .text_holder:hover {
  transform: translateZ(15px);
  box-shadow:
    0 15px 35px -20px rgba(0, 0, 0, 0.2),
    0 5px 15px -10px rgba(0, 0, 0, 0.1);
}
.operation_process .text_holder:hover::before {
  opacity: 1;
}
.operation_process p {
  margin: 0;
  transition: transform 0.4s ease-out;
  line-height: 1.8;
  max-width: 90%;
  color: #000000;
  font-size: 16px;
}
@keyframes constellation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .operation_process .legacy_story {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .operation_process h2 {
    margin-bottom: 4rem;
    font-size: calc(33px * 1.2);
  }
  .operation_process .text_holder {
    padding: 3rem 3.5rem;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 95%);
  }
  .operation_process p {
    max-width: 85%;
    font-size: calc(16px * 1.05);
  }
}
@media (min-width: 992px) {
  .operation_process {
    padding: 10rem 0;
  }
  .operation_process .legacy_story {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
  .operation_process h2 {
    margin-bottom: 1rem;
    font-size: calc(33px * 1.4);
  }
  .operation_process h2::after {
    height: 4px;
    bottom: -15px;
  }
  .operation_process .text_holder {
    padding: 3.5rem 4rem;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 92%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .operation_process p {
    transform: translateX(0);
    max-width: 80%;
    font-size: calc(16px * 1.1);
  }
  .operation_process .text_holder:hover p {
    transform: translateX(10px);
  }
}
@media (max-width: 767px) {
  .operation_process {
    padding: 5rem 0;
  }
  .operation_process .legacy_story {
    padding: 0 1.5rem;
  }
  .operation_process h2 {
    font-size: calc(33px * 0.9);
    margin-bottom: 2rem;
  }
  .operation_process .text_holder {
    padding: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%);
  }
  .operation_process p {
    max-width: 100%;
    font-size: calc(16px * 0.95);
  }
}
@media (max-width: 480px) {
  .operation_process {
    padding: 4rem 0;
  }
  .operation_process .legacy_story {
    padding: 0 1rem;
  }
  .operation_process h2 {
    margin-bottom: 1.5rem;
    font-size: calc(33px * 0.8);
  }
  .operation_process .text_holder {
    padding: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 98%);
  }
  .operation_process p {
    font-size: calc(16px * 0.9);
  }
}
.contact_information {
  background: rgb(218, 225, 220);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact_information::before {
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  background: repeating-linear-gradient(
    45deg,
    rgb(170, 192, 187, 0.5) 0,
    rgb(170, 192, 187, 0.5) 1px,
    transparent 1px,
    transparent 30px
  );
  content: "";
  opacity: 0.07;
  width: 100%;
  top: 0;
}
.contact_information::after {
  content: "";
  background-size: 30px 30px;
  height: 100%;
  width: 100%;
  opacity: 0.07;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgb(123, 110, 160, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(123, 110, 160, 0.5) 1px, transparent 1px);
}
.contact_information .container {
  padding: 0 30px;
  position: relative;
  max-width: 1200px;
  z-index: 2;
  margin: 0 auto;
}
.contact_information h2 {
  padding-bottom: 20px;
  font-weight: 700;
  transform: translateX(-50%);
  color: #000000;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 33px;
  left: 50%;
  position: relative;
}
.contact_information h2::before {
  height: 4px;
  width: 80px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 40px);
  background: rgb(170, 192, 187);
  content: "";
}
.contact_information h2::after {
  bottom: 0;
  left: calc(50% - 15px);
  width: 30px;
  background: rgb(123, 110, 160);
  position: absolute;
  content: "";
  height: 4px;
}
.contact_information .help_form {
  display: flex;
  margin-top: 50px;
  border-radius: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  background: #ffffff;
}
.contact_information .photo {
  position: relative;
  flex: 0 0 45%;
  min-height: 550px;
}
.contact_information .photo::before {
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(rgb(170, 192, 187), 0.4),
    rgba(rgb(123, 110, 160), 0.4)
  );
  position: absolute;
  content: "";
}
.contact_information .request_inquiry {
  flex: 0 0 55%;
  justify-content: center;
  position: relative;
  flex-direction: column;
  padding: 60px;
  display: flex;
}
.contact_information .request_inquiry::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  height: 150px;
  width: 150px;
  z-index: 0;
  border: 30px solid rgb(170, 192, 187, 0.5);
  right: -75px;
  top: -75px;
}
.contact_information .request_inquiry::after {
  content: "";
  background: rgb(123, 110, 160, 0.5);
  border-radius: 0;
  height: 100px;
  width: 100px;
  position: absolute;
  transform: rotate(45deg);
  left: -50px;
  bottom: -50px;
  z-index: 0;
}
.contact_information form {
  z-index: 2;
  position: relative;
}
.contact_information form h3 {
  color: #000000;
  margin-bottom: 40px;
  font-size: 20px;
  display: inline-block;
  position: relative;
  font-weight: 600;
}
.contact_information form h3::after {
  bottom: -15px;
  width: 50%;
  background: rgb(170, 192, 187);
  content: "";
  left: 0;
  position: absolute;
  height: 2px;
}
.contact_information form input[type="text"] {
  margin-bottom: 25px;
  font-size: 13px;
  border: none;
  transition: all 0.3s ease;
  color: #000000;
  width: 100%;
  padding: 20px 25px;
  border-bottom: 2px solid rgb(218, 225, 220);
  background: transparent;
}
.contact_information form input[type="text"]:focus {
  border-bottom-color: rgb(170, 192, 187);
  outline: none;
}
.contact_information form input[type="text"]::placeholder {
  color: rgba(#000000, 0.5);
  transition: all 0.3s ease;
}
.contact_information form input[type="text"]:focus::placeholder {
  opacity: 0;
  transform: translateY(-10px);
}
.contact_information .help_info {
  position: relative;
  margin-bottom: 40px;
}
.contact_information .help_info input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.contact_information .help_info label {
  line-height: 1.5;
  cursor: pointer;
  font-size: 16px;
  padding-left: 35px;
  color: #000000;
  position: relative;
}
.contact_information .help_info label::before {
  left: 0;
  width: 22px;
  transition: all 0.3s ease;
  border: 2px solid rgb(218, 225, 220);
  top: 0;
  position: absolute;
  content: "";
  height: 22px;
  background: transparent;
}
.contact_information .help_info input[type="checkbox"]:checked + label::before {
  border-color: rgb(170, 192, 187);
  background: rgb(170, 192, 187);
}
.contact_information .help_info input[type="checkbox"]:checked + label::after {
  border-width: 0 2px 2px 0;
  width: 6px;
  border: solid #ffffff;
  position: absolute;
  top: 4px;
  height: 12px;
  left: 8px;
  transform: rotate(45deg);
  content: "";
}
.contact_information .help_info label a {
  position: relative;
  font-weight: 600;
  color: rgb(170, 192, 187);
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact_information .help_info label a::after {
  height: 1px;
  position: absolute;
  bottom: -1px;
  transform-origin: left;
  transition: transform 0.3s ease;
  left: 0;
  content: "";
  background: rgb(170, 192, 187);
  transform: scaleX(1);
  width: 100%;
}
.contact_information .help_info label a:hover {
  color: rgb(123, 110, 160);
}
.contact_information .help_info label a:hover::after {
  transform: scaleX(0);
  background: rgb(123, 110, 160);
}
.contact_information .connect_grid {
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 17px;
  border: none;
  padding: 18px 40px;
  overflow: hidden;
  width: auto;
  background: rgb(170, 192, 187);
  z-index: 1;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  color: #ffffff;
}
.contact_information .connect_grid::before {
  top: 0;
  position: absolute;
  content: "";
  left: -10px;
  height: 100%;
  transform: skewX(-25deg);
  z-index: -1;
  width: 0;
  background: rgb(123, 110, 160);
  transition: width 0.5s ease;
}
.contact_information .connect_grid:hover::before {
  width: 150%;
}
.contact_information svg {
  height: 24px;
  stroke-width: 2;
  width: 24px;
  stroke: rgb(170, 192, 187);
  fill: none;
  transition: all 0.3s ease;
}
.contact_information svg path {
  stroke: rgb(170, 192, 187);
  fill: none;
  transition: all 0.3s ease;
}
.contact_information svg:hover,
.contact_information svg:hover path {
  stroke: rgb(123, 110, 160);
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 1024px) {
  .contact_information {
    padding: 80px 0;
  }
  .contact_information .photo {
    min-height: 500px;
  }
  .contact_information .request_inquiry {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  .contact_information {
    padding: 60px 0;
  }
  .contact_information .help_form {
    flex-direction: column;
  }
  .contact_information .photo {
    min-height: 300px;
    width: 100%;
  }
  .contact_information .request_inquiry {
    width: 100%;
    padding: 40px 30px;
  }
  .contact_information form h3 {
    margin-bottom: 30px;
  }
  .contact_information form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
  }
  .contact_information .help_info {
    margin-bottom: 30px;
  }
  .contact_information .connect_grid {
    width: 100%;
    padding: 15px 30px;
  }
}
@media (max-width: 480px) {
  .contact_information {
    padding: 50px 0;
  }
  .contact_information h2 {
    font-size: calc(33px * 0.85);
  }
  .contact_information .help_form {
    margin-top: 30px;
  }
  .contact_information .photo {
    min-height: 200px;
  }
  .contact_information .request_inquiry {
    padding: 30px 20px;
  }
  .contact_information form h3 {
    font-size: calc(20px * 0.9);
    margin-bottom: 25px;
  }
  .contact_information form input[type="text"] {
    padding: 12px 15px;
    margin-bottom: 15px;
  }
  .contact_information .help_info {
    margin-bottom: 25px;
  }
  .contact_information .help_info label {
    font-size: calc(16px * 0.9);
  }
  .contact_information .connect_grid {
    padding: 12px 25px;
  }
}
.future_members {
  background: linear-gradient(
    150deg,
    rgb(218, 225, 220) 30%,
    rgb(123, 110, 160, 0.5) 100%
  );
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}
.future_members::before {
  opacity: 0.1;
  background: rgb(170, 192, 187, 0.5);
  top: -50%;
  filter: blur(60px);
  transform: rotate(30deg);
  border-radius: 100px;
  animation: float-slow 20s ease-in-out infinite alternate;
  position: absolute;
  right: -20%;
  content: "";
  height: 200%;
  width: 80%;
}
.future_members::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(170, 192, 187, 0.5) 25%,
    rgb(170, 192, 187) 50%,
    rgb(170, 192, 187, 0.5) 75%,
    transparent 100%
  );
  height: 1px;
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0;
  content: "";
}
@keyframes float-slow {
  0% {
    transform: rotate(30deg) translateY(0);
  }
  100% {
    transform: rotate(30deg) translateY(-50px);
  }
}
.future_members .container {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.future_members .legacy_story {
  gap: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  position: relative;
  align-items: start;
}
.future_members h4 {
  position: relative;
  font-size: 35px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  padding: 0;
}
.future_members h4::before {
  content: "";
  border-radius: 10px;
  height: 5px;
  left: 0;
  position: absolute;
  background: linear-gradient(90deg, rgb(170, 192, 187), rgb(123, 110, 160));
  top: -20px;
  width: 50px;
}
.future_members h4::after {
  height: 2px;
  bottom: -20px;
  border-radius: 10px;
  background: rgb(170, 192, 187, 0.5);
  position: absolute;
  content: "";
  width: 120px;
  left: 0;
}
.future_members div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.future_members div p {
  position: relative;
  font-size: 14px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  display: flex;
  margin: 0;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #000000;
  line-height: 1.6;
}
.future_members div p:nth-child(even) {
  transform: translateX(30px);
}
.future_members div p:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.future_members div p:nth-child(even):hover {
  transform: translate(30px, -5px);
}
.future_members div p::before {
  top: 0;
  background: linear-gradient(180deg, rgb(170, 192, 187), rgb(123, 110, 160));
  height: 100%;
  content: "";
  width: 4px;
  transition: width 0.3s ease;
  left: 0;
  opacity: 0.7;
  position: absolute;
}
.future_members div p:hover::before {
  width: 8px;
}
.future_members div p svg {
  width: 28px;
  margin-right: 20px;
  min-width: 28px;
  transition: all 0.3s ease;
  z-index: 2;
  height: 28px;
  position: relative;
}
.future_members div p:hover svg {
  transform: scale(1.2);
}
.future_members div p svg path {
  fill: rgb(170, 192, 187);
  transition: fill 0.3s ease;
}
.future_members div p:hover svg path {
  fill: rgb(123, 110, 160);
}
@media (max-width: 991px) {
  .future_members {
    padding: 90px 0;
  }
  .future_members .legacy_story {
    gap: 30px;
    grid-template-columns: 250px 1fr;
  }
  .future_members h4 {
    font-size: calc(35px - 2px);
  }
  .future_members div {
    gap: 15px;
  }
  .future_members div p {
    padding: 18px 20px;
  }
  .future_members div p:nth-child(even) {
    transform: translateX(20px);
  }
  .future_members div p:nth-child(even):hover {
    transform: translate(20px, -5px);
  }
  .future_members div p svg {
    margin-right: 15px;
    height: 24px;
    width: 24px;
    min-width: 24px;
  }
}
@media (max-width: 767px) {
  .future_members {
    padding: 70px 0;
  }
  .future_members .legacy_story {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .future_members h4 {
    text-align: center;
    max-width: 500px;
    font-size: calc(35px - 2px);
    margin: 0 auto;
  }
  .future_members h4::before {
    transform: translateX(-50%);
    left: 50%;
  }
  .future_members h4::after {
    transform: translateX(-50%);
    width: 100px;
    left: 50%;
  }
  .future_members div p:nth-child(even) {
    transform: translateX(0);
  }
  .future_members div p:nth-child(even):hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 479px) {
  .future_members {
    padding: 50px 0;
  }
  .future_members h4 {
    font-size: calc(35px - 4px);
  }
  .future_members div {
    gap: 12px;
  }
  .future_members div p {
    padding: 15px;
  }
  .future_members div p svg {
    margin-right: 12px;
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
}
.customer_reviews {
  padding: 100px 0;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.customer_reviews::before {
  right: -50%;
  border-radius: 50%;
  position: absolute;
  top: -50%;
  width: 100%;
  content: "";
  height: 100%;
  z-index: 0;
  background: rgb(218, 225, 220);
}
.customer_reviews .container {
  z-index: 1;
  position: relative;
}
.customer_reviews h2 {
  transform: translateX(-10%);
  color: #000000;
  font-size: 28px;
  position: relative;
  margin-bottom: 100px;
  font-weight: 700;
}
.customer_reviews h2::first-letter {
  color: rgb(170, 192, 187);
  font-size: 1.8em;
}
.customer_reviews .feedback_slider {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}
.customer_reviews .client_feedback {
  position: relative;
  animation: fadeIn 0.8s ease forwards;
  padding: 30px 0;
  opacity: 0;
}
.customer_reviews .client_feedback:nth-child(3n + 1) {
  grid-column: span 5;
  animation-delay: 0.1s;
}
.customer_reviews .client_feedback:nth-child(3n + 2) {
  margin-top: 80px;
  grid-column: span 4;
  animation-delay: 0.3s;
}
.customer_reviews .client_feedback:nth-child(3n + 3) {
  animation-delay: 0.5s;
  grid-column: span 3;
  margin-top: 40px;
}
.customer_reviews .client_feedback::before {
  font-size: 120px;
  left: -20px;
  z-index: -1;
  line-height: 1;
  color: rgb(170, 192, 187, 0.5);
  content: "";
  position: absolute;
  top: -30px;
  font-family: Arial, sans-serif;
}
.customer_reviews .client_feedback img {
  bottom: 20px;
  transform: translateY(0);
  filter: grayscale(100%);
  width: 60px;
  right: 0;
  border-radius: 10px;
  border: 3px solid #ffffff;
  position: absolute;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 60px;
}
.customer_reviews .client_feedback:hover img {
  transform: translateY(-15px);
  filter: grayscale(0%);
}
.customer_reviews .client_feedback p {
  margin: 0;
}
.customer_reviews .client_feedback p:first-of-type {
  bottom: 0;
  font-weight: 600;
  position: absolute;
  white-space: nowrap;
  color: rgb(170, 192, 187);
  right: 70px;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.customer_reviews .client_feedback .description {
  font-size: calc(16px * 1.2);
  font-weight: 300;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 40px;
  position: relative;
}
.customer_reviews .client_feedback .description::first-letter {
  font-weight: 600;
  font-size: 1.3em;
}
.customer_reviews .client_feedback .description::after {
  bottom: -20px;
  background: rgb(123, 110, 160);
  height: 2px;
  left: 0;
  width: 40px;
  transform-origin: left;
  transform: scaleX(1);
  content: "";
  transition: transform 0.4s ease;
  position: absolute;
}
.customer_reviews .client_feedback:hover .description::after {
  transform: scaleX(3);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .customer_reviews {
    padding: 80px 0;
  }
  .customer_reviews h2 {
    transform: none;
    margin-bottom: 60px;
  }
  .customer_reviews .feedback_slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .customer_reviews .client_feedback:nth-child(3n + 1),
  .customer_reviews .client_feedback:nth-child(3n + 2),
  .customer_reviews .client_feedback:nth-child(3n + 3) {
    margin-top: 0;
    grid-column: span 3;
  }
  .customer_reviews .client_feedback:nth-child(2n) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .customer_reviews {
    padding: 60px 0;
  }
  .customer_reviews::before {
    top: -20%;
    right: -20%;
  }
  .customer_reviews h2 {
    margin-bottom: 50px;
    font-size: calc(28px * 0.9);
  }
  .customer_reviews .feedback_slider {
    grid-template-columns: 1fr;
  }
  .customer_reviews .client_feedback:nth-child(3n + 1),
  .customer_reviews .client_feedback:nth-child(3n + 2),
  .customer_reviews .client_feedback:nth-child(3n + 3),
  .customer_reviews .client_feedback:nth-child(2n) {
    grid-column: 1;
    margin-bottom: 50px;
    margin-top: 0;
  }
  .customer_reviews .client_feedback::before {
    font-size: 80px;
  }
  .customer_reviews .client_feedback img {
    width: 50px;
    height: 50px;
  }
  .customer_reviews .client_feedback p:first-of-type {
    font-size: calc(17px * 0.9);
    right: 60px;
  }
  .customer_reviews .client_feedback .description {
    font-size: 16px;
  }
}
.secure_guard {
  gap: 25px;
  border: 2px solid rgb(170, 192, 187);
  box-shadow:
    0 0 10px rgb(170, 192, 187, 0.5),
    inset 0 0 15px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  flex-direction: column;
  padding: 40px;
  height: auto;
  display: flex;
  background: rgb(123, 110, 160);
  width: 100%;
}
.secure_guard h1 {
  font-size: 45px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  padding-bottom: 10px;
  text-align: center;
  margin: 0;
  font-weight: 700;
  border-bottom: 2px solid rgb(123, 110, 160);
  letter-spacing: 2px;
  color: rgb(170, 192, 187);
}
.secure_guard h2 {
  margin: 0;
  padding-left: 15px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  border-left: 4px solid rgb(170, 192, 187);
  font-size: 29px;
  text-align: left;
  color: rgb(123, 110, 160);
  letter-spacing: 1px;
}
.secure_guard h3,
.secure_guard h4,
.secure_guard h5 {
  color: #ffffff;
  font-size: 19px;
}
.secure_guard ul {
  padding-left: 20px;
  list-style-type: disc;
  margin: 0;
}
.secure_guard li {
  background: rgb(123, 110, 160, 0.5);
  padding: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  border: 1px solid rgb(170, 192, 187);
  color: #ffffff;
  margin-bottom: 10px;
  border-radius: 10px;
  line-height: 1.6;
}
.secure_guard div {
  border: 1px solid rgb(123, 110, 160);
  background: rgb(170, 192, 187, 0.5);
  font-family: Arial, sans-serif;
  line-height: 1.8;
  padding: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  color: #000000;
  border-radius: 19px;
  font-size: 14px;
}
.secure_guard p,
.secure_guard span {
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.8;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
@media only screen and (max-width: 800px) {
  .secure_guard {
    padding: 20px;
  }
  .secure_guard h1 {
    font-size: calc(19px - 4px);
    margin-bottom: 15px;
  }
  .secure_guard h2 {
    margin-bottom: 10px;
    font-size: calc(19px - 2px);
  }
  .secure_guard ul {
    padding-left: 15px;
  }
  .secure_guard li {
    padding: 8px;
    margin-bottom: 8px;
  }
  .secure_guard div {
    padding: 15px;
  }
}
.newsletter_subscription {
  padding: 5rem 2rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #000000 0%, rgb(170, 192, 187, 0.5) 100%);
}
.newsletter_subscription::before {
  content: "";
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.5) 10px,
    rgba(0, 0, 0, 0.5) 11px
  );
  opacity: 0.1;
  position: absolute;
  height: 100%;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
}
.newsletter_subscription::after {
  right: 0;
  filter: blur(2px);
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(123, 110, 160),
    transparent
  );
  position: absolute;
  animation: scanline 3s linear infinite;
  bottom: 0;
  height: 5px;
  width: 60%;
}
@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.newsletter_subscription .legacy_story {
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: grid;
  max-width: 1200px;
}
.newsletter_subscription .inquiry_query {
  border-image-slice: 1;
  transform: perspective(1000px) rotateX(5deg);
  width: 70%;
  border-image: linear-gradient(
    135deg,
    rgb(170, 192, 187),
    transparent,
    rgb(123, 110, 160)
  );
  backdrop-filter: blur(10px);
  position: relative;
  margin-left: 15%;
  border: 2px solid transparent;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  box-shadow:
    0 0 25px rgb(170, 192, 187, 0.5),
    inset 0 0 15px rgb(123, 110, 160, 0.5);
}
.newsletter_subscription .inquiry_query::before {
  filter: blur(15px);
  top: -2px;
  background: linear-gradient(
    45deg,
    rgb(170, 192, 187),
    transparent,
    rgb(123, 110, 160)
  );
  z-index: -1;
  left: -2px;
  opacity: 0.7;
  animation: glow 3s ease-in-out infinite alternate;
  content: "";
  right: -2px;
  position: absolute;
  bottom: -2px;
}
@keyframes glow {
  0% {
    opacity: 0.5;
    filter: blur(15px);
  }
  100% {
    opacity: 0.9;
    filter: blur(20px);
  }
}
.newsletter_subscription h3 {
  font-weight: 700;
  display: inline-block;
  font-size: 34px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  letter-spacing: 2px;
  position: relative;
  color: #ffffff;
  text-shadow:
    0 0 10px rgb(170, 192, 187),
    0 0 20px rgb(170, 192, 187, 0.5);
  margin-bottom: 2.5rem;
}
.newsletter_subscription h3::after {
  content: "";
  box-shadow: 0 0 10px rgb(123, 110, 160);
  bottom: -10px;
  width: 50px;
  background: rgb(123, 110, 160);
  left: 0;
  position: absolute;
  height: 3px;
}
.newsletter_subscription .input_holder {
  transform-style: preserve-3d;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  display: flex;
}
.newsletter_subscription input[type="email"] {
  flex-grow: 1;
  font-family: Arial, sans-serif;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 1.3rem 1.5rem;
  border-right: 1px solid rgb(170, 192, 187, 0.5);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  color: #ffffff;
  font-size: 17px;
}
.newsletter_subscription input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter_subscription input[type="email"]:focus {
  outline: none;
  box-shadow: inset 0 0 15px rgb(170, 192, 187, 0.5);
  background: rgba(255, 255, 255, 0.2);
}
.newsletter_subscription .news_optin {
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(to right, rgb(123, 110, 160), rgb(170, 192, 187));
  font-family: Arial, sans-serif;
  transition: all 0.4s ease;
  padding: 1rem 2.5rem;
  font-size: 18px;
  position: relative;
  border: none;
}
.newsletter_subscription .news_optin::before {
  width: 100%;
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  content: "";
  top: 0;
  transition: all 0.6s ease;
  left: -100%;
  height: 100%;
}
.newsletter_subscription .news_optin:hover::before {
  left: 100%;
}
.newsletter_subscription .news_optin:hover {
  box-shadow:
    0 0 15px rgb(123, 110, 160),
    0 0 30px rgb(123, 110, 160, 0.5);
  text-shadow: 0 0 5px #ffffff;
}
@media (max-width: 768px) {
  .newsletter_subscription {
    padding: 3rem 1rem;
  }
  .newsletter_subscription .inquiry_query {
    width: 100%;
    transform: perspective(0) rotateX(0);
    margin-left: 0;
    padding: 2rem 1rem;
  }
  .newsletter_subscription h3 {
    text-align: center;
    font-size: 18px;
    width: 100%;
  }
  .newsletter_subscription h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .newsletter_subscription .input_holder {
    clip-path: none;
    flex-direction: column;
  }
  .newsletter_subscription input[type="email"] {
    padding: 1rem;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgb(170, 192, 187, 0.5);
  }
  .newsletter_subscription .news_optin {
    width: 100%;
    padding: 1rem;
  }
}
.launch_now {
  isolation: isolate;
  position: relative;
  background: linear-gradient(
    135deg,
    rgb(170, 192, 187) 0%,
    rgb(123, 110, 160) 100%
  );
  overflow: hidden;
  padding: 120px 0;
}
.launch_now::before {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  content: "";
  z-index: 1;
  left: 0;
  width: 100%;
  position: absolute;
  pointer-events: none;
  height: 100%;
  top: 0;
}
.launch_now::after {
  top: -50%;
  content: "";
  pointer-events: none;
  width: 100%;
  transform: rotate(-15deg);
  border-radius: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgb(170, 192, 187, 0.5) 0%,
    transparent 70%
  );
  z-index: 0;
  position: absolute;
  right: -50%;
}
.launch_now .container {
  flex-direction: column;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 2;
  align-items: center;
  display: flex;
  position: relative;
  margin: 0 auto;
}
.launch_now h2 {
  text-align: center;
  color: #ffffff;
  transform: perspective(1000px) translateZ(0);
  max-width: 800px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 33px;
}
.launch_now h2::after {
  background: #ffffff;
  content: "";
  border-radius: 1px;
  width: 80px;
  position: absolute;
  height: 3px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -15px;
}
.launch_now .legacy_story {
  align-items: center;
  transform: translateY(0);
  padding: 30px 40px;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  backdrop-filter: blur(10px);
  gap: 25px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}
.launch_now .legacy_story:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}
.launch_now svg {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 50px;
  transform: rotate(0deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  height: 50px;
}
.launch_now .legacy_story:hover svg {
  transform: rotate(15deg) scale(1.1);
}
.launch_now svg path {
  transition: fill 0.3s ease;
  fill: #ffffff;
}
.launch_now .legacy_story:hover svg path {
  fill: #ffffff;
}
.launch_now .connect_grid {
  position: relative;
  z-index: 1;
  transition:
    color 0.4s ease,
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  background: #ffffff;
  display: inline-block;
  padding: 15px 30px;
  color: rgb(170, 192, 187);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-size: 17px;
}
.launch_now .connect_grid::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  z-index: -1;
  height: 100%;
  transition: left 0.7s ease;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  content: "";
}
.launch_now .connect_grid::after {
  top: 0;
  left: 0;
  z-index: -2;
  position: absolute;
  background: rgb(123, 110, 160);
  content: "";
  transition: width 0.4s ease;
  width: 0;
  height: 100%;
}
.launch_now .connect_grid:hover {
  transform: translateY(-2px);
  color: #ffffff;
}
.launch_now .connect_grid:hover::before {
  left: 100%;
}
.launch_now .connect_grid:hover::after {
  width: 100%;
}
.launch_now .legacy_story div {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.launch_now .legacy_story:hover div {
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .launch_now {
    padding: 90px 0;
  }
  .launch_now h2 {
    font-size: calc(33px * 0.9);
    max-width: 700px;
  }
  .launch_now .legacy_story {
    padding: 25px 35px;
  }
}
@media (max-width: 767px) {
  .launch_now {
    padding: 70px 0;
  }
  .launch_now h2 {
    font-size: calc(33px * 0.8);
    margin-bottom: 30px;
  }
  .launch_now h2::after {
    width: 60px;
  }
  .launch_now .legacy_story {
    padding: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .launch_now svg {
    width: 45px;
    height: 45px;
  }
  .launch_now .connect_grid {
    padding: 12px 24px;
  }
}
@media (max-width: 479px) {
  .launch_now {
    padding: 50px 0;
  }
  .launch_now h2 {
    line-height: 1.5;
    font-size: calc(33px * 0.7);
  }
  .launch_now h2::after {
    width: 50px;
    bottom: -12px;
  }
  .launch_now .legacy_story {
    padding: 25px 20px;
  }
  .launch_now svg {
    height: 40px;
    width: 40px;
  }
  .launch_now .connect_grid {
    text-align: center;
    padding: 12px 20px;
    font-size: calc(17px * 0.9);
    width: 100%;
  }
}
.title_greeting {
  min-height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.title_greeting .fast_studypro {
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
  justify-content: flex-start;
  display: flex;
}
.title_greeting .fast_studypro::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  right: 0;
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.title_greeting .fast_studypro::after {
  content: "";
  animation: pulse 8s infinite alternate;
  left: 0;
  z-index: 2;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgb(170, 192, 187, 0.5),
    rgb(170, 192, 187, 0.5) 1px,
    transparent 1px,
    transparent 10px
  );
  position: absolute;
  opacity: 0.1;
  height: 100%;
  top: 0;
}
.title_greeting .fast_learn {
  margin-left: 10%;
  transform: translateY(-2rem);
  position: relative;
  max-width: 700px;
  padding: 3rem;
  animation: fadeSlideUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
  z-index: 3;
  opacity: 0;
}
.title_greeting .fast_learn::before {
  top: 0;
  background: rgb(170, 192, 187);
  animation: growLine 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.6s;
  content: "";
  height: 0;
  width: 6px;
  left: -20px;
  position: absolute;
}
.title_greeting .fast_learn::after {
  animation: expandWidth 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.9s;
  height: 3px;
  content: "";
  position: absolute;
  left: 0;
  background: rgb(123, 110, 160);
  width: 0;
  bottom: 0;
}
.title_greeting h1 {
  color: #ffffff;
  transform: perspective(1000px) rotateX(0deg);
  transition: transform 0.5s ease;
  font-size: clamp(2.5rem, 5vw, 44px);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}
.title_greeting h1::before {
  transform-origin: left;
  left: 0;
  transform: scaleX(0);
  animation: expandWidth 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 1.2s;
  height: 5px;
  width: 60px;
  position: absolute;
  background: rgb(170, 192, 187);
  bottom: -15px;
  content: "";
}
.title_greeting h3 {
  max-width: 90%;
  font-size: clamp(1.25rem, 3vw, 18px);
  position: relative;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.6s;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.title_greeting p {
  padding-left: 1rem;
  margin-top: 2rem;
  line-height: 1.6;
  max-width: 85%;
  font-size: clamp(1rem, 2vw, 17px);
  opacity: 0;
  color: #ffffff;
  position: relative;
  animation: fadeIn 1.5s ease forwards 0.9s;
  border-left: 3px solid rgb(123, 110, 160);
}
.title_greeting .fast_learn:hover h1 {
  transform: perspective(1000px) rotateX(5deg);
  color: rgb(170, 192, 187);
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes growLine {
  0% {
    height: 0;
  }
  100% {
    height: 80%;
  }
}
@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.05;
  }
}
@media (max-width: 992px) {
  .title_greeting .fast_learn {
    margin-left: 5%;
    padding: 2rem;
  }
  .title_greeting h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .title_greeting h3 {
    max-width: 100%;
  }
  .title_greeting p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .title_greeting .fast_studypro {
    padding-top: 15vh;
    align-items: flex-start;
  }
  .title_greeting .fast_learn {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .title_greeting h1::before {
    width: 40px;
  }
  .title_greeting .fast_learn::before {
    left: -10px;
  }
}
@media (max-width: 576px) {
  .title_greeting .fast_studypro {
    padding-top: 10vh;
  }
  .title_greeting .fast_learn {
    padding: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .title_greeting h1 {
    font-size: clamp(1.75rem, 7vw, 2rem);
  }
  .title_greeting h3 {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
  .title_greeting p {
    padding-left: 0.75rem;
    font-size: clamp(0.875rem, 3vw, 1rem);
  }
  .title_greeting .fast_learn::before {
    width: 4px;
  }
}
.windowPrivacySettings {
  padding: 20px 0;
  justify-content: center;
  position: fixed;
  z-index: 100;
  border-top: 3px solid rgb(170, 192, 187);
  bottom: 0;
  background: rgb(218, 225, 220);
  display: flex;
  width: 100%;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
}
.track_cookies {
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgb(170, 192, 187);
  border-radius: 25px;
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.cookie_visitor {
  margin-right: 20px;
  flex-shrink: 0;
}
.cookie_visitor svg {
  height: 50px;
  width: 50px;
  fill: rgb(170, 192, 187);
}
.cookie_box {
  text-align: left;
  flex-grow: 1;
  color: #ffffff;
}
.cookie_box h5 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgb(170, 192, 187);
}
.cookie_box p {
  line-height: 1.5;
  font-size: 15px;
  margin: 0;
  color: #ffffff;
}
.cookie_box p a {
  color: rgb(170, 192, 187);
  text-decoration: underline;
}
.manage_tracking {
  min-width: 120px;
  border: none;
  cursor: pointer;
  background: rgb(170, 192, 187);
  font-size: 17px;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: 10px;
  color: #ffffff;
  padding: 10px 20px;
  text-align: center;
}
.cookie_button.cookie_list {
  margin-right: 10px;
}
#cookieModalMessage {
  display: none;
}
#cookieModalMessage:checked ~ .windowPrivacySettings {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1200px) {
  .track_cookies {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cookie_visitor {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .manage_tracking {
    width: 100%;
    max-width: 250px;
    margin: 10px 0;
  }
}
.pricing_set {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #ffffff;
}
.pricing_set::before {
  content: "";
  top: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  left: 0;
  height: 100%;
}
.pricing_set .container {
  z-index: 2;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
}
.pricing_set .deal_opts {
  position: relative;
}
.pricing_set h2 {
  transform: translateY(0);
  background-clip: text !important;
  position: relative;
  margin-bottom: 25px;
  background: linear-gradient(
    90deg,
    rgb(170, 192, 187) 0%,
    rgb(123, 110, 160) 100%
  );
  text-align: center;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  animation: titleFloat 6s ease-in-out infinite;
  font-weight: 700;
  color: transparent;
  font-size: 32px;
}
.pricing_set h2::after {
  height: 3px;
  transform: translateX(-50%);
  bottom: -10px;
  background: rgb(123, 110, 160);
  position: absolute;
  width: 80px;
  content: "";
  left: 50%;
}
.pricing_set .payment_deals {
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0 auto 50px;
  max-width: 700px;
  text-align: center;
  font-size: calc(15px + 2px);
}
.pricing_set .price_schemes {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  margin: 0;
  gap: 30px;
  list-style: none;
}
.pricing_set .price_schemes li {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.pricing_set .price_schemes li:hover {
  transform: translateY(-10px);
  z-index: 3;
}
.pricing_set .plan_deals {
  display: block;
  height: 100%;
  text-decoration: none;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.pricing_set .study_fees {
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.4s ease;
  background: linear-gradient(
    145deg,
    rgba(41, 41, 41, 0.8) 0%,
    rgba(25, 25, 25, 0.9) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  padding: 35px 30px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
}
.pricing_set .study_fees::before {
  transform: scaleX(0);
  transition: transform 0.5s ease;
  height: 5px;
  content: "";
  transform-origin: left;
  left: 0;
  width: 100%;
  position: absolute;
  background: linear-gradient(90deg, rgb(170, 192, 187), rgb(123, 110, 160));
  top: 0;
}
.pricing_set .plan_deals:hover .study_fees::before {
  transform: scaleX(1);
}
.pricing_set .study_fees::after {
  right: 0;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgb(123, 110, 160, 0.5) 50%
  );
  width: 60px;
  height: 60px;
  bottom: 0;
  content: "";
  transition: opacity 0.5s ease;
  position: absolute;
  opacity: 0;
}
.pricing_set .plan_deals:hover .study_fees::after {
  opacity: 1;
}
.pricing_set .class_rates {
  z-index: 2;
  position: relative;
}
.pricing_set .class_rates h4 {
  font-size: calc(21px + 2px);
  font-weight: 700;
  display: inline-block;
  color: #ffffff;
  margin: 0 0 20px;
  position: relative;
}
.pricing_set .class_rates h4::after {
  width: 40px;
  transition: width 0.4s ease;
  bottom: -8px;
  height: 2px;
  content: "";
  left: 0;
  background: rgb(170, 192, 187);
  position: absolute;
}
.pricing_set .plan_deals:hover .class_rates h4::after {
  width: 100%;
}
.pricing_set .class_rates p {
  max-height: 200px;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding-right: 5px;
  overflow-wrap: break-word;
  overflow-y: auto;
  line-height: 1.6;
  margin: 0 0 30px;
}
.pricing_set .class_rates p::-webkit-scrollbar {
  width: 4px;
}
.pricing_set .class_rates p::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.pricing_set .class_rates p::-webkit-scrollbar-thumb {
  background: rgb(170, 192, 187, 0.5);
}
.pricing_set .learning_plan {
  display: block;
  margin-top: 15px;
  color: #ffffff;
  padding: 10px 0;
  font-weight: 700;
  position: relative;
  font-size: calc(21px + 4px);
}
.pricing_set .learning_plan::before {
  width: 40px;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  height: 1px;
  left: 0;
}
@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 991px) {
  .pricing_set {
    padding: 80px 0;
  }
  .pricing_set .price_schemes {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
  }
  .pricing_set .study_fees {
    padding: 25px 20px;
  }
  .pricing_set .class_rates p {
    font-size: calc(15px - 1px);
    max-height: 150px;
  }
  .pricing_set .learning_plan {
    font-size: calc(21px + 2px);
  }
}
@media (max-width: 767px) {
  .pricing_set {
    padding: 60px 0;
  }
  .pricing_set h2 {
    font-size: calc(32px - 4px);
  }
  .pricing_set .payment_deals {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .pricing_set .price_schemes {
    max-width: 450px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  .pricing_set .class_rates h4 {
    font-size: 21px;
  }
  .pricing_set .learning_plan {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .pricing_set {
    padding: 50px 0;
  }
  .pricing_set h2 {
    font-size: calc(32px - 8px);
  }
  .pricing_set .payment_deals {
    font-size: calc(15px - 2px);
  }
  .pricing_set .study_fees {
    padding: 20px 15px;
  }
  .pricing_set .class_rates p {
    font-size: calc(15px - 2px);
  }
}
.course_instructor {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  background: linear-gradient(170deg, rgb(218, 225, 220), #ffffff);
}
.course_instructor::before {
  border-radius: 50%;
  right: -200px;
  background-color: rgb(170, 192, 187, 0.5);
  top: -200px;
  position: absolute;
  content: "";
  height: 500px;
  width: 500px;
  opacity: 0.1;
}
.course_instructor .container {
  position: relative;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}
.course_instructor .client_feedback {
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 auto;
  display: flex;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 13px;
  flex-direction: column;
  position: relative;
}
.course_instructor .client_feedback:hover {
  transform: translateY(-10px);
}
.course_instructor .client_feedback::before {
  background-color: rgb(123, 110, 160);
  transform: rotate(45deg);
  content: "";
  left: 50px;
  height: 30px;
  top: -15px;
  width: 30px;
  z-index: -1;
  position: absolute;
}
.course_instructor .client_feedback::after {
  height: 30px;
  width: 30px;
  content: "";
  position: absolute;
  z-index: -1;
  transform: rotate(45deg);
  background-color: rgb(170, 192, 187);
  bottom: -15px;
  right: 50px;
}
.course_instructor .photo {
  align-self: center;
  height: 120px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
  width: 120px;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}
.course_instructor .client_feedback:hover .photo {
  transform: scale(1.05);
}
.course_instructor .photo::before {
  transition: opacity 0.3s ease;
  content: "";
  opacity: 0;
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgb(170, 192, 187, 0.5));
}
.course_instructor .client_feedback:hover .photo::before {
  opacity: 1;
}
.course_instructor .career_projects {
  font-size: 16px;
  background-color: rgb(218, 225, 220);
  position: relative;
  padding: 20px 30px;
  margin: 25px 0 0;
  color: #000000;
  line-height: 1.8;
  order: 3;
  border-radius: 13px;
}
.course_instructor .career_projects::before {
  border-bottom: 10px solid rgb(218, 225, 220);
  top: -10px;
  border-left: 10px solid transparent;
  content: "";
  left: 30px;
  border-right: 10px solid transparent;
  position: absolute;
}
.course_instructor .name {
  font-size: 21px;
  font-weight: 700;
  margin: 5px 0;
  color: #000000;
  order: 1;
  display: block;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.course_instructor .name::after {
  content: "";
  background-color: rgb(170, 192, 187);
  transform: translateX(-50%);
  bottom: 0;
  position: absolute;
  height: 2px;
  width: 40px;
  transition: width 0.3s ease;
  left: 50%;
}
.course_instructor .client_feedback:hover .name::after {
  width: 80px;
}
.course_instructor span:not(.name) {
  letter-spacing: 1px;
  text-align: center;
  color: rgb(123, 110, 160);
  font-weight: 600;
  order: 2;
  font-size: calc(16px * 0.9);
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .course_instructor .client_feedback {
    align-items: center;
    grid-template-columns: auto 1fr;
    grid-template-areas: "photo name" "photo job" "quote quote";
    gap: 10px 30px;
    display: grid;
  }
  .course_instructor .photo {
    align-self: start;
    margin-bottom: 0;
    width: 180px;
    grid-area: photo;
    height: 180px;
  }
  .course_instructor .name {
    font-size: 29px;
    grid-area: name;
    text-align: left;
  }
  .course_instructor .name::after {
    transform: none;
    left: 0;
  }
  .course_instructor span:not(.name) {
    text-align: left;
    grid-area: job;
    margin-bottom: 0;
  }
  .course_instructor .career_projects {
    margin-top: 30px;
    grid-area: quote;
  }
}
@media (max-width: 768px) {
  .course_instructor {
    padding: 70px 0;
  }
  .course_instructor .client_feedback {
    padding: 40px 30px;
  }
}
@media (max-width: 576px) {
  .course_instructor {
    padding: 50px 0;
  }
  .course_instructor .client_feedback {
    padding: 30px 20px;
  }
  .course_instructor .career_projects {
    margin-top: 20px;
    padding: 15px 20px;
  }
}
.appSpace {
  overflow: hidden;
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgb(218, 225, 220) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
}
.appSpace::before {
  position: absolute;
  width: 100%;
  opacity: 0.1;
  height: 100%;
  z-index: 0;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgb(170, 192, 187, 0.5) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgb(123, 110, 160, 0.5) 0%,
      transparent 50%
    );
  content: "";
  animation: ambientGlow 15s infinite alternate ease-in-out;
  top: 0;
  left: 0;
}
.appSpace::after {
  position: absolute;
  content: "";
  left: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(170, 192, 187),
    rgb(123, 110, 160),
    transparent
  );
  width: 100%;
  bottom: 0;
  z-index: 1;
  height: 3px;
}
.appSpace .container {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.appSpace h2 {
  position: relative;
  color: #000000;
  opacity: 0;
  font-size: 35px;
  animation: fadeUp 0.8s 0.2s forwards ease-out;
  margin-bottom: 40px;
  text-align: center;
  transform: translateY(20px);
  font-weight: 700;
}
.appSpace h2::after {
  bottom: -15px;
  background: linear-gradient(90deg, rgb(170, 192, 187), rgb(123, 110, 160));
  transform: translateX(-50%);
  height: 3px;
  left: 50%;
  content: "";
  width: 80px;
  position: absolute;
}
.appSpace .legacy_story {
  position: relative;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: fadeUp 0.8s 0.4s forwards ease-out;
  transform: translateY(30px);
  border-radius: 29px;
  background: #ffffff;
  padding: 40px;
  overflow: hidden;
}
.appSpace .legacy_story::before {
  left: 0;
  position: absolute;
  background: linear-gradient(
    to bottom,
    rgb(170, 192, 187),
    rgb(123, 110, 160)
  );
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
}
.appSpace .legacy_story::after {
  z-index: 1;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(245, 247, 250, 0.6) 100%
  );
  width: 40%;
  position: absolute;
  pointer-events: none;
  right: 0;
  height: 100%;
  content: "";
  top: 0;
}
.appSpace .legacy_story:hover {
  transform: translateY(27px);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.07);
}
.appSpace ul {
  position: relative;
  margin: 0;
  list-style: none;
  z-index: 2;
  padding: 0;
}
.appSpace li {
  position: relative;
  padding-left: 25px;
}
.appSpace li::before {
  width: 8px;
  top: 10px;
  position: absolute;
  animation: scaleIn 0.4s 0.8s forwards ease-out;
  content: "";
  background: rgb(170, 192, 187);
  transform: scale(0);
  left: 0;
  height: 8px;
  border-radius: 50%;
}
.appSpace span {
  font-size: 16px;
  animation: fadeIn 0.8s 0.6s forwards ease-out;
  opacity: 0;
  font-family: Arial, sans-serif;
  display: block;
  position: relative;
  transform: translateX(20px);
  color: #000000;
  line-height: 1.8;
}
.appSpace span::after {
  width: 0;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: -15px;
  background: linear-gradient(90deg, rgb(170, 192, 187, 0.5), transparent);
  content: "";
  animation: lineExpand 1.2s 1s forwards ease-in-out;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lineExpand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes ambientGlow {
  0% {
    opacity: 0.05;
    background-position:
      0% 0%,
      100% 100%;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.05;
    background-position:
      5% 5%,
      95% 95%;
  }
}
@media (max-width: 991px) {
  .appSpace {
    padding: 90px 0;
  }
  .appSpace h2 {
    font-size: calc(35px * 0.9);
    margin-bottom: 35px;
  }
  .appSpace .legacy_story {
    padding: 35px;
  }
  .appSpace .legacy_story::after {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .appSpace {
    padding: 70px 0;
  }
  .appSpace h2 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.8);
  }
  .appSpace h2::after {
    bottom: -12px;
    width: 60px;
  }
  .appSpace .legacy_story {
    padding: 30px 25px;
  }
  .appSpace .legacy_story::after {
    display: none;
  }
  .appSpace span {
    line-height: 1.7;
    font-size: calc(16px * 0.95);
  }
}
@media (max-width: 480px) {
  .appSpace {
    padding: 50px 0;
  }
  .appSpace h2 {
    font-size: calc(35px * 0.7);
    margin-bottom: 25px;
  }
  .appSpace .legacy_story {
    border-radius: 10px;
    padding: 25px 20px;
  }
  .appSpace li {
    padding-left: 20px;
  }
  .appSpace li::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
  .appSpace span {
    font-size: calc(16px * 0.9);
    line-height: 1.6;
  }
}
.our_mission {
  overflow: hidden;
  position: relative;
  padding: 120px 0;
  background: #ffffff;
}
.our_mission::before {
  top: 0;
  background: rgb(170, 192, 187);
  z-index: 1;
  width: 100%;
  height: 50%;
  content: "";
  position: absolute;
  left: 0;
  transform: skewY(-6deg) translateY(-30%);
}
.our_mission .container {
  z-index: 2;
  padding: 0 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.our_mission .legacy_story {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 40px;
}
.our_mission .online_mastery {
  position: relative;
  flex: 0 0 300px;
  text-align: center;
}
.our_mission .photo {
  border: 8px solid #ffffff;
  margin: 0 auto 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 220px;
  z-index: 3;
  border-radius: 50%;
  width: 220px;
  position: relative;
}
.our_mission .quick_mastery {
  margin-bottom: 20px;
}
.our_mission .why_trust {
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  font-size: 21px;
}
.our_mission .skill_boost {
  color: rgb(170, 192, 187);
  padding: 0 15px;
  font-size: 14px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.our_mission .skill_boost::before,
.our_mission .skill_boost::after {
  height: 1px;
  width: 30px;
  content: "";
  position: absolute;
  top: 50%;
  background-color: rgb(170, 192, 187, 0.5);
}
.our_mission .skill_boost::before {
  left: -30px;
}
.our_mission .skill_boost::after {
  right: -30px;
}
.our_mission .text_holder {
  min-width: 300px;
  border-radius: 26px;
  padding: 50px;
  background-color: #ffffff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  flex: 1;
  position: relative;
}
.our_mission .text_holder::before {
  width: 60px;
  position: absolute;
  content: "";
  height: 60px;
  left: 30px;
  opacity: 0.5;
  border-left: 4px solid rgb(170, 192, 187, 0.5);
  top: 30px;
  border-top: 4px solid rgb(170, 192, 187, 0.5);
}
.our_mission .text_holder::after {
  content: "";
  right: 30px;
  width: 60px;
  opacity: 0.5;
  border-right: 4px solid rgb(123, 110, 160, 0.5);
  height: 60px;
  border-bottom: 4px solid rgb(123, 110, 160, 0.5);
  position: absolute;
  bottom: 30px;
}
.our_mission .why_choose {
  font-weight: 600;
  display: flex;
  font-size: 19px;
  align-items: center;
  margin-bottom: 25px;
  color: #000000;
}
.our_mission .why_choose svg {
  width: 35px;
  fill: rgb(170, 192, 187);
  height: 35px;
  margin-right: 10px;
}
.our_mission .why_choose svg path {
  fill: rgb(170, 192, 187);
}
.our_mission h2 {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: #000000;
  font-size: 37px;
}
.our_mission h2::after {
  height: 3px;
  background: rgb(170, 192, 187);
  content: "";
  width: 70px;
  left: 0;
  position: absolute;
  bottom: 0;
}
.our_mission p {
  color: #000000;
  position: relative;
  line-height: 1.8;
  font-size: 14px;
}
.our_mission p::first-line {
  color: #000000;
  font-weight: 600;
}
@media (max-width: 992px) {
  .our_mission {
    padding: 80px 0;
  }
  .our_mission .online_mastery {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  .our_mission .text_holder {
    padding: 40px;
    flex: 0 0 100%;
  }
  .our_mission .text_holder::before,
  .our_mission .text_holder::after {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .our_mission {
    padding: 60px 0;
  }
  .our_mission .photo {
    height: 180px;
    border-width: 6px;
    width: 180px;
  }
  .our_mission .text_holder {
    padding: 30px;
  }
  .our_mission h2 {
    font-size: calc(37px * 0.9);
    margin-bottom: 20px;
  }
  .our_mission .text_holder::before,
  .our_mission .text_holder::after {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 480px) {
  .our_mission {
    padding: 40px 0;
  }
  .our_mission .photo {
    border-width: 5px;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .our_mission .why_trust {
    font-size: calc(21px * 0.9);
  }
  .our_mission .skill_boost {
    font-size: calc(14px * 0.9);
    padding: 0 10px;
  }
  .our_mission .skill_boost::before,
  .our_mission .skill_boost::after {
    width: 20px;
  }
  .our_mission .skill_boost::before {
    left: -20px;
  }
  .our_mission .skill_boost::after {
    right: -20px;
  }
  .our_mission .text_holder {
    padding: 25px 20px;
  }
  .our_mission h2 {
    font-size: calc(37px * 0.8);
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .our_mission p {
    font-size: calc(14px * 0.9);
    line-height: 1.6;
  }
  .our_mission .why_choose {
    margin-bottom: 15px;
    font-size: calc(19px * 0.9);
  }
  .our_mission .why_choose svg {
    height: 30px;
    width: 30px;
  }
  .our_mission .text_holder::before,
  .our_mission .text_holder::after {
    border-width: 3px;
    height: 25px;
    width: 25px;
  }
}

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

.nav_lesson {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.nav_mainbar {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main_page {
  display: block;
  padding: 12px 0;
  font-size: 16px;
}
.nav_class {
  display: flex;
  align-items: center;
  order: -1;
}
.nav_class svg {
  width: 48px;
  height: 48px;
}
.nav_toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}
.nav_toggle_button {
  display: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: #fff;
}
.nav_toggle_button span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
@media only screen and (max-width: 700px) {
  .nav_lesson {
    min-height: 64px;
  }
  .nav_toggle_button {
    display: flex;
    order: 2;
  }
  header .nav_mainbar {
    position: fixed;
    top: 64px;
    right: 0;
    left: auto;
    width: min(80%, 320px);
    max-width: 320px;
    height: calc(100vh - 64px);
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 30px 30px;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }
  header .nav_mainbar .main_page {
    color: #222;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header .nav_mainbar .main_page:hover {
    color: #222;
  }
  header .nav_toggle:checked ~ .nav_mainbar {
    display: flex;
  }
  .nav_toggle:checked + .nav_toggle_button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav_toggle:checked + .nav_toggle_button span:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle:checked + .nav_toggle_button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
