.head-base {
    flex: 1 0 auto;
}

.head-base {
    padding-top: 2rem;
    position: relative;
    background: rgb(207,204,209);
    z-index: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    height: 30px;
    width: 30px;
}

.terms-legal {
    flex: 0 0 auto;
}


.welcome-section {
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(207,204,209), rgb(122,131,159,0.5) 70%);
    perspective: 1000px;
    position: relative;
}

.welcome-section h1 {
    color: #000000;
    font-weight: 700;
    font-size: calc(45px * 1.2);
    animation: fadeSlideIn 1.2s cubic-bezier(0.17, 0.67, 0.43, 0.99) forwards;
    position: relative;
    margin-bottom: 2rem;
    transform: translateZ(60px);
    text-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    grid-column: 1 / -1;
}

.welcome-section h1 {
    text-align: center;
    font-size: calc(45px * 1.1);
}



.welcome-section .start-base {
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.43, 0.99);
    transform: rotate(-2deg);
    padding: 2rem;
    border-left: 4px solid rgb(183,169,188);
    background: linear-gradient(120deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    flex-direction: column;
    display: flex;
}

.welcome-section svg path {
    fill: rgb(122,131,159);
    transition: fill 0.3s ease;
}

.welcome-section .request-form {
    position: relative;
    background: linear-gradient(135deg, rgb(183,169,188), rgb(122,131,159));
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.99);
    overflow: hidden;
    text-decoration: none;
    z-index: 10;
    color: #ffffff;
    font-size: 19px;
    border: none;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transform: translateZ(10px);
    box-shadow: 0 8px 20px rgba(94,170,168,0.3);
}

.welcome-section .img-caption::after {
    width: 100%;
    z-index: 3;
    height: 40%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 100%
    );
    left: 0;
    content: "";
}

footer .terms-legal {
    background: linear-gradient(135deg, rgb(183,169,188), rgb(122,131,159));
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: Arial, sans-serif;
    position: relative;
}

footer .contact-us {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
    display: flex;
}

footer .info_item:nth-child(1) {
    transform: translateY(-20px);
}

footer .info_item:nth-child(2) {
    transform: translateY(20px);
}

footer .info_item:nth-child(3) {
    transform: translateY(-10px);
}

footer .info_item:hover {
    background-color: rgb(122,131,159,0.5);
    transform: scale(1.05) translateY(0);
    z-index: 2;
}

footer .text_main_holder {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    display: flex;
}

footer .nav-main::before, footer .top-train::before, footer .subscribe_holder::before {
    opacity: 0.1;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    width: 150px;
    z-index: -1;
    content: "";
}

footer .nav-main::before {
    background-color: rgb(183,169,188);
    top: -50px;
    left: -50px;
}

footer .nav-main svg {
    margin-bottom: 20px;
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

footer .top-train h5::after, footer .subscribe_holder h5::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    height: 2px;
    transition: width 0.3s ease;
    content: "";
    width: 40px;
    background-color: #ffffff;
}

footer .nav-sitewrap a:hover {
    transform: translateY(-3px);
    background-color: rgb(122,131,159,0.5);
}

footer .input_holder input[type="email"] {
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    border: none;
    padding: 15px 20px;
}

footer .med-guides {
    margin-top: 60px;
    text-align: center;
    position: relative;
}

footer .rating-stars {
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgb(183,169,188,0.5);
    padding: 8px 20px;
    display: inline-block;
    font-size: 13px;
}

.training-specialist .container {
    z-index: 2;
    position: relative;
}

.training-specialist .user-review {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 27px;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: rotate(-2deg);
    display: grid;
    grid-template-areas: 
        "photo name"
        "photo job"
        "quote quote";
    grid-template-columns: 1fr 2fr;
    padding: 40px;
}

.training-specialist .job-timeline {
    background: linear-gradient(to right, rgb(207,204,209), transparent);
    margin-top: 20px;
    border-radius: 0 10px 10px 0;
    grid-area: quote;
    font-size: 17px;
    position: relative;
    color: #000000;
    border-left: 4px solid rgb(183,169,188);
    padding: 20px;
    line-height: 1.6;
}

.cookieUsageContainer p {
    font-size: 18px;
}

