* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1241px;
}.wrapper-border {
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    display: flex;
}.nav_tutor {
    flex: 1 0 auto;
}.testimonial {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}header,footer {
    width: 100%;
}html,body {
    height: 100%;
    min-height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
}svg {
    height: 30px;
    width: 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;
}}
.course_offering {
    position: relative;
    min-height: 100vh;
    flex-direction: column;
    overflow: hidden;
    background: rgb(224,230,230);
    display: flex;
}.course_offering .study_hack {
    width: 100%;
    top: 0;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
}.course_offering .study_hack::after {
    z-index: 2;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    background: radial-gradient(
        circle at center,
        transparent 30%,
        rgb(224,230,230) 90%
    );
}.course_offering .learn_path {
    animation: carousel-zoom 25s ease-in-out infinite;
    width: 100%;
    display: flex;
    height: 100%;
}.course_offering .study_hack:hover .learn_path {
    animation-play-state: paused;
}.course_offering .learn_challenge {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}.course_offering .learn_challenge img {
    transform-origin: center;
    width: 100%;
    height: 100%;
    filter: brightness(0.9) saturate(1.2);
    object-fit: cover;
}.course_offering .container {
    justify-content: center;
    width: 100%;
    display: flex;
    position: relative;
    z-index: 3;
    padding: 2rem;
    align-items: center;
    height: 100%;
}.course_offering .history_tl {
    position: relative;
    max-width: 800px;
    width: 100%;
}.course_offering .knowledge_track {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 
                0 5px 10px rgba(0, 0, 0, 0.05);
    border-radius: 23px;
    backdrop-filter: blur(10px);
    padding: 3rem;
    transform: perspective(1000px) rotateX(0deg);
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    text-align: center;
}.course_offering .knowledge_track:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(2deg);
}.course_offering .knowledge_track::before {
    border: 1px solid rgb(176,191,191);
    bottom: 20px;
    border-radius: 10px;
    right: 20px;
    position: absolute;
    opacity: 0.3;
    pointer-events: none;
    top: 20px;
    content: "";
    left: 20px;
}.course_offering .knowledge_track h3 {
    font-size: 32px;
    display: inline-block;
    color: rgb(176,191,191);
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}.course_offering .knowledge_track h3::after {
    bottom: -10px;
    background: rgb(176,191,191);
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 80px;
    position: absolute;
}.course_offering .knowledge_track p {
    line-height: 1.7;
    margin: 0 auto 2rem;
    font-size: 13px;
    max-width: 90%;
    color: #000000;
}.course_offering .knowledge_track .feedback_inquiry {
    font-size: 17px;
    border-radius: 23px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    display: inline-block;
    overflow: hidden;
    background: rgb(176,191,191);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}.course_offering .knowledge_track .feedback_inquiry::before {
    z-index: -1;
    transform: skewX(-25deg) translateX(-100%);
    position: absolute;
    transition: all 0.6s ease;
    height: 100%;
    width: 120%;
    top: 0;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    left: -10%;
}.course_offering .knowledge_track .feedback_inquiry:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}.course_offering .knowledge_track .feedback_inquiry:hover::before {
    transform: skewX(-25deg) translateX(100%);
}

@keyframes carousel-zoom {
    0%, 20% {
        transform: scale(1);
    }
    25%, 45% {
        transform: scale(1.1) translateX(-5%);
    }
    50%, 70% {
        transform: scale(1) translateY(3%);
    }
    75%, 95% {
        transform: scale(1.05) translateX(5%);
    }
    100% {
        transform: scale(1);
    }
}

@media (min-width: 768px) and (max-width: 991px) {.course_offering .study_hack::after {
    background: radial-gradient(
            circle at center,
            transparent 20%,
            rgb(224,230,230) 85%
        );
}.course_offering .learn_path {
    animation-duration: 20s;
}.course_offering .history_tl {
    max-width: 600px;
}.course_offering .knowledge_track {
    padding: 2.5rem;
}.course_offering .knowledge_track h3 {
    font-size: calc(32px * 0.9);
}.course_offering .knowledge_track p {
    max-width: 95%;
}
}

@media (max-width: 767px) {.course_offering {
    min-height: auto;
    padding: 4rem 0;
}.course_offering .study_hack {
    position: fixed;
    z-index: 0;
}.course_offering .study_hack::after {
    background: radial-gradient(
            circle at center,
            transparent 0%,
            rgb(224,230,230) 70%
        );
}.course_offering .learn_path {
    animation-duration: 15s;
}.course_offering .history_tl {
    max-width: 100%;
}.course_offering .knowledge_track {
    padding: 2rem 1.5rem;
}.course_offering .knowledge_track::before {
    bottom: 10px;
    left: 10px;
    right: 10px;
    top: 10px;
}.course_offering .knowledge_track h3 {
    font-size: 24px;
}.course_offering .knowledge_track h3::after {
    width: 60px;
}.course_offering .knowledge_track p {
    margin-bottom: 1.5rem;
    font-size: calc(13px * 0.9);
    max-width: 100%;
    line-height: 1.6;
}.course_offering .knowledge_track .feedback_inquiry {
    padding: 0.8rem 1.5rem;
    width: 100%;
}}.training_structure {
    perspective: 1200px;
    background: rgb(224,230,230);
    position: relative;
    overflow: hidden;
    padding: 9rem 2rem 7rem;
}.training_structure::before {
    height: 100%;
    z-index: 1;
    width: 100%;
    left: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgb(176,191,191,0.5) 70%,
        transparent
    );
    opacity: 0.15;
    top: 0;
    position: absolute;
    animation: bgSweep 8s linear infinite alternate;
    content: "";
}.training_structure::after {
    z-index: 0;
    transform-origin: center;
    left: -10%;
    animation: rotateBg 30s linear infinite;
    background: 
        radial-gradient(circle at 30% 30%, rgb(176,191,191,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgb(112,125,164,0.5) 0%, transparent 50%);
    width: 120%;
    opacity: 0.2;
    content: "";
    height: 120%;
    top: -10%;
    filter: blur(60px);
    position: absolute;
}.training_structure .history_tl {
    margin: 0 auto;
    align-items: center;
    transform-style: preserve-3d;
    max-width: 1000px;
    z-index: 2;
    display: flex;
    gap: 4rem;
    position: relative;
    flex-direction: column;
}.training_structure h3 {
    background: #ffffff;
    transform: translateZ(50px) rotateX(5deg);
    margin: 0;
    font-size: 28px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 3rem;
    position: relative;
    color: #000000;
    border-radius: 28px;
    text-align: center;
    font-weight: 700;
    animation: floatHeader 6s ease-in-out infinite, fadeIn 1s ease-out forwards;
}.training_structure h3::before,
.training_structure h3::after {
    width: 90%;
    border-radius: inherit;
    top: 5%;
    content: "";
    z-index: -1;
    left: 5%;
    animation: floatShadow 6s ease-in-out infinite;
    position: absolute;
    height: 90%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}.training_structure h3::before {
    transform: translateZ(-20px) scale(0.98);
    background: rgb(176,191,191,0.5);
}.training_structure h3::after {
    background: rgb(112,125,164,0.5);
    transform: translateZ(-40px) scale(0.96);
}.training_structure span {
    opacity: 0;
    width: 90%;
    background: #ffffff;
    font-size: 15px;
    color: #000000;
    animation: floatContent 6s ease-in-out infinite 1s, fadeIn 1s 0.3s ease-out forwards;
    position: relative;
    transform: translateZ(30px) rotateX(-3deg);
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    border-radius: 28px;
}.training_structure span::before,
.training_structure span::after {
    content: "";
    animation: floatShadow 6s ease-in-out infinite 1s;
    border-radius: inherit;
    left: 2.5%;
    width: 95%;
    position: absolute;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    top: 2.5%;
    height: 95%;
    z-index: -1;
}.training_structure span::before {
    transform: translateZ(-20px) scale(0.98);
    background: rgb(112,125,164,0.5);
}.training_structure span::after {
    background: rgb(176,191,191,0.5);
    transform: translateZ(-40px) scale(0.96);
}

@keyframes bgSweep {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatHeader {
    0%, 100% {
        transform: translateZ(50px) rotateX(5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateX(5deg) translateY(-15px);
    }
}

@keyframes floatContent {
    0%, 100% {
        transform: translateZ(30px) rotateX(-3deg) translateY(0);
    }
    50% {
        transform: translateZ(30px) rotateX(-3deg) translateY(-10px);
    }
}

@keyframes floatShadow {
    0%, 100% {
        opacity: 0.3;
        transform: translateZ(var(--z, -20px));
    }
    50% {
        opacity: 0.5;
        transform: translateZ(var(--z, -20px));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) translateZ(var(--z, 0px)) rotateX(var(--rx, 0deg));
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(var(--z, 0px)) rotateX(var(--rx, 0deg));
    }
}

@media (max-width: 992px) {.training_structure {
    padding: 7rem 1.5rem 5rem;
    perspective: 800px;
}.training_structure h3 {
    font-size: calc(28px * 0.9);
    transform: translateZ(30px) rotateX(3deg);
    padding: 2rem;
    --rx: 3deg;
    --z: 30px;
}.training_structure span {
    --z: 20px;
    width: 95%;
    transform: translateZ(20px) rotateX(-2deg);
    --rx: -2deg;
    padding: 2rem;
}.training_structure .history_tl {
    gap: 3rem;
}
    
    @keyframes floatHeader {
        0%, 100% {
            transform: translateZ(30px) rotateX(3deg) translateY(0);
        }
        50% {
            transform: translateZ(30px) rotateX(3deg) translateY(-10px);
        }
    }
    
    @keyframes floatContent {
        0%, 100% {
            transform: translateZ(20px) rotateX(-2deg) translateY(0);
        }
        50% {
            transform: translateZ(20px) rotateX(-2deg) translateY(-7px);
        }
    }
}

@media (max-width: 768px) {.training_structure {
    padding: 5rem 1rem 4rem;
    perspective: 500px;
}.training_structure h3 {
    --rx: 2deg;
    font-size: calc(28px * 0.8);
    transform: translateZ(15px) rotateX(2deg);
    padding: 1.5rem;
    --z: 15px;
}.training_structure span {
    --rx: -1deg;
    transform: translateZ(10px) rotateX(-1deg);
    width: 100%;
    --z: 10px;
    padding: 1.5rem;
    font-size: calc(15px * 0.95);
}.training_structure .history_tl {
    gap: 2rem;
}@keyframes floatHeader {
        0%, 100% {
            transform: translateZ(15px) rotateX(2deg) translateY(0);
        }
        50% {
            transform: translateZ(15px) rotateX(2deg) translateY(-7px);
        }
    }
    
    @keyframes floatContent {
        0%, 100% {
            transform: translateZ(10px) rotateX(-1deg) translateY(0);
        }
        50% {
            transform: translateZ(10px) rotateX(-1deg) translateY(-5px);
        }
    }
}.thankYouWeb {
    padding: 4rem 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #ebedee 100%);
    position: relative;
}.thankYouWeb::before {
    filter: blur(30px);
    transform: rotate(-15deg);
    background: linear-gradient(145deg, rgb(176,191,191,0.5) 0%, rgb(112,125,164,0.5) 100%);
    content: "";
    height: 70%;
    animation: float 15s ease-in-out infinite alternate;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 60%;
    top: -30%;
    position: absolute;
    right: -10%;
    opacity: 0.3;
    z-index: 0;
}.thankYouWeb::after {
    width: 40%;
    z-index: 0;
    border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
    position: absolute;
    bottom: -20%;
    height: 60%;
    animation: float 18s ease-in-out infinite alternate-reverse;
    opacity: 0.2;
    filter: blur(25px);
    background: linear-gradient(225deg, rgb(112,125,164,0.5) 0%, rgb(176,191,191,0.5) 100%);
    transform: rotate(10deg);
    content: "";
    left: -5%;
}.thankYouWeb .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1140px;
    position: relative;
    padding: 0 20px;
}.thankYouWeb .history_tl {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05),
                -10px -10px 30px rgba(255, 255, 255, 0.8),
                inset 2px 2px 5px rgba(255, 255, 255, 0.4),
                inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 3rem;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}.thankYouWeb .history_tl:hover {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.08),
                -15px -15px 40px rgba(255, 255, 255, 0.9),
                inset 2px 2px 5px rgba(255, 255, 255, 0.4),
                inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.thankYouWeb .history_tl > div:first-child {
    margin-bottom: 1.5rem;
    position: relative;
}.thankYouWeb .history_tl > div:first-child::after {
    height: 3px;
    width: 80px;
    left: 0;
    background: linear-gradient(90deg, rgb(176,191,191) 0%, rgb(112,125,164) 100%);
    bottom: -0.75rem;
    content: "";
    transform-origin: left;
    border-radius: 10px;
    transition: width 0.3s ease;
    position: absolute;
}.thankYouWeb .history_tl:hover > div:first-child::after {
    width: 120px;
}.thankYouWeb h5 {
    color: #000000;
    font-size: 21px;
    line-height: 1.4;
    margin: 0;
    position: relative;
    display: inline-block;
    font-weight: 700;
}.thankYouWeb h5::before {
    content: "✓";
    justify-content: center;
    display: flex;
    width: 26px;
    transform: translateY(-50%);
    color: #ffffff;
    height: 26px;
    font-size: 14px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    left: -35px;
    border-radius: 50%;
    opacity: 0;
    align-items: center;
    background: linear-gradient(135deg, rgb(176,191,191) 0%, rgb(112,125,164) 100%);
    position: absolute;
    top: 50%;
}.thankYouWeb .history_tl:hover h5::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}.thankYouWeb p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    transition: color 0.3s ease;
    margin: 0;
}.thankYouWeb a {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: block;
}.thankYouWeb a::before {
    content: "";
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(176,191,191,0.5) 0%, rgb(112,125,164) 100%);
    left: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: right;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
}.thankYouWeb a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.thankYouWeb a:hover {
    transform: translateY(-2px);
}.thankYouWeb a:hover p {
    color: rgb(176,191,191);
}

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

