* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}.wrapper-template {
    flex-direction: column;
    display: flex;
    min-height: 100%;
    height: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.top-pagewrap {
    flex: 1 0 auto;
}html,body {
    min-height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
    height: 100%;
}header,footer {
    width: 100%;
}.grant-info {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}.container {
    margin: auto;
    width: 1177px;
    max-width: 100%;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.gratWrapper {
    position: relative;
    background: linear-gradient(135deg, rgb(241,219,218) 0%, rgb(213,167,165,0.5) 100%);
    padding: 6rem 1.5rem;
    overflow: hidden;
}.gratWrapper::before {
    position: absolute;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgb(255, 255, 255, 0.5) 0%, transparent 60%);
    width: 100%;
    z-index: 1;
    top: 0;
    height: 100%;
    content: "";
}.gratWrapper::after {
    animation: float 15s ease-in-out infinite;
    bottom: -5rem;
    height: 20rem;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(225deg, rgb(213,167,165) 0%, transparent 70%);
    right: -5rem;
    z-index: 0;
    transform: rotate(15deg);
    width: 20rem;
    position: absolute;
    content: "";
    opacity: 0.15;
}.gratWrapper .container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}.gratWrapper h2 {
    margin: 0;
    transform: translateY(-10px);
    color: rgb(213,167,165);
    line-height: 1.3;
    font-size: 34px;
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
    opacity: 0;
    max-width: 90%;
    animation: slideIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}.gratWrapper h2::after {
    animation: lineExpand 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
    content: "";
    transform: scaleX(0);
    height: 3px;
    left: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(213,167,165) 0%, rgb(186,124,122) 100%);
    bottom: -1rem;
    width: 6rem;
    position: absolute;
}.gratWrapper .skill-learn {
    transform: translateY(20px);
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07), 
                0 1px 8px rgba(0, 0, 0, 0.04);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 1.5rem), 
        calc(100% - 1.5rem) 100%, 
        0 100%
    );
    position: relative;
    padding: 2.5rem;
    animation: popUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}.gratWrapper .skill-learn::before {
    content: "";
    opacity: 0.04;
    height: 100%;
    position: absolute;
    width: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(213,167,165,0.5) 300%);
    left: 0;
    z-index: -1;
    top: 0;
}.gratWrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.gratWrapper li {
    padding-left: 2.5rem;
    position: relative;
}.gratWrapper li::before {
    width: 1.5rem;
    background: rgb(213,167,165,0.5);
    animation: pulse 4s ease-in-out infinite;
    content: "";
    border-radius: 10px;
    transform: rotate(45deg);
    position: absolute;
    top: 0.5rem;
    height: 1.5rem;
    opacity: 0.2;
    left: 0;
}.gratWrapper li::after {
    content: "✓";
    left: 0.45rem;
    font-weight: 700;
    position: absolute;
    top: 0.4rem;
    font-size: 1rem;
    color: rgb(213,167,165);
}.gratWrapper span {
    font-size: 13px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    display: block;
    color: #000000;
}

@keyframes slideIn {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(45deg) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(17deg) translateY(-20px);
    }
}

@media (max-width: 992px) {.gratWrapper {
    padding: 5rem 1.25rem;
}.gratWrapper h2 {
    max-width: 100%;
    font-size: calc(34px - 0.25rem);
}.gratWrapper .skill-learn {
    padding: 2rem;
}
}

@media (max-width: 768px) {.gratWrapper {
    padding: 4rem 1.25rem;
}.gratWrapper h2 {
    font-size: calc(34px - 0.5rem);
}.gratWrapper .skill-learn {
    padding: 1.75rem;
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 1rem), 
            calc(100% - 1rem) 100%, 
            0 100%
        );
}.gratWrapper li {
    padding-left: 2rem;
}
}

@media (max-width: 576px) {.gratWrapper {
    padding: 3rem 1rem;
}.gratWrapper h2 {
    font-size: calc(34px - 0.75rem);
}.gratWrapper .skill-learn {
    padding: 1.5rem;
}.gratWrapper h2::after {
    width: 4rem;
}.gratWrapper li::before {
    width: 1.25rem;
    top: 0.3rem;
    height: 1.25rem;
}.gratWrapper li::after {
    font-size: 0.9rem;
    left: 0.35rem;
    top: 0.25rem;
}.gratWrapper span {
    font-size: calc(13px - 0.1rem);
}}.contact {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: rgb(241,219,218);
}.contact::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    opacity: 0.15;
    top: 0;
    background: linear-gradient(120deg, rgb(213,167,165,0.5) 0%, transparent 75%);
    width: 100%;
}.contact::after {
    right: 0;
    bottom: 0;
    height: 70%;
    width: 70%;
    position: absolute;
    opacity: 0.1;
    content: "";
    background: linear-gradient(240deg, rgb(186,124,122,0.5) 0%, transparent 70%);
}.contact .container {
    padding: 0 30px;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}.contact h2 {
    text-align: center;
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 31px;
    color: #000000;
    font-family: Arial, sans-serif;
}.contact .help-support {
    flex-direction: row-reverse;
    overflow: hidden;
    border-radius: 19px;
    margin-top: 50px;
    flex-wrap: wrap;
    display: flex;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}.contact .img-thumbnail {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    flex: 0 0 40%;
}.contact .img-thumbnail::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.4));
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    right: 0;
}.contact .message-feedback {
    flex: 0 0 60%;
    padding: 60px;
    position: relative;
}.contact .message-feedback::before {
    height: calc(100% - 80px);
    border-radius: 2.5px;
    content: "";
    background: linear-gradient(to bottom, rgb(213,167,165), rgb(186,124,122));
    left: 0;
    width: 5px;
    position: absolute;
    top: 40px;
}.contact form {
    padding-left: 25px;
    width: 100%;
}.contact form h3 {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 35px;
    font-family: Arial, sans-serif;
    color: #000000;
}.contact form input[type="text"] {
    width: 100%;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    padding: 18px 25px;
    background: rgb(241,219,218);
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    color: #000000;
    border-radius: 10px;
}.contact form input[type="text"]:focus {
    background: rgba(rgb(213,167,165), 0.05);
    outline: none;
    box-shadow: 0 0 0 2px rgb(213,167,165,0.5);
}.contact form input[type="text"]::placeholder {
    color: rgba(#000000, 0.4);
}.contact .query-card {
    align-items: flex-start;
    display: flex;
    margin: 10px 0 30px;
}.contact .query-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact .query-card label {
    line-height: 1.5;
    cursor: pointer;
    color: #000000;
    position: relative;
    font-size: 15px;
    padding-left: 35px;
}.contact .query-card label::before {
    border-radius: 10px;
    left: 0;
    transition: all 0.2s ease;
    position: absolute;
    width: 22px;
    content: "";
    height: 22px;
    border: 2px solid rgb(213,167,165,0.5);
    top: 2px;
}.contact .query-card input[type="checkbox"]:checked + label::before {
    background-color: rgb(213,167,165);
    border-color: rgb(213,167,165);
}.contact .query-card input[type="checkbox"]:checked + label::after {
    border-bottom: 2px solid #ffffff;
    content: "";
    left: 8px;
    width: 6px;
    border-right: 2px solid #ffffff;
    top: 9px;
    transform: rotate(45deg);
    position: absolute;
    height: 11px;
}.contact .query-card label a {
    transition: all 0.3s ease;
    color: rgb(213,167,165);
    text-decoration: none;
}.contact .query-card label a:hover {
    color: rgb(186,124,122);
    text-decoration: underline;
}.contact form .request-feedbackokO2 {
    font-weight: 600;
    background: linear-gradient(45deg, rgb(213,167,165), rgb(186,124,122));
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    display: inline-block;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    padding: 15px 35px;
}.contact form .request-feedbackokO2::before {
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    content: "";
    transform: rotate(45deg) translateX(-200%);
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}.contact form .request-feedbackokO2:hover {
    box-shadow: 0 8px 15px rgba(rgb(213,167,165), 0.3);
    transform: translateY(-2px);
}.contact form .request-feedbackokO2:hover::before {
    transform: rotate(45deg) translateX(200%);
}.contact svg {
    height: 22px;
    width: 22px;
    fill: rgb(213,167,165);
}.contact svg path {
    fill: rgb(213,167,165);
    transition: fill 0.3s ease;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.1;
    }
}

@media screen and (max-width: 1024px) {.contact .message-feedback {
    padding: 50px 40px;
}
}

@media screen and (max-width: 991px) {.contact .img-thumbnail {
    min-height: 300px;
    flex: 0 0 100%;
}.contact .message-feedback {
    flex: 0 0 100%;
}.contact .message-feedback::before {
    top: 0;
    height: 5px;
    background: linear-gradient(to right, rgb(213,167,165), rgb(186,124,122));
    width: calc(100% - 80px);
    left: 40px;
}.contact form {
    padding-top: 25px;
    padding-left: 0;
}
}

@media screen and (max-width: 767px) {.contact {
    padding: 70px 0;
}.contact .img-thumbnail {
    min-height: 250px;
}.contact .message-feedback {
    padding: 40px 30px;
}.contact .message-feedback::before {
    width: calc(100% - 60px);
    left: 30px;
}
}

