* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Roboto, sans-serif;
    color: #000000;
}
.appwrap-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(227,231,238);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.apptariff {
  background: linear-gradient(135deg, rgb(227,231,238) 0%, rgba(0, 0, 0, 0.5) 100%);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.apptariff::before,
.apptariff::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.apptariff::before {
  width: 60vw;
  height: 60vw;
  background: rgb(147,162,186,0.5);
  top: -20%;
  right: -20%;
  transform: rotate(-45deg);
}

.apptariff::after {
  width: 40vw;
  height: 40vw;
  background: rgb(51,77,119,0.5);
  bottom: -10%;
  left: -10%;
}

.pricing_holder {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.price_info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.08)
  );
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price_info h2 {
  color: #ffffff;
  font-size: calc(46px * 1.2);
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price_info .section_description {
  color: rgba(255, 255, 255, 0.95);
  font-size: calc(18px * 1.1);
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price_types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 20px;
  perspective: 2000px;
}

.price_type {
  text-decoration: none;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.price_type:hover {
  transform: translateZ(30px) rotateX(10deg);
}

.price_type_holder {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(12px * 1.5);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.price_type_holder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15));
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.price_type:hover .price_type_holder::before {
  transform: translateY(0);
}

.price_type .photo {
  height: 300px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  transform-style: preserve-3d;
}

.price_type .photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(0, 0, 0, 0.5) 50%,
    #000000 100%
  );
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.price_type:hover .photo::before {
  opacity: 0.6;
}