@media (max-width: 991px) {.thankYouWeb {
    padding: 3rem 0;
}.thankYouWeb .history_tl {
    padding: 2.5rem;
}.thankYouWeb h5 {
    font-size: calc(21px - 2px);
}
}

@media (max-width: 767px) {.thankYouWeb {
    padding: 2.5rem 0;
}.thankYouWeb .history_tl {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2rem;
}.thankYouWeb h5 {
    padding-left: 20px;
    font-size: calc(21px - 4px);
}.thankYouWeb h5::before {
    font-size: 12px;
    height: 22px;
    width: 22px;
    left: -15px;
}.thankYouWeb p {
    font-size: calc(14px - 1px);
}
}

@media (max-width: 576px) {.thankYouWeb {
    padding: 2rem 0;
}.thankYouWeb .history_tl {
    padding: 1.5rem;
    transform: none;
    border-radius: 10px;
}.thankYouWeb h5 {
    font-size: calc(21px - 6px);
}.thankYouWeb .history_tl > div:first-child::after {
    height: 2px;
    width: 60px;
}.thankYouWeb .history_tl:hover > div:first-child::after {
    width: 90px;
}.thankYouWeb h5::before {
    width: 20px;
    font-size: 10px;
    height: 20px;
}.thankYouWeb p {
    line-height: 1.6;
    font-size: calc(14px - 2px);
}}.customer_experience {
    padding: 100px 0;
    background: rgb(224,230,230);
    overflow: hidden;
    position: relative;
}.customer_experience::before {
    top: 0;
    background-position: 0 0, 0 0, 25px 25px, 25px 25px, 0 0, 25px 25px;
    content: "";
    left: 0;
    opacity: 0.05;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(30deg, rgb(176,191,191,0.5) 12%, transparent 12.5%, transparent 87%, rgb(176,191,191,0.5) 87.5%, rgb(176,191,191,0.5)),
        linear-gradient(150deg, rgb(176,191,191,0.5) 12%, transparent 12.5%, transparent 87%, rgb(176,191,191,0.5) 87.5%, rgb(176,191,191,0.5)),
        linear-gradient(30deg, rgb(176,191,191,0.5) 12%, transparent 12.5%, transparent 87%, rgb(176,191,191,0.5) 87.5%, rgb(176,191,191,0.5)),
        linear-gradient(150deg, rgb(176,191,191,0.5) 12%, transparent 12.5%, transparent 87%, rgb(176,191,191,0.5) 87.5%, rgb(176,191,191,0.5)),
        linear-gradient(60deg, rgb(112,125,164,0.5) 25%, transparent 25.5%, transparent 75%, rgb(112,125,164,0.5) 75%, rgb(112,125,164,0.5)),
        linear-gradient(60deg, rgb(112,125,164,0.5) 25%, transparent 25.5%, transparent 75%, rgb(112,125,164,0.5) 75%, rgb(112,125,164,0.5));
    height: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
}.customer_experience .history_tl {
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
}.customer_experience h4 {
    margin-bottom: 70px;
    font-size: 32px;
    color: #000000;
    font-weight: 700;
    display: inline-block;
    transform: skew(-5deg);
    position: relative;
}.customer_experience h4::before {
    transform: skew(15deg);
    bottom: -5px;
    width: 200%;
    z-index: -1;
    content: "";
    position: absolute;
    background: rgb(112,125,164,0.5);
    left: -50px;
    height: 10px;
}.customer_experience h4::after {
    background: rgb(176,191,191,0.5);
    width: 30px;
    animation: rotate 6s linear infinite;
    position: absolute;
    height: 30px;
    top: -15px;
    content: "";
    right: -40px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.customer_experience .alumni_reviews {
    gap: 40px;
    display: grid;
    z-index: 2;
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}.customer_experience .learner_quotes {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% 80%, 
        85% 100%, 
        0 100%
    );
    padding: 40px 30px;
    position: relative;
}.customer_experience .learner_quotes::before {
    clip-path: inherit;
    transform: translate(8px, 8px);
    background: linear-gradient(135deg, rgb(176,191,191,0.5), rgb(112,125,164,0.5));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}.customer_experience .learner_quotes::after {
    width: 50px;
    content: "";
    right: 15%;
    transform: rotate(45deg) translateY(25px);
    z-index: -2;
    position: absolute;
    height: 50px;
    background: rgb(224,230,230);
    bottom: 0;
}.customer_experience .learner_quotes:nth-child(odd)::after {
    background: rgb(176,191,191,0.5);
}.customer_experience .learner_quotes:nth-child(even)::after {
    background: rgb(112,125,164,0.5);
}.customer_experience .learner_quotes:hover {
    transform: translateY(-15px);
}.customer_experience .learner_quotes:hover::before {
    transform: translate(4px, 4px);
}.customer_experience .img_shadow {
    transition: all 0.4s ease;
    position: absolute;
    z-index: 3;
    height: 80px;
    right: 20px;
    width: 80px;
    border: 3px solid #ffffff;
    top: -20px;
}.customer_experience .learner_quotes:nth-child(odd) .img_shadow {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 70%, 
        70% 100%, 
        0% 100%
    );
}.customer_experience .learner_quotes:nth-child(even) .img_shadow {
    clip-path: polygon(
        30% 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%, 
        0% 30%
    );
}.customer_experience .learner_quotes:hover .img_shadow {
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
}.customer_experience .learner_quotes span {
    display: block;
    padding-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    border-bottom: 1px dashed rgb(176,191,191,0.5);
    margin-bottom: 15px;
    position: relative;
}.customer_experience .learner_quotes p {
    color: #000000;
    font-weight: 400;
    font-size: 13px;
    font-family: Arial, sans-serif;
    position: relative;
    line-height: 1.6;
}.customer_experience .learner_quotes p::first-letter {
    color: rgb(176,191,191);
    font-size: 1.5em;
    font-weight: 700;
}.customer_experience .alumni_reviews::before {
    top: -50px;
    height: 100px;
    z-index: -1;
    border: 10px solid rgb(112,125,164,0.5);
    width: 100px;
    left: 10%;
    position: absolute;
    content: "";
    border-radius: 50%;
}.customer_experience .alumni_reviews::after {
    content: "";
    background: rgb(176,191,191,0.5);
    bottom: -75px;
    right: 10%;
    z-index: -1;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    height: 150px;
    position: absolute;
    width: 150px;
    opacity: 0.2;
}

