* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}.wrapper-padding {
    min-height: 100%;
    flex-direction: column;
    display: flex;
    height: 100%;
}html,body {
    color: #000000;
    height: 100%;
    scroll-behavior: auto;
    min-height: 100%;
    font-family: Arial, sans-serif;
}.badge-case {
    flex: 0 0 auto;
}.container {
    width: 1204px;
    margin: auto;
    max-width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.head-train {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}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;
}}
.follow {
    background: linear-gradient(135deg, rgb(105,141,157,0.5), rgb(170,151,175));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}.follow::before {
    height: 70%;
    top: -10%;
    animation: floatElement 8s infinite ease-in-out;
    position: absolute;
    opacity: 0.1;
    content: "";
    transform: rotate(-15deg) skew(15deg);
    right: -5%;
    width: 40%;
    z-index: -1;
    background: rgb(105,141,157);
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}.follow::after {
    transform: rotate(15deg) skew(-15deg);
    left: -5%;
    bottom: -10%;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
    animation: floatElement 8s infinite ease-in-out reverse;
    background: rgb(170,151,175);
    content: "";
    z-index: -1;
    opacity: 0.1;
    position: absolute;
    width: 30%;
    height: 60%;
}.follow .container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
    position: relative;
}.follow .pro-program {
    background: #ffffff;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3.5rem;
}.follow .pro-program:hover {
    transform: perspective(1000px) rotateX(0);
}.follow .pro-program::before {
    background-size: 200% 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(170,151,175), rgb(105,141,157), rgb(170,151,175));
    height: 4px;
    right: 0;
    left: 0;
    animation: gradientMove 6s infinite linear;
    content: "";
}.follow h3 {
    font-size: 20px;
    max-width: 90%;
    padding-left: 1rem;
    position: relative;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
}.follow h3::before {
    width: 3px;
    left: 0;
    animation: scaleUp 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
    content: "";
    border-radius: 10px;
    bottom: 0.2em;
    background: rgb(170,151,175);
    top: 0.2em;
    transform: scaleY(0);
    position: absolute;
    transform-origin: bottom;
}.follow .input_holder {
    position: relative;
    flex-direction: column;
    display: flex;
    gap: 1.5rem;
}.follow .input_holder div {
    overflow: hidden;
    flex-grow: 1;
    position: relative;
}.follow .input_holder div::after {
    transform-origin: left;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    background: linear-gradient(90deg, rgb(105,141,157), rgb(170,151,175));
    position: absolute;
    transform: scaleX(0);
}.follow .input_holder div:focus-within::after {
    transform: scaleX(1);
}.follow .mail-join {
    width: 100%;
    background: #ffffff;
    color: #000000;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.2rem;
}.follow .mail-join:focus {
    outline: none;
    border-color: rgb(170,151,175,0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}.follow .mail-join::placeholder {
    color: rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}.follow .mail-join:focus::placeholder {
    transform: translateX(10px);
    opacity: 0.7;
}.follow .news-box {
    border: none;
    display: inline-flex;
    background: linear-gradient(45deg, rgb(170,151,175), rgb(105,141,157));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    padding: 1rem 2rem;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    font-size: 18px;
    position: relative;
    letter-spacing: 1px;
    overflow: hidden;
}.follow .news-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    transition: all 0.6s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
    width: 100%;
}.follow .news-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}.follow .news-box:hover::before {
    left: 100%;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) rotate(-15deg) skew(15deg); }
    50% { transform: translate(10px, -10px) rotate(-15deg) skew(15deg); }
}

@keyframes scaleUp {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

@media (min-width: 768px) {.follow h3 {
    font-size: calc(20px * 1.1);
    max-width: 80%;
}.follow .input_holder {
    flex-direction: row;
}.follow .pro-program {
    padding: 4rem;
    clip-path: polygon(calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%, 0 0);
}.follow .mail-join {
    border-radius: 10px 0 0 10px;
}.follow .news-box {
    padding: 1rem 2.5rem;
    border-radius: 0 10px 10px 0;
}
}

@media (min-width: 992px) {.follow .pro-program {
    margin: 0 auto;
    max-width: 90%;
}.follow h3 {
    font-size: calc(20px * 1.2);
    max-width: 70%;
}
}

@media (max-width: 767px) {.follow {
    padding: 4rem 0;
}.follow .pro-program {
    padding: 2.5rem 1.5rem;
}.follow h3 {
    padding-left: 0.75rem;
    font-size: calc(20px * 0.9);
}.follow .mail-join {
    margin-bottom: 1rem;
    border-radius: 10px;
}.follow .news-box {
    border-radius: 10px;
    width: 100%;
}}.offer-package {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: rgb(222,218,216);
}.offer-package::before {
    position: absolute;
    width: 300px;
    background: linear-gradient(135deg, rgb(105,141,157,0.5), rgb(170,151,175,0.5));
    right: -50px;
    z-index: 0;
    filter: blur(60px);
    top: -50px;
    height: 300px;
    border-radius: 50%;
    content: "";
}.offer-package::after {
    content: "";
    left: -50px;
    position: absolute;
    background: linear-gradient(225deg, rgb(170,151,175,0.5), rgb(105,141,157,0.5));
    width: 250px;
    bottom: -50px;
    z-index: 0;
    filter: blur(50px);
    height: 250px;
    border-radius: 50%;
}.offer-package .container {
    position: relative;
    z-index: 1;
}.offer-package .annual-plan {
    gap: 3rem;
    flex-direction: column-reverse;
    display: flex;
}.offer-package .rate-packages {
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}.offer-package .rate-packages h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: calc(29px * 1.1);
    position: relative;
    display: inline-block;
}.offer-package .rate-packages h2::after {
    bottom: -10px;
    background: linear-gradient(90deg, rgb(170,151,175), rgb(105,141,157));
    transform: translateX(-50%);
    position: absolute;
    content: "";
    left: 50%;
    height: 3px;
    width: 80px;
}.offer-package .learning-packages {
    font-size: 12px;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
}.offer-package .edu-deals {
    grid-template-columns: 1fr;
    perspective: 1000px;
    gap: 2rem;
    display: grid;
}.offer-package .payment-pricing {
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    display: block;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.offer-package .payment-pricing:hover {
    transform: translateY(-10px);
}.offer-package .price-opts {
    background: #ffffff;
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    z-index: 1;
    min-height: 430px;
    transition: all 0.4s ease;
}.offer-package .payment-pricing:hover .price-opts {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}.offer-package .access-plans {
    z-index: 2;
    padding: 2rem;
    flex: 1;
    position: relative;
}.offer-package .payment-pricing h3 {
    font-size: calc(20px * 1.1);
    position: relative;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    color: #000000;
}.offer-package .payment-pricing h3::before {
    bottom: -5px;
    position: absolute;
    content: "";
    height: 2px;
    width: 40px;
    left: 0;
    background: rgb(170,151,175);
    transition: width 0.3s ease;
}.offer-package .payment-pricing:hover h3::before {
    width: 100%;
}.offer-package .study-costs {
    position: relative;
    display: block;
    font-weight: 700;
    margin: 1.5rem 0;
    font-size: calc(20px * 1.4);
    color: rgb(105,141,157);
}.offer-package .study-costs::after {
    top: 50%;
    border-radius: 3px;
    transform: translateY(-50%);
    left: -10px;
    width: 3px;
    height: 20px;
    position: absolute;
    content: "";
    background: rgb(170,151,175);
}.offer-package .payment-pricing p {
    hyphens: auto;
    word-wrap: break-word;
    line-height: 1.6;
    overflow-wrap: break-word;
    color: #000000;
    margin-bottom: 1rem;
    font-size: 12px;
}.offer-package .pic-list-wrap {
    position: relative;
    height: 180px;
}.offer-package .pic-list-wrap::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    position: absolute;
    z-index: 1;
    content: "";
    inset: 0;
}.offer-package .payment-pricing:nth-child(1) .price-opts {
    border-top: 4px solid rgb(170,151,175);
}.offer-package .payment-pricing:nth-child(2) .price-opts {
    border-top: 4px solid rgb(105,141,157);
}.offer-package .payment-pricing:nth-child(3) .price-opts {
    border-top: 4px solid #6c5ce7;
}.offer-package .payment-pricing:nth-child(4) .price-opts {
    border-top: 4px solid #00b894;
}