.cookie-view {
    margin-right: 10px;
    flex-shrink: 0;
}

.track-optin {
    border-bottom: 2px solid rgb(183,169,188);
    font-size: 24px;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    text-align: center;
    color: rgb(183,169,188);
    white-space: nowrap;
    line-height: 35px;
    min-width: 120px;
}

.privacy-sanctum::after {
    right: 20px;
    z-index: -1;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 10px;
    border: 1px dashed rgb(122,131,159);
    content: '';
    bottom: 20px;
}

.privacy-sanctum h3, .privacy-sanctum h4, .privacy-sanctum h5, .privacy-sanctum h6 {
    margin-top: 25px;
    border-left: 4px solid #000000;
    color: #000000;
    font-size: 23px;
    padding-left: 10px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

.privacy-sanctum section {
    background: none;
}

.privacy-sanctum p, .privacy-sanctum span, .privacy-sanctum div {
    color: #000000;
    padding-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.75;
}

.contact-information::after {
    width: 100%;
    z-index: 1;
    opacity: 0.05;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgb(183,169,188,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(183,169,188,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(183,169,188,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(183,169,188,0.5) 75%);
    background-size: 200px 200px;
    background-position: 0 0, 0 100px, 100px -100px, -100px 0px;
}

.contact-information .inquiry-grid::before {
    content: '';
    top: -5px;
    position: absolute;
    background: linear-gradient(45deg, rgb(122,131,159), rgb(183,169,188), rgb(122,131,159));
    bottom: -5px;
    left: -5px;
    animation: border-glow 5s infinite linear;
    right: -5px;
    z-index: -1;
    border-radius: calc(13px + 5px);
}

.contact-information .connect-grid h3::after {
    left: 0;
    transform: none;
    width: 60px;
}

.contact-information .connect-grid input[type="text"]:focus,
.contact-information .connect-grid textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(183,169,188,0.5);
    border-color: rgb(183,169,188);
    background-color: #ffffff;
}

.contact-information .connect-grid textarea {
    resize: vertical;
    height: 120px;
}

.contact-information .connect-grid .query-feedback {
    align-items: flex-start;
    display: flex;
    margin-bottom: 25px;
}

.contact-information .connect-grid .query-feedback label::before {
    height: 22px;
    top: 2px;
    position: absolute;
    content: '';
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    width: 22px;
    left: 0;
}

.contact-information .connect-grid .query-feedback a:hover {
    color: rgb(122,131,159);
    text-decoration: underline;
}

.contact-information .connect-grid .request-form:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.contact-information .connect-grid .request-form:hover::before {
    left: 100%;
}

.contact-information .help-links {
    flex: 1 1 40%;
    padding: 40px;
    background: linear-gradient(135deg, rgb(122,131,159) 0%, rgb(183,169,188) 100%);
    position: relative;
    overflow: hidden;
}

.contact-information .help-links h4::after {
    bottom: -10px;
    left: 0;
    border-radius: 10px;
    background: #ffffff;
    position: absolute;
    height: 3px;
    content: '';
    width: 60px;
}

.contact-information .help-links .support-block li svg {
    margin-right: 15px;
    height: 24px;
    flex-shrink: 0;
    width: 24px;
}

.contact-information .help-links .support-block li:hover svg path {
    fill: rgba(255, 255, 255, 0.8);
}

.contact-information .help-links .support-block li a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.course-summary .study-track::before {
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgb(207,204,209) 0%, transparent 40%);
    height: 100%;
    content: "";
    z-index: 2;
}

.course-summary .study-track::before {
    background: linear-gradient(0deg, rgb(207,204,209) 0%, transparent 80%);
}

.course-summary .learn-path {
    min-height: 33.33vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.course-summary .learn-path {
    width: 50%;
    min-height: auto;
}

.course-summary .why-trust {
    max-width: 600px;
    border-radius: 18px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.course-summary .why-trust {
    max-width: 100%;
    margin: 0 auto;
}

.course-summary .skill-track h3 {
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    font-size: 36px;
    position: relative;
    color: rgb(183,169,188);
    line-height: 1.2;
}

.course-summary .skill-track h3 {
    font-size: calc(36px * 1.1);
}

.course-summary .skill-track .request-form {
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgb(183,169,188);
    position: relative;
    font-size: 16px;
    align-self: flex-start;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 18px;
}

header .main-lead {
    padding: 1.3rem 3rem;
    position: relative;
    align-items: center;
    display: flex;
    z-index: 5;
    justify-content: space-between;
}

header .nav-main {
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50% 30% 60% 40% / 40% 50% 30% 50%;
    flex: 0 0 auto;
    margin-right: 2rem;
    overflow: hidden;
    transition: all 0.6s ease;
    position: relative;
}

header .site-prime img {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    max-height: 38px;
}

header .top-train:hover::before {
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.2;
}

header .main-nav a {
    padding: 0.8rem 1.3rem;
    overflow: hidden;
    text-decoration: none;
    align-items: center;
    border-radius: 60% 40% 40% 60% / 40% 50% 50% 60%;
    position: relative;
    font-size: 16px;
    z-index: 1;
    font-weight: 600;
    color: #000000;
    justify-content: center;
    transition: all 0.4s ease;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
}

header .main-nav:hover::after {
    transform: translateX(-50%) scale(1);
}

header .main-lead::after {
    background: radial-gradient(circle, rgb(122,131,159,0.5) 0%, transparent 70%);
    bottom: -75px;
    position: absolute;
    filter: blur(30px);
    left: -75px;
    border-radius: 50%;
    width: 150px;
    opacity: 0.1;
    height: 150px;
    content: '';
}

.learning-outcomes .why-trust {
    width: 100%;
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.learning-outcomes .img-caption:hover {
    transform: rotateY(5deg) translateX(-3vw);
}

.learning-outcomes .img-caption::after {
    background: linear-gradient(to right, rgb(183,169,188,0.5) 0%, transparent 100%);
    position: absolute;
    z-index: 1;
    content: '';
    inset: 0;
}

.learning-outcomes h2 {
    border-left: 5px solid rgb(183,169,188);
    padding-left: 2rem;
    position: relative;
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 3rem;
}

.learning-outcomes .text_main_holder > div:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(1rem) scale(1.03);
}

.learning-outcomes .text_main_holder svg {
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 3rem;
    width: 3rem;
    margin-right: 1.5rem;
}

.learning-outcomes .text_main_holder p {
    color: #000000;
    margin: 0;
    line-height: 1.6;
    font-size: 18px;
}

.thanksSpace::after {
    animation: float 20s ease-in-out infinite alternate;
    content: "";
    filter: blur(100px);
    height: 500px;
    left: -100px;
    width: 500px;
    position: absolute;
    z-index: 0;
    background: rgb(122,131,159,0.5);
    bottom: -100px;
}

.thanksSpace .why-trust {
    position: relative;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
    background: #ffffff;
    border-radius: 28px;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.thanksSpace ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.thanksSpace li {
    transform: translateX(20px);
    opacity: 0;
    position: relative;
    margin-bottom: 20px;
    animation: slideRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
    padding-left: 30px;
}

.about-this {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgb(207,204,209) 100%);
    padding: 120px 0;
}

.about-this::before {
    width: 50%;
    z-index: 1;
    content: "";
    top: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(183,169,188,0.5) 0,
        rgb(183,169,188,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    right: 0;
    height: 100%;
    opacity: 0.05;
    position: absolute;
}

.about-this h2::before {
    left: 20px;
    height: 4px;
    background: rgb(183,169,188);
    content: "";
    bottom: -15px;
    position: absolute;
    width: 60px;
}

.about-this .team-culture:nth-child(1) {
    flex-direction: column;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    grid-row: 1;
    position: relative;
    position: relative;
    padding: 60px 40px 60px 20px;
    z-index: 3;
    grid-column: 1 / 3;
}

.about-this .team-culture:nth-child(1):hover::after {
    width: 150px;
    top: -10%;
    left: -10%;
    height: 150px;
}

.about-this .team-culture h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 19px;
    display: inline-block;
}

.about-this .team-culture:nth-child(2) h3::after {
    background: #ffffff;
}

.about-this .team-culture:nth-child(1) p {
    color: #000000;
}

.about-this .team-culture:nth-child(2)::after {
    position: absolute;
    bottom: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    content: "";
    border-radius: 10px;
    right: 30px;
    width: 80px;
    transform: rotate(45deg);
    z-index: -1;
    height: 80px;
}

.training-method::before {
    position: absolute;
    z-index: 1;
    height: 100%;
    content: "";
    transform: perspective(1000px) rotateX(5deg);
    left: 0;
    width: 100%;
    top: 0;
    background: linear-gradient(45deg, rgba(rgb(183,169,188,0.5), 0.05) 15%, transparent 15%, transparent 85%, rgba(rgb(183,169,188,0.5), 0.05) 85%);
    background-size: 60px 60px;
    pointer-events: none;
}

.training-method h2::after {
    background: linear-gradient(90deg, rgb(183,169,188) 0%, rgb(122,131,159) 100%);
    width: 120px;
    left: 0;
    position: absolute;
    height: 4px;
    bottom: -0.75rem;
    content: "";
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.training-method p {
    color: #000000;
    position: relative;
    text-align: left;
    margin: 0;
    line-height: 1.8;
    font-size: 13px;
    z-index: 2;
}

.pricing-section::before {
    height: 100%;
    content: "";
    background: linear-gradient(135deg, rgb(183,169,188,0.5) 0%, transparent 70%);
    top: 0;
    pointer-events: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}

.pricing-section .indv-cost {
    gap: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

.pricing-section .learn-deals::before {
    z-index: -1;
    content: "";
    width: 40px;
    height: 40px;
    left: -20px;
    position: absolute;
    top: 20px;
    transform: rotate(45deg);
    background-color: rgb(183,169,188);
}

.pricing-section .learn-deals .learning-price {
    max-width: 80%;
    line-height: 1.6;
    font-size: 15px;
    color: #000000;
}

.pricing-section .pricing-fees {
    transition: all 0.4s ease;
    color: inherit;
    text-decoration: none;
    position: relative;
    transform-style: preserve-3d;
    display: block;
}

.pricing-section .pricing-fees:nth-child(odd) .value-fees {
    transform: rotate(-1deg);
}

.pricing-section .pricing-fees:nth-child(even) .value-fees {
    transform: rotate(1deg);
}

.pricing-section .study-rates::before {
    top: 0;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.pricing-section .study-rates h3::after {
    background: rgb(183,169,188);
    height: 3px;
    left: 0;
    content: "";
    width: 40px;
    position: absolute;
    transition: width 0.3s ease;
    bottom: -8px;
}

.pricing-section .study-rates p {
    margin-top: 1rem;
    flex: 1;
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
}

.pricing-section .img-caption::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    height: 50%;
    position: absolute;
    z-index: 1;
    width: 100%;
    content: "";
    left: 0;
}


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



@media (min-width: 992px) {footer .text_main_holder {
    flex-wrap: nowrap;
}
}



@media (max-width: 991px) {footer .info_item {
    height: 180px;
    flex: 0 1 180px;
}footer .info_item:nth-child(1),
    footer .info_item:nth-child(2),
    footer .info_item:nth-child(3),
    footer .info_item:nth-child(4) {
    transform: none;
}
}



@media (max-width: 767px) {footer .terms-legal {
    padding: 60px 0 30px;
}footer .contact-us {
    flex-direction: column;
    margin-bottom: 40px;
}footer .info_item {
    flex: 0 1 100px;
    padding: 15px;
    height: 100px;
}footer .nav-main, footer .top-train, footer .subscribe_holder {
    padding: 25px 20px;
}footer .med-guides {
    margin-top: 40px;
}
}


@media only screen and (max-width: 1200px) {.cookieUsageContainer {
    padding: 20px;
}}


@media only screen and (max-width: 800px) {.cookie-view {
    display: none;
}.digital-consent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookieUsageContainer h5 {
    text-align: center;
}.cookieUsageContainer p {
    text-align: center;
}.online-cookies {
    margin-bottom: 20px;
}body .inner-container .track-optin {
    margin-left: 0;
}}



@media (max-width: 768px) {.contact-information {
    padding: 40px 0;
}.contact-information h3 {
    font-size: calc(38px - 4px);
    margin-bottom: 30px;
}.contact-information .connect-grid h3,
    .contact-information .help-links h4 {
    margin-bottom: 20px;
    font-size: calc(20px - 2px);
}.contact-information .connect-grid input[type="text"],
    .contact-information .connect-grid textarea {
    margin-bottom: 15px;
    padding: 12px 15px;
}.contact-information .connect-grid textarea {
    height: 100px;
}.contact-information .connect-grid .request-form {
    padding: 12px 25px;
    font-size: calc(16px - 1px);
}.contact-information .help-links .support-block li {
    margin-bottom: 20px;
}.contact-information .help-links .support-block li svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
}



@media (max-width: 767px) {header {
    padding: 0;
}header .main-lead {
    padding: 0.8rem 1.5rem;
}header .nav-main {
    border-radius: 40% 60% 50% 50% / 40% 50% 50% 40%;
    max-width: 140px;
    padding: 0.6rem;
}header .site-prime img {
    max-height: 35px;
}header .top-train {
    scrollbar-width: thin;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    margin-top: 0.8rem;
    -webkit-overflow-scrolling: touch;
}header .top-train::-webkit-scrollbar {
    height: 3px;
}header .top-train::-webkit-scrollbar-thumb {
    background: rgb(183,169,188,0.5);
    border-radius: 10px;
}header .main-nav {
    flex: 0 0 auto;
    margin: 0 0.2rem;
}header .main-nav a {
    white-space: nowrap;
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    font-size: calc(16px - 2px);
    padding: 0.5rem 0.8rem;
}header .main-nav::after {
    display: none;
}header::after {
    height: 5px;
}
}



@media (max-width: 576px) {.learning-outcomes .why-trust {
    max-width: 95%;
}.learning-outcomes .img-caption {
    height: 250px;
}.learning-outcomes h2 {
    padding-left: 1.5rem;
}.learning-outcomes .text_main_holder > div {
    padding: 1.2rem;
}.learning-outcomes .text_main_holder svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
}}



@media (max-width: 576px) {.thanksSpace {
    padding: 60px 0;
}.thanksSpace h2 {
    margin-bottom: 20px;
    font-size: calc(36px * 0.7);
}.thanksSpace .why-trust {
    padding: 25px 20px;
}.thanksSpace li {
    padding-left: 20px;
}.thanksSpace li::before {
    width: 8px;
    top: 6px;
    height: 8px;
}.thanksSpace li span {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}}



@media (max-width: 991px) {.training-method {
    padding: 4rem 0;
}.training-method .why-trust {
    padding: 0 1.5rem;
}.training-method h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 2rem;
}.training-method .reading-block {
    padding: 2rem 2.5rem;
}
}



@media (max-width: 767px) {.training-method {
    padding: 3rem 0;
}.training-method .why-trust {
    padding: 0 1rem;
}.training-method h2 {
    margin-bottom: 1.5rem;
    font-size: calc(31px * 0.8);
}.training-method h2::after {
    width: 80px;
    height: 3px;
}.training-method .reading-block {
    padding: 1.5rem 2rem;
}.training-method p {
    line-height: 1.7;
    font-size: calc(13px * 0.95);
}
}



@media (min-width: 1200px) {.pricing-section .program-price {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.pricing-section .study-rates {
    min-height: 300px;
}
}



@media (max-width: 767px) {.pricing-section {
    padding: 3rem 0;
}.pricing-section .container {
    padding: 0 1.5rem;
}.pricing-section .program-price {
    grid-template-columns: 1fr;
}.pricing-section .learn-deals h2 {
    font-size: calc(36px * 0.8);
}.pricing-section .study-rates {
    padding: 1.5rem;
}.pricing-section .enroll-cost {
    font-size: calc(19px * 1.5);
}.pricing-section .img-caption {
    height: 180px;
}
}

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



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



@keyframes carousel-vertical {
    0%, 16% {
        transform: translateY(0);
    }
    20%, 36% {
        transform: translateY(-33.33%);
    }
    40%, 56% {
        transform: translateY(-66.66%);
    }
    60%, 76% {
        transform: translateY(-100%);
    }
    80%, 96% {
        transform: translateY(-133.33%);
    }
    100% {
        transform: translateY(0);
    }
}



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



@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}



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