@media (max-width: 767px) {.customer_experience {
    padding: 70px 0;
}.customer_experience h4 {
    margin-bottom: 60px;
    transform: none;
    text-align: center;
    font-size: calc(32px * 0.85);
    display: block;
}.customer_experience h4::before {
    left: 0;
    transform: none;
    width: 100%;
}.customer_experience .alumni_reviews {
    grid-template-columns: 1fr;
    gap: 50px;
}.customer_experience .learner_quotes {
    padding: 30px 25px;
}.customer_experience .img_shadow {
    width: 70px;
    top: -15px;
    height: 70px;
    right: 15px;
}.customer_experience .learner_quotes span {
    font-size: calc(22px * 0.9);
}.customer_experience .learner_quotes p {
    font-size: calc(13px * 0.9);
}}.check_it_out_now {
    position: relative;
    background: linear-gradient(110deg, rgb(176,191,191) 55%, rgb(224,230,230) 45%);
    overflow: hidden;
    padding: 120px 0;
}.check_it_out_now::before {
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg, 
        transparent, 
        transparent 20px, 
        rgba(255, 255, 255, 0.03) 20px, 
        rgba(255, 255, 255, 0.03) 40px
    );
    content: '';
    width: 100%;
    z-index: 1;
}.check_it_out_now .history_tl {
    display: flex;
    z-index: 10;
    padding: 0;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: relative;
}.check_it_out_now .container p {
    font-weight: 700;
    position: relative;
    line-height: 1.4;
    width: 60%;
    font-size: 35px;
    padding-right: 30px;
    color: #ffffff;
    margin: 0;
    z-index: 5;
}.check_it_out_now .feedback_inquiry {
    font-size: 16px;
    transition: all 0.4s ease;
    border-radius: 20px;
    transform: skewX(-10deg);
    font-weight: 600;
    background: rgb(176,191,191);
    height: 100px;
    color: #ffffff;
    width: 35%;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 5;
    text-decoration: none;
    position: relative;
}.check_it_out_now .feedback_inquiry::before {
    width: 10px;
    transform: rotate(35deg) translateY(-50px);
    position: absolute;
    content: '';
    height: 150%;
    left: -50px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
}.check_it_out_now .feedback_inquiry:hover {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.3);
    transform: skewX(-10deg) translateY(-8px);
    background: rgb(112,125,164);
}.check_it_out_now .feedback_inquiry:hover::before {
    left: 120%;
}.check_it_out_now .container::after {
    top: -50px;
    background: rgb(176,191,191,0.5);
    border-radius: 50%;
    width: 200px;
    animation: pulse 8s infinite alternate;
    height: 200px;
    filter: blur(60px);
    right: -50px;
    z-index: -1;
    content: '';
    position: absolute;
}.check_it_out_now .container::before {
    animation: pulse 8s infinite alternate-reverse;
    z-index: -1;
    filter: blur(50px);
    border-radius: 50%;
    background: rgb(112,125,164,0.5);
    height: 150px;
    width: 150px;
    position: absolute;
    content: '';
    bottom: -50px;
    left: -50px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@media (max-width: 991px) {.check_it_out_now {
    background: linear-gradient(130deg, #000000 55%, rgb(224,230,230) 55%);
    padding: 90px 0;
}.check_it_out_now .container p {
    font-size: calc(19px * 1.3);
}.check_it_out_now .feedback_inquiry {
    height: 80px;
}
}

@media (max-width: 767px) {.check_it_out_now {
    padding: 70px 0;
    background: #000000;
}.check_it_out_now .history_tl {
    flex-direction: column;
    gap: 30px;
}.check_it_out_now .container p {
    padding-right: 0;
    font-size: 19px;
    text-align: center;
    width: 100%;
}.check_it_out_now .feedback_inquiry {
    transform: skewX(0);
    height: 70px;
    width: 80%;
}.check_it_out_now .feedback_inquiry:hover {
    transform: skewX(0) translateY(-5px);
}
}

@media (max-width: 480px) {.check_it_out_now {
    padding: 50px 0;
}.check_it_out_now .container p {
    font-size: calc(17px * 1.2);
}.check_it_out_now .feedback_inquiry {
    height: 60px;
    width: 100%;
    font-size: calc(16px * 0.9);
}}.cookieNotificationBanner {
    border-top: 3px solid rgb(176,191,191);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    bottom: 0;
    background: rgb(224,230,230);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    z-index: 90;
}.learn_consent {
    margin: 0 auto;
    padding: 20px 15px;
    max-width: 1200px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}.user_tracker {
    flex-shrink: 0;
    margin-right: 15px;
}.user_tracker svg {
    width: 60px;
    transition: fill 0.3s ease;
    fill: rgb(176,191,191);
    height: 60px;
}.user_tracker svg:hover {
    fill: rgb(112,125,164);
}.data_guard {
    margin-right: 15px;
    flex-grow: 1;
    color: #000000;
}.cookieNotificationBanner h5 {
    margin-bottom: 8px;
    color: rgb(176,191,191);
    font-size: 20px;
    font-family: Arial, sans-serif;
    font-weight: 600;
}.cookieNotificationBanner p {
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.5;
}.tracking_policy {
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 28px;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
    background: rgb(176,191,191);
    margin-left: 10px;
}.tracking_policy:hover {
    background: rgb(112,125,164);
    box-shadow: 0 0 10px rgb(112,125,164,0.5);
}#consent_to_cookie_policy {
    background: rgb(176,191,191);
}#disallow_tracking_consent {
    background: rgba(0, 0, 0, 0.5);
}.cookieNotificationBanner p a {
    transition: color 0.3s ease;
    color: rgb(176,191,191);
    text-decoration: underline;
}.cookieNotificationBanner p a:hover {
    color: rgb(112,125,164);
}
@media only screen and (max-width: 1200px) {.learn_consent {
    align-items: center;
    flex-direction: column;
}.user_tracker {
    margin-bottom: 15px;
}.data_guard {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
}.tracking_policy {
    margin-left: 0;
    max-width: 200px;
    width: 100%;
    margin-bottom: 10px;
}
}
@media only screen and (max-width: 800px) {.learn_consent {
    padding: 15px;
}.user_tracker {
    display: none;
}.cookieNotificationBanner h5 {
    font-size: 20px;
}.cookieNotificationBanner p {
    font-size: 15px;
}}
#cookieAlertMessage {
    display: none;
}#cookieAlertMessage:checked ~ .cookieNotificationBanner {
    opacity: 0;
    visibility: hidden;
}.our_story {
    overflow: hidden;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
}.our_story::before {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65));
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
}.our_story::after {
    content: "";
    pointer-events: none;
    z-index: 2;
    width: 100%;
    position: absolute;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(rgb(176,191,191), 0.03) 0px,
        rgba(rgb(176,191,191), 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
    height: 100%;
    top: 0;
    left: 0;
}.our_story .container {
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    grid-template-columns: 1fr;
    z-index: 10;
    display: grid;
    margin: 0 auto;
}.our_story h4 {
    text-align: center;
    letter-spacing: 2px;
    z-index: 10;
    position: relative;
    margin-bottom: 40px;
    color: rgb(176,191,191);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(0);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 33px;
    opacity: 1;
}.our_story:hover h4 {
    transform: translateY(-5px);
}.our_story h4::after {
    position: absolute;
    height: 3px;
    bottom: -12px;
    left: 50%;
    content: "";
    background: rgb(176,191,191);
    transform: translateX(-50%) scaleX(0.8);
    width: 60px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.our_story:hover h4::after {
    transform: translateX(-50%) scaleX(1.2);
}.our_story .description_card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    transform: perspective(1000px) rotateY(0deg);
    border-radius: 10px;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
    position: relative;
}.our_story .description_card:hover {
    transform: perspective(1000px) rotateY(2deg) translateZ(10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), 0 15px 35px rgba(0, 0, 0, 0.15);
}.our_story .description_card::before {
    clip-path: inherit;
    z-index: -1;
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(rgb(176,191,191), 0.08) 0%,
        rgba(rgb(112,125,164), 0.05) 100%
    );
    width: 100%;
    left: 0;
    content: "";
}.our_story .description_card h6 {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 700;
    display: inline-block;
    font-size: calc(18px * 1.1);
    color: rgb(176,191,191);
    margin-bottom: 20px;
    position: relative;
    transform: translateX(0);
}.our_story .description_card:hover h6 {
    transform: translateX(5px);
}.our_story .description_card h6::after {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
    left: 0;
    background: linear-gradient(
        90deg,
        rgb(176,191,191) 0%,
        rgb(112,125,164) 100%
    );
    position: absolute;
    transform: scaleX(0.5);
    transform-origin: left;
    bottom: -8px;
    content: "";
    height: 2px;
}.our_story .description_card:hover h6::after {
    transform: scaleX(1);
}.our_story .description_card div {
    position: relative;
    overflow: hidden;
}.our_story .description_card span {
    text-align: justify;
    transition: opacity 0.3s;
    line-height: 1.8;
    color: #000000;
    display: block;
    column-count: 1;
    font-size: 15px;
    opacity: 0.9;
    column-gap: 40px;
}.our_story .description_card:hover span {
    opacity: 1;
}.our_story .description_card span::first-letter {
    font-size: 2.5em;
    margin-right: 8px;
    float: left;
    line-height: 0.8;
    font-weight: 700;
    color: rgb(176,191,191);
}.our_story::before {
    background-size: 200% 200%;
    transition: background-position 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background-position: 0% 0%;
}.our_story:hover::before {
    background-position: 100% 100%;
}