@media (min-width: 768px) {.offer-package .edu-deals {
    grid-template-columns: repeat(2, 1fr);
}.offer-package .price-opts {
    min-height: 480px;
}.offer-package .rate-packages {
    padding: 0 2rem;
}.offer-package .rate-packages h2 {
    font-size: calc(29px * 1.2);
}
}

@media (min-width: 992px) {.offer-package .annual-plan {
    gap: 4rem;
    flex-direction: row;
    align-items: center;
}.offer-package .edu-deals {
    flex: 2;
    grid-template-columns: repeat(2, 1fr);
}.offer-package .rate-packages {
    flex: 1;
    text-align: left;
    padding-right: 3rem;
}.offer-package .rate-packages h2::after {
    transform: none;
    left: 0;
}.offer-package .price-opts {
    min-height: 500px;
}
}

@media (min-width: 1200px) {.offer-package .edu-deals {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}.offer-package .payment-pricing {
    transform: perspective(1000px) rotateY(0);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.offer-package .payment-pricing:hover {
    transform: perspective(1000px) translateY(-15px) rotateY(2deg);
}.offer-package .price-opts {
    backface-visibility: hidden;
    transform-style: preserve-3d;
    min-height: 520px;
}.offer-package .pic-list-wrap {
    height: 200px;
}.offer-package .study-costs {
    font-size: calc(20px * 1.6);
}.offer-package .rate-packages h2 {
    font-size: calc(29px * 1.3);
}}.contact-form-section {
    align-items: center;
    display: flex;
    min-height: 650px;
    padding: 0;
    z-index: 1;
    position: relative;
}.contact-form-section::before {
    z-index: -1;
    background-color: rgb(170,151,175,0.5);
    inset: 0;
    content: '';
    position: absolute;
}.contact-form-section .container {
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    max-width: 1280px;
    position: relative;
}.contact-form-section .help-reach {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}.contact-form-section .help-grid {
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding: 40px 20px 120px;
    justify-content: center;
    gap: 30px;
    background-color: transparent;
}.contact-form-section .help-grid h3 {
    width: 100%;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}.contact-form-section .help-grid h3::after {
    width: 60px;
    height: 3px;
    background-color: rgb(105,141,157);
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    bottom: 0;
    content: '';
}.contact-form-section .help-grid div {
    background-color: #ffffff;
    flex-direction: column;
    max-width: 220px;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex: 1 0 calc(50% - 30px);
    text-align: center;
    align-items: center;
}.contact-form-section .help-grid div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}.contact-form-section .help-grid div svg {
    width: 35px;
    margin-bottom: 15px;
    height: 35px;
}.contact-form-section .help-grid div svg path {
    fill: rgb(105,141,157);
}.contact-form-section .help-grid div span {
    line-height: 1.5;
    margin-top: 10px;
    color: #000000;
    font-size: 18px;
}.contact-form-section .help-grid div span a {
    color: #000000;
    transition: color 0.3s ease;
    text-decoration: none;
}.contact-form-section .help-grid div span a:hover {
    color: rgb(105,141,157);
}.contact-form-section .reach-panel {
    max-width: 550px;
    z-index: 2;
    transform: translateY(50px);
    margin: 0 auto;
    padding: 40px 30px;
    background-color: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border-radius: 12px;
}.contact-form-section .reach-panel::before {
    z-index: -1;
    width: 30px;
    top: -15px;
    left: 50%;
    content: '';
    transform: translateX(-50%) rotate(45deg);
    height: 30px;
    border-radius: 3px;
    position: absolute;
    background-color: #ffffff;
}.contact-form-section .reach-panel h3 {
    font-weight: 700;
    color: rgb(170,151,175);
    text-align: center;
    margin-bottom: 25px;
    font-size: 21px;
}.contact-form-section .reach-panel form {
    gap: 15px;
    flex-wrap: wrap;
    display: flex;
}.contact-form-section .reach-panel input[type="text"],
.contact-form-section .reach-panel input[type="email"] {
    flex: 1 0 100%;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid rgb(222,218,216);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    color: #000000;
}.contact-form-section .reach-panel input[type="text"]:focus,
.contact-form-section .reach-panel input[type="email"]:focus {
    outline: none;
    border-color: rgb(105,141,157);
    box-shadow: 0 0 0 3px rgb(105,141,157,0.5);
}.contact-form-section .reach-panel input::placeholder {
    opacity: 0.6;
    color: #000000;
}.contact-form-section .reach-panel .support-widget {
    flex: 1 0 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}.contact-form-section .reach-panel .support-widget input[type="checkbox"] {
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-right: 10px;
    appearance: none;
    border: 2px solid rgb(222,218,216);
    flex-shrink: 0;
    position: relative;
    margin-top: 3px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-appearance: none;
}.contact-form-section .reach-panel .support-widget input[type="checkbox"]:checked {
    background-color: rgb(105,141,157);
    border-color: rgb(105,141,157);
}.contact-form-section .reach-panel .support-widget input[type="checkbox"]:checked::before {
    font-size: 12px;
    top: 50%;
    color: #ffffff;
    position: absolute;
    content: '✓';
    transform: translate(-50%, -50%);
    left: 50%;
}.contact-form-section .reach-panel .support-widget label {
    line-height: 1.5;
    color: #000000;
    font-size: 16px;
}.contact-form-section .reach-panel .support-widget label a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgb(105,141,157);
}.contact-form-section .reach-panel .support-widget label a:hover {
    color: rgb(170,151,175);
}.contact-form-section .reach-panel .connect-inquiry {
    margin-top: 15px;
    font-size: 19px;
    box-shadow: 0 5px 15px rgb(105,141,157,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgb(105,141,157), rgb(170,151,175));
    cursor: pointer;
    color: #ffffff;
    width: 100%;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    height: 50px;
}.contact-form-section .reach-panel .connect-inquiry:hover {
    box-shadow: 0 8px 25px rgb(170,151,175,0.5);
    transform: translateY(-3px);
}