@media screen and (max-width: 480px) {.contact {
    padding: 50px 0;
}.contact h2 {
    font-size: calc(31px * 0.8);
}.contact .img-thumbnail {
    min-height: 200px;
}.contact .message-feedback {
    padding: 30px 20px;
}.contact .message-feedback::before {
    left: 20px;
    width: calc(100% - 40px);
}.contact form h3 {
    font-size: calc(19px * 0.9);
    margin-bottom: 25px;
}.contact form input[type="text"] {
    padding: 15px 20px;
}.contact form .request-feedbackokO2 {
    width: 100%;
    text-align: center;
}}.learning-profits {
    background: linear-gradient(135deg, rgb(241,219,218) 30%, rgba(rgb(186,124,122,0.5), 0.15) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}.learning-profits::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(rgb(213,167,165,0.5), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(rgb(186,124,122,0.5), 0.15) 0%, transparent 60%);
    left: 0;
    z-index: 0;
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
}.learning-profits::after {
    transform: rotate(-15deg);
    background: linear-gradient(135deg, rgba(rgb(213,167,165,0.5), 0.05) 0%, rgba(rgb(186,124,122,0.5), 0.12) 100%);
    position: absolute;
    height: 200%;
    content: "";
    top: -50%;
    right: -20%;
    width: 60%;
    z-index: 0;
}.learning-profits .container {
    padding: 0 1.5rem;
    z-index: 1;
    flex-direction: column;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}.learning-profits .img-thumbnail {
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 24px;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15), 
                0 0 0 1px rgba(rgb(213,167,165,0.5), 0.1);
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    max-height: 420px;
    object-fit: cover;
    height: auto;
}.learning-profits .img-thumbnail:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(rgba(0, 0, 0, 0.5), 0.18), 
                0 0 0 1px rgba(rgb(213,167,165,0.5), 0.15);
}.learning-profits .skill-learn {
    position: relative;
    transform: translateY(-20px);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.1),
                0 0 0 1px rgba(rgb(213,167,165,0.5), 0.05);
    background: linear-gradient(145deg, rgba(rgb(255, 255, 255, 0.5), 0.95), rgba(rgb(255, 255, 255, 0.5), 0.85));
    border-radius: 24px;
}.learning-profits .text-row {
    position: relative;
}.learning-profits h1 {
    color: #000000;
    line-height: 1.3;
    font-weight: 700;
    color: transparent;
    position: relative;
    font-size: calc(35px * 1.1);
    margin-bottom: 2rem;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background: linear-gradient(90deg, #000000 0%, rgb(213,167,165) 100%);
}.learning-profits h1::after {
    height: 3px;
    width: 80px;
    position: absolute;
    border-radius: 5px;
    bottom: -12px;
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(213,167,165) 0%, rgb(186,124,122) 100%);
}.learning-profits ul {
    margin: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    display: grid;
    padding: 0;
    list-style: none;
}.learning-profits li {
    padding-left: 2.5rem;
    transition: transform 0.3s ease-out;
    position: relative;
}.learning-profits li:hover {
    transform: translateX(5px);
}.learning-profits li p {
    font-size: calc(16px * 1.05);
    align-items: center;
    margin: 0;
    line-height: 1.6;
    color: #000000;
    display: flex;
}.learning-profits li svg {
    transform-origin: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
}.learning-profits li:hover svg {
    transform: scale(1.1);
}.learning-profits svg path {
    transition: fill 0.3s ease;
    fill: rgb(213,167,165);
}.learning-profits li:hover svg path {
    fill: rgb(186,124,122);
}

@media (min-width: 768px) {.learning-profits {
    padding: 8rem 0;
}.learning-profits .container {
    align-items: center;
    gap: 3rem;
    flex-direction: row;
}.learning-profits .img-thumbnail {
    width: 45%;
    max-height: 500px;
    margin-bottom: 0;
}.learning-profits .skill-learn {
    transform: translateY(0) translateX(-30px);
    width: 55%;
}.learning-profits ul {
    grid-template-columns: repeat(2, 1fr);
}.learning-profits h1 {
    font-size: 41px;
}
}

@media (min-width: 992px) {.learning-profits .container {
    gap: 4rem;
}.learning-profits .img-thumbnail {
    max-height: 600px;
}.learning-profits .skill-learn {
    padding: 3rem;
}.learning-profits h1 {
    margin-bottom: 2.5rem;
}.learning-profits h1::after {
    width: 100px;
}
}

@media (max-width: 767px) {.learning-profits {
    padding: 4rem 0;
}.learning-profits .skill-learn {
    padding: 1.5rem;
}.learning-profits h1 {
    margin-bottom: 1.5rem;
    font-size: calc(35px * 0.9);
}.learning-profits li {
    padding-left: 2rem;
}.learning-profits li p {
    font-size: 16px;
}.learning-profits svg {
    transform: scale(0.8);
}
}

@media (max-width: 480px) {.learning-profits {
    padding: 3rem 0;
}.learning-profits .skill-learn {
    padding: 1.25rem;
    transform: translateY(-10px);
}.learning-profits h1 {
    margin-bottom: 1.25rem;
    font-size: calc(35px * 0.8);
}.learning-profits ul {
    gap: 1rem;
}.learning-profits li p {
    font-size: calc(16px * 0.95);
}
}

@media (hover: hover) {.learning-profits .skill-learn {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), 
                    box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}.learning-profits .skill-learn:hover {
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15),
                    0 0 0 1px rgba(rgb(213,167,165,0.5), 0.1);
}}.who-we-are {
    position: relative;
    background: rgb(241,219,218);
    z-index: 1;
    overflow: hidden;
    padding: 80px 0;
}.who-we-are::before {
    position: absolute;
    height: 500px;
    right: -100px;
    top: -100px;
    z-index: -1;
    content: '';
    background: linear-gradient(135deg, rgb(213,167,165,0.5) 0%, transparent 70%);
    border-radius: 50%;
    width: 500px;
    animation: pulse 15s infinite alternate;
}.who-we-are::after {
    animation: pulse 12s infinite alternate-reverse;
    bottom: -100px;
    left: -100px;
    z-index: -1;
    background: linear-gradient(225deg, rgb(186,124,122,0.5) 0%, transparent 70%);
    content: '';
    width: 400px;
    position: absolute;
    border-radius: 50%;
    height: 400px;
}@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(15deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
}

.who-we-are .container {
    max-width: 1200px;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
}.who-we-are .skill-learn {
    position: relative;
    gap: 60px;
    display: flex;
    flex-direction: column;
}.who-we-are h3 {
    margin-bottom: 40px;
    font-size: 35px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    color: #000000;
}.who-we-are h3::after {
    bottom: 0;
    background: linear-gradient(to right, rgb(213,167,165), rgb(186,124,122));
    height: 4px;
    content: '';
    position: absolute;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}.who-we-are .virtual-training {
    position: relative;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 40px;
    border-radius: 25px;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: grid;
}.who-we-are .virtual-training:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.who-we-are .virtual-training span {
    display: block;
    font-size: 23px;
    grid-column: 1 / 2;
    font-weight: 600;
    color: rgb(213,167,165);
    margin-bottom: 15px;
}.who-we-are .virtual-training p {
    margin-bottom: 0;
    font-size: 17px;
    border-left: 3px solid rgb(186,124,122);
    position: relative;
    padding-left: 20px;
    grid-column: 1 / 2;
    line-height: 1.7;
    color: #000000;
}.who-we-are .virtual-training .img-thumbnail {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    grid-row: 1 / 3;
    border-radius: 25px;
    min-height: 300px;
    transition: transform 0.5s ease;
    grid-column: 2 / 3;
    overflow: hidden;
}.who-we-are .virtual-training .img-thumbnail::before {
    z-index: 1;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    content: '';
    position: absolute;
}.who-we-are .virtual-training .img-thumbnail:hover {
    transform: perspective(1000px) rotateY(0deg);
}.who-we-are .fast-classes {
    display: grid;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    gap: 40px;
    background: #ffffff;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding: 30px;
}.who-we-are .fast-classes:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.who-we-are .fast-classes p {
    grid-column: 1 / 2;
    border-left: 3px solid rgb(213,167,165);
    padding-left: 20px;
    position: relative;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 17px;
    color: #000000;
}.who-we-are .fast-classes .learn-study {
    position: relative;
    min-height: 300px;
    transform: perspective(1000px) rotateY(-5deg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    grid-column: 2 / 3;
    border-radius: 25px;
    transition: transform 0.5s ease;
}.who-we-are .fast-classes .learn-study::before {
    top: 0;
    z-index: 1;
    width: 100%;
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    height: 100%;
    left: 0;
}.who-we-are .fast-classes .learn-study::after {
    height: 100%;
    top: 0;
    width: 100%;
    position: absolute;
    content: '';
    background: radial-gradient(circle at top right, rgb(213,167,165,0.5) 0%, transparent 70%);
    left: 0;
    z-index: 1;
}.who-we-are .fast-classes .learn-study:hover {
    transform: perspective(1000px) rotateY(0deg);
}.who-we-are .img-thumbnail::after {
    top: -10px;
    background: rgb(186,124,122);
    position: absolute;
    right: -10px;
    border-radius: 50%;
    opacity: 0.7;
    width: 60px;
    z-index: 2;
    height: 60px;
    animation: float 3s infinite alternate;
    content: '';
}@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(1.1);
    }
}