@media (min-width: 768px) {.our_story {
    padding: 100px 0;
}.our_story h4 {
    font-size: calc(33px * 1.2);
    margin-bottom: 60px;
}.our_story .description_card {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 30px), 
            calc(100% - 30px) 100%, 
            0 100%
        );
    padding: 50px 60px;
}.our_story .description_card h6 {
    margin-bottom: 30px;
    font-size: calc(18px * 1.3);
}.our_story .description_card span {
    column-gap: 50px;
    column-count: 2;
}
}

@media (min-width: 1024px) {.our_story {
    padding: 120px 0;
}.our_story .container {
    grid-template-columns: 1fr;
    gap: 50px;
}.our_story .description_card {
    padding: 60px 70px;
}.our_story .description_card span {
    column-count: 2;
}
}

@media (max-width: 767px) {.our_story {
    padding: 60px 0;
}.our_story h4 {
    margin-bottom: 30px;
    font-size: calc(18px * 1.2);
}.our_story .description_card {
    padding: 30px 25px;
}.our_story .description_card h6 {
    margin-bottom: 15px;
    font-size: 18px;
}.our_story .description_card span {
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 480px) {.our_story {
    padding: 50px 0;
}.our_story .description_card {
    padding: 25px 20px;
}.our_story .description_card span::first-letter {
    font-size: 2em;
}}.contact_panel {
    position: relative;
    overflow: hidden;
    background: rgb(224,230,230);
    padding: 90px 0;
}.contact_panel::before {
    height: 400px;
    top: -150px;
    width: 400px;
    background: linear-gradient(45deg, rgb(176,191,191,0.5), rgb(112,125,164,0.5));
    content: "";
    border-radius: 50%;
    filter: blur(70px);
    position: absolute;
    right: -150px;
    z-index: 1;
}.contact_panel::after {
    background: linear-gradient(225deg, rgb(112,125,164,0.5), rgb(176,191,191,0.5));
    z-index: 1;
    width: 300px;
    filter: blur(60px);
    height: 300px;
    left: -100px;
    content: "";
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
}.contact_panel .container {
    padding: 0 30px;
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
}.contact_panel h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
    color: #000000;
}.contact_panel h2::before {
    top: -25px;
    content: "";
    height: 50px;
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    left: calc(50% - 120px);
    width: 50px;
    background: rgb(176,191,191,0.5);
}.contact_panel h2::after {
    z-index: -1;
    right: calc(50% - 100px);
    width: 30px;
    border-radius: 50%;
    content: "";
    height: 30px;
    background: rgb(112,125,164,0.5);
    position: absolute;
    bottom: -15px;
}.contact_panel .query_map {
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
}.contact_panel .query_map::before {
    background: radial-gradient(
        circle at 0% 0%,
        transparent 98%,
        rgb(176,191,191,0.5) 99%
    ), radial-gradient(
        circle at 100% 100%,
        transparent 98%,
        rgb(112,125,164,0.5) 99%
    );
    position: absolute;
    pointer-events: none;
    inset: 0;
    z-index: 0;
    content: "";
}.contact_panel .img_shadow {
    transition: transform 0.5s ease;
    min-height: 500px;
    position: relative;
    flex: 0 0 45%;
}.contact_panel .img_shadow::before {
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    content: "";
    inset: 0;
    position: absolute;
}.contact_panel .img_shadow::after {
    position: absolute;
    bottom: 20px;
    content: "";
    top: 20px;
    pointer-events: none;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    right: 20px;
    left: 20px;
}.contact_panel .feedback_help {
    padding: 60px;
    flex-direction: column;
    flex: 0 0 55%;
    display: flex;
    justify-content: center;
    position: relative;
}.contact_panel form {
    position: relative;
    z-index: 3;
}.contact_panel form h3 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000000;
}.contact_panel form input[type="text"] {
    padding: 18px 25px;
    font-size: 14px;
    color: #000000;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 25px;
    border: none;
    background: rgb(224,230,230);
}.contact_panel form input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(rgb(176,191,191), 0.1);
    border: 1px solid transparent;
    background: linear-gradient(rgb(224,230,230), rgb(224,230,230)) padding-box,
                linear-gradient(to right, rgb(176,191,191), rgb(112,125,164)) border-box;
    outline: none;
}.contact_panel form input[type="text"]::placeholder {
    color: rgba(#000000, 0.5);
}.contact_panel .help_inquiry {
    position: relative;
    margin-bottom: 30px;
}.contact_panel .help_inquiry input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact_panel .help_inquiry label {
    position: relative;
    cursor: pointer;
    color: #000000;
    align-items: center;
    font-size: 14px;
    display: flex;
    padding-left: 35px;
}.contact_panel .help_inquiry label::before {
    height: 22px;
    top: 0;
    transition: all 0.3s ease;
    background: rgb(224,230,230);
    position: absolute;
    left: 0;
    content: "";
    width: 22px;
    border-radius: 6px;
}.contact_panel .help_inquiry input[type="checkbox"]:checked + label::before {
    background: linear-gradient(135deg, rgb(176,191,191), rgb(112,125,164));
}.contact_panel .help_inquiry input[type="checkbox"]:checked + label::after {
    width: 6px;
    border: solid #ffffff;
    top: 4px;
    content: "";
    border-width: 0 2px 2px 0;
    height: 12px;
    transform: rotate(45deg);
    left: 8px;
    position: absolute;
}.contact_panel .help_inquiry label a {
    font-weight: 600;
    color: rgb(176,191,191);
    text-decoration: none;
    transition: color 0.3s ease;
}.contact_panel .help_inquiry label a:hover {
    color: rgb(112,125,164);
}.contact_panel .feedback_inquiry {
    padding: 20px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    width: 100%;
    border-radius: 12px;
    position: relative;
    border: none;
    font-size: 20px;
    background: linear-gradient(135deg, rgb(176,191,191), rgb(112,125,164));
    color: #ffffff;
    font-weight: 600;
    transition: all 0.5s ease;
}.contact_panel .feedback_inquiry::before {
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    transform-origin: right;
    top: 0;
    background: linear-gradient(135deg, rgb(112,125,164), rgb(176,191,191));
}.contact_panel .feedback_inquiry:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.contact_panel svg {
    height: 24px;
    transition: all 0.3s ease;
    fill: none;
    margin-right: 12px;
    stroke: rgb(176,191,191);
    width: 24px;
}.contact_panel svg path {
    stroke-width: 2;
    stroke: rgb(176,191,191);
    transition: all 0.3s ease;
    fill: none;
}.contact_panel svg:hover,
.contact_panel svg:hover path {
    stroke: rgb(112,125,164);
}

@media (max-width: 1024px) {.contact_panel {
    padding: 70px 0;
}.contact_panel .feedback_help {
    padding: 45px;
}.contact_panel .img_shadow {
    min-height: 450px;
}
}

@media (max-width: 768px) {.contact_panel {
    padding: 60px 0;
}.contact_panel h2 {
    margin-bottom: 40px;
}.contact_panel .query_map {
    flex-direction: column;
}.contact_panel .img_shadow {
    flex: 0 0 300px;
    min-height: 300px;
    width: 100%;
}.contact_panel .feedback_help {
    padding: 40px 30px;
    flex: 0 0 auto;
}.contact_panel form h3 {
    margin-bottom: 25px;
}.contact_panel form input[type="text"] {
    padding: 15px 20px;
    margin-bottom: 20px;
}
}

@media (max-width: 480px) {.contact_panel {
    padding: 50px 0;
}.contact_panel h2 {
    margin-bottom: 30px;
    font-size: calc(38px * 0.9);
}.contact_panel .img_shadow {
    min-height: 220px;
}.contact_panel .feedback_help {
    padding: 30px 20px;
}.contact_panel form h3 {
    font-size: calc(20px * 0.9);
    margin-bottom: 20px;
}.contact_panel form input[type="text"] {
    padding: 14px 16px;
    font-size: calc(14px * 0.95);
    margin-bottom: 16px;
}.contact_panel .feedback_inquiry {
    padding: 16px;
}.contact_panel .help_inquiry label {
    font-size: calc(14px * 0.95);
}}.welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 5rem 2rem;
}.welcome::before {
    background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: 0;
    z-index: 1;
}.welcome::after {
    left: 0;
    top: 0;
    opacity: 0.3;
    content: "";
    z-index: 2;
    position: absolute;
    background: linear-gradient(
    to bottom,
    rgb(176,191,191,0.5) 0%,
    transparent 100%
  );
    width: 100%;
    animation: gradientPulse 8s infinite alternate ease-in-out;
    height: 100%;
}.welcome > div {
    display: flex;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    flex-direction: column;
    animation: appearFromBottom 1.2s ease-out forwards;
    gap: 3rem;
    transform: translateY(0);
    width: 100%;
}.welcome > div > div:first-child {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    margin-left: 5vw;
}.title_style_header {
    font-weight: 700;
    line-height: 1.1;
    transition: transform 0.3s ease;
    font-size: calc(38px * 1.2);
    transform-origin: left;
    letter-spacing: -0.03em;
    background-clip: text !important;
    color: transparent;
    transform: scale(1);
    position: relative;
    margin: 0;
    -webkit-background-clip: text !important;
    background: linear-gradient(
    120deg,
    #ffffff 0%,
    rgb(112,125,164) 100%
  );
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}.title_style_header::after {
    width: 60%;
    transform-origin: left;
    left: 0;
    height: 4px;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: -0.5rem;
    content: "";
    background: rgb(112,125,164);
    transform: scaleX(0.8);
}.welcome:hover .title_style_header::after {
    transform: scaleX(1);
}.skill_expertise {
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-left: 4px solid rgb(112,125,164);
    padding: 2.5rem;
    flex-direction: column;
    display: flex;
    position: relative;
    margin-left: 10vw;
    background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
    gap: 2rem;
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}.welcome:hover .skill_expertise {
    transform: perspective(1000px) rotateX(0) rotateY(0);
}.welcome .legacy_story {
    animation-delay: 0.3s;
    animation: slideInRight 0.8s ease-out forwards;
    transform: translateX(0);
    position: relative;
    opacity: 1;
}.welcome .legacy_story h3 {
    position: relative;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: #ffffff;
    font-size: calc(18px * 1.1);
    line-height: 1.4;
    margin: 0;
}.welcome .legacy_story::before {
    background: rgb(112,125,164);
    top: -1rem;
    content: "";
    animation: expandWidth 1.5s ease-out forwards;
    left: 0;
    height: 3px;
    transform-origin: left;
    width: 40px;
    animation-delay: 1s;
    position: absolute;
}.welcome .skill_expertise > div:last-child {
    margin-top: 1rem;
    animation-delay: 0.6s;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}.welcome .skill_expertise > div:last-child span {
    display: inline-block;
    padding-left: 1.5rem;
    position: relative;
}.welcome .skill_expertise > div:last-child span::before {
    width: 12px;
    left: 0;
    content: "";
    transform: translateY(-50%) rotate(225deg);
    position: absolute;
    border-bottom: 3px solid rgb(112,125,164);
    top: 50%;
    height: 12px;
    border-left: 3px solid rgb(112,125,164);
}.welcome .skill_expertise > div:last-child p {
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

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

@keyframes expandWidth {
  0% {
    width: 40px;
  }
  100% {
    width: 80px;
  }
}

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

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

@keyframes gradientPulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.2;
  }
}