@media screen and (min-width: 992px) {.contact-form-section {
    padding: 100px 0;
    min-height: 700px;
}.contact-form-section .help-reach {
    align-items: center;
    flex-direction: row;
}.contact-form-section .help-grid {
    margin-left: auto;
    width: 65%;
    padding: 60px 0 60px 120px;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}.contact-form-section .help-grid h3 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
    text-align: left;
}.contact-form-section .help-grid h3::after {
    transform: none;
    left: 0;
}.contact-form-section .help-grid div {
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    margin: 0;
}.contact-form-section .reach-panel {
    padding: 40px;
    left: 0;
    margin: 0;
    position: absolute;
    z-index: 3;
    width: 45%;
    max-width: 450px;
}.contact-form-section .reach-panel::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: -15px;
}
}

@media screen and (min-width: 1200px) {.contact-form-section .help-grid {
    padding-left: 200px;
    width: 70%;
}.contact-form-section .reach-panel {
    width: 40%;
    max-width: 480px;
}
}

@media screen and (min-width: 768px) and (max-width: 991px) {.contact-form-section {
    padding: 80px 0 120px;
}.contact-form-section .help-grid {
    justify-content: space-between;
    padding: 0 20px 120px;
}.contact-form-section .help-grid div {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}
}

@media screen and (max-width: 767px) {.contact-form-section {
    padding: 60px 0 120px;
}.contact-form-section .help-grid {
    padding: 0 20px 120px;
}.contact-form-section .help-grid h3 {
    font-size: calc(21px + 2px);
}.contact-form-section .help-grid div {
    min-height: 120px;
    margin-bottom: 0;
    max-width: 280px;
    flex: 0 0 100%;
}.contact-form-section .help-grid div svg {
    height: 30px;
    width: 30px;
}.contact-form-section .reach-panel {
    padding: 30px 25px;
}
}

@media screen and (max-width: 480px) {.contact-form-section {
    padding: 40px 0 100px;
}.contact-form-section .help-grid {
    gap: 20px;
}.contact-form-section .help-grid div {
    padding: 20px 15px;
    min-height: auto;
}}.title-welcome {
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    font-family: Arial, sans-serif;
    width: 100%;
}.title-welcome .course-hero {
    align-items: center;
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    height: 100vh;
}.title-welcome .course-hero::before {
    position: absolute;
    left: 0;
    content: "";
    height: 100%;
    z-index: 1;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}.title-welcome .study-classes {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    transition: transform 0.5s ease-out;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 3rem;
    width: 85%;
    backdrop-filter: blur(8px);
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    z-index: 2;
}.title-welcome .study-classes:hover {
    transform: perspective(1000px) rotateX(0deg);
}.title-welcome .study-classes div {
    transform: translateX(0);
    position: relative;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}.title-welcome .study-classes div:nth-child(1) {
    transform: translateX(-20px);
    opacity: 0;
    animation: fadeSlideIn 0.7s 0.2s forwards;
}.title-welcome .study-classes div:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeSlideIn 0.7s 0.4s forwards;
}.title-welcome .study-classes div:nth-child(3) {
    transform: translateX(-20px);
    animation: fadeSlideIn 0.7s 0.6s forwards;
    opacity: 0;
}.title-welcome .study-classes p {
    line-height: 1.6;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: calc(15px * 1.2);
    margin-bottom: 0.5rem;
    border-left: 3px solid rgb(170,151,175);
    padding-left: 20px;
    color: #ffffff;
}.title-welcome .title_style_header {
    letter-spacing: 0.02em;
    font-size: calc(46px * 1.3);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    margin: 0;
    display: inline-block;
}.title-welcome .title_style_header::after {
    height: 4px;
    width: 80px;
    content: "";
    position: absolute;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    bottom: -12px;
    background: rgb(170,151,175);
}.title-welcome .study-classes:hover .title_style_header::after {
    transform: scaleX(1.5);
}.title-welcome .study-classes h3 {
    line-height: 1.5;
    font-weight: 400;
    font-size: 23px;
    position: relative;
    color: rgb(255, 255, 255, 0.5);
    max-width: 90%;
    margin-top: 0;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1200px) {.title-welcome .study-classes {
    padding: 2.5rem;
    width: 90%;
}.title-welcome .title_style_header {
    font-size: calc(46px * 1.1);
}
}

@media (max-width: 992px) {.title-welcome .study-classes {
    padding: 2rem;
    width: 92%;
}.title-welcome .title_style_header {
    font-size: 46px;
}.title-welcome .study-classes p {
    font-size: 15px;
}
}

@media (max-width: 768px) {.title-welcome .course-hero {
    height: auto;
    min-height: 100vh;
    padding: 4rem 0;
}.title-welcome .study-classes {
    transform: perspective(1000px) rotateX(0deg);
    width: 95%;
    padding: 1.5rem;
}.title-welcome .title_style_header {
    font-size: calc(29px * 1.1);
}.title-welcome .study-classes h3 {
    max-width: 100%;
    font-size: calc(15px * 1.1);
}
}

@media (max-width: 576px) {.title-welcome .study-classes {
    padding: 1.25rem;
}.title-welcome .title_style_header {
    font-size: 29px;
}.title-welcome .study-classes p {
    font-size: calc(15px * 0.95);
    padding-left: 15px;
}.title-welcome .study-classes h3 {
    font-size: 15px;
}.title-welcome .title_style_header::after {
    width: 60px;
    height: 3px;
}
}

@media (max-width: 480px) {.title-welcome .study-classes {
    padding: 1rem;
}.title-welcome .study-classes div {
    margin-bottom: 1.5rem;
}.title-welcome .title_style_header {
    font-size: calc(29px * 0.9);
}}.course-features {
    position: relative;
    background-color: rgb(222,218,216);
    overflow: hidden;
    padding: 100px 0;
}.course-features::before {
    left: 0;
    height: 100%;
    background: linear-gradient(45deg, rgb(170,151,175,0.5) 0%, transparent 50%, rgb(105,141,157,0.5) 100%);
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}.course-features::after {
    position: absolute;
    z-index: 1;
    right: -100px;
    background: radial-gradient(circle, rgb(105,141,157,0.5) 0%, transparent 80%);
    border-radius: 50%;
    width: 400px;
    content: "";
    height: 400px;
    top: -100px;
    animation: rotate 20s linear infinite;
}.course-features .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.course-features .skill-plan {
    gap: 40px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}.course-features .text-bubble {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}.course-features .text-bubble h2 {
    border-left: 4px solid rgb(170,151,175);
    font-size: 38px;
    grid-column: 1 / -1;
    position: relative;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    padding-left: 20px;
}.course-features .description {
    color: #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    line-height: 1.8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    border-radius: 19px;
}.course-features .description:first-of-type {
    overflow: hidden;
    position: relative;
}.course-features .description:first-of-type::before {
    background-color: rgb(170,151,175,0.5);
    z-index: -1;
    content: "";
    position: absolute;
    width: 40px;
    left: -10px;
    border-radius: 50%;
    height: 40px;
    top: -10px;
}.course-features .description:last-of-type {
    overflow: hidden;
    position: relative;
}.course-features .description:last-of-type::before {
    background-color: rgb(105,141,157,0.5);
    height: 40px;
    width: 40px;
    content: "";
    z-index: -1;
    right: -10px;
    bottom: -10px;
    position: absolute;
    border-radius: 50%;
}.course-features .description:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.course-features .pic-list-wrap {
    overflow: hidden;
    height: 400px;
    margin: 40px 0;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    position: relative;
    border-radius: 19px;
}.course-features .pic-list-wrap::before {
    content: "";
    top: 0;
    z-index: 1;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    left: 0;
    right: 0;
}.course-features .pic-list-wrap::after {
    opacity: 0.7;
    content: "";
    transform: translateX(-50%);
    width: 90%;
    left: 50%;
    top: -20px;
    animation: glow 4s infinite alternate;
    background: rgb(170,151,175);
    height: 10px;
    position: absolute;
    filter: blur(10px);
    border-radius: 50%;
}.course-features .pic-list-wrap:hover {
    transform: perspective(1000px) rotateX(0deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        width: 90%;
    }
    100% {
        opacity: 0.8;
        width: 95%;
    }
}

