﻿html,body {
    color: #000000;
    height: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
}

.site-prime {
    flex: 1 0 auto;
}

.content-wrapper {
    height: 100%;
    flex-direction: column;
    min-height: 100%;
    display: flex;
}

.connect-form .reach-card {
    position: relative;
    flex-direction: column-reverse;
    width: 100%;
    display: flex;
}

.connect-form .feedback-info div {
    background-color: #ffffff;
    flex-direction: column;
    max-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    min-height: 140px;
    justify-content: center;
    display: flex;
    flex: 1 0 calc(50% - 30px);
    border-radius: 23px;
}

.connect-form .support-panel form {
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
}

.connect-form .support-panel input[type="text"],
.connect-form .support-panel input[type="email"] {
    background-color: transparent;
    color: #000000;
    border: 1px solid rgb(222,228,216);
    height: 50px;
    border-radius: 10px;
    flex: 1 0 100%;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    padding: 15px 20px;
}

.connect-form .support-panel .feedback-request label {
    color: #000000;
    line-height: 1.5;
    font-size: 14px;
}

.connect-form .support-panel .feedback-request label a:hover {
    color: rgb(185,205,168);
}

.connect-form .support-panel .request-section:hover {
    box-shadow: 0 8px 25px rgb(185,205,168,0.5);
    transform: translateY(-3px);
}

.client-testimonials::after {
    left: -30px;
    height: 150px;
    width: 150px;
    content: "";
    background: rgb(185,205,168,0.5);
    transform: rotate(30deg);
    filter: blur(60px);
    position: absolute;
    bottom: -30px;
    border-radius: 100px;
    z-index: 1;
}

.client-testimonials .learner-reflections {
    display: grid;
    perspective: 1000px;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.client-testimonials .feedback-carousel h3 {
    font-weight: 600;
    position: relative;
    color: rgb(185,205,168);
    display: inline-block;
    font-size: 22px;
    margin-bottom: 0.75rem;
}

.client-testimonials .feedback-carousel:hover h3::after {
    transform: scaleX(1);
}

.client-testimonials .feedback-carousel div img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    height: 100%;
}

.client-testimonials .feedback-carousel:nth-child(even) {
    transform: rotateZ(1deg);
}

.client-testimonials .feedback-carousel::after {
    background: linear-gradient(135deg, transparent 50%, rgb(175,175,116,0.5) 50%);
    height: 100px;
    content: "";
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
    opacity: 0.3;
    width: 100px;
}

.course-program .knowledge-base {
    position: relative;
    height: 100%;
    width: 20%;
}

.course-program .knowledge-base {
    width: 16.6667%;
}

.course-program .container {
    align-items: center;
    z-index: 10;
    width: 100%;
    display: flex;
    grid-column: 1 / 3;
    padding: 0;
    height: 100%;
    grid-row: 1;
    justify-content: flex-end;
    position: relative;
}

.course-program .learn-professional h3 {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 1.5rem;
    font-size: 35px;
    color: rgb(185,205,168);
}

.course-program .learn-professional h3 {
    font-size: calc(35px * 0.9);
}

.course-program .learn-professional .request-section:hover::before {
    left: 0;
}

header::before {
    width: 100%;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    top: 0;
    height: 100%;
    left: 0;
    content: "";
    opacity: 0.1;
    position: absolute;
}

header .header-mainbar .header-nav .main-site:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

header .header-mainbar .head-base .first-teach {
    position: relative;
    transform-style: preserve-3d;
    margin: 0;
}

header .header-mainbar .head-base .first-teach a::after {
    opacity: 0;
    transform-origin: bottom center;
    transform: translateZ(-2px) rotateX(-10deg);
    background: linear-gradient(to top, rgb(175,175,116,0.5), transparent);
}

header .header-mainbar .head-base .first-teach:hover a::after {
    transform: translateZ(-10px) rotateX(-15deg);
}

.about-this {
    overflow: hidden;
    position: relative;
    background: rgb(222,228,216);
    padding: 120px 0;
}

.about-this .learning-tracks {
    gap: 60px;
    align-items: center;
    display: flex;
    position: relative;
    flex-direction: row-reverse;
}

.about-this .learning-tracks::after {
    filter: blur(60px);
    content: "";
    border-radius: 50%;
    left: -70px;
    width: 150px;
    height: 150px;
    position: absolute;
    background: rgb(175,175,116,0.5);
    z-index: -1;
    bottom: -50px;
    animation: pulse 6s infinite alternate-reverse;
}