@media (min-width: 768px) {.welcome {
    padding: 8rem 4rem;
}.welcome > div {
    gap: 4rem;
}.welcome > div > div:first-child {
    margin-left: 0;
}.title_style_header {
    font-size: calc(38px * 1.5);
}.skill_expertise {
    margin-left: 5vw;
    padding: 3rem;
    width: 80%;
}
}

@media (min-width: 992px) {.welcome > div {
    gap: 5rem;
}.welcome > div > div:first-child {
    width: 80%;
}.title_style_header {
    font-size: calc(38px * 1.8);
}.welcome .legacy_story h3 {
    font-size: calc(18px * 1.2);
}.skill_expertise {
    width: 65%;
    padding: 3.5rem;
    margin-left: 10vw;
}
}

@media (max-width: 767px) {.welcome {
    padding-top: 6rem;
    align-items: flex-start;
}.title_style_header {
    font-size: calc(38px * 1.1);
}.welcome > div > div:first-child {
    transform: none;
    margin-left: 0;
}.skill_expertise {
    padding: 2rem 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: none;
    margin-left: 0;
}.welcome .legacy_story h3 {
    font-size: 18px;
}}header {
    overflow: visible;
    padding: 0;
    z-index: 100;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    margin-top: 0;
    position: relative;
}header::before {
    width: 100%;
    top: 0;
    content: '';
    background-size: 20px 20px;
    position: absolute;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: 0;
    left: 0;
    height: 100%;
}header::after {
    height: 4px;
    left: 0;
    content: '';
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, 
        rgb(176,191,191) 0%,
        rgb(112,125,164) 50%,
        rgb(176,191,191) 100%
    );
    background-size: 200% auto;
    animation: gradientSlide 5s linear infinite;
    bottom: 0;
}@keyframes gradientSlide {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

header .head_mentor {
    justify-content: space-between;
    padding: 1.3rem 2rem;
    z-index: 5;
    display: flex;
    align-items: center;
    position: relative;
}header .top_page {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
}header .site_info {
    display: flex;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 2;
    align-items: center;
    position: relative;
}header .site_info:hover {
    transform: translateY(-3px) scale(1.02);
}header .site_info img {
    max-height: 40px;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}header .top_page::before {
    opacity: 0.3;
    transform: skew(-3deg);
    position: absolute;
    top: -8px;
    right: -8px;
    transition: all 0.3s ease;
    content: '';
    bottom: -8px;
    border-radius: 10px;
    left: -8px;
    border: 1px solid rgb(176,191,191);
}header .top_page:hover::before {
    opacity: 0.7;
    transform: skew(-5deg) scale(1.05);
    box-shadow: 0 0 15px rgb(176,191,191,0.5);
}header .nav_master {
    position: relative;
    list-style: none;
    z-index: 5;
    margin: 0;
    padding: 0;
    display: flex;
}header .nav_header {
    margin: 0 0.3rem;
    perspective: 800px;
    position: relative;
}header .nav_header a {
    display: block;
    font-size: 14px;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    position: relative;
    font-weight: 600;
    z-index: 1;
    color: #ffffff;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    letter-spacing: 0.5px;
}header .nav_header a::before {
    bottom: 5px;
    left: 10%;
    opacity: 0.7;
    background: rgb(176,191,191);
    content: '';
    transition: transform 0.3s ease;
    transform: scaleX(0);
    position: absolute;
    width: 80%;
    height: 1px;
}header .nav_header a:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateZ(10px);
    color: rgb(176,191,191);
    background: rgba(0, 0, 0, 0.2);
}header .nav_header a:hover::before {
    transform: scaleX(1);
}header .nav_header::after {
    background: radial-gradient(circle at center, rgb(176,191,191,0.5) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    width: 100%;
    top: 0;
    height: 100%;
    transition: opacity 0.3s ease;
    content: '';
    left: 0;
    position: absolute;
    pointer-events: none;
}header .nav_header:hover::after {
    opacity: 0.4;
}header .head_mentor::before {
    position: absolute;
    height: 1px;
    left: 35%;
    width: 30%;
    content: '';
    top: 0;
    background: linear-gradient(90deg, transparent, rgb(176,191,191), transparent);
}header .head_mentor::after {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 20%;
    height: 1px;
    content: '';
    opacity: 0.1;
}.nav_tutor {
    margin-top: 0;
    padding-top: 2rem;
    z-index: 1;
    position: relative;
    background: rgb(224,230,230);
}

@media (min-width: 1400px) {header .head_mentor {
    max-width: 1300px;
    margin: 0 auto;
}header .nav_header {
    margin: 0 0.5rem;
}header .nav_header a {
    padding: 0.8rem 1.5rem;
}
}

@media (max-width: 991px) {header {
    padding: 0;
}header .head_mentor {
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 1rem 1.5rem;
}header .top_page {
    margin-bottom: 0;
}header .nav_master {
    margin-top: 1rem;
    justify-content: center;
    flex: 1 0 100%;
}header .nav_header {
    margin: 0 0.2rem;
}header .nav_header a {
    padding: 0.6rem 0.8rem;
    font-size: calc(14px - 1px);
}header .top_page::before {
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .head_mentor {
    padding: 0.8rem 1.2rem;
}header .top_page {
    max-width: 130px;
}header .top_page::before {
    display: none;
}header .nav_master {
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: thin;
    overflow-x: auto;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
}header .nav_master::-webkit-scrollbar {
    height: 2px;
}header .nav_master::-webkit-scrollbar-thumb {
    background: rgb(176,191,191);
    border-radius: 10px;
}header .nav_header {
    flex: 0 0 auto;
    margin: 0 0.1rem;
}header .nav_header a {
    white-space: nowrap;
    padding: 0.5rem 0.7rem;
    letter-spacing: 0;
    font-size: calc(14px - 2px);
}header .nav_header a::before {
    bottom: 3px;
}header::after {
    height: 2px;
}
}

@media (max-width: 479px) {header .head_mentor {
    padding: 0.7rem 1rem;
}header .top_page {
    max-width: 110px;
}header .nav_header a {
    font-size: calc(14px - 3px);
    padding: 0.4rem 0.6rem;
}}.academic_experience {
    background: rgb(224,230,230);
    overflow: hidden;
    position: relative;
    padding: 5rem 2rem;
}.academic_experience::before {
    content: "";
    width: 100%;
    background: linear-gradient(120deg, transparent 30%, rgb(176,191,191,0.5) 100%);
    z-index: 1;
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
}.academic_experience::after {
    height: 70%;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background: rgb(112,125,164,0.5);
    position: absolute;
    z-index: 1;
    opacity: 0.5;
    bottom: 0;
    right: 0;
    width: 40%;
    content: "";
}.academic_experience .learner_quotes {
    margin: 0 auto;
    max-width: 1200px;
    grid-template-columns: 1fr 1.5fr;
    position: relative;
    display: grid;
    gap: 3rem;
    z-index: 2;
}.academic_experience .img_shadow {
    width: 100%;
    filter: grayscale(100%);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 0;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}.academic_experience .img_shadow::before {
    top: 0;
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(176,191,191,0.5) 100%);
    z-index: 1;
    left: 0;
}.academic_experience .img_shadow:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}.academic_experience .exp_list {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
}.academic_experience .exp_list::before {
    width: 2px;
    height: 0;
    content: "";
    background: rgb(176,191,191);
    top: 0;
    transition: height 0.8s ease-out;
    left: 0;
    position: absolute;
}.academic_experience .learner_quotes:hover .exp_list::before {
    height: 100%;
}.academic_experience .name {
    margin-bottom: 0.5rem;
    font-size: 38px;
    color: #000000;
    overflow: hidden;
    font-weight: 700;
    position: relative;
}.academic_experience .name::after {
    transform: translateX(-101%);
    bottom: 0;
    left: 0;
    height: 1px;
    position: absolute;
    width: 100%;
    content: "";
    transition: transform 0.6s ease-out 0.2s;
    background: rgb(112,125,164);
}.academic_experience .learner_quotes:hover .name::after {
    transform: translateX(0);
}.academic_experience .exp_list > div:nth-child(2) {
    letter-spacing: 3px;
    font-size: 24px;
    transform: translateY(20px);
    font-weight: 400;
    transition: all 0.5s ease-out 0.4s;
    opacity: 0;
    color: rgb(112,125,164);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}.academic_experience .learner_quotes:hover .exp_list > div:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
}.academic_experience .exp_box {
    opacity: 0;
    font-weight: 300;
    transform: translateY(20px);
    font-size: 17px;
    padding: 0 0 0 20px;
    color: #000000;
    transition: all 0.5s ease-out 0.6s;
    line-height: 1.8;
    position: relative;
}.academic_experience .learner_quotes:hover .exp_box {
    transform: translateY(0);
    opacity: 1;
}.academic_experience .exp_box::first-letter {
    color: rgb(176,191,191);
    font-weight: 700;
    font-size: 1.5em;
}@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