@media screen and (max-width: 1024px) {.course-features {
    padding: 80px 0;
}.course-features .pic-list-wrap {
    height: 350px;
    margin: 30px 0;
}
}

@media screen and (max-width: 768px) {.course-features {
    padding: 60px 0;
}.course-features .text-bubble {
    gap: 20px;
    grid-template-columns: 1fr;
}.course-features .description {
    padding: 25px;
}.course-features .pic-list-wrap {
    height: 300px;
    margin: 25px 0;
}.course-features h2 {
    font-size: calc(38px * 0.9);
}
}

@media screen and (max-width: 480px) {.course-features {
    padding: 40px 0;
}.course-features .skill-plan {
    gap: 30px;
}.course-features .text-bubble h2 {
    font-size: calc(38px * 0.8);
    padding-left: 15px;
}.course-features .description {
    padding: 20px;
    font-size: calc(14px * 0.95);
}.course-features .pic-list-wrap {
    margin: 20px 0;
    height: 250px;
    transform: perspective(1000px) rotateX(0deg);
}}.teaching-experience {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, rgb(222,218,216) 100%);
    overflow: hidden;
    padding: 140px 0;
}.teaching-experience::before {
    height: 100%;
    background: 
    radial-gradient(circle at 25% 25%, rgb(170,151,175,0.5) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgb(105,141,157,0.5) 0%, transparent 40%);
    position: absolute;
    mix-blend-mode: screen;
    content: "";
    animation: morphBackground 15s infinite alternate ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
}.teaching-experience .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    z-index: 2;
}.teaching-experience .success-reviews {
    gap: 20px 40px;
    grid-template-columns: 35% 1fr;
    grid-template-areas:
    "photo name"
    "photo job"
    "quote quote";
    position: relative;
    grid-template-rows: auto auto 1fr;
    display: grid;
}.teaching-experience .pic-list-wrap {
    transform: perspective(1000px) rotateY(-8deg);
    clip-path: polygon(0 0, 100% 10%, 90% 100%, 0 90%);
    height: 420px;
    border-radius: 13px;
    position: relative;
    grid-area: photo;
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
    20px 20px 30px rgba(0, 0, 0, 0.5),
    -10px -10px 30px rgb(170,151,175,0.5);
}.teaching-experience .pic-list-wrap::before {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    border-radius: 13px;
    content: "";
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}.teaching-experience .success-reviews:hover .pic-list-wrap {
    transform: perspective(1000px) rotateY(-4deg) translateZ(20px);
}.teaching-experience .name {
    position: relative;
    transform-origin: left center;
    font-size: 37px;
    font-weight: 700;
    padding-left: 20px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    grid-area: name;
    transform: perspective(1000px) rotateY(5deg);
    color: #ffffff;
    margin: 0;
    align-self: end;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}.teaching-experience .name::after {
    content: "";
    width: 60px;
    transition: transform 0.5s ease;
    left: 20px;
    bottom: -8px;
    background: rgb(170,151,175);
    transform-origin: left;
    position: absolute;
    height: 4px;
    transform: scaleX(0.6);
}.teaching-experience .success-reviews:hover .name {
    transform: perspective(1000px) rotateY(2deg) translateZ(15px);
}.teaching-experience .success-reviews:hover .name::after {
    transform: scaleX(1);
}.teaching-experience .success-reviews > span:not(.name) {
    text-transform: uppercase;
    transform: perspective(1000px) rotateY(5deg);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding-left: 20px;
    font-weight: 600;
    font-size: 21px;
    grid-area: job;
    color: rgb(105,141,157);
    margin-top: 5px;
    letter-spacing: 1px;
}.teaching-experience .success-reviews:hover > span:not(.name) {
    transform: perspective(1000px) rotateY(2deg) translateZ(10px);
}.teaching-experience .job-milestones {
    line-height: 1.7;
    backdrop-filter: blur(10px);
    border-left: 4px solid rgb(170,151,175);
    font-weight: 300;
    grid-area: quote;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    margin: 30px 0 0;
    z-index: 2;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 13px;
    position: relative;
}.teaching-experience .job-milestones::before {
    position: absolute;
    left: 25px;
    top: -15px;
    content: "";
    opacity: 0.7;
    font-size: calc(47px * 2);
    color: rgb(170,151,175);
}.teaching-experience .success-reviews:hover .job-milestones {
    transform: translateY(-10px);
}

@keyframes morphBackground {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1) rotate(5deg);
  }
}

@media (max-width: 992px) {.teaching-experience {
    padding: 80px 0;
}.teaching-experience .success-reviews {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 15px;
    grid-template-areas:
      "pic-list-wrap"
      "name"
      "work-summary"
      "job-milestones";
}.teaching-experience .pic-list-wrap {
    height: 320px;
    transform: none;
    margin: 0 auto;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    max-width: 320px;
}.teaching-experience .name,
  .teaching-experience .success-reviews > span:not(.name) {
    transform: none;
    text-align: center;
    padding-left: 0;
}.teaching-experience .name::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0.6);
}.teaching-experience .success-reviews:hover .name::after {
    transform: translateX(-50%) scaleX(1);
}.teaching-experience .job-milestones {
    margin-top: 20px;
}.teaching-experience .success-reviews:hover .pic-list-wrap,
  .teaching-experience .success-reviews:hover .name,
  .teaching-experience .success-reviews:hover > span:not(.name),
  .teaching-experience .success-reviews:hover .job-milestones {
    transform: none;
}
}