.who-we-are .skill-learn::before {
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, rgb(213,167,165,0.5), transparent);
    width: 2px;
    left: 50%;
    height: 100%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
}.who-we-are .virtual-training::after,
.who-we-are .fast-classes::after {
    left: 50%;
    border-radius: 50%;
    height: 20px;
    background: #ffffff;
    z-index: 3;
    border: 3px solid rgb(213,167,165);
    position: absolute;
    transform: translateX(-50%);
    content: '';
    width: 20px;
}.who-we-are .virtual-training::after {
    bottom: -40px;
}.who-we-are .fast-classes::after {
    top: -40px;
}

@media (max-width: 991px) {.who-we-are {
    padding: 60px 0;
}.who-we-are .virtual-training,
    .who-we-are .fast-classes {
    gap: 30px;
    grid-template-columns: 1fr;
}.who-we-are .virtual-training span,
    .who-we-are .virtual-training p,
    .who-we-are .fast-classes p {
    grid-column: 1 / 2;
}.who-we-are .virtual-training .img-thumbnail,
    .who-we-are .fast-classes .learn-study {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: 250px;
}.who-we-are .skill-learn::before {
    left: 20px;
}.who-we-are .virtual-training::after,
    .who-we-are .fast-classes::after {
    left: 20px;
    transform: none;
}
}

@media (max-width: 767px) {.who-we-are {
    padding: 40px 0;
}.who-we-are h3 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.9);
}.who-we-are .skill-learn {
    gap: 40px;
}.who-we-are .virtual-training,
    .who-we-are .fast-classes {
    padding: 20px;
}.who-we-are .virtual-training .img-thumbnail,
    .who-we-are .fast-classes .learn-study {
    min-height: 200px;
}.who-we-are .virtual-training span {
    font-size: calc(23px * 0.9);
}.who-we-are .virtual-training p,
    .who-we-are .fast-classes p {
    font-size: calc(17px * 0.95);
    padding-left: 15px;
}.who-we-are::before,
    .who-we-are::after {
    width: 200px;
    height: 200px;
}
}

@media (max-width: 480px) {.who-we-are {
    padding: 30px 0;
}.who-we-are h3 {
    font-size: calc(35px * 0.8);
    padding-bottom: 15px;
    margin-bottom: 25px;
}.who-we-are h3::after {
    height: 3px;
    width: 60px;
}.who-we-are .skill-learn {
    gap: 30px;
}.who-we-are .virtual-training,
    .who-we-are .fast-classes {
    gap: 20px;
    padding: 15px;
}.who-we-are .virtual-training .img-thumbnail,
    .who-we-are .fast-classes .learn-study {
    min-height: 180px;
}.who-we-are .virtual-training span {
    margin-bottom: 10px;
}.who-we-are .virtual-training p,
    .who-we-are .fast-classes p {
    padding-left: 10px;
}.who-we-are .virtual-training::after,
    .who-we-are .fast-classes::after {
    height: 15px;
    width: 15px;
}.who-we-are::before,
    .who-we-are::after {
    height: 150px;
    width: 150px;
}}.offer-panel {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: rgb(241,219,218);
}.offer-panel::before {
    position: absolute;
    height: 300px;
    z-index: 0;
    right: -50px;
    filter: blur(60px);
    background: linear-gradient(135deg, rgb(186,124,122,0.5), rgb(213,167,165,0.5));
    width: 300px;
    top: -50px;
    border-radius: 50%;
    content: "";
}.offer-panel::after {
    filter: blur(50px);
    bottom: -50px;
    width: 250px;
    content: "";
    z-index: 0;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(225deg, rgb(213,167,165,0.5), rgb(186,124,122,0.5));
    left: -50px;
    height: 250px;
}.offer-panel .container {
    z-index: 1;
    position: relative;
}.offer-panel .payment-pricing {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
}.offer-panel .cost-table {
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 800px;
    position: relative;
}.offer-panel .cost-table h2 {
    color: #000000;
    display: inline-block;
    font-size: calc(35px * 1.1);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}.offer-panel .cost-table h2::after {
    left: 50%;
    content: "";
    transform: translateX(-50%);
    width: 80px;
    bottom: -10px;
    background: linear-gradient(90deg, rgb(213,167,165), rgb(186,124,122));
    position: absolute;
    height: 3px;
}.offer-panel .price-plan {
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
    font-size: 12px;
}.offer-panel .member-fees {
    gap: 2rem;
    grid-template-columns: 1fr;
    display: grid;
    perspective: 1000px;
}.offer-panel .study-costs {
    position: relative;
    text-decoration: none;
    transform-style: preserve-3d;
    display: block;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.offer-panel .study-costs:hover {
    transform: translateY(-10px);
}.offer-panel .rate-list {
    flex-direction: column;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    background: #ffffff;
    min-height: 430px;
    transition: all 0.4s ease;
    display: flex;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}.offer-panel .study-costs:hover .rate-list {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}.offer-panel .fee-offers {
    flex: 1;
    position: relative;
    padding: 2rem;
    z-index: 2;
}.offer-panel .study-costs h3 {
    position: relative;
    display: inline-block;
    color: #000000;
    font-size: calc(18px * 1.1);
    margin-bottom: 1rem;
    font-weight: 700;
}.offer-panel .study-costs h3::before {
    left: 0;
    transition: width 0.3s ease;
    content: "";
    width: 40px;
    background: rgb(213,167,165);
    bottom: -5px;
    position: absolute;
    height: 2px;
}.offer-panel .study-costs:hover h3::before {
    width: 100%;
}.offer-panel .pricing-pack {
    display: block;
    font-weight: 700;
    position: relative;
    font-size: calc(18px * 1.4);
    margin: 1.5rem 0;
    color: rgb(186,124,122);
}.offer-panel .pricing-pack::after {
    height: 20px;
    background: rgb(213,167,165);
    left: -10px;
    width: 3px;
    top: 50%;
    content: "";
    position: absolute;
    transform: translateY(-50%);
    border-radius: 3px;
}.offer-panel .study-costs p {
    hyphens: auto;
    font-size: 12px;
    overflow-wrap: break-word;
    line-height: 1.6;
    word-wrap: break-word;
    color: #000000;
    margin-bottom: 1rem;
}.offer-panel .img-thumbnail {
    height: 180px;
    position: relative;
}.offer-panel .img-thumbnail::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    content: "";
    position: absolute;
    inset: 0;
}.offer-panel .study-costs:nth-child(1) .rate-list {
    border-top: 4px solid rgb(213,167,165);
}.offer-panel .study-costs:nth-child(2) .rate-list {
    border-top: 4px solid rgb(186,124,122);
}.offer-panel .study-costs:nth-child(3) .rate-list {
    border-top: 4px solid #6c5ce7;
}.offer-panel .study-costs:nth-child(4) .rate-list {
    border-top: 4px solid #00b894;
}

@media (min-width: 768px) {.offer-panel .member-fees {
    grid-template-columns: repeat(2, 1fr);
}.offer-panel .rate-list {
    min-height: 480px;
}.offer-panel .cost-table {
    padding: 0 2rem;
}.offer-panel .cost-table h2 {
    font-size: calc(35px * 1.2);
}
}

@media (min-width: 992px) {.offer-panel .payment-pricing {
    align-items: center;
    flex-direction: row;
    gap: 4rem;
}.offer-panel .member-fees {
    flex: 2;
    grid-template-columns: repeat(2, 1fr);
}.offer-panel .cost-table {
    padding-right: 3rem;
    flex: 1;
    text-align: left;
}.offer-panel .cost-table h2::after {
    left: 0;
    transform: none;
}.offer-panel .rate-list {
    min-height: 500px;
}
}