.about-this .learn-studio {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.about-this .text-description::before {
    z-index: -1;
    opacity: 0.15;
    left: 0;
    width: 100%;
    top: 0;
    content: "";
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgb(185,205,168,0.5) 0%, transparent 100%);
}

.about-this .learn-track svg {
    fill: rgb(185,205,168);
    height: 48px;
    filter: drop-shadow(0 2px 10px rgb(185,205,168,0.5));
    transition: transform 0.4s ease, filter 0.4s ease;
    width: 48px;
}

.statistical-report {
    background: linear-gradient(135deg, rgb(222,228,216) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.statistical-report .container {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.statistical-report ul {
    transform-style: preserve-3d;
    perspective: 800px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    display: grid;
    gap: 25px;
    padding: 0;
    list-style: none;
}

.statistical-report .statistics-perks:hover {
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
}

.statistical-report .statistics-perks span {
    margin-bottom: 15px;
    font-size: 15px;
    color: #000000;
    z-index: 2;
    font-weight: 600;
    position: relative;
    transition: transform 0.3s ease;
    text-align: center;
}

.statistical-report .statistics-perks:nth-child(3n) {
    border-left-color: rgb(175,175,116);
}

.statistical-report .statistics-perks:nth-child(3n+1)::before {
    background: linear-gradient(
        90deg,
        rgb(175,175,116) 0%,
        rgb(185,205,168) 100%
    );
}

.statistical-report .statistics-perks:nth-child(5) {
    animation-delay: 0.5s;
}

.training-specialist::before {
    left: 0;
    z-index: 0;
    width: 100%;
    top: 0;
    opacity: 0.15;
    background: 
        radial-gradient(circle at 20% 30%, rgb(185,205,168,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(175,175,116,0.5) 0%, transparent 30%);
    height: 100%;
    position: absolute;
    content: "";
    transform: translateZ(-10px);
}

.training-specialist .feedback-carousel:hover .img-center-align {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.training-specialist .name {
    margin-bottom: 0.5rem;
    color: #000000;
    letter-spacing: 0.03em;
    transform: translateZ(15px);
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.training-specialist .feedback-carousel > div:nth-child(2) > div {
    transform: translateZ(5px);
    position: relative;
    margin-top: 0.75rem;
    font-size: calc(18px - 0.1rem);
    font-weight: 600;
    color: rgb(175,175,116);
}

.pricing-suite {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-suite .pay-plans {
    position: relative;
}

.pricing-suite h2 {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateY(0);
    margin-bottom: 20px;
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
}

.pricing-suite .price-schemes {
    padding: 30px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    justify-content: space-between;
    min-height: 420px;
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.03));
    display: flex;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-suite .trial-pricing li:hover {
    transform: translateY(-5px);
}

.pricing-suite .trial-pricing li:hover .price-schemes {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-suite .trial-pricing li:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.pricing-suite .trial-pricing li:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.gratitudeDiv .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}

.gratitudeDiv h2::after {
    width: 80px;
    transform: translateX(-50%);
    height: 3px;
    bottom: -15px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    background: rgb(185,205,168);
    content: "";
}

.gratitudeDiv .learning-tracks::after {
    top: 20px;
    background: linear-gradient(135deg, rgb(185,205,168,0.5) 0%, transparent 70%);
    width: 160px;
    transform: translateY(-10px);
    opacity: 0.2;
    content: "";
    height: 160px;
    right: 20px;
    border-radius: 50%;
    position: absolute;
}

.study-process::before {
    height: 100%;
    width: 100%;
    left: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgb(175,175,116,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(185,205,168,0.5) 0%, transparent 40%);
    z-index: 0;
    position: absolute;
    opacity: 0.15;
    content: "";
    top: 0;
}

.study-process h2::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(185,205,168) 0%, rgb(175,175,116) 100%);
    bottom: 0;
    width: 80px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
    transform-origin: left center;
    height: 4px;
    content: "";
}

.study-process p {
    margin: 0;
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    z-index: 2;
    position: relative;
}

.edu-cookies {
    justify-content: space-between;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.cookie-disclaimer svg, .cookie-disclaimer svg path, .cookie-disclaimer img {
    height: 100px;
    width: 100px;
    fill: rgb(185,205,168);
}

.privacy-module::before {
    opacity: 0.05;
    height: 100%;
    left: 0;
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(185,205,168,0.5) 0,
        rgb(185,205,168,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    z-index: 0;
}

.privacy-module h2 {
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
    font-size: 28px;
    color: rgb(175,175,116);
    margin: 2.5rem 0 1.2rem;
}

.privacy-module h4 {
    position: relative;
    font-weight: 400;
    margin: 2rem 0 0.8rem;
    font-size: calc(28px * 0.7);
    color: #000000;
    padding-left: 1.5rem;
}

.privacy-module p:hover {
    opacity: 1;
}

.privacy-module p strong::after {
    z-index: -1;
    transition: transform 0.3s ease;
    bottom: 0;
    content: "";
    background-color: rgb(185,205,168,0.5);
    transform: scaleX(0.95);
    width: 100%;
    position: absolute;
    transform-origin: left;
    left: 0;
    height: 30%;
}

.privacy-module li:hover {
    transform: translateX(3px);
}

.privacy-module span:hover {
    background-color: rgba(rgb(175,175,116,0.5), 0.1);
    opacity: 1;
}

.law-res::before {
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    position: absolute;
    width: 100%;
    content: '';
    height: 1px;
    opacity: 0.1;
    top: 0;
    left: 0;
}

.law-res .insta-feed {
    text-align: center;
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 14px;
    padding-top: 15px;
}

.law-res .header-site {
    width: 100%;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: space-between;
}

.law-res .head-base:hover {
    transform: perspective(1000px) rotateY(0);
}

.law-res .head-base h5::before {
    position: absolute;
    width: 50px;
    height: 1px;
    background: rgb(175,175,116);
    content: '';
    left: 0;
    bottom: -1px;
}

.law-res .head-base .header-site a {
    font-size: 14px;
    white-space: normal;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    align-items: center;
    word-break: break-word;
    display: flex;
    transition: all 0.3s ease;
}

.footer-careers .container {
    text-align: center;
}

footer::after {
    bottom: 0;
    content: '';
    top: 0;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.greeting-page .edu-skill input {
    display: none;
}

.greeting-page .course-begin {
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.42, 0, 0.58, 1);
    width: 500%;
    display: flex;
}

.greeting-page .learning-page label {
    position: relative;
    cursor: pointer;
    height: 14px;
    width: 14px;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.greeting-page .learning-page label::after {
    position: absolute;
    top: 50%;
    background: #ffffff;
    width: 6px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    content: "";
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    border-radius: 50%;
    height: 6px;
}

.greeting-page .text-description h1::after {
    background: rgb(185,205,168);
    width: 80px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    height: 3px;
    bottom: 0;
    content: "";
}

.greeting-page input:nth-of-type(1):checked ~ .course-begin {
    transform: translateX(0);
}

.greeting-page input:nth-of-type(4):checked ~ .course-begin {
    transform: translateX(-60%);
}

.greeting-page input:nth-of-type(7):checked ~ .course-begin {
    transform: translateX(-120%);
}

.greeting-page input:nth-of-type(10):checked ~ .course-begin {
    transform: translateX(-180%);
}

.pricing-suite .premium-cost p::-webkit-scrollbar {
    width: 4px;
}

.pricing-suite .premium-cost p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-suite .premium-cost p::-webkit-scrollbar-thumb {
    background-color: rgb(185,205,168);
}


@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media screen and (min-width: 992px) {.connect-form {
    min-height: 700px;
    padding: 100px 0;
}.connect-form .reach-card {
    flex-direction: row;
    align-items: center;
}.connect-form .feedback-info {
    margin-left: auto;
    justify-content: space-between;
    padding: 60px 0 60px 120px;
    gap: 30px;
    width: 65%;
    align-items: center;
}.connect-form .feedback-info h3 {
    padding-left: 0;
    margin-bottom: 40px;
    padding-right: 0;
    text-align: left;
}.connect-form .feedback-info h3::after {
    left: 0;
    transform: none;
}.connect-form .feedback-info div {
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    margin: 0;
}.connect-form .support-panel {
    z-index: 3;
    position: absolute;
    margin: 0;
    width: 45%;
    padding: 40px;
    left: 0;
    max-width: 450px;
}.connect-form .support-panel::before {
    top: 50%;
    left: -15px;
    transform: translateY(-50%) rotate(45deg);
}
}



@media (min-width: 1200px) {.client-testimonials .learner-reflections {
    grid-template-columns: repeat(3, 1fr);
}.client-testimonials .feedback-carousel {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}.client-testimonials .feedback-carousel:hover {
    transform: translateY(-15px) scale(1.03);
}}



@media (max-width: 992px) {header .header-mainbar {
    padding: 15px;
    flex-direction: column;
}header .header-mainbar .header-nav {
    margin: 0 0 15px 0;
}header .header-mainbar .head-base {
    perspective: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}header .header-mainbar .head-base .first-teach a {
    font-size: calc(12px - 1px);
    transform-style: flat;
    padding: 10px 15px;
}header .header-mainbar .head-base .first-teach:hover a {
    transform: none;
}header .header-mainbar .head-base .first-teach a::before,
    header .header-mainbar .head-base .first-teach a::after {
    display: none;
}
}



@media (min-width: 1200px) {.statistical-report {
    padding: 120px 40px;
}.statistical-report h3 {
    margin-bottom: 80px;
}.statistical-report ul {
    grid-template-columns: repeat(4, 1fr);
}.statistical-report .statistics-perks {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
                    box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}.statistical-report .statistics-perks:hover {
    transform: translateY(-8px) translateZ(15px);
}
}



@media (min-width: 1200px) {.training-specialist .feedback-carousel {
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem 4rem;
}.training-specialist .img-center-align {
    min-height: 500px;
}.training-specialist .container {
    padding: 0 2rem;
}
}



@media (max-width: 767px) {.training-specialist {
    padding: 4rem 0;
}.training-specialist .feedback-carousel {
    padding: 2rem;
}.training-specialist .img-center-align {
    margin-bottom: 1rem;
    height: 250px;
}.training-specialist .past-work {
    font-size: calc(18px - 0.05rem);
}.training-specialist .name {
    margin-top: 0.5rem;
}
}



@media (max-width: 576px) {.pricing-suite {
    padding: 50px 0;
}.pricing-suite h2 {
    font-size: calc(32px * 0.8);
}.pricing-suite .basic-rates {
    font-size: calc(12px * 0.85);
}.pricing-suite .price-schemes {
    padding: 20px 15px;
}.pricing-suite .premium-cost h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: calc(24px * 0.95);
}.pricing-suite .premium-cost p {
    margin-bottom: 20px;
    font-size: calc(12px * 0.9);
}.pricing-suite .rate-panel {
    font-size: calc(24px * 1.1);
}}



@media (max-width: 767px) {.study-process {
    padding: 70px 0;
}.study-process::after {
    opacity: 0.05;
}.study-process .learning-tracks {
    padding: 0 20px;
}.study-process h2 {
    padding-bottom: 15px;
    font-size: calc(35px * 0.85);
    margin-bottom: 25px;
}.study-process h2::after {
    height: 3px;
    width: 60px;
}.study-process:hover h2::after {
    width: 90px;
}.study-process .text-description {
    transform: translateZ(5px) translateX(0);
    padding: 30px 25px;
}.study-process:hover .text-description {
    transform: translateZ(7px) translateX(3px);
}.study-process p {
    font-size: calc(18px * 0.95);
    line-height: 1.6;
}
}



@media (max-width: 768px) {.law-res {
    padding: 50px 0 30px;
}.law-res .header-site {
    flex-direction: column;
    gap: 30px;
}.law-res .head-base {
    max-width: 100%;
    min-width: 100%;
}.law-res .company_holder {
    padding: 20px;
}.law-res .insta-feed {
    max-width: 100%;
}
}



@media (max-width: 991px) {.greeting-page .learning-tracks {
    min-height: 90vh;
}.greeting-page .edu-skill {
    height: 90vh;
}.greeting-page .text-description {
    padding: 30px 0 60px;
}.greeting-page .text-description h1 {
    font-size: calc(39px * 0.9);
}.greeting-page .text-description h3 {
    font-size: calc(22px * 0.9);
}.greeting-page .text-description p {
    font-size: calc(12px * 0.95);
}.greeting-page .learning-page {
    padding: 10px 16px;
    bottom: 25px;
}.greeting-page .learning-page label {
    height: 12px;
    width: 12px;
}
}


    
    @keyframes carousel-slide {
        0%, 12% {
            transform: translateX(0);
        }
        16%, 28% {
            transform: translateX(-16.6667%);
        }
        32%, 44% {
            transform: translateX(-33.3334%);
        }
        48%, 60% {
            transform: translateX(-50%);
        }
        64%, 76% {
            transform: translateX(-66.6667%);
        }
        80%, 92% {
            transform: translateX(-83.3334%);
        }
        100% {
            transform: translateX(0);
        }
    }



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}



@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