.academic_experience:hover .name {
    white-space: nowrap;
    overflow: hidden;
    animation: 
        typing 2.5s steps(40, end),
        blink .75s step-end infinite;
}

@media (max-width: 992px) {.academic_experience .learner_quotes {
    gap: 2rem;
    grid-template-columns: 1fr;
}.academic_experience .img_shadow {
    aspect-ratio: 16/9;
    max-height: 300px;
}.academic_experience .exp_list {
    padding: 1rem 0;
}.academic_experience .exp_list::before {
    transition: width 0.8s ease-out;
    height: 2px;
    width: 0;
}.academic_experience .learner_quotes:hover .exp_list::before {
    width: 100%;
    height: 2px;
}}.newsletter_signup {
    padding: 4rem 0;
    background: rgb(112,125,164);
    position: relative;
    overflow: hidden;
}.newsletter_signup::before {
    content: "";
    background: linear-gradient(135deg, rgb(176,191,191,0.5) 0%, transparent 40%);
    width: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
}.newsletter_signup::after {
    content: "";
    right: -5%;
    bottom: -10%;
    background: rgb(176,191,191);
    opacity: 0.15;
    width: 30%;
    transform: rotate(-15deg) skew(15deg);
    z-index: 1;
    height: 60%;
    position: absolute;
}.newsletter_signup .container {
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.newsletter_signup .history_tl {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    padding: 3rem;
    backdrop-filter: blur(5px);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transform: translateY(0);
    border-left: 4px solid rgb(176,191,191);
}.newsletter_signup .history_tl:hover {
    transform: translateY(-5px);
}.newsletter_signup .history_tl::before {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.05;
    content: "";
    background: repeating-linear-gradient(
        -45deg,
        rgb(112,125,164,0.5) 0,
        rgb(112,125,164,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: -1;
}.newsletter_signup h3 {
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: calc(22px * 0.9);
    position: relative;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
    transform: perspective(1000px) rotateX(0deg);
    line-height: 1.4;
}.newsletter_signup h3::after {
    transform-origin: left;
    height: 3px;
    transition: transform 0.4s ease;
    position: absolute;
    bottom: -10px;
    transform: scaleX(1);
    background: rgb(176,191,191);
    content: "";
    width: 60px;
    left: 0;
}.newsletter_signup .history_tl:hover h3::after {
    transform: scaleX(1.5);
}.newsletter_signup .input_holder {
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    flex-direction: row;
    display: flex;
    gap: 1rem;
}.newsletter_signup .input_holder div {
    position: relative;
    flex: 1 1 250px;
}.newsletter_signup .input_holder input[type="email"] {
    font-size: calc(15px * 0.95);
    height: 50px;
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    font-family: Arial, sans-serif;
}.newsletter_signup .input_holder input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgb(176,191,191,0.5);
    outline: none;
    border-color: rgb(176,191,191);
}.newsletter_signup .input_holder input[type="email"]::placeholder {
    transition: opacity 0.3s ease;
    color: rgba(0, 0, 0, 0.4);
}.newsletter_signup .input_holder input[type="email"]:focus::placeholder {
    opacity: 0.5;
}.newsletter_signup .input_holder .sub_component {
    font-weight: 600;
    min-height: 50px;
    background: rgb(176,191,191);
    color: #ffffff;
    overflow: hidden;
    font-size: 17px;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    font-family: Arial, sans-serif;
    flex: 0 0 auto;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}.newsletter_signup .input_holder .sub_component::before {
    left: -100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    top: 0;
    transition: left 0.8s ease;
    height: 100%;
    content: "";
}.newsletter_signup .input_holder .sub_component:hover {
    transform: translateY(-2px);
    background: rgb(112,125,164);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}.newsletter_signup .input_holder .sub_component:hover::before {
    left: 100%;
}.newsletter_signup .input_holder .sub_component:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {.newsletter_signup {
    padding: 3rem 0;
}.newsletter_signup .history_tl {
    padding: 2rem;
}.newsletter_signup h3 {
    font-size: calc(22px * 0.85);
}.newsletter_signup .input_holder {
    gap: 1rem;
    flex-direction: column;
}.newsletter_signup .input_holder div {
    flex: 1 1 100%;
    width: 100%;
}.newsletter_signup .input_holder .sub_component {
    width: 100%;
}.newsletter_signup::after {
    height: 40%;
    width: 50%;
}
}

@media (max-width: 480px) {.newsletter_signup {
    padding: 2.5rem 0;
}.newsletter_signup .history_tl {
    padding: 1.5rem;
}.newsletter_signup h3 {
    font-size: calc(22px * 0.8);
    margin-bottom: 1rem;
}.newsletter_signup h3::after {
    width: 40px;
}.newsletter_signup .input_holder {
    margin-top: 1.5rem;
}.newsletter_signup .input_holder input[type="email"] {
    height: 45px;
}.newsletter_signup .input_holder .sub_component {
    min-height: 45px;
    padding: 0.6rem 1.2rem;
}}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(176,191,191,0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.newsletter_signup .input_holder .sub_component:focus {
    animation: pulse 1.5s infinite;
    outline: none;
}.tariff_block {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: rgb(224,230,230);
}.tariff_block::before {
    top: -50px;
    background: rgb(176,191,191,0.5);
    animation: float-effect 12s infinite alternate ease-in-out;
    width: 300px;
    filter: blur(80px);
    position: absolute;
    right: -50px;
    height: 300px;
    z-index: 0;
    content: "";
}.tariff_block::after {
    background: rgb(112,125,164,0.5);
    z-index: 0;
    bottom: -50px;
    animation: float-effect 15s infinite alternate-reverse ease-in-out;
    filter: blur(60px);
    content: "";
    left: -50px;
    position: absolute;
    height: 250px;
    width: 250px;
}.tariff_block .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    position: relative;
    padding: 0 15px;
}.tariff_block .value_fees {
    gap: 60px;
    flex-direction: column;
    display: flex;
}.tariff_block .cost_deals {
    margin: 0 auto;
    order: -1;
    text-align: center;
    position: relative;
    padding: 0 20px;
    max-width: 700px;
}.tariff_block .cost_deals h2 {
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 700;
    color: #000000;
    font-size: 36px;
    position: relative;
}.tariff_block .cost_deals h2::after {
    height: 3px;
    transform: translateX(-50%);
    background: rgb(176,191,191);
    left: 50%;
    content: "";
    width: 80px;
    bottom: -10px;
    position: absolute;
}.tariff_block .rate_list {
    line-height: 1.6;
    font-size: 12px;
    margin-bottom: 0;
    opacity: 0.85;
    color: #000000;
}.tariff_block .learn_sub {
    gap: 30px;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.tariff_block .plan_details {
    perspective: 1000px;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}.tariff_block .plan_details:hover {
    transform: translateY(-10px) scale(1.02);
}.tariff_block .study_rates {
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    transform-style: preserve-3d;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
    display: flex;
    background: #ffffff;
}.tariff_block .plan_details:hover .study_rates {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 20px rgb(176,191,191,0.5);
}.tariff_block .payment_option {
    overflow: hidden;
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 30px;
    flex-grow: 1;
    z-index: 2;
}.tariff_block .payment_option::before {
    transform-origin: left;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    height: 5px;
    background: linear-gradient(90deg, rgb(176,191,191), rgb(112,125,164));
    content: "";
    transition: transform 0.5s ease;
    top: 0;
    right: 0;
}.tariff_block .plan_details:hover .payment_option::before {
    transform: scaleX(1);
}.tariff_block .payment_option h3 {
    transition: transform 0.4s ease, color 0.3s ease;
    font-weight: 700;
    font-size: calc(20px + 2px);
    overflow-wrap: break-word;
    white-space: normal;
    margin-bottom: 10px;
    word-break: break-word;
    color: #000000;
}.tariff_block .plan_details:hover .payment_option h3 {
    transform: translateX(5px);
    color: rgb(176,191,191);
}.tariff_block .bundle_rate {
    white-space: normal;
    position: relative;
    font-weight: 700;
    color: rgb(112,125,164);
    overflow-wrap: break-word;
    font-size: 20px;
    display: block;
    transition: transform 0.4s ease;
    word-break: break-word;
    margin: 10px 0 20px;
}.tariff_block .bundle_rate::before {
    height: 2px;
    background: rgb(112,125,164,0.5);
    position: absolute;
    width: 40px;
    bottom: -8px;
    left: 0;
    transition: width 0.4s ease;
    content: "";
}.tariff_block .plan_details:hover .bundle_rate::before {
    width: 80px;
}.tariff_block .payment_option p {
    flex-grow: 1;
    word-break: break-word;
    color: #000000;
    font-size: calc(12px - 1px);
    white-space: normal;
    overflow-wrap: break-word;
    margin-bottom: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}.tariff_block .img_shadow {
    transition: transform 0.6s ease, filter 0.6s ease;
    overflow: hidden;
    position: relative;
    height: 200px;
    transform: translateZ(-10px);
}.tariff_block .img_shadow::after {
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.6;
    inset: 0;
    transition: opacity 0.5s ease;
    position: absolute;
}.tariff_block .plan_details:hover .img_shadow {
    transform: translateZ(0);
    filter: brightness(1.1) contrast(1.05);
}.tariff_block .plan_details:hover .img_shadow::after {
    opacity: 0.4;
}.tariff_block .plan_details::after {
    height: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 100%;
    filter: blur(10px);
    z-index: -1;
    left: 30px;
    background: rgb(176,191,191,0.5);
    right: 30px;
}.tariff_block .plan_details:hover::after {
    opacity: 0.5;
}

@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@media (min-width: 992px) {.tariff_block .value_fees {
    align-items: center;
    flex-direction: row;
}.tariff_block .cost_deals {
    text-align: left;
    flex: 0 0 30%;
    order: 0;
    padding-right: 40px;
}.tariff_block .cost_deals h2::after {
    transform: none;
    left: 0;
}.tariff_block .learn_sub {
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 70%;
}
}

@media (min-width: 1200px) {.tariff_block .learn_sub {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.tariff_block .payment_option {
    padding: 35px;
}.tariff_block .img_shadow {
    height: 220px;
}
}

@media (max-width: 991px) {.tariff_block {
    padding: 80px 0;
}.tariff_block .cost_deals {
    margin-bottom: 20px;
}
}

@media (max-width: 767px) {.tariff_block {
    padding: 60px 0;
}.tariff_block .learn_sub {
    gap: 25px;
    grid-template-columns: 1fr;
}.tariff_block .cost_deals h2 {
    font-size: calc(36px - 4px);
}.tariff_block .img_shadow {
    height: 180px;
}.tariff_block .payment_option {
    padding: 25px;
}
}

@media (max-width: 480px) {.tariff_block {
    padding: 50px 0;
}.tariff_block .payment_option h3 {
    font-size: 20px;
}.tariff_block .bundle_rate {
    font-size: calc(20px - 2px);
}.tariff_block .img_shadow {
    height: 160px;
}.tariff_block .payment_option {
    padding: 20px;
}}.testimonial {
    padding: 6rem 0 2rem;
    background: linear-gradient(45deg, #000000 0%, rgb(112,125,164,0.5) 100%);
    font-family: Arial, sans-serif;
    color: #ffffff;
    position: relative;
}.testimonial::before {
    opacity: 0.15;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(176,191,191,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgb(112,125,164,0.5) 0%, transparent 30%);
    z-index: 1;
    width: 100%;
}.testimonial::after {
    content: '';
    width: 100%;
    z-index: 2;
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
}.testimonial .container {
    z-index: 3;
    position: relative;
}.testimonial .desktop_app {
    display: flex;
    position: relative;
    flex-direction: column;
}.testimonial .learn_talk {
    background-color: #ffffff;
    justify-content: space-between;
    display: flex;
    transform: translateY(-3.5rem);
    position: relative;
    z-index: 10;
    padding: 1.25rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 30px;
}.testimonial .learn_talk::before {
    position: absolute;
    z-index: -1;
    top: 0;
    opacity: 0.08;
    border-radius: 30px;
    background: linear-gradient(135deg, transparent 20%, rgb(176,191,191,0.5) 140%);
    width: 100%;
    content: '';
    left: 0;
    height: 100%;
}.testimonial .info_item {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    min-width: 200px;
    max-width: 300px;
    flex: 1;
}.testimonial .info_item:not(:last-child)::after {
    right: -0.75rem;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 70%;
    content: '';
    background: linear-gradient(to bottom, transparent, rgb(112,125,164,0.5), transparent);
    width: 1px;
}.testimonial .info_item p,
.testimonial .info_item a {
    font-size: 15px;
    gap: 0.875rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    border-radius: 10px;
    align-items: center;
    color: #000000;
    text-decoration: none;
}.testimonial .info_item:hover {
    transform: translateY(-5px);
}.testimonial .info_item:hover p,
.testimonial .info_item:hover a {
    color: rgb(176,191,191);
}.testimonial .info_item svg {
    width: 22px;
    transition: transform 0.3s ease;
    height: 22px;
    fill: rgb(176,191,191);
}.testimonial .info_item:hover svg {
    transform: scale(1.15);
}.testimonial .text_main_holder {
    gap: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    position: relative;
}.testimonial .top_page {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}.testimonial .top_page svg {
    height: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}.testimonial .top_page:hover svg {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgb(176,191,191,0.5));
    transform: scale(1.03);
}.testimonial .qna_board {
    line-height: 1.6;
    font-size: calc(13px + 1px);
    opacity: 0.8;
}.testimonial .nav_master {
    display: flex;
    flex-direction: column;
    position: relative;
}.testimonial .nav_master::before {
    width: 1px;
    left: -2rem;
    content: '';
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgb(112,125,164,0.5) 30%, rgb(112,125,164,0.5) 70%, transparent);
    top: 0;
    position: absolute;
}.testimonial .nav_master::after {
    top: 0;
    right: -2rem;
    content: '';
    background: linear-gradient(to bottom, transparent, rgb(112,125,164,0.5) 30%, rgb(112,125,164,0.5) 70%, transparent);
    width: 1px;
    bottom: 0;
    position: absolute;
}.testimonial .nav_master h5 {
    margin-bottom: 1.75rem;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding-bottom: 0.875rem;
}.testimonial .nav_master h5::after {
    content: '';
    height: 2px;
    background: linear-gradient(to right, rgb(176,191,191), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
}.testimonial .top_pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}.testimonial .top_pro:first-child {
    margin-bottom: 2rem;
}.testimonial .top_pro a {
    padding: 0.25rem 0;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    transform-origin: left;
    color: #ffffff;
    opacity: 0.85;
    position: relative;
}.testimonial .top_pro a::before {
    left: 0;
    bottom: 0;
    width: 0;
    position: absolute;
    content: '';
    background-color: rgb(176,191,191);
    height: 1px;
    transition: width 0.3s ease;
}.testimonial .top_pro a:hover {
    opacity: 1;
    color: rgb(176,191,191);
    transform: translateX(8px);
}.testimonial .top_pro a:hover::before {
    width: 20px;
}.testimonial .subscribe_holder {
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    padding: 2rem;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    border-radius: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}.testimonial .subscribe_holder::before {
    left: 0;
    opacity: 0.2;
    background: 
        linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
        radial-gradient(circle at top right, rgb(176,191,191,0.5), transparent 70%);
    height: 100%;
    top: 0;
    width: 100%;
    z-index: -1;
    content: '';
    position: absolute;
}.testimonial .subscribe_holder::after {
    position: absolute;
    animation: pulseGlow 6s infinite alternate;
    background: radial-gradient(circle, rgb(176,191,191,0.5) 0%, transparent 70%);
    z-index: -1;
    bottom: 0;
    content: '';
    right: 0;
    opacity: 0.3;
    height: 150px;
    width: 150px;
}@keyframes pulseGlow {
    0% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.testimonial .subscribe_holder h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding-bottom: 0.875rem;
}.testimonial .subscribe_holder h5::after {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(176,191,191);
    width: 40px;
    height: 2px;
    content: '';
}.testimonial .subscribe_holder p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-size: 15px;
}.testimonial .input_holder {
    margin-top: 0.5rem;
    flex-direction: column;
    position: relative;
    gap: 1rem;
    display: flex;
}.testimonial .input_holder::before {
    animation: subtleRotate 15s linear infinite;
    position: absolute;
    border-radius: calc(10px + 10px);
    width: calc(100% + 20px);
    top: -10px;
    background: 
        radial-gradient(circle at bottom right, rgb(176,191,191,0.5) 0%, transparent 70%),
        radial-gradient(circle at top left, rgb(112,125,164,0.5) 0%, transparent 70%);
    z-index: -1;
    content: '';
    opacity: 0.1;
    left: -10px;
    height: calc(100% + 20px);
}@keyframes subtleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.testimonial .input_holder input[type="email"] {
    font-size: 15px;
    padding: 1.125rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}.testimonial .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgb(176,191,191,0.5);
    border-color: rgb(176,191,191,0.5);
    outline: none;
}.testimonial .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}.testimonial .sub_component {
    overflow: hidden;
    font-weight: 600;
    border: none;
    padding: 1.125rem 1.5rem;
    position: relative;
    font-size: 19px;
    color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgb(176,191,191);
    z-index: 1;
}.testimonial .sub_component::before {
    content: '';
    width: 100%;
    z-index: -1;
    position: absolute;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
    transition: left 0.7s ease;
    height: 100%;
}.testimonial .sub_component::after {
    height: 100%;
    content: '';
    width: 100%;
    opacity: 0;
    left: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    z-index: -2;
    top: 0;
    background: rgb(112,125,164);
}.testimonial .sub_component:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}.testimonial .sub_component:hover::before {
    left: 100%;
}.testimonial .sub_component:hover::after {
    opacity: 1;
}.testimonial .contact_edu {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    padding-top: 2rem;
}.testimonial .contact_edu::before {
    background: linear-gradient(to right, transparent, rgb(112,125,164,0.5), transparent);
    content: '';
    height: 1px;
    left: 20%;
    width: 60%;
    position: absolute;
    top: 0;
}.testimonial .science_ref {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 1200px) {.testimonial .text_main_holder {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}.testimonial .subscribe_holder {
    grid-column: 1 / -1;
    margin-top: 2rem;
}.testimonial .nav_master::after {
    display: none;
}
}