@media (max-width: 576px) {.teaching-experience {
    padding: 60px 0;
}.teaching-experience .pic-list-wrap {
    height: 250px;
    max-width: 250px;
}.teaching-experience .name {
    font-size: 22px;
}.teaching-experience .job-milestones {
    padding: 25px 20px;
    font-size: calc(13px * 0.95);
}}.ty-panel {
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(222,218,216) 0%, rgba(rgb(170,151,175,0.5), 0.1) 100%);
    position: relative;
    padding: 6rem 0;
}.ty-panel::before {
    transform: perspective(1000px) rotateX(5deg);
    left: 0;
    opacity: 0.6;
    width: 100%;
    background-size: 20px 20px;
    top: 0;
    position: absolute;
    content: "";
    background-image: 
        linear-gradient(90deg, rgba(rgb(170,151,175,0.5), 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(rgb(170,151,175,0.5), 0.05) 1px, transparent 1px);
    height: 100%;
    z-index: -1;
}.ty-panel::after {
    content: "";
    position: absolute;
    opacity: 0.15;
    background: linear-gradient(45deg, rgb(170,151,175) 0%, rgba(rgb(105,141,157,0.5), 0.8) 100%);
    height: 70%;
    z-index: -1;
    top: -10%;
    filter: blur(80px);
    right: -5%;
    transform: rotate(-15deg) translateZ(-10px);
    width: 40%;
    animation: float 15s ease-in-out infinite;
}.ty-panel .container {
    max-width: 1200px;
    position: relative;
    padding: 0 1.5rem;
    margin: 0 auto;
}.ty-panel .pro-program {
    gap: 2.5rem;
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    display: grid;
    backdrop-filter: blur(10px);
    position: relative;
    padding: 3.5rem;
    box-shadow: 
        0 10px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.12),
        0 0 0 1px rgba(rgb(170,151,175,0.5), 0.08);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    grid-template-columns: 1fr;
    transform: translateY(0);
}.ty-panel .pro-program:hover {
    box-shadow: 
        0 20px 40px -20px rgba(rgba(0, 0, 0, 0.5), 0.16),
        0 0 0 1px rgba(rgb(170,151,175,0.5), 0.12);
    transform: translateY(-5px);
}.ty-panel .pro-program::before {
    width: 4px;
    background: linear-gradient(to bottom, rgb(170,151,175), rgb(105,141,157));
    position: absolute;
    left: 0;
    transform: scaleY(0);
    top: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: "";
    transform-origin: top;
    height: 100%;
}.ty-panel .pro-program:hover::before {
    transform: scaleY(1);
}.ty-panel h5 {
    font-size: calc(19px * 1.1);
    overflow: hidden;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #000000;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}.ty-panel h5::after {
    width: 4rem;
    height: 3px;
    position: absolute;
    content: "";
    transition: width 0.6s ease, transform 0.6s ease;
    bottom: 0;
    transform: translateX(0);
    left: 0;
    background: rgb(170,151,175);
}.ty-panel .pro-program:hover h5::after {
    width: 7rem;
    transform: translateX(10px);
}.ty-panel p {
    font-size: 14px;
    line-height: 1.7;
    transform: translateZ(0);
    opacity: 0.9;
    color: #000000;
    margin: 0;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}.ty-panel a {
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
    position: relative;
    overflow: hidden;
}.ty-panel a::before {
    bottom: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    transform: scaleX(0);
    z-index: 1;
    content: "";
    position: absolute;
    background: rgba(rgb(170,151,175,0.5), 0.3);
    height: 1px;
    transform-origin: right;
    left: 0;
}.ty-panel a:hover {
    transform: translateY(-2px);
}.ty-panel a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.ty-panel a:hover p {
    color: rgb(170,151,175);
}

@keyframes float {
    0%, 100% {
        transform: rotate(-15deg) translate(0, 0) translateZ(-10px);
    }
    50% {
        transform: rotate(-12deg) translate(-20px, 20px) translateZ(-10px);
    }
}

@media (min-width: 768px) {.ty-panel {
    padding: 8rem 0;
}.ty-panel .pro-program {
    align-items: start;
    padding: 4rem;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}.ty-panel h5 {
    font-size: calc(19px * 1.2);
    padding-bottom: 1.5rem;
}.ty-panel p {
    line-height: 1.8;
    font-size: calc(14px * 1.05);
}.ty-panel::before {
    background-size: 30px 30px;
}
}

@media (min-width: 1024px) {.ty-panel .pro-program {
    padding: 5rem;
    gap: 4rem;
}.ty-panel h5 {
    font-size: calc(19px * 1.3);
}.ty-panel::after {
    width: 50%;
    right: -10%;
}
}

@media (max-width: 767px) {.ty-panel {
    padding: 4rem 0;
}.ty-panel .pro-program {
    padding: 2.5rem;
}.ty-panel h5 {
    font-size: 19px;
}.ty-panel::before {
    background-size: 15px 15px;
}.ty-panel::after {
    opacity: 0.1;
}
}

@media (max-width: 480px) {.ty-panel {
    padding: 3rem 0;
}.ty-panel .pro-program {
    padding: 2rem 1.5rem;
}.ty-panel h5 {
    font-size: calc(19px * 0.9);
}.ty-panel p {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}}.customer-experience {
    padding: 7rem 0;
    background: linear-gradient(145deg, rgb(222,218,216) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}.customer-experience::before {
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgb(170,151,175,0.5) 0%, transparent 60%);
    opacity: 0.6;
    content: "";
    position: absolute;
}.customer-experience .container {
    position: relative;
    z-index: 2;
}.customer-experience h2 {
    margin-bottom: 3rem;
    font-size: 28px;
    position: relative;
    display: inline-block;
    left: 50%;
    color: #000000;
    transform: translateX(-50%);
    font-weight: 700;
    text-align: center;
}.customer-experience h2::after {
    height: 4px;
    content: "";
    bottom: -15px;
    transform: perspective(500px) rotateX(45deg);
    background: rgb(170,151,175);
    box-shadow: 0 5px 15px rgb(170,151,175,0.5);
    left: 20%;
    position: absolute;
    width: 60%;
}.customer-experience .opinion-hub {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding: 3rem 1rem;
    display: flex;
    transform-style: preserve-3d;
    gap: 3rem;
    margin: 0 -1rem;
}.customer-experience .opinion-hub::-webkit-scrollbar {
    height: 8px;
}.customer-experience .opinion-hub::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}.customer-experience .opinion-hub::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(170,151,175);
}.customer-experience .success-reviews {
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center center;
    flex: 0 0 300px;
    transform: perspective(1000px) rotateY(5deg) translateZ(0);
    padding: 2rem;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    background: #ffffff;
    position: relative;
}.customer-experience .success-reviews::before {
    content: "";
    top: 0;
    opacity: 0.3;
    border-radius: 14px;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    left: 0;
    position: absolute;
    background: linear-gradient(135deg, rgb(170,151,175,0.5) 0%, transparent 80%);
}.customer-experience .success-reviews:nth-child(odd) {
    transform: perspective(1000px) rotateY(-5deg) translateZ(10px);
}.customer-experience .success-reviews:nth-child(3n+1) {
    transform: perspective(1000px) rotateY(8deg) translateZ(20px);
}.customer-experience .success-reviews:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transform: perspective(1000px) rotateY(0) translateZ(50px) scale(1.05);
}.customer-experience .success-reviews:hover::before {
    opacity: 0;
}.customer-experience .success-reviews img {
    height: 80px;
    object-fit: cover;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 1rem;
    width: 80px;
    transform: translateX(-1rem);
    border: 3px solid #ffffff;
    border-radius: 50%;
}.customer-experience .success-reviews:hover img {
    transform: translateX(0) translateY(-10px);
    box-shadow: 0 15px 25px rgb(170,151,175,0.5);
}.customer-experience .success-reviews p {
    color: #000000;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: calc(15px + 0.1rem);
    font-weight: 600;
}.customer-experience .success-reviews .description {
    color: #000000;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.6;
    font-weight: 400;
    border-left: 3px solid rgb(105,141,157,0.5);
    margin-top: 1rem;
    font-size: 15px;
    padding-left: 1.5rem;
}.customer-experience .success-reviews:hover .description {
    border-left-color: rgb(170,151,175);
    padding-left: 1rem;
}