@media (min-width: 1200px) {.offer-panel .member-fees {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.offer-panel .study-costs {
    transform: perspective(1000px) rotateY(0);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.offer-panel .study-costs:hover {
    transform: perspective(1000px) translateY(-15px) rotateY(2deg);
}.offer-panel .rate-list {
    transform-style: preserve-3d;
    min-height: 520px;
    backface-visibility: hidden;
}.offer-panel .img-thumbnail {
    height: 200px;
}.offer-panel .pricing-pack {
    font-size: calc(18px * 1.6);
}.offer-panel .cost-table h2 {
    font-size: calc(35px * 1.3);
}}.program-overview {
    overflow: hidden;
    padding: 120px 0;
    background-color: rgb(241,219,218);
    position: relative;
}.program-overview::before {
    left: 0;
    position: absolute;
    height: 100%;
    content: "";
    z-index: 1;
    background-size: 60px 60px;
    width: 100%;
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(225deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(315deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0;
}.program-overview::after {
    background: radial-gradient(circle at center, rgb(213,167,165,0.5) 0%, transparent 70%);
    position: absolute;
    width: 100%;
    top: 0;
    opacity: 0.15;
    left: 0;
    content: "";
    z-index: 2;
    height: 100%;
}.program-overview .online-class {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}.program-overview .text-row {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 40px;
    transform: translateZ(0);
    z-index: 4;
    backdrop-filter: blur(10px);
    border-radius: 26px;
    width: 100%;
}.program-overview .text-row::before {
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    content: "";
    border-radius: 26px;
    height: 100%;
    position: absolute;
    opacity: 0.3;
    background: linear-gradient(135deg, rgb(213,167,165,0.5), transparent 70%, rgb(186,124,122,0.5)) border-box;
    -webkit-mask-composite: xor;
    left: 0;
    mask-composite: exclude;
    border: 1px solid transparent;
    top: 0;
    width: 100%;
}.program-overview .text-row h2 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
}.program-overview .text-row h2::after {
    background: linear-gradient(90deg, rgb(213,167,165), rgb(186,124,122));
    height: 3px;
    border-radius: 10px;
    width: 60px;
    content: "";
    transform: translateX(-50%);
    bottom: 0;
    left: 50%;
    position: absolute;
}.program-overview .text-row .description {
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
}.program-overview .text-row .description:last-child {
    margin-bottom: 0;
}.program-overview .img-thumbnail {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 500px;
}.program-overview .img-thumbnail::before {
    left: 0;
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    background: linear-gradient(135deg, rgb(213,167,165,0.5) 0%, transparent 50%);
    content: "";
    position: absolute;
}.program-overview .img-thumbnail::after {
    height: 100%;
    z-index: 2;
    width: 100%;
    top: 0;
    opacity: 0.3;
    content: "";
    left: 0;
    background: linear-gradient(45deg, transparent 50%, rgb(186,124,122,0.5) 100%);
    position: absolute;
}.program-overview .online-class::before,
.program-overview .online-class::after {
    top: 50%;
    opacity: 0.5;
    width: 200px;
    position: absolute;
    content: "";
    background-color: rgb(213,167,165,0.5);
    height: 1px;
    z-index: 1;
}.program-overview .online-class::before {
    transform: rotate(45deg);
    left: -100px;
}.program-overview .online-class::after {
    transform: rotate(-45deg);
    right: -100px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) {.program-overview .online-class {
    grid-gap: 30px;
    align-items: center;
    grid-template-rows: auto auto auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}.program-overview .text-row {
    margin-bottom: 60px;
    grid-row: 1;
    max-width: 100%;
    grid-column: 1 / 3;
}.program-overview .text-row .description:first-of-type {
    grid-column: 1;
    grid-row: 2;
    text-align: right;
    padding-right: 30px;
}.program-overview .text-row .description:last-child {
    grid-column: 2;
    text-align: left;
    grid-row: 2;
    padding-left: 30px;
}.program-overview .img-thumbnail {
    margin-top: 60px;
    max-width: 100%;
    grid-row: 3;
    grid-column: 1 / 3;
    height: 500px;
}.program-overview .online-class {
    position: relative;
}.program-overview .online-class::after {
    top: 0;
    background: linear-gradient(to bottom, transparent, rgb(213,167,165,0.5) 30%, rgb(213,167,165,0.5) 70%, transparent);
    content: "";
    left: 50%;
    z-index: 1;
    position: absolute;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
}
}

@media (min-width: 1200px) {.program-overview .online-class {
    display: flex;
    flex-direction: column;
    align-items: center;
}.program-overview .text-row {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    margin-bottom: 0;
}.program-overview .text-row h2 {
    width: 100%;
}.program-overview .text-row .description {
    width: calc(50% - 30px);
    text-align: left;
    padding: 0 15px;
    position: relative;
}.program-overview .text-row .description:first-of-type::after {
    right: 0;
    background: linear-gradient(to bottom, transparent, rgb(213,167,165,0.5), transparent);
    content: "";
    top: 0;
    position: absolute;
    width: 1px;
    height: 100%;
}.program-overview .img-thumbnail {
    height: 450px;
    max-width: 80%;
    border-radius: calc(26px * 2);
    margin-top: 60px;
}.program-overview .online-class::after {
    display: none;
}
}

@media (max-width: 991px) {.program-overview {
    padding: 80px 0;
}.program-overview .text-row {
    padding: 30px;
}.program-overview .text-row h2 {
    font-size: calc(28px * 0.9);
}.program-overview .img-thumbnail {
    margin-top: 40px;
    height: 400px;
}.program-overview .online-class::before,
    .program-overview .online-class::after {
    width: 150px;
}
}

@media (max-width: 768px) {.program-overview {
    padding: 60px 0;
}.program-overview .text-row {
    padding: 25px 20px;
}.program-overview .text-row h2 {
    font-size: calc(28px * 0.85);
    margin-bottom: 25px;
    padding-bottom: 15px;
}.program-overview .text-row h2::after {
    width: 50px;
    height: 2px;
}.program-overview .text-row .description {
    font-size: calc(13px * 0.95);
}.program-overview .img-thumbnail {
    margin-top: 30px;
    height: 350px;
}.program-overview .online-class::before,
    .program-overview .online-class::after {
    display: none;
}
}

@media (max-width: 576px) {.program-overview {
    padding: 50px 0;
}.program-overview .text-row {
    padding: 20px 15px;
}.program-overview .text-row h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: calc(28px * 0.8);
}.program-overview .text-row h2::after {
    width: 40px;
}.program-overview .text-row .description {
    font-size: calc(13px * 0.9);
    line-height: 1.7;
}.program-overview .img-thumbnail {
    height: 250px;
    margin-top: 25px;
}}.get-help-info {
    background: linear-gradient(135deg, rgb(186,124,122,0.5) 0%, rgb(241,219,218) 100%);
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
}.get-help-info::before {
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
    opacity: 0.7;
    background-image: radial-gradient(circle at 10% 30%, rgb(213,167,165,0.5) 0%, transparent 50%);
    content: "";
    top: 0;
}.get-help-info::after {
    width: 40%;
    height: 40%;
    opacity: 0.4;
    bottom: -10%;
    z-index: 0;
    position: absolute;
    right: -5%;
    content: "";
    background-image: radial-gradient(circle, rgb(186,124,122,0.5) 0%, transparent 70%);
}.get-help-info .container {
    max-width: 1200px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 20px;
}.get-help-info .contact-assistance {
    margin: 0 auto;
    transform: perspective(1000px) rotateY(1deg);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}.get-help-info .contact-assistance:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(0deg);
}.get-help-info .contact-assistance::before {
    left: 0;
    width: 5px;
    top: 0;
    position: absolute;
    transition: transform 0.3s ease;
    background: linear-gradient(to bottom, rgb(213,167,165), rgb(186,124,122));
    content: "";
    transform: scaleY(0.95);
    height: 100%;
}.get-help-info .contact-assistance:hover::before {
    transform: scaleY(1);
}.get-help-info h3 {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgb(213,167,165);
    font-size: calc(31px * 1.2);
    position: relative;
}.get-help-info h3::after {
    bottom: -5px;
    transition: width 0.3s ease;
    width: 60%;
    height: 3px;
    left: 0;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(213,167,165), transparent);
}.get-help-info h3:hover::after {
    width: 100%;
}.get-help-info .contact-assistance > div {
    position: relative;
    padding-left: 0;
    margin-bottom: 2rem;
    transition: padding-left 0.3s ease;
}.get-help-info .contact-assistance > div:hover {
    padding-left: 10px;
}.get-help-info p {
    font-size: 13px;
    max-width: 90%;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #000000;
}.get-help-info h5 {
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
    font-size: 19px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}.get-help-info svg {
    transition: transform 0.3s ease, fill 0.3s ease;
    margin-left: 10px;
    transform: translateY(2px);
}.get-help-info h5:hover svg,
.get-help-info a:hover svg {
    transform: translateY(0) scale(1.1);
    fill: rgb(213,167,165) !important;
}.get-help-info svg path {
    transition: fill 0.3s ease;
}.get-help-info h5:hover svg path,
.get-help-info a:hover svg path {
    fill: rgb(213,167,165);
}.get-help-info .msg-form {
    padding: 0;
    gap: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
}.get-help-info .msg-form li {
    position: relative;
    transition: transform 0.3s ease;
    transform: translateX(0);
}.get-help-info .msg-form li:hover {
    transform: translateX(10px);
}.get-help-info .edu-input {
    color: #000000;
    font-weight: 400;
    font-size: 13px;
    align-items: center;
    transition: color 0.3s ease;
    text-transform: capitalize;
    display: flex;
    text-decoration: none;
}.get-help-info .edu-input:hover {
    color: rgb(213,167,165);
}.get-help-info .edu-input::before {
    position: absolute;
    transition: width 0.3s ease;
    background: rgb(186,124,122);
    content: "";
    left: 0;
    height: 2px;
    bottom: -3px;
    width: 0;
}.get-help-info .edu-input:hover::before {
    width: 100%;
}