@media (max-width: 991px) {.testimonial {
    padding: 5rem 0 2rem;
}.testimonial .learn_talk {
    justify-content: center;
    flex-wrap: wrap;
}.testimonial .info_item {
    width: calc(50% - 2rem);
    flex: 0 0 auto;
    max-width: none;
}.testimonial .info_item:not(:last-child)::after {
    display: none;
}.testimonial .text_main_holder {
    grid-template-columns: 1fr;
    gap: 3rem;
}.testimonial .nav_master::before, 
    .testimonial .nav_master::after {
    display: none;
}.testimonial .top_page {
    align-items: center;
    text-align: center;
}.testimonial .nav_master h5, 
    .testimonial .subscribe_holder h5 {
    text-align: center;
}.testimonial .nav_master h5::after, 
    .testimonial .subscribe_holder h5::after {
    transform: translateX(-50%);
    left: 50%;
}.testimonial .top_pro {
    grid-template-columns: repeat(3, 1fr);
}.testimonial .input_holder {
    max-width: 400px;
    margin: 0 auto;
}
}

@media (max-width: 768px) {.testimonial {
    padding: 4rem 0 2rem;
}.testimonial .learn_talk {
    transform: translateY(-2.5rem);
    padding: 1rem 1.5rem;
}.testimonial .info_item {
    width: 100%;
    max-width: none;
}.testimonial .top_pro {
    grid-template-columns: repeat(2, 1fr);
}.testimonial .contact_edu {
    margin-top: 3rem;
}
}