@media (min-width: 768px) {.customer-experience .opinion-hub {
    padding-bottom: 2rem;
}.customer-experience .opinion-hub::after {
    flex: 0 0 1rem;
    content: "";
}
}

@media (max-width: 767px) {.customer-experience {
    padding: 5rem 0;
}.customer-experience h2 {
    font-size: calc(28px - 0.2rem);
    margin-bottom: 2.5rem;
}.customer-experience .opinion-hub {
    gap: 1.5rem;
}.customer-experience .success-reviews {
    transform: perspective(800px) rotateY(3deg) !important;
    flex: 0 0 250px;
    padding: 1.5rem;
}.customer-experience .success-reviews:hover {
    transform: perspective(800px) rotateY(0) translateZ(20px) scale(1.03) !important;
}.customer-experience .success-reviews img {
    height: 60px;
    width: 60px;
}}header {
    position: relative;
    margin-top: 0;
    padding: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgb(222,218,216);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}header::before {
    height: 100%;
    top: 0;
    content: '';
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(rgb(170,151,175), 0.03) 25%, 
        rgba(rgb(170,151,175), 0.05) 50%,
        rgba(rgb(170,151,175), 0.03) 75%,
        transparent 100%
    );
    pointer-events: none;
    position: absolute;
}header .top-site {
    z-index: 2;
    display: flex;
    position: relative;
    padding: 1.2rem 2rem;
    align-items: center;
    justify-content: space-between;
}header .header-start {
    margin-right: 2rem;
    max-width: 180px;
    flex: 0 0 auto;
    position: relative;
}header .head-master {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: block;
}header .head-master:hover {
    transform: translateY(-3px);
}header .head-master img {
    height: auto;
    max-width: 100%;
    display: block;
    filter: brightness(1.03);
}header .head-master::before {
    width: 100%;
    transform: scaleX(0.7);
    height: 10px;
    bottom: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    background: rgb(170,151,175);
    position: absolute;
    content: '';
    border-radius: 10px;
    left: 0;
}header .head-master:hover::before {
    opacity: 0.7;
    transform: scaleX(1);
}header .nav-core {
    padding: 0;
    display: flex;
    list-style: none;
    margin: 0;
    flex-wrap: nowrap;
    position: relative;
}header .nav-core::after {
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(170,151,175,0.5), 
        transparent
    );
    height: 1px;
    left: 0;
    bottom: -15px;
    content: '';
}header .nav-prime {
    margin: 0;
    position: relative;
}header .nav-prime a {
    transition: all 0.3s ease;
    font-size: 17px;
    position: relative;
    padding: 1rem 1.2rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    overflow: hidden;
    display: block;
}header .nav-prime a::before {
    content: '';
    width: 100%;
    transform: translateX(-100%);
    height: 3px;
    background: rgb(170,151,175);
    bottom: 0;
    left: 0;
    position: absolute;
    transition: transform 0.3s ease;
}header .nav-prime a:hover {
    color: rgb(170,151,175);
}header .nav-prime a:hover::before {
    transform: translateX(0);
}header .nav-prime a::after {
    position: absolute;
    left: 0;
    content: '';
    z-index: -1;
    background: rgb(170,151,175,0.5);
    opacity: 0;
    top: 0;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    transform: scale(0.8);
    pointer-events: none;
    border-radius: 10px;
}header .nav-prime a:hover::after {
    transform: scale(1);
    opacity: 0.15;
}header .top-site::before {
    right: 0;
    z-index: -1;
    content: '';
    top: 0;
    height: 100%;
    background: linear-gradient(-90deg, rgb(222,218,216), transparent);
    width: 30%;
    position: absolute;
}header .top-site::after {
    width: 30%;
    left: 0;
    height: 100%;
    content: '';
    background: linear-gradient(90deg, rgb(222,218,216), transparent);
    top: 0;
    z-index: -1;
    position: absolute;
}header .head-train {
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    background: #ffffff;
}

@media (min-width: 1400px) {header .top-site {
    margin: 0 auto;
    max-width: 1300px;
}header .nav-prime a {
    padding: 1rem 1.5rem;
}
}

@media (max-width: 991px) {header .top-site {
    padding: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}header .header-start {
    margin-right: 0;
    margin-bottom: 0;
}header .nav-core {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 1rem;
    flex-basis: 100%;
    margin-top: 0;
}header .nav-prime {
    margin-bottom: 0.5rem;
}header .nav-prime a {
    padding: 0.7rem 1rem;
    font-size: calc(17px - 1px);
}
}

@media (max-width: 767px) {header {
    margin-top: 0;
}header .top-site {
    padding: 1rem 1.5rem;
}header .header-start {
    flex: 0 0 auto;
    max-width: 150px;
}header .nav-core {
    flex-wrap: nowrap;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
}header .nav-core::-webkit-scrollbar {
    height: 3px;
}header .nav-core::-webkit-scrollbar-thumb {
    background: rgb(170,151,175,0.5);
    border-radius: 10px;
}header .nav-prime {
    flex: 0 0 auto;
}header .nav-prime a {
    padding: 0.6rem 0.8rem;
    font-size: calc(17px - 2px);
    white-space: nowrap;
}header .nav-core::after {
    bottom: 0;
}header .head-master::before {
    display: none;
}}footer {
    z-index: 1;
    position: relative;
    width: 100%;
}.badge-case {
    color: #ffffff;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #000000, rgb(105,141,157));
    position: relative;
    padding: 80px 0 30px;
}.badge-case::before {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    pointer-events: none;
    background: radial-gradient(circle at 10% 20%, rgb(105,141,157,0.5) 0%, transparent 50%);
    content: "";
}.badge-case::after {
    background: linear-gradient(45deg, transparent 40%, rgb(170,151,175,0.5) 70%, transparent 100%);
    left: 0;
    animation: shiftGradient 15s infinite linear;
    pointer-events: none;
    right: 0;
    bottom: 0;
    position: absolute;
    top: 0;
    content: "";
}@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.badge-case .container {
    z-index: 2;
    position: relative;
}footer .affiliate-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}footer .edu-coach {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    gap: 20px;
}footer .edu-coach:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}footer .info_item {
    display: flex;
    flex: 1 1 220px;
    align-items: center;
}footer .info_item svg {
    margin-right: 12px;
    width: 20px;
    filter: drop-shadow(0 0 3px rgb(170,151,175,0.5));
    transition: transform 0.3s ease;
    fill: rgb(170,151,175);
    height: 20px;
}footer .info_item:hover svg {
    transform: scale(1.1);
}footer .info_item p, footer .info_item a {
    color: #ffffff;
    transition: color 0.3s ease;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    text-decoration: none;
}footer .info_item a:hover {
    text-shadow: 0 0 8px rgb(170,151,175,0.5);
    color: rgb(170,151,175);
}footer .text_main_holder {
    margin-top: 20px;
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
}footer .header-start {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    gap: 15px;
}footer .header-start svg {
    margin-bottom: 10px;
    width: auto;
    height: 50px;
    filter: drop-shadow(0 0 5px rgb(170,151,175,0.5));
    transition: filter 0.3s ease;
}footer .header-start:hover svg {
    filter: drop-shadow(0 0 8px rgb(170,151,175));
}footer .lesson-cta {
    line-height: 1.5;
    opacity: 0.8;
    max-width: 300px;
    color: #ffffff;
    font-size: 16px;
}footer .nav-core {
    padding: 25px;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
}footer .nav-core:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .nav-core::before {
    bottom: -2px;
    content: "";
    top: -2px;
    position: absolute;
    transition: opacity 0.5s ease;
    z-index: -1;
    background: linear-gradient(45deg, rgb(170,151,175), transparent, rgb(105,141,157), transparent);
    opacity: 0;
    left: -2px;
    right: -2px;
    border-radius: calc(14px + 2px);
}footer .nav-core:hover::before {
    animation: borderRotate 6s linear infinite;
    opacity: 0.7;
}@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