.price_type_text {
  height: 100%;
  padding: 40px;
  transform-style: preserve-3d;
  position: relative;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.price_type_text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgb(147,162,186,0.5) 0%,
    rgb(51,77,119,0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.price_type:hover .price_type_text::before {
  opacity: 0.15;
}

.price_type_text h3 {
  color: #ffffff;
  font-size: calc(21px * 1.2);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  transform: translateZ(30px);
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price_type_text h3::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: rgb(147,162,186);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.price_type:hover .price_type_text h3::before {
  transform: scaleX(1);
}

.price_type_text .price_amount {
  display: inline-block;
  font-size: calc(28px * 1.3);
  font-weight: 700;
  margin: 25px 0;
  color: #ffffff;
  transform: translateZ(50px);
  position: relative;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price_type_text .price_amount::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgb(147,162,186) 50%,
    transparent 100%
  );
}

.price_type_text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.8;
  transform: translateZ(20px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

@media (max-width: 1200px) {
  .apptariff {
    padding: 120px 0;
  }
  
  .price_types {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .apptariff {
    padding: 100px 0;
  }
  
  .price_info {
    padding: 30px;
  }
  
  .price_type .photo {
    height: 250px;
  }
  
  .price_type_text {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .apptariff {
    padding: 80px 0;
  }
  
  .price_types {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .price_info h2 {
    font-size: calc(28px * 1.1);
  }
  
  .price_type .photo {
    height: 220px;
  }
  
  .price_info {
    margin: 0 20px;
  }
}

@media (hover: none) {
  .price_type:hover {
    transform: none;
  }
  
  .price_type_holder::before {
    display: none;
  }
  
  .price_type_text::before {
    display: none;
  }
  
  .price_type_text h3::before {
    display: none;
  }
}.appappSpot {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(227,231,238);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.appappSpot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(147,162,186,0.5), transparent);
    z-index: 1;
}
.appappSpot .container {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 26px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.appappSpot h2 {
    margin-bottom: 20px;
    font-size: 29px;
    font-weight: 700;
    color: rgb(147,162,186);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.appappSpot p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
}
@media only screen and (max-width: 800px) {
    .appappSpot {
        padding: 20px 0;
    }
    .appappSpot .container {
        padding: 20px;
    }
    .appappSpot h2 {
        font-size: 20px;
    }
    .appappSpot p {
        font-size: 13px;
    }
}.appregister_now {
    padding-bottom: 80px;
    padding-top: 80px;
}

.appregister_now h2 {
    color: rgb(51,77,119);
}

.appregister_now .button {
    background: rgb(51,77,119);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.appregister_now .button:hover {
    background: rgb(147,162,186);
}

.appregister_now .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.appregister_now h2 {
    font-size: 28px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.appregister_now .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .appregister_now .holder {
        flex-direction: column;
    }

    .appwrap-container section.appregister_now h2 {
        font-size: 26px;
    }

    .appregister_now h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .appregister_now .button {
        font-size: 24px;
    }

    .appregister_now {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.appwrap-container .appregister_now .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background: linear-gradient(135deg, rgb(147,162,186) 0%, rgb(147,162,186,0.5) 100%);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.appwrap-container .appregister_now .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.appwrap-container .appregister_now h2 {
    font-family: Roboto, sans-serif;
    font-size: 43px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-right: 0;
}

.appwrap-container .appregister_now .button {
    padding: 20px 60px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(to right, rgb(51,77,119), rgb(51,77,119,0.5));
    border-radius: 27px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.appwrap-container .appregister_now .button:hover {
    background: linear-gradient(to right, rgb(51,77,119,0.5), rgb(51,77,119));
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .appwrap-container .appregister_now .holder {
        padding: 30px;
    }

    .appwrap-container .appregister_now h2 {
        font-size: 28px;
    }

    .appwrap-container .appregister_now .button {
        padding: 15px 40px;
        font-size: 17px;
    }
}.appcourse_overview {
    padding: 100px 0;
    background: linear-gradient(to right, rgb(147,162,186,0.5), rgb(51,77,119,0.5));
    position: relative;
    overflow: hidden;
}

.appcourse_overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    animation: float 10s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.appcourse_overview h2 {
    color: #000000;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.appcourse_overview .content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.appcourse_overview h3 {
    color: rgb(147,162,186);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.appcourse_overview p {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.appcourse_overview .button {
    display: inline-block;
    background: rgb(51,77,119);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 20px;
}

.appcourse_overview .button:hover {
    background: rgb(147,162,186);
    color: #ffffff;
    transform: scale(1.05);
}

.appcourse_overview .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.appcourse_overview .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.appcourse_overview .course {
    padding: 20px;
    max-width: 1000px;
    width: 100%;
}

.appcourse_overview .photo {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: rgb(51,77,119,0.5);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.appcourse_overview .photo:hover {
    transform: scale(1.1);
}

.appcourse_overview .text_holder {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .appcourse_overview {
        padding: 60px 0;
    }

    .appcourse_overview h2 {
        font-size: 32px;
    }

    .appcourse_overview .items {
        flex-direction: column;
    }
}

.appwrap-container .appcourse_overview .items {
    width: 100%;
}

.appwrap-container .appcourse_overview .items .course .content {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.appwrap-container .appcourse_overview .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.appwrap-container .appcourse_overview .text_holder {
    border-radius: 10px;
    border: 5px solid rgb(51,77,119);
    width: 80%;
    margin-top: -150px;
    background: #ffffff;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.appwrap-container .appcourse_overview h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.appwrap-container .appcourse_overview .button {
    display: inline-block;
    width: fit-content;
    margin-top: 25px;
    padding: 15px 40px;
    border-radius: 10px;
    background: rgb(147,162,186);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.appwrap-container .appcourse_overview .button:hover {
    background: rgb(51,77,119);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .appwrap-container .appcourse_overview .photo {
        width: 100%;
        height: 200px;
    }

    .appwrap-container .appcourse_overview .text_holder {
        width: 90%;
        margin-top: -100px;
        padding: 20px;
    }

    .appwrap-container .appcourse_overview h3 {
        font-size: 18px;
    }
    .appcourse_overview .course {
        padding: 0;
    }
}.appclient_experience {
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgb(51,77,119);
    font-family: Roboto, sans-serif;
    color: #ffffff;
}

.appclient_experience h2 {
    color: rgb(147,162,186);
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(147,162,186);
    display: inline-block;
    padding-bottom: 10px;
}

.appclient_experience .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.appclient_experience .reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.appclient_experience .review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgb(51,77,119,0.5);
    border: 1px solid rgb(51,77,119);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.appclient_experience .photo {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.appclient_experience .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.appclient_experience .review span {
    font-size: 22px;
    font-weight: 600;
    color: rgb(51,77,119);
    margin-bottom: 10px;
}

.appclient_experience .review p {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}



.appwrap-container .appclient_experience .review {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid rgb(147,162,186);
    border-radius: 27px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.appwrap-container .appclient_experience .photo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 50%;
}

.appwrap-container .appclient_experience .text {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: calc(100% - 120px);
}

.appwrap-container .appclient_experience .review span {
    font-size: 21px;
    font-weight: 400;
    color: rgb(147,162,186);
}

.appwrap-container .appclient_experience .review p {
    color: #000000;
    margin-bottom: 10px;
    font-size: 18px;
}

.appwrap-container .appclient_experience .holder h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}
@media only screen and (max-width: 900px) {
    .appclient_experience h2 {
        font-size: 22px;
    }

    .appwrap-container .appclient_experience {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .appclient_experience .reviews {
        grid-template-columns: 1fr;
    }
}.appconnect_with_us {
    padding: 60px 0;
    background-color: rgb(227,231,238);
    font-family: Roboto, sans-serif;
}
.appconnect_with_us .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.appconnect_with_us .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.appconnect_with_us .info, .appconnect_with_us .form {
    flex: 1 1 48%;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.appconnect_with_us .info {
    color: #000000;
}
.appconnect_with_us h3, .appconnect_with_us h5 {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(147,162,186);
    padding-bottom: 10px;
}
.appconnect_with_us .info h3 {
    font-size: 34px;
    color: rgb(147,162,186);
}
.appconnect_with_us .info .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.appconnect_with_us .info .logo_holder svg, .appconnect_with_us .info .logo_holder img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
    fill:rgb(147,162,186);
}
.appconnect_with_us .info .logo_holder span {
    color: rgb(51,77,119);
    font-size: 12px;
}
.appconnect_with_us .info .contact_info {
    margin-top: 20px;
}
.appconnect_with_us .info .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.appconnect_with_us .info .contact_info svg {
    fill: rgb(147,162,186);
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.appconnect_with_us .info .contact_info span {
    font-size: 12px;
    color: #000000;
}
.appconnect_with_us .form h3 {
    font-size: 34px;
    color: rgb(51,77,119);
    margin-bottom: 30px;
    text-align: center;
}
.appconnect_with_us .form input, .appconnect_with_us .form select, .appconnect_with_us .form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 12px;
    color: #000000;
    background: #ffffff;
    outline: none;
}
.appconnect_with_us .form .button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: rgb(147,162,186);
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: center;
}
.appconnect_with_us .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.appconnect_with_us .agree input[type="checkbox"] {
    margin-right: 10px;
    margin-bottom: 0;
    width: auto;
}
.appconnect_with_us .agree label {
    font-size: 12px;
    color: #000000;
}
.appconnect_with_us .agree a {
    color: rgb(147,162,186);
    text-decoration: underline;
}
@media (max-width: 900px) {
    .appconnect_with_us .holder {
        flex-direction: column;
    }
    .appconnect_with_us .info, .appconnect_with_us .form {
        flex: 1 1 100%;
    }
    .appconnect_with_us .form h3,.appconnect_with_us .info h3 {
        font-size: 28px;
        text-align: center;
    }
}
@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 5px rgb(147,162,186), 0 0 10px rgb(147,162,186); }
    50% { box-shadow: 0 0 20px rgb(147,162,186), 0 0 30px rgb(147,162,186); }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.appadvantages_highlights {
    padding: 10vh 0;
    background: linear-gradient(135deg, rgb(51,77,119), #000);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.appadvantages_highlights::before,
.appadvantages_highlights::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(100px);
}

.appadvantages_highlights::before {
    top: -25vw;
    left: -25vw;
    background: radial-gradient(circle, rgb(147,162,186,0.5) 0%, transparent 70%);
    animation: floatAnimation 15s infinite ease-in-out;
}

.appadvantages_highlights::after {
    bottom: -25vw;
    right: -25vw;
    background: radial-gradient(circle, rgb(51,77,119,0.5) 0%, transparent 70%);
    animation: floatAnimation 20s infinite ease-in-out reverse;
}

.appadvantages_highlights .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 1;
}

.appadvantages_highlights .advantages_content h2 {
    font-size: clamp(2rem, 5vw, 38px);
    color: #ffffff;
    text-align: center;
    margin-bottom: 5vh;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 2vh 3vw;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, rgb(147,162,186), rgb(51,77,119));
    border-image-slice: 1;
    animation: neonPulse 2s infinite;
}

.appadvantages_highlights .advantages_photo_holder {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5vw;
    margin-top: 5vh;
    width: 100%;
    min-height: 40vh;
}

.appadvantages_highlights .advantages_photo_holder .photo {
    flex: 0 0 40%;
    height: 40vh;
    min-height: 250px;
    max-height: 400px;
    border-radius: 29px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgb(147,162,186);
    transition: all 0.5s ease;
}

.appadvantages_highlights .advantages_photo_holder .photo:hover {
    transform: scale(1.05);
    border-color: rgb(51,77,119);
}

.appadvantages_highlights .advantages_photo_holder .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(147,162,186,0.5), rgb(51,77,119,0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.appadvantages_highlights .advantages_photo_holder .photo:hover::before {
    opacity: 0.6;
}

.appadvantages_highlights .advantages_holder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3vh;
    min-width: 50%;
    max-width: 100%;
}

.appadvantages_highlights .advantages_holder .advantage_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3vh 2vw;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-radius: 10px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(147,162,186,0.5);
    min-height: 10vh;
}

.appadvantages_highlights .advantages_holder .advantage_item:hover {
    border-color: rgb(51,77,119);
    transform: translateX(10px);
}

.appadvantages_highlights .advantages_holder .advantage_item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgb(147,162,186,0.5) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.appadvantages_highlights .advantages_holder .advantage_item:hover::before {
    top: -50%;
    left: -50%;
}

.appadvantages_highlights .advantages_holder .advantage_item .advantage_image {
    margin-right: 3vw;
    position: relative;
    z-index: 1;
}

.appadvantages_highlights .advantages_holder .advantage_item svg,
.appadvantages_highlights .advantages_holder .advantage_item svg path {
    width: clamp(30px, 5vw, 50px);
    height: clamp(30px, 5vw, 50px);
    fill: #ffffff;
    filter: drop-shadow(0 0 5px rgb(147,162,186));
    transition: all 0.5s ease;
}

.appadvantages_highlights .advantages_holder .advantage_item h4 {
    font-size: clamp(1rem, 2vw, 17px);
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 992px) {
    .appadvantages_highlights .advantages_photo_holder {
        flex-direction: column;
    }

    .appadvantages_highlights .advantages_photo_holder .photo {
        width: 100%;
        flex: none;
        max-height: 300px;
    }

    .appadvantages_highlights .advantages_holder {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .appadvantages_highlights .advantages_holder .advantage_item {
        flex: 0 0 calc(50% - 2vw);
        min-height: 15vh;
    }
}

@media only screen and (max-width: 768px) {
    .appadvantages_highlights {
        padding: 8vh 0;
    }

    .appadvantages_highlights .advantages_content h2 {
        font-size: clamp(1.5rem, 4vw, 20px);
    }

    .appadvantages_highlights .advantages_holder .advantage_item {
        flex: 0 0 100%;
    }
}

@media only screen and (max-width: 480px) {
    .appadvantages_highlights .advantages_holder .advantage_item {
        flex-direction: column;
        text-align: center;
        padding: 4vh 3vw;
    }

    .appadvantages_highlights .advantages_holder .advantage_item .advantage_image {
        margin-right: 0;
        margin-bottom: 2vh;
    }
}.appsecure_safe {
    padding: 50px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    height: auto;
    background-color: #ffffff;

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.appsecure_safe::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgb(147,162,186);

    z-index: -1;
}

.appsecure_safe::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px dashed rgb(51,77,119);
    border-radius: 10px;
    z-index: -1;
}

.appsecure_safe h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 38px;
    color: rgb(147,162,186);
    font-family: Roboto, sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    border-bottom: 3px double rgb(147,162,186);
    padding-bottom: 15px;
}

.appsecure_safe h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 38px;
    color: rgb(51,77,119);
    font-family: Roboto, sans-serif;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px dashed rgb(51,77,119);
    padding-bottom: 10px;
}

.appsecure_safe h3, .appsecure_safe h4, .appsecure_safe h5, .appsecure_safe h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 21px;
    color: #000000;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    border-left: 4px solid #000000;
    padding-left: 10px;
}

.appsecure_safe ul, .appsecure_safe ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 15px 0;
    color: #000000;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    margin: 0;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    padding-left: 20px;
    list-style: none;
}

.appsecure_safe li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.appsecure_safe li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: rgb(147,162,186);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.appsecure_safe section {
    background: none;
}

.appsecure_safe p, .appsecure_safe span, .appsecure_safe div {
    line-height: 1.75;
    margin-bottom: 20px;
    color: #000000;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 800px) {
    .appsecure_safe {
        padding: 30px;
        width: 100%;
    }

    .appsecure_safe h1 {
        font-size: calc(21px - 6px);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .appsecure_safe h2 {
        font-size: calc(21px - 6px);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .appsecure_safe ul, .appsecure_safe ol {
        padding-left: 15px;
    }

    .appsecure_safe li {
        padding-left: 20px;
    }

    .appsecure_safe p, .appsecure_safe span, .appsecure_safe div {
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
}.appwho_we_are {
    padding: 70px 0;
    background: rgb(227,231,238);
    position: relative;
    overflow: hidden;
}

.appwho_we_are::before, .appwho_we_are::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(147,162,186,0.5);
    opacity: 0.3;
    z-index: 0;
}

.appwho_we_are::before {
    top: -50px;
    left: -50px;
}

.appwho_we_are::after {
    bottom: -50px;
    right: -50px;
}

.appwrap-container .appwho_we_are .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: unset;
    background: rgb(147,162,186,0.5);
    border-radius: 18px;
    padding: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appwrap-container .appwho_we_are .holder::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px dashed rgb(51,77,119);
    border-radius: 18px;
    z-index: -1;
}

.appwrap-container .appwho_we_are .photo {
    position: relative;
    width: 45%;
    min-height: 600px;
    border-radius: 18px;
    background-blend-mode: multiply;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
}

.appwrap-container .appwho_we_are .caption_holder {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 50px;
    background: rgb(51,77,119,0.5);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.appwrap-container .appwho_we_are .caption_holder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: rgb(147,162,186);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.appwrap-container .appwho_we_are .caption_holder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: rgb(147,162,186);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.appwrap-container .appwho_we_are .style_element {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgb(51,77,119);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.appwrap-container .appwho_we_are .style_element::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgb(147,162,186,0.5);
    border-radius: 18px;
    z-index: -1;
}

.appwrap-container .appwho_we_are h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.appwrap-container .appwho_we_are h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(147,162,186);
    border-radius: 10px;
}

.appwrap-container .appwho_we_are p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.appwrap-container .appwho_we_are p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgb(147,162,186,0.5);
    border-radius: 50%;
}

@media only screen and (max-width: 800px) {
    .appwho_we_are {
        padding: 40px 0;
    }
    .appwrap-container .appwho_we_are .style_element {
        padding: 14px;
    }

    .appwrap-container .appwho_we_are .holder {
        flex-direction: column;
        padding: 10px;
    }

    .appwrap-container .appwho_we_are .photo {
        width: 100%;
        min-height: 300px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .appwrap-container .appwho_we_are .caption_holder {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        margin: 12px 0;
    }

    .appwrap-container .appwho_we_are h2 {
        font-size: 22px;
    }

    .appwrap-container .appwho_we_are p {
        font-size: 13px;
    }
}.appeducation_framework {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgb(227,231,238);
}

.appeducation_framework .work_holder {
    position: relative;
    min-height: 500px;
    padding: 4.5rem 0;
}

.appeducation_framework .work_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 50%,
        transparent 20%,
        rgba(0, 0, 0, 0.5) 60%,
        rgb(147,162,186,0.5) 100%
    );
    z-index: 1;
}

.appeducation_framework .work_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.05) 75%);
    background-size: 20px 20px;
    z-index: 2;
}

.appeducation_framework .container {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.appeducation_framework .text_holder {
    position: relative;
    max-width: 720px;
    background: linear-gradient(
        170deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.8) 100%
    );
    backdrop-filter: blur(15px);
    border-radius: 0 10px 10px 0;
    padding: 3.5rem;
    border-left: 5px solid rgb(147,162,186);
    box-shadow: 
        20px 20px 60px rgba(0,0,0,0.1),
        -20px -20px 60px rgba(255,255,255,0.1),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    transform: perspective(1000px) rotateY(-2deg);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.appeducation_framework .text_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgb(147,162,186,0.5) 0%,
        transparent 15%
    );
    opacity: 0.1;
    border-radius: inherit;
}

.appeducation_framework .text_holder:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.appeducation_framework .text_holder h4 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(147,162,186);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.appeducation_framework .text_holder h4::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgb(51,77,119) 0%,
        transparent 100%
    );
}

.appeducation_framework .text_holder p {
    color: #000000;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .appeducation_framework .work_holder {
        min-height: 460px;
    }

    .appeducation_framework .text_holder {
        max-width: 600px;
        padding: 2.5rem;
        transform: perspective(1000px) rotateY(-1deg);
    }
}