@media (min-width: 768px) {.get-help-info .contact-assistance {
    display: grid;
    padding: 4rem;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 2rem;
}.get-help-info .contact-assistance h3 {
    grid-row: 1;
    grid-column: 1 / 13;
}.get-help-info .contact-assistance > div:first-of-type {
    grid-row: 2;
    grid-column: 1 / 13;
}.get-help-info .contact-assistance > div:nth-of-type(2) {
    grid-column: 1 / 6;
    grid-row: 3;
}.get-help-info .msg-form {
    grid-row: 3;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    grid-column: 6 / 13;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
}

@media (max-width: 767px) {.get-help-info {
    padding: 4rem 0;
}.get-help-info .contact-assistance {
    padding: 2rem;
    transform: none;
}.get-help-info p {
    max-width: 100%;
}.get-help-info h3 {
    font-size: calc(31px * 1.1);
}.get-help-info .msg-form {
    margin-top: 1.5rem;
}.get-help-info .msg-form li {
    margin-bottom: 1rem;
}
}

@media (max-width: 480px) {.get-help-info {
    padding: 3rem 0;
}.get-help-info .contact-assistance {
    padding: 1.5rem;
}.get-help-info h3 {
    font-size: 31px;
}.get-help-info h5 {
    font-size: calc(19px * 0.9);
}.get-help-info .edu-input {
    font-size: calc(13px * 0.9);
}.get-help-info svg {
    height: 20px;
    width: 20px;
}}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.get-help-info .contact-assistance > *:nth-child(1) {
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}.get-help-info .contact-assistance > *:nth-child(2) {
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}.get-help-info .contact-assistance > *:nth-child(3) {
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}.get-help-info .contact-assistance > *:nth-child(4) {
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}.title-portal {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
}.title-portal .edu-head {
    justify-content: flex-start;
    display: flex;
    height: 100vh;
    align-items: center;
    width: 100%;
    position: relative;
}.title-portal .edu-head::before {
    left: 0;
    z-index: 1;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0,0,0,0.8) 100%);
    position: absolute;
}.title-portal .edu-head::after {
    left: 0;
    position: absolute;
    content: "";
    animation: pulse 8s infinite alternate;
    z-index: 2;
    background: repeating-linear-gradient(
    -45deg,
    rgb(213,167,165,0.5),
    rgb(213,167,165,0.5) 1px,
    transparent 1px,
    transparent 10px
  );
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.1;
}.title-portal .learn-spot {
    margin-left: 10%;
    transform: translateY(-2rem);
    animation: fadeSlideUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.3s;
    opacity: 0;
    z-index: 3;
    padding: 3rem;
    max-width: 700px;
    position: relative;
}.title-portal .learn-spot::before {
    left: -20px;
    animation: growLine 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.6s;
    top: 0;
    height: 0;
    background: rgb(213,167,165);
    content: "";
    position: absolute;
    width: 6px;
}.title-portal .learn-spot::after {
    bottom: 0;
    background: rgb(186,124,122);
    height: 3px;
    width: 0;
    animation: expandWidth 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.9s;
    left: 0;
    content: "";
    position: absolute;
}.title-portal h1 {
    transition: transform 0.5s ease;
    font-size: clamp(2.5rem, 5vw, 45px);
    position: relative;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    transform: perspective(1000px) rotateX(0deg);
    font-weight: 700;
    color: #ffffff;
}.title-portal h1::before {
    width: 60px;
    animation: expandWidth 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 1.2s;
    left: 0;
    transform: scaleX(0);
    position: absolute;
    height: 5px;
    content: "";
    background: rgb(213,167,165);
    bottom: -15px;
    transform-origin: left;
}.title-portal h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0;
    font-size: clamp(1.25rem, 3vw, 24px);
    animation: fadeIn 1.5s ease forwards 0.6s;
    font-weight: 600;
    max-width: 90%;
    position: relative;
    line-height: 1.4;
}.title-portal p {
    line-height: 1.6;
    position: relative;
    font-size: clamp(1rem, 2vw, 12px);
    margin-top: 2rem;
    max-width: 85%;
    color: #ffffff;
    padding-left: 1rem;
    border-left: 3px solid rgb(186,124,122);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.9s;
}.title-portal .learn-spot:hover h1 {
    color: rgb(213,167,165);
    transform: perspective(1000px) rotateX(5deg);
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growLine {
  0% {
    height: 0;
  }
  100% {
    height: 80%;
  }
}

@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.05;
  }
}

@media (max-width: 992px) {.title-portal .learn-spot {
    margin-left: 5%;
    padding: 2rem;
}.title-portal h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
}.title-portal h3 {
    max-width: 100%;
}.title-portal p {
    max-width: 100%;
}
}

@media (max-width: 768px) {.title-portal .edu-head {
    padding-top: 15vh;
    align-items: flex-start;
}.title-portal .learn-spot {
    margin-left: 2rem;
    margin-right: 2rem;
}.title-portal h1::before {
    width: 40px;
}.title-portal .learn-spot::before {
    left: -10px;
}
}