footer .nav-core h5 {
    font-size: 23px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
}footer .nav-core h5::after {
    background: rgb(170,151,175);
    height: 2px;
    transition: width 0.3s ease;
    left: 0;
    bottom: -1px;
    width: 50px;
    content: "";
    position: absolute;
}footer .nav-core:hover h5::after {
    width: 100px;
}footer .head-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}footer .head-section a {
    color: #ffffff;
    font-weight: 400;
    position: relative;
    text-decoration: none;
    font-size: calc(14px - 1px);
    transition: color 0.3s ease, padding-left 0.3s ease;
    padding-left: 15px;
}footer .head-section a::before {
    left: 0;
    content: "";
    height: 6px;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    position: absolute;
    top: 50%;
    background-color: rgb(170,151,175);
    transform: translateY(-50%) scale(0.8);
    opacity: 0.7;
    width: 6px;
}footer .head-section a:hover {
    padding-left: 20px;
    color: rgb(170,151,175);
}footer .head-section a:hover::before {
    opacity: 1;
    background-color: rgb(170,151,175);
    box-shadow: 0 0 5px rgb(170,151,175), 0 0 10px rgb(170,151,175,0.5);
    transform: translateY(-50%) scale(1);
}footer .subscribe_holder {
    position: relative;
    border-radius: 14px;
    padding: 30px;
    background: linear-gradient(135deg, rgb(105,141,157,0.5), #000000);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}footer .subscribe_holder::before {
    animation: pulseBackground 10s infinite ease-in-out;
    width: 200%;
    position: absolute;
    top: -50%;
    height: 200%;
    left: -50%;
    background: radial-gradient(circle, transparent 20%, #000000 70%);
    z-index: -1;
    content: "";
}@keyframes pulseBackground {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

footer .subscribe_holder h5 {
    font-weight: 600;
    position: relative;
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 15px;
    display: inline-block;
}footer .subscribe_holder h5::after {
    background: linear-gradient(90deg, rgb(170,151,175), transparent);
    bottom: -5px;
    position: absolute;
    height: 2px;
    content: "";
    left: 0;
    width: 100%;
}footer .subscribe_holder p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}footer .input_holder {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 15px;
}footer .input_holder input[type="email"] {
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 14px 16px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}footer .input_holder input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    border-color: rgb(170,151,175);
    box-shadow: 0 0 10px rgb(170,151,175,0.5);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .news-box {
    padding: 14px 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    background: rgb(170,151,175);
    border-radius: 10px;
    border: none;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    position: relative;
}footer .news-box::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: -100%;
    transition: left 0.7s ease;
    height: 100%;
}footer .news-box:hover {
    background: rgb(105,141,157);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}footer .news-box:hover::before {
    left: 100%;
}footer .music-edu {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}footer .footer-account {
    font-size: 16px;
    text-align: center;
    opacity: 0.7;
    letter-spacing: 0.5px;
    color: #ffffff;
}

@media (min-width: 768px) {footer .info_item {
    flex: 1 1 60px;
}footer .text_main_holder {
    grid-template-columns: 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .news-box {
    white-space: nowrap;
}
}

@media (min-width: 992px) {footer .affiliate-cta {
    grid-template-columns: 1fr;
}footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .edu-coach {
    flex-wrap: nowrap;
    display: flex;
    justify-content: space-between;
}footer .info_item {
    flex: 0 1 auto;
}
}

@media (max-width: 767px) {footer .badge-case {
    padding: 60px 0 30px;
}footer .edu-coach {
    padding: 20px;
    gap: 15px;
    flex-direction: column;
}footer .info_item {
    width: 100%;
}footer .nav-core, footer .subscribe_holder {
    padding: 20px;
}footer .subscribe_holder h5, footer .nav-core h5 {
    font-size: calc(23px - 2px);
}footer .subscribe_holder p, footer .head-section a {
    font-size: calc(14px - 2px);
}footer .music-edu {
    margin-top: 30px;
}
}

@media (max-width: 576px) {footer .badge-case {
    padding: 40px 0 20px;
}footer .edu-coach, footer .nav-core, footer .subscribe_holder {
    padding: 15px;
}footer .input_holder input[type="email"], footer .news-box {
    padding: 12px;
}footer .header-start svg {
    height: 40px;
}footer .lesson-cta {
    font-size: calc(16px - 1px);
}}.our-background {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.our-background::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(170,151,175,0.5) 0%, rgb(105,141,157,0.5) 100%);
    backdrop-filter: blur(5px);
    top: 0;
    position: absolute;
    z-index: 1;
    left: 0;
    content: "";
}.our-background .container {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
}.our-background .text-bubble {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85));
    margin-left: auto;
    transform: perspective(1000px) rotateY(2deg);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 900px;
    padding: 60px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}.our-background .text-bubble::before {
    transition: transform 0.5s ease;
    left: -10px;
    right: 30px;
    content: "";
    z-index: -1;
    position: absolute;
    transform: translate(10px, 10px);
    border-left: 2px solid rgb(170,151,175);
    bottom: 30px;
    top: -10px;
    border-top: 2px solid rgb(170,151,175);
}.our-background .text-bubble:hover {
    transform: perspective(1000px) rotateY(0deg);
}.our-background .text-bubble:hover::before {
    transform: translate(0, 0);
}.our-background h5 {
    padding-bottom: 10px;
    text-transform: uppercase;
    color: rgb(170,151,175);
    margin-bottom: 16px;
    font-size: 19px;
    position: relative;
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 700;
}.our-background h5::after {
    left: 0;
    position: absolute;
    height: 3px;
    transform-origin: left;
    background: linear-gradient(to right, rgb(170,151,175), rgb(105,141,157));
    transition: transform 0.5s ease;
    bottom: 0;
    transform: scaleX(0.5);
    width: 100%;
    content: "";
}.our-background .text-bubble:hover h5::after {
    transform: scaleX(1);
}.our-background p {
    color: #000000;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: calc(17px * 1.5);
    font-family: Arial, sans-serif;
}.our-background p b {
    position: relative;
    color: rgb(105,141,157);
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    font-size: calc(17px * 1.8);
}.our-background p b::after {
    bottom: -5px;
    transform: scaleX(0);
    height: 2px;
    content: "";
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgb(105,141,157);
    width: 100%;
    transform-origin: right;
    position: absolute;
    left: 0;
}.our-background .text-bubble:hover p b::after {
    transform: scaleX(1);
    transform-origin: left;
}.our-background ol {
    padding: 0;
    counter-reset: item;
    margin: 0;
    list-style-type: none;
}.our-background ol li {
    text-align: justify;
    margin-bottom: 20px;
    color: #000000;
    padding-left: 20px;
    overflow-wrap: break-word;
    position: relative;
    font-weight: 400;
    max-width: 100%;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-size: 17px;
    hyphens: auto;
}.our-background ol li::before {
    width: 6px;
    left: 0;
    position: absolute;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(105,141,157);
    content: "";
    transform: translateY(-50%);
    top: 12px;
}