@media (max-width: 767px) {
    .appeducation_framework .work_holder {
        min-height: 420px;
        padding: 3rem 0;
    }

    .appeducation_framework .text_holder {
        max-width: 100%;
        padding: 2rem;
        transform: none;
        border-radius: 10px;
        border-left-width: 3px;
    }

    .appeducation_framework .text_holder:hover {
        transform: none;
    }

    .appeducation_framework .text_holder h4 {
        font-size: calc(30px * 0.9);
    }

    .appeducation_framework .text_holder p {
        font-size: calc(15px * 0.95);
    }
}.appteaching_experience {
    background: linear-gradient(135deg, rgb(227,231,238) 0%, rgb(51,77,119,0.5) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.appteaching_experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgb(147,162,186,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.appteaching_experience .holder {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 27px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.appteaching_experience .review {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto 1fr;
    gap: 30px;
    position: relative;
}

.appteaching_experience .photo {
    grid-row: 1 / 3;
    height: 400px;
    border-radius: 27px;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.appteaching_experience .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.appteaching_experience .worker_description {
    padding: 20px 0;
}

.appteaching_experience .name {
    font-size: 33px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.appteaching_experience .job {
    font-size: 22px;
    color: rgb(147,162,186);
    font-weight: 600;
}

.appteaching_experience .worker_info {
    background: rgb(227,231,238);
    padding: 30px;
    border-radius: 27px;
}

.appteaching_experience .quote {
    font-size: 22px;
    color: rgb(147,162,186);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid rgb(147,162,186);
}

.appteaching_experience .story {
    font-size: 12px;
    color: #000000;
    line-height: 1.8;
}

/* Планшетная версия */
@media (max-width: 992px) {
    .appteaching_experience {
        padding: 60px 0;
    }

    .appteaching_experience .holder {
        padding: 30px;
    }

    .appteaching_experience .review {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }

    .appteaching_experience .photo {
        height: 350px;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .appteaching_experience {
        padding: 40px 0;
    }

    .appteaching_experience .holder {
        padding: 20px;
    }

    .appteaching_experience .review {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .appteaching_experience .photo {
        grid-row: 1;
        height: 300px;
        transform: none;
    }

    .appteaching_experience .worker_description {
        text-align: center;
        padding: 15px 0;
    }

    .appteaching_experience .worker_info {
        padding: 20px;
    }

    .appteaching_experience .quote {
        font-size: 20px;
    }

    .appteaching_experience .name {
        font-size: 22px;
    }

    .appteaching_experience .job {
        font-size: 12px;
    }
}.appopening_page {
    width: 100%;
}
.appopening_page .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.appopening_page .style_element {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    width: 70%;
    max-width: 1200px;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.appopening_page .style_element h1 {
    font-family: Roboto, sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: rgb(147,162,186);
    margin-bottom: 20px;
}
.appopening_page .style_element h3 {
    font-family: Roboto, sans-serif;
    font-size: 29px;
    font-weight: 600;
    color: rgb(51,77,119);
    margin-bottom: 20px;
}
.appopening_page .style_element p {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
    .appopening_page .style_element {
        padding: 40px 30px;
    }
    .appopening_page .style_element h1 {
        font-size: calc(47px - 10px);
    }
    .appopening_page .style_element h3 {
        font-size: calc(29px - 8px);
    }
    .appopening_page .style_element p {
        font-size: calc(18px - 2px);
    }
}
@media only screen and (max-width: 800px) {
    .appopening_page .title_page_holder {
        min-height: 400px;
    }
    .appopening_page .style_element {
        width: 90%;
        padding: 30px 20px;
    }
    .appopening_page .style_element h1 {
        font-size: calc(47px - 14px);
        text-align: center;
        width: 100%;
    }
    .appopening_page .style_element h3 {
        font-size: calc(29px - 10px);
        text-align: center;
        width: 100%;
    }
    .appopening_page .style_element p {
        font-size: calc(18px - 4px);
        text-align: center;
        width: 100%;
    }
}
.appwrap-container .appopening_page .style_element {
    position: static;
    padding: 40px;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.appwrap-container .appopening_page .title_page_holder {
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: auto;
}
.appwrap-container .appopening_page .style_element h1 {
    color: #ffffff;
    background: rgb(147,162,186);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.appwrap-container .appopening_page .style_element h3 {
    color: #ffffff;
    background: rgb(51,77,119);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.appwrap-container .appopening_page .style_element p {
    color: #ffffff;
    background: rgb(147,162,186,0.5);
    padding: 15px 20px;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .appwrap-container .appopening_page .style_element {
        padding: 20px;
    }
    .appwrap-container .appopening_page .style_element h1,
    .appwrap-container .appopening_page .style_element h3,
    .appwrap-container .appopening_page .style_element p {
        padding: 15px;
        text-align: center;
    }
}.main_header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}
.main_header .header_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(147,162,186);
    font-weight: 700;
    font-size: 23px;
    transition: color 0.3s ease;
}
.main_header .header_logo:hover {
    color: rgb(51,77,119);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(147,162,186);
    transition: fill 0.3s ease;
}
.main_header .header_logo:hover svg,
.main_header .header_logo:hover img {
    fill: rgb(51,77,119);
}
.main_header .header_description {
    font-size: 18px;
    color: #000000;
    margin-left: 20px;
    position: relative;
    padding-left: 15px;
}
.main_header .header_description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: rgb(147,162,186);
}
.main_header .header_menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease;
}
.main_header .header_menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(147,162,186);
    transition: width 0.3s ease;
}
.main_header .header_menu a:hover,
.main_header .header_menu a:focus {
    color: rgb(147,162,186);
}
.main_header .header_menu a:hover::after,
.main_header .header_menu a:focus::after {
    width: 100%;
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 0;
        padding-top: 15px;
    }
    .main_header .header_description::before {
        left: 0;
        top: 0;
        transform: none;
        width: 50px;
        height: 3px;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgb(51,77,119,0.5);
    }
    .main_header .header_menu a:last-child {
        border-bottom: none;
    }
    .main_header .header_menu a::after {
        display: none;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgb(147,162,186);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        transition: none !important;
    }
}footer {
    background: rgb(51,77,119);
    color: #000000;
    font-family: Roboto, sans-serif;
    padding: 60px 0;
    border-top: 5px solid rgb(147,162,186);
}
footer .footer {
    padding: 60px 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
footer .footer::before,
footer .footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgb(147,162,186), rgb(147,162,186) 10px, transparent 10px, transparent 20px);
    opacity: 0.1;
    transform: translateX(-50%);
    pointer-events: none;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
footer .logo_holder {
    display: flex;
    align-items: center;
    gap: 15px;
}
footer .logo_holder svg, 
footer .logo_holder img {
    height: 50px;
    width: 50px;
    padding: 5px;
    fill: #ffffff;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}
footer .menu a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    position: relative;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(147,162,186);
}
footer .menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 90%;
    height: 2px;
    background: rgb(147,162,186);
    transform: translateX(-50%);
}
footer .copyright {
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}
footer .copyright_info {
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
}
footer .copyright_info a {
    color: #000000;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    footer .menu_holder {
        justify-content: center;
        gap: 15px;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    footer .menu a {
        margin: 5px 0;
    }
    footer .logo_holder svg, 
    footer .logo_holder img {
        height: 40px;
        width: 40px;
    }
}
.appwrap-container footer .footer {
    padding: 0;
    border-bottom: 3px solid rgb(147,162,186);
}
.appwrap-container footer .footer_info {
    flex-direction: row-reverse;
    align-items: center;
    min-height: 100px;
    gap: 20px;
}
.appwrap-container footer .menu_holder {
    flex-direction: row;
    gap: 20px;
}
.appwrap-container footer .menu a {
    margin: 0;
    padding: 5px 15px;
    border-right: 3px solid rgb(147,162,186);
    font-size: 18px;
    color: #ffffff;
    background: rgb(51,77,119,0.5);
}
.appwrap-container footer .copyright {
    padding: 10px;
}
.appwrap-container footer .copyright_info {
    text-align: center;
    font-size: 17px;
}
@media only screen and (max-width: 800px) {
    .appwrap-container footer .menu_holder {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .appwrap-container footer .menu a {
        font-size: 16px;
    }
    .appwrap-container footer .menu a:first-child {
        margin-bottom: 10px;
    }
    .appwrap-container footer .footer_info {
        padding: 20px 10px;
    }
    .appwrap-container footer .copyright_info {
        text-align: center;
    }
    .appwrap-container footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}.appeducational_gains {
    position: relative;
    padding: 180px 0;
    background: rgb(227,231,238);
    perspective: 2000px;
    overflow: hidden;
}

.appeducational_gains::before,
.appeducational_gains::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 45deg at 50% 50%,
        rgb(147,162,186,0.5) 0deg,
        transparent 60deg,
        rgb(51,77,119,0.5) 120deg,
        transparent 180deg,
        rgb(147,162,186,0.5) 240deg,
        transparent 300deg,
        rgb(51,77,119,0.5) 360deg
    );
    animation: ambientRotate 30s linear infinite;
    opacity: 0.3;
    filter: blur(80px);
}

.appeducational_gains::after {
    animation-direction: reverse;
    animation-duration: 20s;
    opacity: 0.2;
    filter: blur(120px);
}

.appeducational_gains .container {
    position: relative;
    z-index: 2;
}

.appeducational_gains .holder {
    position: relative;
    transform-style: preserve-3d;
    border-radius: 11px;
}

.appeducational_gains .content_holder {
    position: relative;
    padding: 120px 80px;
    border-radius: 11px;
    background-blend-mode: luminosity;
    overflow: hidden;
    isolation: isolate;
}

.appeducational_gains .content_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        #000000 0%,
        transparent 30%,
        rgb(147,162,186,0.5) 70%,
        rgb(51,77,119,0.5) 100%
    );
    mask: linear-gradient(
        to bottom,
        transparent,
        black 30%,
        black 70%,
        transparent
    );
    z-index: 1;
}

.appeducational_gains .content_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgb(147,162,186,0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgb(147,162,186,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    opacity: 0.05;
    transform: perspective(1000px) rotateX(60deg) scale(2.5);
    transform-origin: 50% 0%;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

.appeducational_gains .content_holder h3 {
    position: relative;
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    z-index: 2;
    background: linear-gradient(
        to right,
        #ffffff,
        rgb(147,162,186) 50%,
        #ffffff
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 8s linear infinite;
}

.appeducational_gains .content_holder div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    z-index: 2;
}

.appeducational_gains .content_holder p {
    position: relative;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.8;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 11px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px -15px #000000,
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: cardReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: calc(0.15s * var(--i));
}

.appeducational_gains .content_holder p:nth-child(4n + 1) {
    grid-column: span 7;
    transform: translateZ(60px) rotate3d(1, -1, 0, 2deg);
}

.appeducational_gains .content_holder p:nth-child(4n + 2) {
    grid-column: span 5;
    transform: translateZ(40px) rotate3d(-1, 1, 0, -2deg);
}

.appeducational_gains .content_holder p:nth-child(4n + 3) {
    grid-column: span 6;
    transform: translateZ(50px) rotate3d(1, 1, 0, 1deg);
}

.appeducational_gains .content_holder p:nth-child(4n + 4) {
    grid-column: span 6;
    transform: translateZ(30px) rotate3d(-1, -1, 0, -1deg);
}

.appeducational_gains .content_holder p:hover {
    transform: translateZ(90px) scale(1.03);
    background: linear-gradient(
        135deg,
        rgb(147,162,186,0.5) 0%,
        rgb(51,77,119,0.5) 100%
    );
    box-shadow: 
        0 30px 60px -20px #000000,
        inset 0 0 0 2px rgb(147,162,186,0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes ambientRotate {
    from { transform: rotate(0deg) scale(1.5); }
    to { transform: rotate(360deg) scale(1.5); }
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

@keyframes shimmerText {
    to { background-position: -200% center; }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 1400px) {
    .appeducational_gains .content_holder {
        padding: 100px 60px;
    }
    
    .appeducational_gains .content_holder p:nth-child(4n + 1),
    .appeducational_gains .content_holder p:nth-child(4n + 2) {
        grid-column: span 6;
    }
}

@media (max-width: 1200px) {
    .appeducational_gains {
        padding: 140px 0;
    }
    
    .appeducational_gains .content_holder div {
        gap: 25px;
    }
    
    .appeducational_gains .content_holder p {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .appeducational_gains {
        padding: 120px 0;
    }
    
    .appeducational_gains .content_holder {
        padding: 80px 40px;
    }
    
    .appeducational_gains .content_holder div {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .appeducational_gains .content_holder p {
        grid-column: span 3 !important;
    }
    
    .appeducational_gains .content_holder h3 {
        font-size: calc(46px * 0.8);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .appeducational_gains {
        padding: 100px 0;
    }
    
    .appeducational_gains .content_holder {
        padding: 60px 30px;
    }
    
    .appeducational_gains .content_holder div {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appeducational_gains .content_holder p {
        grid-column: span 1 !important;
        padding: 30px;
    }
    
    .appeducational_gains .content_holder h3 {
        font-size: calc(46px * 0.7);
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .appeducational_gains {
        padding: 80px 0;
    }
    
    .appeducational_gains .content_holder {
        padding: 40px 20px;
    }
    
    .appeducational_gains .content_holder p {
        padding: 25px;
        font-size: calc(12px * 0.9);
    }
    
    .appeducational_gains .content_holder h3 {
        font-size: calc(46px * 0.6);
        margin-bottom: 30px;
    }
}