@media (max-width: 576px) {.title-portal .edu-head {
    padding-top: 10vh;
}.title-portal .learn-spot {
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 1.5rem;
}.title-portal h1 {
    font-size: clamp(1.75rem, 7vw, 2rem);
}.title-portal h3 {
    font-size: clamp(1rem, 4vw, 1.25rem);
}.title-portal p {
    font-size: clamp(0.875rem, 3vw, 1rem);
    padding-left: 0.75rem;
}.title-portal .learn-spot::before {
    width: 4px;
}}.client-opinionsWo8e {
    position: relative;
    background: linear-gradient(135deg, rgb(241,219,218) 0%, rgb(186,124,122,0.5) 100%);
    padding: 6rem 0 8rem;
    overflow: hidden;
}.client-opinionsWo8e::before {
    top: 0;
    background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 15px,
    rgba(rgb(213,167,165), 0.03) 15px,
    rgba(rgb(213,167,165), 0.03) 30px
  );
    width: 100%;
    z-index: 1;
    position: absolute;
    height: 100%;
    content: "";
    left: 0;
}.client-opinionsWo8e::after {
    background: rgb(213,167,165,0.5);
    position: absolute;
    filter: blur(30px);
    height: 40%;
    opacity: 0.2;
    content: "";
    bottom: -5%;
    z-index: 0;
    transform: rotate(-15deg) skewX(-15deg);
    width: 30%;
    right: -5%;
}.client-opinionsWo8e .container {
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.client-opinionsWo8e h2 {
    color: #000000;
    font-size: 36px;
    text-align: center;
    transform: perspective(1000px) rotateX(3deg);
    margin-bottom: 3.5rem;
    position: relative;
    font-weight: 700;
}.client-opinionsWo8e h2::after {
    content: "";
    background: rgb(213,167,165);
    transform: translateX(-50%) skewX(-25deg);
    width: 80px;
    left: 50%;
    position: absolute;
    bottom: -15px;
    height: 4px;
}.client-opinionsWo8e .client-opinionsbMdP {
    gap: 2.5rem;
    perspective: 1000px;
    display: grid;
    list-style: none;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.client-opinionsWo8e .client-voices {
    transform-style: preserve-3d;
    transform: translateZ(0);
    position: relative;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 
              0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.4s ease;
    background: #ffffff;
}.client-opinionsWo8e .client-voices:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 
              0 10px 25px rgba(0, 0, 0, 0.08);
}.client-opinionsWo8e .client-voices::before {
    z-index: 1;
    color: rgb(213,167,165);
    font-size: 120px;
    position: absolute;
    content: "";
    opacity: 0.1;
    top: -30px;
    font-weight: 700;
    left: 20px;
    line-height: 1;
}.client-opinionsWo8e .client-voices::after {
    left: 0;
    background: linear-gradient(90deg, rgb(213,167,165), rgb(186,124,122));
    bottom: 0;
    transform-origin: left;
    transition: transform 0.3s ease;
    content: "";
    width: 100%;
    transform: scaleX(0.7);
    position: absolute;
    height: 4px;
}.client-opinionsWo8e .client-voices:hover::after {
    transform: scaleX(1);
}.client-opinionsWo8e .client-voices div {
    align-items: center;
    margin-bottom: 1.5rem;
    display: flex;
    position: relative;
    z-index: 2;
}.client-opinionsWo8e .client-voices img {
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}.client-opinionsWo8e .client-voices h4 {
    margin: 0 0 0 1rem;
    position: relative;
    font-weight: 600;
    color: #000000;
    font-size: calc(19px - 2px);
}.client-opinionsWo8e .client-voices h4::after {
    height: 2px;
    bottom: -5px;
    position: absolute;
    left: 0;
    width: 30px;
    transition: width 0.3s ease;
    background: rgb(213,167,165);
    content: "";
}.client-opinionsWo8e .client-voices:hover h4::after {
    width: 50px;
}.client-opinionsWo8e .description {
    color: #000000;
    font-style: italic;
    margin: 0;
    position: relative;
    line-height: 1.7;
    z-index: 2;
    font-size: 18px;
}.client-opinionsWo8e a {
    background: rgb(213,167,165);
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
    color: #ffffff;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    padding: 0.8rem 2rem;
    margin-top: 3rem;
    font-size: 20px;
    display: inline-block;
    transform: perspective(1000px) rotateX(0deg);
    z-index: 5;
    text-decoration: none;
}.client-opinionsWo8e a::before {
    content: "";
    left: -100%;
    height: 100%;
    transition: left 0.7s ease;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.client-opinionsWo8e a:hover {
    transform: perspective(1000px) rotateX(5deg);
    background: rgb(186,124,122);
}.client-opinionsWo8e a:hover::before {
    left: 100%;
}

@media (min-width: 992px) {.client-opinionsWo8e .client-opinionsbMdP {
    grid-template-columns: repeat(3, 1fr);
}.client-opinionsWo8e .client-voices:nth-child(3n-2) {
    transform: translateY(-15px);
}.client-opinionsWo8e .client-voices:nth-child(3n) {
    transform: translateY(15px);
}.client-opinionsWo8e .client-voices:nth-child(3n-2):hover {
    transform: translateY(-25px) scale(1.02);
}.client-opinionsWo8e .client-voices:nth-child(3n):hover {
    transform: translateY(5px) scale(1.02);
}.client-opinionsWo8e h2 {
    font-size: calc(36px * 1.2);
    margin-right: auto;
    max-width: 80%;
    margin-left: auto;
}.client-opinionsWo8e .container {
    padding: 0 4rem;
}
}

@media (max-width: 991px) {.client-opinionsWo8e {
    padding: 4rem 0 6rem;
}.client-opinionsWo8e .client-opinionsbMdP {
    grid-template-columns: repeat(2, 1fr);
}.client-opinionsWo8e h2 {
    font-size: 36px;
    margin-bottom: 3rem;
}
}

@media (max-width: 767px) {.client-opinionsWo8e {
    padding: 3rem 0 5rem;
}.client-opinionsWo8e .client-opinionsbMdP {
    grid-template-columns: 1fr;
    gap: 2rem;
}.client-opinionsWo8e h2 {
    margin-bottom: 2.5rem;
    font-size: calc(36px * 0.85);
}.client-opinionsWo8e .client-voices {
    padding: 1.5rem;
}.client-opinionsWo8e .container {
    padding: 0 1.5rem;
}.client-opinionsWo8e a {
    margin-top: 2rem;
    width: 100%;
}
}

@media (max-width: 480px) {.client-opinionsWo8e h2 {
    font-size: calc(36px * 0.7);
}.client-opinionsWo8e .client-voices {
    padding: 1.25rem;
}.client-opinionsWo8e .client-voices img {
    width: 50px;
    height: 50px;
}.client-opinionsWo8e .client-voices::before {
    font-size: 80px;
    top: -15px;
}
}

@media (prefers-reduced-motion: reduce) {.client-opinionsWo8e .client-voices,
  .client-opinionsWo8e .client-voices:hover,
  .client-opinionsWo8e .client-voices::after,
  .client-opinionsWo8e .client-voices:hover::after,
  .client-opinionsWo8e a,
  .client-opinionsWo8e a:hover,
  .client-opinionsWo8e a::before,
  .client-opinionsWo8e a:hover::before,
  .client-opinionsWo8e .client-voices h4::after,
  .client-opinionsWo8e .client-voices:hover h4::after {
    transition: none;
    transform: none;
    animation: none;
}}header {
    width: 100%;
    position: relative;
    z-index: 99;
    background: rgb(241,219,218);
    overflow: visible;
}header::before {
    top: 0;
    background: linear-gradient(90deg, rgb(213,167,165,0.5) 0%, transparent 50%, rgb(213,167,165,0.5) 100%);
    position: absolute;
    width: 100%;
    opacity: 0.15;
    height: 100%;
    content: "";
    z-index: -1;
    left: 0;
}header .header-lesson {
    display: grid;
    gap: 15px;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 20px;
}header .header-lesson::after {
    left: 0;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    top: 50%;
    background: linear-gradient(90deg, transparent, rgb(213,167,165,0.5), transparent);
}header .header-lesson .main-guide {
    padding: 5px 20px 15px;
    justify-self: center;
    position: relative;
    z-index: 10;
}header .header-lesson .main-guide::before,
header .header-lesson .main-guide::after {
    border-radius: 15px;
    content: "";
    width: 90%;
    position: absolute;
    height: 90%;
}header .header-lesson .main-guide::before {
    transform-origin: top left;
    top: -5px;
    transition: transform 0.3s ease;
    left: -5px;
    border-left: 2px solid rgb(213,167,165);
    transform: scale(0);
    border-top: 2px solid rgb(213,167,165);
}header .header-lesson .main-guide::after {
    transform-origin: bottom right;
    transform: scale(0);
    transition: transform 0.3s ease;
    right: -5px;
    bottom: -5px;
    border-bottom: 2px solid rgb(186,124,122);
    border-right: 2px solid rgb(186,124,122);
}header .header-lesson .main-guide:hover::before,
header .header-lesson .main-guide:hover::after {
    transform: scale(1);
}header .header-lesson .main-guide .main-master {
    display: block;
    transition: transform 0.3s ease;
}header .header-lesson .main-guide .main-master svg {
    width: auto;
    height: 60px;
}header .header-lesson .main-page {
    display: flex;
    position: relative;
    background: linear-gradient(180deg, transparent, rgb(186,124,122) 15%, rgba(0, 0, 0, 0.5) 85%, transparent 50%);
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
    padding: 20px 0 10px;
    list-style: none;
}header .header-lesson .main-page::before,
header .header-lesson .main-page::after {
    top: 15%;
    background: rgb(213,167,165,0.5);
    content: "";
    height: 70%;
    width: 2px;
    position: absolute;
}header .header-lesson .main-page::before {
    left: 0;
}header .header-lesson .main-page::after {
    right: 0;
}header .header-lesson .main-page .top-tutor {
    position: relative;
    padding: 0 15px;
    transition: transform 0.3s ease;
    margin: 0;
}header .header-lesson .main-page .top-tutor:not(:last-child)::after {
    right: 0;
    height: 60%;
    position: absolute;
    content: "";
    width: 1px;
    top: 20%;
    background: rgb(186,124,122,0.5);
}header .header-lesson .main-page .top-tutor:hover {
    transform: translateY(-3px);
}header .header-lesson .main-page .top-tutor a {
    font-weight: 600;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #000000;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 12px;
    padding: 10px 5px;
    transition: color 0.3s ease;
}header .header-lesson .main-page .top-tutor a:hover {
    color: rgb(213,167,165);
}header .header-lesson .main-page .top-tutor a::before {
    height: 2px;
    left: 0;
    width: 100%;
    content: "";
    transform: scaleX(0);
    background: rgb(186,124,122);
    transition: transform 0.3s ease;
    bottom: 5px;
    position: absolute;
}header .header-lesson .main-page .top-tutor a:hover::before {
    transform: scaleX(1);
}

@media (min-width: 993px) {header .header-lesson {
    padding: 15px 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
}header .header-lesson .main-page {
    padding: 20px 10px 10px;
}
}

@media (max-width: 992px) {header .header-lesson {
    gap: 10px;
    grid-template-rows: auto auto;
    padding: 15px;
}header .header-lesson .main-guide {
    padding: 5px 10px;
}header .header-lesson .main-guide .main-master svg {
    height: 45px;
}header .header-lesson .main-page {
    padding: 15px 0 10px;
}header .header-lesson .main-page .top-tutor {
    padding: 0 10px;
}header .header-lesson .main-page .top-tutor a {
    padding: 8px 3px;
    font-size: calc(12px - 1px);
}
}

@media (max-width: 767px) {header .header-lesson .main-page {
    flex-wrap: wrap;
    justify-content: center;
}header .header-lesson .main-page .top-tutor {
    margin: 3px 0;
}header .header-lesson .main-page .top-tutor:not(:last-child)::after {
    display: none;
}}.cookie-message-alert {
    z-index: 90;
    position: fixed;
    border-top: 2px solid rgb(213,167,165);
    bottom: 0;
    background: rgb(241,219,218);
    width: 100%;
}.data-consent {
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
    display: flex;
}#privacyAlertWindow {
    display: none;
}#privacyAlertWindow:checked ~ .cookie-message-alert {
    visibility: hidden;
    opacity: 0;
}.cookie-message-alert h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.cookie-message-alert p {
    font-size: 18px;
}.cookie-alerts {
    flex-shrink: 0;
    margin-right: 10px;
}.cookie-alerts svg, .cookie-alerts svg path, .cookie-alerts img {
    height: 100px;
    width: 100px;
    fill: rgb(213,167,165);
}.cookie-none {
    text-decoration: none;
    font-size: 24px;
    white-space: nowrap;
    border-bottom: 2px solid rgb(213,167,165);
    line-height: 35px;
    cursor: pointer;
    flex-shrink: 0;
    color: rgb(213,167,165);
    margin-left: 10px;
    text-align: center;
    min-width: 120px;
}.cookie-message-alert p a {
    color: rgb(213,167,165);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.cookie-message-alert {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.cookie-alerts {
    display: none;
}.data-consent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookie-message-alert h5 {
    text-align: center;
}.cookie-message-alert p {
    text-align: center;
}.tracking-policy {
    margin-bottom: 20px;
}body .wrapper-template .cookie-none {
    margin-bottom: 10px;
    margin-left: 0;
}}
.wrapper-template .cookie-message-alert {
    background: #ffffff;
    box-shadow: rgb(213,167,165,0.5) 0px 0px 40px 39px;
    border: none;
}.wrapper-template .cookie-none {
    padding: 10px;
    font-size: 20px;
    margin-left: 30px;
    font-weight: 400;
    color: #ffffff;
    border: none;
    background: rgb(213,167,165);
}.wrapper-template .cookie-alerts {
    border-radius: 50%;
    justify-content: center;
    height: 80px;
    background:rgb(213,167,165);
    width: 80px;
    align-items: center;
    display: flex;
}.wrapper-template .cookie-alerts svg, .wrapper-template .cookie-alerts svg path, .wrapper-template .cookie-alerts img {
    fill:#000000;
    height: 40px;
    width: 40px;
}.wrapper-template .tracking-policy h5, .wrapper-template .tracking-policy p {
    color: #000000;
}
@media only screen and (max-width: 800px){.wrapper-template .cookie-alerts {
    margin: 0;
    margin-bottom: 14px;
}}.privacy-gateHhY {
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(241,219,218), #ffffff 80%);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
    position: relative;
    font-family: Arial, sans-serif;
}.privacy-gateHhY::before {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    transform-origin: left;
    width: 100%;
    transform: scaleX(0.97);
    height: 5px;
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(213,167,165), rgb(186,124,122));
    top: 0;
}.privacy-gateHhY:hover::before {
    transform: scaleX(1);
}.privacy-gateHhY::after {
    content: "";
    opacity: 0.03;
    right: 0;
    position: absolute;
    width: 50%;
    bottom: 0;
    transform: skewX(-12deg) translateX(30%);
    z-index: 0;
    background: linear-gradient(to left, rgb(213,167,165,0.5), transparent);
    height: 100%;
}.privacy-gateHhY .container {
    max-width: 1140px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}.privacy-gateHhY h1 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    letter-spacing: -0.03em;
    font-size: 39px;
    color: rgb(213,167,165);
    font-weight: 700;
    transform: translateX(-0.5rem);
}.privacy-gateHhY h1::after {
    transition: width 0.4s ease-out;
    height: 3px;
    content: "";
    left: 0;
    width: 80px;
    transform-origin: left;
    position: absolute;
    background: rgb(186,124,122);
    bottom: 0;
}.privacy-gateHhY:hover h1::after {
    width: 120px;
}.privacy-gateHhY h2 {
    border-left: 3px solid rgb(213,167,165);
    color: #000000;
    padding-left: 1rem;
    transition: padding-left 0.3s ease;
    margin-top: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    font-size: 31px;
}.privacy-gateHhY h2:hover {
    padding-left: 1.5rem;
}.privacy-gateHhY h3 {
    position: relative;
    margin-top: 2rem;
    font-weight: 600;
    color: #000000;
    font-size: calc(31px * 0.85);
    margin-bottom: 1rem;
}.privacy-gateHhY h4 {
    font-weight: 400;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: calc(31px * 0.7);
    margin-top: 1.75rem;
    color: #000000;
    display: inline-block;
}.privacy-gateHhY h4::after {
    left: 0;
    height: 1px;
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(to right, rgb(186,124,122), transparent);
    bottom: -5px;
}.privacy-gateHhY p {
    padding-right: 1rem;
    position: relative;
    font-size: 18px;
    color: #000000;
    transition: transform 0.3s ease;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}.privacy-gateHhY p:hover {
    transform: translateX(5px);
}.privacy-gateHhY p strong {
    color: rgb(213,167,165);
    position: relative;
    display: inline-block;
    font-weight: 600;
}.privacy-gateHhY p strong::after {
    transform: scaleX(0.7);
    left: 0;
    content: "";
    transition: transform 0.3s ease;
    height: 1px;
    transform-origin: left;
    background-color: rgb(213,167,165,0.5);
    bottom: -2px;
    width: 100%;
    position: absolute;
}.privacy-gateHhY p strong:hover::after {
    transform: scaleX(1);
}.privacy-gateHhY span {
    display: block;
    color: #000000;
    line-height: 1.7;
    border-left: 1px dashed rgb(186,124,122,0.5);
    padding-left: 1rem;
    font-size: 18px;
    margin-bottom: 1.5rem;
}.privacy-gateHhY ul {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0 2rem 1.5rem;
}.privacy-gateHhY li {
    transition: transform 0.3s ease;
    font-size: 18px;
    padding-left: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}.privacy-gateHhY li:hover {
    transform: translateX(5px);
}.privacy-gateHhY li::before {
    background-color: rgb(186,124,122);
    content: "";
    height: 8px;
    transform: rotate(45deg);
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 8px;
    position: absolute;
    top: 0.5rem;
    left: 0;
}.privacy-gateHhY li:hover::before {
    transform: rotate(225deg);
    background-color: rgb(213,167,165);
}