@media (max-width: 576px) {.testimonial {
    padding: 3rem 0 1.5rem;
}.testimonial .learn_talk {
    padding: 1rem;
    transform: translateY(-1.5rem);
}.testimonial .info_item p,
    .testimonial .info_item a {
    font-size: calc(15px - 1px);
}.testimonial .top_pro {
    grid-template-columns: 1fr;
    text-align: center;
}.testimonial .top_pro a:hover {
    transform: none;
}.testimonial .top_pro a::before {
    transform: translateX(-50%);
    left: 50%;
}.testimonial .top_pro a:hover::before {
    width: 30px;
}.testimonial .input_holder {
    width: 100%;
}}.privacy_reservoir {
    background: linear-gradient(135deg, rgb(224,230,230) 0%, rgba(245, 247, 250, 0.95) 100%);
    padding: 5rem 1.5rem;
    overflow: hidden;
    position: relative;
}.privacy_reservoir::before {
    position: absolute;
    z-index: 0;
    background-image: linear-gradient(45deg, rgb(176,191,191,0.5) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgb(176,191,191,0.5) 25%, transparent 25%);
    height: 100%;
    top: 0;
    content: "";
    opacity: 0.04;
    width: 100%;
    left: 0;
    background-size: 60px 60px;
}.privacy_reservoir::after {
    right: -10%;
    opacity: 0.2;
    content: "";
    top: -10%;
    height: 40%;
    width: 40%;
    position: absolute;
    z-index: 0;
    transform: rotate(-15deg);
    background: linear-gradient(120deg, rgb(112,125,164,0.5) 0%, transparent 70%);
}.privacy_reservoir .container {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 3.5rem 4rem;
    position: relative;
    max-width: 1140px;
    z-index: 1;
    transform: translateZ(0);
    background-color: #ffffff;
    margin: 0 auto;
}.privacy_reservoir h1 {
    line-height: 1.2;
    position: relative;
    transform: translateX(-0.5rem);
    padding-bottom: 1.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #000000;
    font-size: 43px;
}.privacy_reservoir h1::after {
    left: 0;
    animation: expandWidth 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(176,191,191) 0%, rgb(112,125,164) 100%);
    content: "";
    height: 4px;
    bottom: 0;
    position: absolute;
    width: 8rem;
}.privacy_reservoir h2 {
    margin: 3rem 0 1.5rem;
    font-size: 29px;
    line-height: 1.3;
    padding-left: 1.2rem;
    font-weight: 600;
    transform: translateX(-1.2rem);
    color: #000000;
    position: relative;
}.privacy_reservoir h2::before {
    position: absolute;
    bottom: 0.5rem;
    content: "";
    top: 0.5rem;
    border-radius: 2px;
    left: 0;
    width: 4px;
    background: rgb(176,191,191);
}.privacy_reservoir h3 {
    margin: 2.5rem 0 1.2rem;
    color: #000000;
    font-size: calc(29px * 0.85);
    transform: translateX(-1rem);
    position: relative;
    font-weight: 600;
    padding-left: 1rem;
}.privacy_reservoir h3::before {
    left: 0;
    content: "";
    background: rgb(112,125,164);
    top: 0.4rem;
    position: absolute;
    border-radius: 1.5px;
    width: 3px;
    bottom: 0.4rem;
}.privacy_reservoir h4 {
    margin: 2rem 0 1rem;
    color: #000000;
    padding-left: 0.8rem;
    font-size: calc(29px * 0.7);
    font-weight: 600;
    position: relative;
    transform: translateX(-0.8rem);
}.privacy_reservoir h4::before {
    top: 0.3rem;
    background: rgb(112,125,164,0.5);
    content: "";
    position: absolute;
    bottom: 0.3rem;
    border-radius: 1px;
    left: 0;
    width: 2px;
}.privacy_reservoir p {
    color: #000000;
    font-size: 14px;
    max-width: 95%;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
}.privacy_reservoir strong {
    font-weight: 600;
    color: #000000;
    position: relative;
    display: inline-block;
}.privacy_reservoir strong::after {
    bottom: -2px;
    height: 1px;
    position: absolute;
    left: 0;
    content: "";
    background-color: rgb(112,125,164,0.5);
    width: 100%;
}.privacy_reservoir ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
    position: relative;
    list-style: none;
}.privacy_reservoir li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    color: #000000;
    line-height: 1.6;
    font-size: 14px;
}.privacy_reservoir li::before {
    border: 1px solid rgb(176,191,191);
    background-color: rgb(176,191,191,0.5);
    left: 0;
    transform: rotate(45deg);
    content: "";
    top: 0.7rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 0.6rem;
    width: 0.6rem;
    position: absolute;
}.privacy_reservoir li:hover::before {
    background-color: rgb(176,191,191);
    transform: rotate(135deg);
}.privacy_reservoir span {
    color: #000000;
    position: relative;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: block;
    padding: 0.5rem 0;
    font-size: 14px;
}.privacy_reservoir span::after {
    height: 1px;
    left: 0;
    position: absolute;
    content: "";
    bottom: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(176,191,191,0.5) 0%, transparent 100%);
    width: 100%;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 8rem; }
}

@media (max-width: 991px) {.privacy_reservoir {
    padding: 4rem 1rem;
}.privacy_reservoir .container {
    padding: 2.5rem 3rem;
}.privacy_reservoir h1 {
    margin-bottom: 2rem;
    font-size: calc(43px * 0.9);
}.privacy_reservoir h2 {
    font-size: calc(29px * 0.9);
    margin: 2.5rem 0 1.2rem;
}
}

@media (max-width: 767px) {.privacy_reservoir {
    padding: 3rem 0.8rem;
}.privacy_reservoir .container {
    padding: 2rem 1.5rem;
}.privacy_reservoir h1 {
    padding-bottom: 1rem;
    font-size: calc(43px * 0.8);
    margin-bottom: 1.8rem;
}.privacy_reservoir h1::after {
    width: 6rem;
}.privacy_reservoir h2 {
    padding-left: 1rem;
    transform: translateX(-1rem);
    margin: 2rem 0 1rem;
    font-size: calc(29px * 0.8);
}.privacy_reservoir h3 {
    transform: translateX(-0.8rem);
    margin: 1.8rem 0 1rem;
    font-size: calc(29px * 0.7);
    padding-left: 0.8rem;
}.privacy_reservoir h4 {
    margin: 1.5rem 0 0.8rem;
    font-size: calc(29px * 0.6);
}.privacy_reservoir p, 
    .privacy_reservoir span, 
    .privacy_reservoir li {
    font-size: calc(14px * 0.95);
    margin-bottom: 1.2rem;
}.privacy_reservoir ul {
    padding-left: 0.8rem;
    margin: 1.2rem 0 1.8rem;
}.privacy_reservoir li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}
}

@media (max-width: 479px) {.privacy_reservoir {
    padding: 2rem 0.5rem;
}.privacy_reservoir .container {
    padding: 1.5rem 1.2rem;
}.privacy_reservoir h1 {
    font-size: calc(43px * 0.7);
    margin-bottom: 1.5rem;
}.privacy_reservoir h1::after {
    width: 5rem;
    height: 3px;
}.privacy_reservoir h2 {
    margin: 1.8rem 0 0.8rem;
    transform: translateX(-0.8rem);
    padding-left: 0.8rem;
    font-size: calc(29px * 0.7);
}.privacy_reservoir h2::before {
    width: 3px;
}.privacy_reservoir h3, .privacy_reservoir h4 {
    font-size: calc(29px * 0.6);
    transform: translateX(-0.7rem);
    padding-left: 0.7rem;
    margin: 1.5rem 0 0.8rem;
}.privacy_reservoir p, 
    .privacy_reservoir span, 
    .privacy_reservoir li {
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: calc(14px * 0.9);
}.privacy_reservoir ul {
    padding-left: 0.5rem;
}.privacy_reservoir li {
    padding-left: 1.3rem;
}.privacy_reservoir li::before {
    width: 0.5rem;
    height: 0.5rem;
}
}