@media (hover: hover) {.our-background .text-bubble {
    cursor: default;
}.our-background .text-bubble:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}.our-background ol li {
    transition: color 0.3s ease;
}.our-background .text-bubble:hover ol li {
    color: #000000;
}
}

@media (max-width: 1200px) {.our-background {
    padding: 90px 0;
}.our-background .text-bubble {
    padding: 50px;
    margin-left: 0;
    margin-right: 0;
}
}

@media (max-width: 992px) {.our-background {
    padding: 70px 0;
}.our-background .text-bubble {
    padding: 40px;
    transform: perspective(1000px) rotateY(1deg);
}.our-background p {
    font-size: calc(17px * 1.3);
}.our-background p b {
    font-size: calc(17px * 1.5);
}
}

@media (max-width: 768px) {.our-background {
    padding: 60px 0;
}.our-background .text-bubble {
    transform: none;
    padding: 30px;
}.our-background h5 {
    font-size: calc(19px * 0.9);
}.our-background p {
    font-size: calc(17px * 1.2);
    margin-bottom: 20px;
}.our-background p b {
    font-size: calc(17px * 1.4);
}.our-background ol li {
    line-height: 1.7;
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 576px) {.our-background {
    padding: 40px 0;
}.our-background .text-bubble {
    padding: 25px 20px;
}.our-background h5 {
    margin-bottom: 12px;
    font-size: calc(19px * 0.85);
}.our-background .text-bubble::before {
    display: none;
}.our-background p {
    font-size: 17px;
    margin-bottom: 15px;
}.our-background p b {
    font-size: calc(17px * 1.2);
}.our-background ol li {
    padding-left: 15px;
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.our-background ol li::before {
    height: 5px;
    width: 5px;
}}.privacy-lair {
    width: 100%;
    flex-direction: column;
    padding: 60px;
    background: #ffffff;
    display: flex;
    border: 2px solid #000000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    align-items: center;
    height: auto;
}.privacy-lair h1 {
    color: rgb(170,151,175);
    padding-bottom: 15px;
    border-bottom: 3px solid rgb(105,141,157);
    text-align: center;
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 30px;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 46px;
}.privacy-lair h2 {
    text-align: left;
    color: rgb(105,141,157);
    padding-left: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 31px;
    border-left: 5px solid rgb(170,151,175);
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}.privacy-lair ul, .privacy-lair ol {
    padding-left: 0;
    list-style: none;
    border-bottom: 2px solid #000000;
    border-top: 2px solid #000000;
    width: 100%;
    padding: 20px 0;
    margin: 30px 0;
    max-width: 800px;
}.privacy-lair ul li, .privacy-lair ol li {
    margin-bottom: 20px;
    color: #000000;
    position: relative;
    font-size: 12px;
    padding-left: 25px;
    font-weight: 300;
}.privacy-lair ul li::before, .privacy-lair ol li::before {
    height: 8px;
    content: '';
    left: 0;
    position: absolute;
    border-radius: 50%;
    background: rgb(170,151,175);
    transform: translateY(-50%);
    top: 50%;
    width: 8px;
}.privacy-lair p, .privacy-lair span, .privacy-lair div {
    font-size: 12px;
    width: 100%;
    text-align: justify;
    max-width: 800px;
    font-family: Arial, sans-serif;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}.privacy-lair div.container {
    margin: 0 auto;
    max-width: 1000px;
    align-items: center;
    flex-direction: column;
    display: flex;
}

@media only screen and (max-width: 800px) {.privacy-lair {
    padding: 30px;
    border-radius: 10px;
}.privacy-lair h1 {
    padding-bottom: 10px;
    font-size: calc(22px - 5px);
}.privacy-lair h2 {
    padding-left: 10px;
    font-size: calc(22px - 5px);
}.privacy-lair ul, .privacy-lair ol {
    padding: 15px 0;
    margin: 20px 0;
}.privacy-lair ul li, .privacy-lair ol li {
    font-size: 12px;
    padding-left: 20px;
}}.cookieInformationAlert {
    z-index: 90;
    width: 100%;
    background: rgb(222,218,216);
    border-top: 2px solid rgb(170,151,175);
    bottom: 0;
    position: fixed;
}.cookie-check {
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    display: flex;
}.cookieInformationAlert h5 {
    margin-bottom: 6px;
    font-size: 22px;
}#cookie-box-window {
    display: none;
}#cookie-box-window:checked ~ .cookieInformationAlert {
    visibility: hidden;
    opacity: 0;
}.cookieInformationAlert p {
    font-size: 18px;
}.data-comply {
    flex-shrink: 0;
    margin-right: 10px;
}.data-comply svg, .data-comply svg path, .data-comply img {
    fill: rgb(170,151,175);
    width: 100px;
    height: 100px;
}.safe-cookies {
    color: rgb(170,151,175);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
    font-size: 24px;
    cursor: pointer;
    border-bottom: 2px solid rgb(170,151,175);
    line-height: 35px;
    margin-left: 10px;
}.cookieInformationAlert p a {
    text-decoration: none;
    color: rgb(170,151,175);
}
@media only screen and (max-width: 1200px) {.cookieInformationAlert {
    padding: 20px;
}}

.wrapper-padding .cookieInformationAlert {
    background: rgb(105,141,157);
    padding: 40px 0;
    box-shadow: rgb(105,141,157,0.5) 0px 0px 40px 39px;
    border: none;
}.wrapper-padding .safe-cookies {
    padding: 10px;
    margin-left: 30px;
    color: #ffffff;
    background: rgb(170,151,175);
    font-size: 20px;
    font-weight: 400;
    border: none;
}.wrapper-padding .track-cookies h5, .wrapper-padding .track-cookies p {
    color: #ffffff;
}
@media only screen and (max-width: 800px) {.data-comply {
    display: none;
}.cookie-check {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookieInformationAlert h5 {
    text-align: center;
}.cookieInformationAlert p {
    text-align: center;
}.track-cookies {
    margin-bottom: 20px;
}body .wrapper-padding .safe-cookies {
    margin-left: 0;
    margin-bottom: 10px;
}
}