@media (max-width: 991px) {.privacy-gateHhY {
    padding: 3rem 1.5rem;
}.privacy-gateHhY h1 {
    font-size: calc(39px * 0.9);
}.privacy-gateHhY h2 {
    font-size: calc(31px * 0.9);
}.privacy-gateHhY p, .privacy-gateHhY span, .privacy-gateHhY li {
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 767px) {.privacy-gateHhY {
    padding: 2.5rem 1.25rem;
}.privacy-gateHhY::after {
    display: none;
}.privacy-gateHhY h1 {
    transform: translateX(0);
    font-size: calc(39px * 0.8);
}.privacy-gateHhY h2 {
    padding-left: 0.75rem;
    font-size: calc(31px * 0.8);
}.privacy-gateHhY h3 {
    font-size: calc(31px * 0.7);
}.privacy-gateHhY h4 {
    font-size: calc(31px * 0.6);
}.privacy-gateHhY p, .privacy-gateHhY span, .privacy-gateHhY li {
    line-height: 1.6;
    font-size: calc(18px * 0.9);
}.privacy-gateHhY ul {
    margin-left: 0.5rem;
}.privacy-gateHhY li {
    padding-left: 1.25rem;
}
}

@media (max-width: 480px) {.privacy-gateHhY {
    padding: 2rem 1rem;
}.privacy-gateHhY h1 {
    margin-bottom: 1.5rem;
    font-size: calc(39px * 0.7);
}.privacy-gateHhY h1::after {
    width: 60px;
}.privacy-gateHhY:hover h1::after {
    width: 80px;
}.privacy-gateHhY h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: calc(31px * 0.7);
}.privacy-gateHhY p, .privacy-gateHhY span, .privacy-gateHhY li {
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: calc(18px * 0.85);
}.privacy-gateHhY li::before {
    height: 6px;
    top: 0.4rem;
    width: 6px;
}.privacy-gateHhY p:hover, .privacy-gateHhY li:hover {
    transform: translateX(3px);
}}footer {
    z-index: 1;
    position: relative;
}footer::before {
    top: 0;
    opacity: 0.95;
    position: absolute;
    bottom: 0;
    z-index: -2;
    left: 0;
    content: "";
    background: rgb(213,167,165);
    right: 0;
}footer::after {
    right: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, rgb(186,124,122) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgb(186,124,122) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgb(186,124,122) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgb(186,124,122) 1px, transparent 1px);
    left: 0;
    position: absolute;
    content: "";
    bottom: 0;
    background-size: 50px 50px;
    z-index: -1;
    top: 0;
}.grant-info {
    padding: 4rem 0 2rem;
    color: #ffffff;
    position: relative;
}.grant-info::before {
    width: 100%;
    position: absolute;
    top: 0;
    background: rgb(186,124,122);
    height: 3px;
    left: 0;
    content: "";
}.grant-info::after {
    opacity: 0.5;
    left: 0;
    background-image: 
        linear-gradient(90deg, 
            rgb(186,124,122) 0px, rgb(186,124,122) 10px,
            transparent 10px, transparent 15px,
            rgb(186,124,122) 15px, rgb(186,124,122) 30px,
            transparent 30px, transparent 35px,
            rgb(186,124,122) 35px, rgb(186,124,122) 40px,
            transparent 40px, transparent 60px,
            rgb(186,124,122) 60px, rgb(186,124,122) 70px,
            transparent 70px, transparent 80px,
            rgb(186,124,122) 80px, rgb(186,124,122) 90px,
            transparent 90px, transparent 110px,
            rgb(186,124,122) 110px, rgb(186,124,122) 120px,
            transparent 120px, transparent 140px
        );
    background-repeat: repeat-x;
    content: "";
    height: 8px;
    width: 100%;
    position: absolute;
    top: 3px;
}.grant-info .container {
    position: relative;
    gap: 3rem;
    flex-wrap: wrap;
    display: flex;
}.grant-info .company_holder {
    border-radius: 20px;
    position: relative;
    flex: 1 1 400px;
    padding: 0;
}.grant-info .company_holder::before {
    background-image:
        linear-gradient(0deg, transparent 24px, rgb(186,124,122) 25px, rgb(186,124,122) 26px, transparent 27px, transparent 49px),
        linear-gradient(90deg, transparent 24px, rgb(186,124,122) 25px, rgb(186,124,122) 26px, transparent 27px, transparent 49px);
    top: 0;
    height: 100%;
    border-radius: 20px;
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    background-size: 50px 50px;
    opacity: 0.1;
}.grant-info .company_holder h3 {
    background: rgb(186,124,122);
    position: relative;
    border-top-right-radius: 20px;
    font-weight: 700;
    border-top-left-radius: 20px;
    font-size: 33px;
    color: #ffffff;
    margin: 0;
    padding: 1.5rem 2rem;
}.grant-info .company_holder h3::after {
    width: 10px;
    background: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    position: absolute;
    content: "";
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    right: 15px;
    height: 10px;
}.grant-info .transcript {
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    color: #ffffff;
    border-bottom-right-radius: 20px;
    padding: 2rem;
    border-bottom-left-radius: 20px;
    font-size: 15px;
    line-height: 1.6;
}.grant-info .transcript::before {
    background: rgb(186,124,122);
    border-radius: 50%;
    left: -10px;
    width: 20px;
    top: 2rem;
    opacity: 0.6;
    height: 20px;
    content: "";
    position: absolute;
}.grant-info .transcript::after {
    width: 20px;
    content: "";
    background: rgb(186,124,122);
    opacity: 0.6;
    bottom: 2rem;
    height: 20px;
    border-radius: 50%;
    right: -10px;
    position: absolute;
}.grant-info .telegram-ref {
    flex: 1 1 calc(100% - 450px);
    min-width: 400px;
}.grant-info .nav-main {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}.grant-info .main-page {
    overflow: hidden;
    border-radius: 20px;
    min-width: 200px;
    position: relative;
    flex: 1 1 calc(50% - 1.5rem);
}.grant-info .main-page::before {
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    content: "";
    top: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    z-index: -1;
    border-radius: 20px;
}.grant-info .main-page h5 {
    align-items: center;
    font-size: 24px;
    color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    position: relative;
    background: rgb(186,124,122);
    margin: 0;
    font-weight: 600;
}.grant-info .main-page h5::before {
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    content: "";
    margin-right: 10px;
    display: inline-block;
    width: 8px;
}.grant-info .main-page h5::after {
    right: 15px;
    width: 6px;
    transform: translateY(-50%);
    border-radius: 50%;
    content: "";
    top: 50%;
    position: absolute;
    height: 6px;
    background: #ffffff;
}.grant-info .main-page .nav-main {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}.grant-info .main-page .nav-main a {
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 1rem 0.8rem 2rem;
    position: relative;
    color: #ffffff;
    display: block;
}.grant-info .main-page .nav-main a::before {
    content: "";
    width: 6px;
    border-radius: 50%;
    background: rgb(186,124,122);
    height: 6px;
    transition: all 0.3s ease;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: 0.7rem;
}.grant-info .main-page .nav-main a:hover {
    background: rgba(255, 255, 255, 0.1);
}.grant-info .main-page .nav-main a:hover::before {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    background: #ffffff;
}.about-learn {
    position: relative;
    background: rgb(186,124,122);
    margin-top: 2.5rem;
    padding: 2rem 0;
}.about-learn::before {
    content: "";
    width: 100%;
    background-repeat: repeat-x;
    background-image: 
        linear-gradient(90deg, 
            transparent 0px, transparent 20px,
            rgb(213,167,165) 20px, rgb(213,167,165) 40px,
            transparent 40px, transparent 60px,
            rgb(213,167,165) 60px, rgb(213,167,165) 80px,
            transparent 80px, transparent 100px,
            rgb(213,167,165) 100px, rgb(213,167,165) 120px
        );
    height: 5px;
    top: -5px;
    left: 0;
    position: absolute;
}.about-learn .container {
    justify-content: center;
    position: relative;
    align-items: center;
    display: flex;
}.about-learn .container::before,
.about-learn .container::after {
    transform: translateY(-50%);
    height: 15px;
    border-radius: 50%;
    top: 50%;
    background: rgb(213,167,165);
    content: "";
    width: 15px;
    position: absolute;
}.about-learn .container::before {
    left: 15%;
}.about-learn .container::after {
    right: 15%;
}.about-learn .event-cal {
    text-align: center;
    background: rgb(213,167,165);
    font-size: 13px;
    padding: 0.5rem 2rem;
    color: #ffffff;
    display: inline-block;
    border-radius: 30px;
    position: relative;
}.about-learn .event-cal::before,
.about-learn .event-cal::after {
    position: absolute;
    top: 50%;
    content: "";
    height: 1px;
    transform: translateY(-50%);
    background: rgb(213,167,165);
    width: 50px;
}.about-learn .event-cal::before {
    margin-right: 15px;
    right: 100%;
}.about-learn .event-cal::after {
    margin-left: 15px;
    left: 100%;
}

@media (max-width: 1200px) {.grant-info .container {
    gap: 2rem;
}.grant-info .company_holder {
    flex: 1 1 350px;
}.grant-info .telegram-ref {
    flex: 1 1 calc(100% - 400px);
    min-width: 350px;
}.grant-info .nav-main {
    gap: 2rem;
}.about-learn .container::before {
    left: 5%;
}.about-learn .container::after {
    right: 5%;
}
}

@media (max-width: 992px) {.grant-info {
    padding: 3.5rem 0 1.5rem;
}.grant-info .container {
    flex-direction: column;
    gap: 2.5rem;
}.grant-info .company_holder,
    .grant-info .telegram-ref {
    min-width: 100%;
    flex: 1 1 100%;
}.grant-info .main-page {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 200px;
}.about-learn .container::before,
    .about-learn .container::after {
    display: none;
}
}

@media (max-width: 768px) {.grant-info {
    padding: 3rem 0 1rem;
}.grant-info .nav-main {
    gap: 1.5rem;
}.grant-info .company_holder h3 {
    font-size: calc(33px - 2px);
    padding: 1.2rem 1.5rem;
}.grant-info .transcript {
    padding: 1.5rem;
}.grant-info .transcript::before,
    .grant-info .transcript::after {
    display: none;
}.about-learn {
    margin-top: 2rem;
}.about-learn .event-cal::before,
    .about-learn .event-cal::after {
    width: 30px;
}
}

@media (max-width: 576px) {.grant-info {
    padding: 2.5rem 0 0.8rem;
}.grant-info .main-page {
    min-width: 100%;
    flex: 1 1 100%;
}.grant-info .nav-main {
    gap: 1rem;
}.grant-info .main-page .nav-main a {
    padding: 0.7rem 1rem 0.7rem 1.8rem;
}.grant-info .main-page .nav-main a::before {
    left: 0.6rem;
}.about-learn {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}.about-learn .event-cal::before,
    .about-learn .event-cal::after {
    display: none;
}
}

@media (max-width: 420px) {.grant-info::after {
    background-size: 100px 5px;
    height: 5px;
}.grant-info .company_holder h3::after,
    .grant-info .main-page h5::before,
    .grant-info .main-page h5::after {
    display: none;
}.grant-info .main-page h5 {
    padding: 0.8rem 1rem;
}.grant-info .main-page .nav-main {
    padding: 1rem;
}.about-learn .event-cal {
    padding: 0.4rem 1.5rem;
    width: 90%;
}}.leadership-experience {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, rgb(241,219,218) 0%, rgb(186,124,122,0.5) 100%);
    overflow: hidden;
    position: relative;
}.leadership-experience::before {
    z-index: 1;
    position: absolute;
    width: 100%;
    left: 0;
    content: "";
    opacity: 0.2;
    top: 0;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(213,167,165,0.5) 0px,
        rgb(213,167,165,0.5) 2px,
        transparent 2px,
        transparent 10px
    );
}.leadership-experience::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    height: 100%;
    background: #ffffff;
    opacity: 0.1;
    width: 50%;
    content: "";
}.leadership-experience .client-voices {
    margin: 0 auto;
    flex-direction: column;
    max-width: 600px;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
}.leadership-experience .img-thumbnail {
    position: relative;
    margin-bottom: -50px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    height: 250px;
    width: 200px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    transition: all 0.5s ease;
    z-index: 3;
}.leadership-experience .img-thumbnail:hover {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(-15px);
}.leadership-experience .job-table {
    display: flex;
    transform-style: preserve-3d;
    align-items: center;
    padding: 70px 30px 30px;
    position: relative;
    perspective: 1000px;
    z-index: 2;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    width: 100%;
    background: #ffffff;
}.leadership-experience .job-table::before {
    content: "";
    width: 100%;
    background: rgb(213,167,165);
    transform: translateZ(-20px);
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
}.leadership-experience .name {
    text-align: center;
    position: relative;
    font-size: 38px;
    color: rgb(213,167,165);
    font-weight: 700;
    margin-bottom: 0.5rem;
}.leadership-experience .name::after {
    content: "";
    height: 3px;
    left: 50%;
    background: rgb(186,124,122);
    position: absolute;
    width: 50px;
    bottom: -10px;
    transform: translateX(-50%);
}.leadership-experience .job-table > div:nth-child(2) {
    text-transform: uppercase;
    margin: 20px 0;
    font-size: 19px;
    text-align: center;
    color: rgb(186,124,122);
    letter-spacing: 2px;
    font-weight: 600;
}.leadership-experience .work-milestones {
    padding-top: 30px;
    line-height: 1.8;
    position: relative;
    border-top: 1px solid rgb(241,219,218);
    text-align: center;
    margin-top: 20px;
    color: #000000;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
}.leadership-experience .work-milestones::before,
.leadership-experience .work-milestones::after {
    border-radius: 50%;
    position: absolute;
    width: 30px;
    height: 30px;
    content: "";
    background: rgb(186,124,122,0.5);
}.leadership-experience .work-milestones::before {
    left: 50%;
    top: -15px;
    transform: translateX(-20px);
}.leadership-experience .work-milestones::after {
    left: 50%;
    top: -15px;
    transform: translateX(-10px);
}@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.leadership-experience .job-table:hover {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {.leadership-experience {
    padding: 4rem 1rem 3rem;
}.leadership-experience .img-thumbnail {
    width: 150px;
    height: 180px;
    margin-bottom: -40px;
}.leadership-experience .job-table {
    padding: 60px 20px 20px;
}
}