header,footer {
    width: 100%;
}

html,body {
    color: #000000;
    min-height: 100%;
    auto
contain
touch-action: none;
    font-family: Arial, sans-serif;
    height: 100%;
}

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

footer .footer_classes {
    position: relative;
    z-index: 1;
}

footer .info_item {
    align-items: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    max-width: 300px;
    background-color: rgba(0, 0, 0, 0.2);
    flex: 1 1 200px;
}

footer .info_item svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    margin-right: 15px;
    flex-shrink: 0;
}

footer .text_main_holder {
    grid-template-columns: 1fr;
    margin-top: -30px;
    gap: 40px;
    display: grid;
    position: relative;
}

footer .leaderboard {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    max-width: 350px;
    color: #000000;
    line-height: 1.6;
}

footer .top_master h5::after {
    content: "";
    background: linear-gradient(90deg, rgb(212,209,198), transparent);
    height: 2px;
    width: 100%;
    bottom: -8px;
    left: 0;
    position: absolute;
}

footer .head_nav a::after {
    height: 1px;
    width: 0;
    bottom: 0;
    transition: width 0.3s ease;
    content: "";
    background-color: rgb(212,209,198);
    left: 0;
    position: absolute;
}

footer .subscribe_holder h5 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
}

footer .subscribe_holder p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 13px;
}

footer .subscribe_box {
    border-radius: 10px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
}

header .first_pagebar::before {
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgb(179,174,161,0.5) 0%, transparent 60%);
    position: absolute;
}

header .first_pagebar .header_guide .top_learning {
    display: block;
    padding: 0.5rem 1rem;
    position: relative;
}

header .first_pagebar .top_master {
    list-style: none;
    padding: 0;
    width: 80vw;
    position: relative;
    justify-content: flex-end;
    padding-right: calc((100vw - 100%) / 2);
    background: linear-gradient(90deg, transparent, rgb(212,209,198,0.5) 30%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    margin: 0;
}

header .first_pagebar .top_master .head_prime a::after {
    bottom: 0.8rem;
    width: 0;
    position: absolute;
    content: "";
    transition: width 0.3s ease;
    background: rgb(179,174,161);
    height: 2px;
    left: 1.5rem;
}

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

.teaching_history .img_item::after {
    background: rgb(212,209,198);
    width: 100%;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.15;
    transition: opacity 0.4s ease;
    position: absolute;
}

.teaching_history .img_item:hover ~ .name,
.teaching_history .img_item:hover ~ span:not(.name) {
    transform: translateX(5px);
}

.teaching_history .career_projects {
    margin: 0;
    line-height: 1.8;
    font-size: 12px;
    padding: 50px 40px;
    font-weight: 400;
    flex-direction: column;
    position: relative;
    font-family: Arial, sans-serif;
    display: flex;
    color: #000000;
    justify-content: center;
}

.offer_grid {
    --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background-color: var(--pricing-bg);
    --pricing-bg: #f5f7fa;
    --card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --card-accent: rgb(212,209,198);
    --card-border: linear-gradient(135deg, rgb(212,209,198), rgb(179,174,161));
    --card-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    padding: 120px 0 80px;
    --card-bg: #ffffff;
}

.offer_grid .learn_fees {
    flex-direction: column;
    display: flex;
}

.offer_grid .learning_deals h2 {
    display: inline-block;
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.offer_grid .package_rates {
    display: grid;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.offer_grid .pricing_pack:hover {
    transform: translateY(-10px);
}

.offer_grid .pricing_pack:hover .basic_cost {
    box-shadow: var(--card-hover-shadow);
}

.offer_grid .basic_cost::before {
    transition: transform 0.5s ease;
    height: 5px;
    position: absolute;
    width: 100%;
    top: 0;
    transform-origin: left;
    content: "";
    transform: scaleX(0);
    left: 0;
    background: var(--card-border);
}

.offer_grid .study_price {
    color: var(--card-accent);
    font-size: calc(22px + 6px);
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 700;
}

.offer_grid .img_item {
    transition: transform 0.6s ease;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.offer_grid .pricing_pack:hover .img_item::after {
    opacity: 1;
}

.offer_grid .pricing_pack:hover .img_item {
    transform: scale(1.05);
}

.thanksGrid::before {
    opacity: 0.8;
    left: 0;
    z-index: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
    background: 
        radial-gradient(circle at 20% 30%, rgba(rgb(212,209,198), 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(rgb(179,174,161), 0.05) 0%, transparent 60%);
}

.thanksGrid h2::after {
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out forwards;
    bottom: -0.8rem;
    width: 5rem;
    height: 4px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(212,209,198) 0%, rgb(179,174,161) 100%);
    content: "";
    transform-origin: left center;
}

.thanksGrid .skill_classes::after {
    content: "";
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 40%;
    background-size: 12px 12px;
    z-index: -1;
    position: absolute;
    background-image: 
        linear-gradient(45deg, rgba(rgb(212,209,198), 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(rgb(212,209,198), 0.03) 25%, transparent 25%);
    height: 30%;
}

.privacy_niche {
    color: #000000;
    line-height: 1.8;
    padding: 60px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    background-color: rgb(239,238,234);
    position: relative;
}

.privacy_niche h1 {
    color: rgb(212,209,198);
    margin-bottom: 30px;
    z-index: 1;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(212,209,198);
    position: relative;
    grid-column: span 2;
    font-weight: 700;
    font-size: 46px;
}

.privacy_niche h6 {
    font-size: 17px;
}

.privacy_niche li {
    margin-bottom: 15px;
    position: relative;
    border-left: 3px solid rgb(179,174,161);
    line-height: 1.7;
    padding-left: 10px;
    z-index: 1;
}

.privacy_niche span {
    color: rgb(212,209,198);
    font-weight: 600;
}

.educational_rewards {
    overflow: hidden;
    position: relative;
    background-size: 60px 60px;
    padding: 100px 0;
    font-family: Arial, sans-serif;
    background: rgb(239,238,234);
    background-image: 
        linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
}

.educational_rewards .img_item:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    box-shadow: 
        20px 20px 40px rgba(0,0,0,0.15),
        -20px -20px 40px rgba(255,255,255,0.8),
        inset 0 0 0 rgba(0,0,0,0.1),
        inset 0 0 0 rgba(255,255,255,0.7);
}

.educational_rewards .statement_holder {
    position: relative;
}

.educational_rewards h1::after {
    transform-origin: left center;
    transition: width 0.4s ease-out;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(212,209,198), rgb(179,174,161));
    content: "";
    position: absolute;
    width: 120px;
    bottom: -10px;
    border-radius: 2px;
}

.educational_rewards li:hover {
    transform: translateY(-5px);
    box-shadow: 
        8px 8px 16px rgba(0,0,0,0.05),
        -8px -8px 16px rgba(255,255,255,0.9),
        inset 0 0 0 rgba(0,0,0,0.03),
        inset 0 0 0 rgba(255,255,255,0.8);
}

.educational_rewards li:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.15));
}

.educational_rewards li:hover svg path {
    fill: rgb(212,209,198);
}

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

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

.cookie_dialog_window p a {
    color: rgb(212,209,198);
    text-decoration: none;
}

#cookieOverlayAlert:checked ~ .cookie_dialog_window {
    opacity: 0;
    visibility: hidden;
}

.wrapper-template .track_edu {
    background: rgb(212,209,198);
    margin-left: 30px;
    padding: 10px;
    color: #ffffff;
    font-size: 20px;
}

header .top_plank .top_slab {
    padding: 15px 0 10px 0;
    line-height: 21px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    font-size: 12px;
}

.get_in_touch::after {
    animation: gradientShift 15s infinite alternate;
    position: absolute;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(212,209,198,0.5) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgb(179,174,161,0.5) 0%, transparent 40%);
    content: '';
    top: 0;
    z-index: 2;
    left: 0;
}



.get_in_touch .inquiry_form h3 {
    color: #ffffff;
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 32px;
    padding-bottom: 15px;
}

.get_in_touch .inquiry_form div {
    border-radius: 10px;
    align-items: center;
    margin-bottom: 25px;
    border-left: 3px solid rgb(179,174,161);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
}

.get_in_touch .inquiry_form div:hover svg path {
    fill: rgb(179,174,161);
}

.get_in_touch .inquiry_form a:hover {
    text-decoration: underline;
    color: rgb(179,174,161);
}

.get_in_touch .help_info::after {
    bottom: 0;
    background: rgb(179,174,161,0.5);
    position: absolute;
    width: 100px;
    left: 0;
    height: 100px;
    border-radius: 0 100% 0 0;
    content: '';
}

.get_in_touch form input[type="text"],
.get_in_touch form input[type="email"] {
    color: #000000;
    width: 100%;
    font-size: 16px;
    border: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    background: rgba(240, 240, 240, 0.8);
}

.get_in_touch .inquiry_query input[type="checkbox"] {
    -webkit-appearance: none;
    width: 20px;
    margin-right: 10px;
    border: 2px solid rgb(212,209,198);
    position: relative;
    border-radius: 10px;
    flex-shrink: 0;
    height: 20px;
    appearance: none;
    background: rgba(240, 240, 240, 0.8);
    cursor: pointer;
}

.get_in_touch .help_card {
    cursor: pointer;
    border: none;
    width: 100%;
    background: linear-gradient(135deg, rgb(212,209,198) 0%, rgb(179,174,161) 100%);
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    color: #ffffff;
    z-index: 1;
    overflow: hidden;
}

.follow::after {
    top: 0;
    background: radial-gradient(ellipse at center, rgb(212,209,198,0.5) 0%, transparent 70%);
    position: absolute;
    height: 100%;
    left: 0;
    content: "";
    width: 100%;
    z-index: -2;
}

.follow h3 {
    line-height: 1.4;
    margin: 0;
    position: relative;
    letter-spacing: 0.5px;
    color: #ffffff;
    font-size: calc(23px * 1.1);
    font-weight: 600;
    padding-left: 1.5rem;
}

.follow .input_holder {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    transform: translateZ(0);
    max-width: 650px;
    position: relative;
    gap: 1.25rem;
}

.follow .input_holder div:focus-within::before {
    opacity: 0.3;
}

.follow .subscribe_alert:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(179,174,161,0.5);
    transform: translateY(-2px);
    border-color: rgb(179,174,161);
    background: rgba(255,255,255,0.15);
}

.follow .subscribe_alert::placeholder {
    color: rgba(255,255,255,0.6);
}

.follow .subscribe_box:hover {
    box-shadow: 0 7px 14px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.follow .subscribe_box:hover::before {
    left: 100%;
}

.follow .subscribe_box:active {
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.title_welcome::before {
    width: 100%;
    background: repeating-linear-gradient(
    45deg,
    rgb(179,174,161,0.5) 0,
    rgb(179,174,161,0.5) 1px,
    transparent 1px,
    transparent 25px
  );
    animation: patternShift 30s linear infinite;
    opacity: 0.08;
    left: 0;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
}

.title_welcome .learn_skillspro > div {
    transform-style: preserve-3d;
    transform: translateZ(0);
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.title_welcome .success_path {
    min-height: 450px;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 65vh;
    box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) translateZ(0) scale(0.98);
    transform-style: preserve-3d;
    border-radius: 3px;
}

.title_welcome .success_path::after {
    mix-blend-mode: overlay;
    z-index: 2;
    content: "";
    background: linear-gradient(
    135deg,
    rgb(179,174,161,0.5) 0%,
    transparent 60%
  );
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.title_welcome .success_path p::before {
    top: 0.5rem;
    transition: transform 0.3s ease;
    position: absolute;
    transform: scaleY(0.8);
    width: 4px;
    content: "";
    left: 0;
    background: rgb(179,174,161);
    height: calc(100% - 1rem);
}

.title_welcome .title_style_header::after {
    width: 60%;
    background: rgb(179,174,161);
    height: 3px;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    content: "";
    bottom: -0.5rem;
    transform-origin: left;
    position: absolute;
    transform: scaleX(0.8);
}

.our_team::before {
    top: -10%;
    width: 40%;
    content: "";
    right: -5%;
    transform: rotate(-15deg) skewX(15deg);
    z-index: 1;
    position: absolute;
    height: 70%;
    opacity: 0.07;
    background: linear-gradient(120deg, rgb(212,209,198,0.5) 0%, transparent 80%);
}

.our_team h1::after {
    content: "";
    border-radius: 2px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    position: absolute;
    background: linear-gradient(90deg, rgb(212,209,198) 0%, rgb(179,174,161) 100%);
}

.our_team .quick_skill:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
                0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.our_team .quick_skill h4 {
    position: relative;
    font-weight: 700;
    display: inline-block;
    font-size: 23px;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 0;
}

.our_team .quick_skill div {
    line-height: 1.8;
    max-height: 300px;
    padding-right: 15px;
    opacity: 0.9;
    color: #000000;
    overflow-y: auto;
    font-weight: 400;
    font-size: 18px;
}

.potential_students::before {
    opacity: 0.5;
    content: "";
    z-index: 0;
    background-image: 
        radial-gradient(circle at 75% 25%, rgb(212,209,198,0.5) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgb(179,174,161,0.5) 0%, transparent 50%);
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.potential_students .skill_classes:hover {
    transform: translateY(-10px);
}

.potential_students h4 {
    padding: 35px 30px;
    background: linear-gradient(120deg, rgb(212,209,198) 0%, rgb(179,174,161) 100%);
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    position: relative;
    text-align: center;
    font-weight: 700;
    margin: 0;
}

.potential_students div {
    padding: 40px;
    background: #ffffff;
}

.potential_students div p:last-child {
    margin-bottom: 0;
}

.potential_students div p::before {
    content: "";
    transition: all 0.3s ease;
    top: 0;
    width: 4px;
    background: linear-gradient(180deg, rgb(212,209,198), rgb(179,174,161));
    left: 0;
    position: absolute;
    height: 100%;
}

.potential_students div p:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.potential_students div p svg {
    height: 28px;
    min-width: 28px;
    width: 28px;
    margin-right: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.program_details .skill_classes {
    flex-direction: column;
    flex-direction: column;
    position: relative;
    align-items: center;
    display: flex;
}

.program_details .training_flow::before {
    content: '';
    position: absolute;
    left: -30px;
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
    width: 150px;
    top: -50px;
    height: 150px;
    background-color: rgb(212,209,198);
}

.program_details .training_flow h3::after {
    background-color: rgb(212,209,198);
    width: 80px;
    border-radius: 2px;
    left: 50%;
    height: 4px;
    content: '';
    position: absolute;
    transform: translateX(-50%);
    bottom: -15px;
}

.program_details .training_flow .help_card:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.program_details .training_flow .help_card:hover::before {
    transform: translateY(0);
}

.program_details .skill_up {
    margin-top: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.program_details .skill_up {
    margin-top: 2rem;
    height: 300px;
}

.program_details .skill_up:hover .coding_expert {
    animation-play-state: paused;
}

.program_details .education_track img {
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.program_details .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}



@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 (min-width: 768px) {footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .subscribe_box {
    white-space: nowrap;
}footer .header_guide {
    padding-top: 80px;
}
}



@media screen and (max-width: 767px) {header .first_pagebar .top_master {
    padding: 0.5rem 0;
}header .first_pagebar .top_master .head_prime {
    width: 50%;
}header .first_pagebar .top_master .head_prime a {
    text-align: center;
    font-size: calc(14px - 2px);
    padding: 0.6rem 0.8rem;
}header .first_pagebar .top_master .head_prime a::after {
    display: none;
}}



@media (max-width: 768px) {.teaching_history {
    padding: 80px 0;
}.teaching_history .container {
    padding: 0 20px;
}.teaching_history .learner_feedback {
    grid-template-columns: 1fr;
    gap: 0;
}.teaching_history .img_item {
    height: 300px;
    min-height: 300px;
}.teaching_history .career_projects {
    padding: 35px 25px;
}.teaching_history .name {
    bottom: 50px;
    font-size: calc(19px * 0.9);
    left: 25px;
}.teaching_history .learner_feedback span:not(.name) {
    font-size: calc(12px * 0.95);
    left: 25px;
    bottom: 25px;
}.teaching_history .career_projects::before {
    height: 20px;
    top: 25px;
    left: 25px;
    width: 24px;
}.teaching_history .career_projects::after {
    right: 25px;
    height: 20px;
    bottom: 25px;
    width: 24px;
}
}



@media (max-width: 767px) {.offer_grid {
    padding: 60px 0 40px;
}.offer_grid .learning_deals {
    margin-bottom: 40px;
}.offer_grid .package_rates {
    max-width: 450px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}.offer_grid .value_pricing {
    padding: 25px 20px;
}.offer_grid .value_pricing h3 {
    font-size: 22px;
}.offer_grid .study_price {
    font-size: calc(22px + 2px);
}.offer_grid .value_pricing p {
    font-size: calc(17px - 1px);
}.offer_grid .img_item {
    height: 180px;
}
}



@media (max-width: 576px) {.thanksGrid {
    padding: 3rem 0;
}.thanksGrid .container {
    padding: 0 1.5rem;
}.thanksGrid h2 {
    font-size: calc(33px * 0.7);
    margin-bottom: 1.5rem;
}.thanksGrid .skill_classes {
    padding: 1.5rem;
}.thanksGrid li::before {
    height: 6px;
    width: 6px;
    left: -1.2rem;
}}



@media (max-width: 991px) {.educational_rewards {
    padding: 80px 0;
}.educational_rewards .container {
    padding: 0 20px;
}.educational_rewards .skill_classes {
    padding: 30px;
}.educational_rewards h1 {
    font-size: calc(46px * 0.85);
}.educational_rewards ul {
    grid-template-columns: 1fr;
}
}


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


@media only screen and (max-width: 800px)  {.wrapper-template .track_edu {
    margin-bottom: 10px;
    margin-left: 0;
}}



@media (max-width: 991px) {.get_in_touch {
    padding: 80px 0;
}.get_in_touch .request_section {
    flex-direction: column;
}.get_in_touch .inquiry_form,
    .get_in_touch .help_info {
    width: 100%;
}.get_in_touch .inquiry_form {
    padding: 40px 30px;
}.get_in_touch .inquiry_form h3,
    .get_in_touch form h3 {
    font-size: calc(32px * 0.9);
    margin-bottom: 30px;
}
}



@media (min-width: 768px) {.follow {
    padding: 5rem 3rem;
}.follow .skill_classes {
    align-items: center;
    transform: perspective(1000px) rotateX(1deg);
    padding: 3rem;
    grid-template-columns: 1.2fr 1fr;
}.follow h3 {
    font-size: 23px;
    padding-right: 2rem;
}.follow .input_holder {
    flex-direction: row;
    align-items: stretch;
}.follow .input_holder div {
    flex: 1;
}.follow .subscribe_alert {
    height: 100%;
}
}



@media (max-width: 767px) {.follow .skill_classes {
    padding: 2rem 1.5rem;
}.follow h3 {
    margin-bottom: 1.5rem;
    font-size: calc(23px * 0.9);
}.follow .subscribe_box {
    width: 100%;
    margin-top: 0.5rem;
}
}



@media (max-width: 768px) {.title_welcome .learn_skillspro {
    padding: 1.5rem 1rem;
}.title_welcome h3 {
    font-size: calc(18px * 1.1);
    margin-bottom: 1.5rem;
    transform: perspective(1000px) rotateX(1deg);
    padding: 1.25rem;
}.title_welcome .success_path {
    height: 50vh;
    min-height: 350px;
}.title_welcome .success_path > div {
    padding: 1.5rem;
}.title_welcome .success_path p {
    font-size: calc(15px * 0.95);
    max-width: 100%;
    padding-left: 1rem;
}.title_welcome .title_style_header {
    font-size: calc(34px * 1.1);
}.title_welcome .success_path p::before {
    width: 3px;
}
}



@media (min-width: 992px) {.our_team {
    padding: 120px 0;
}.our_team .container {
    padding: 0 40px;
}.our_team h1 {
    margin-bottom: 80px;
    font-size: calc(43px * 1.2);
}.our_team h1::after {
    height: 5px;
    width: 120px;
    bottom: -20px;
}.our_team .quick_skill {
    padding: 50px 45px;
}.our_team .quick_skill::before {
    width: 5px;
}.our_team .quick_skill h4 {
    font-size: calc(23px * 1.1);
    margin-bottom: 25px;
}
}



@media (max-width: 767px) {.potential_students {
    padding: 60px 0;
}.potential_students h4 {
    font-size: calc(35px - 4px);
    padding: 25px 20px;
}.potential_students div {
    padding: 25px 20px;
}.potential_students div p {
    padding: 12px 15px;
    margin-bottom: 12px;
}.potential_students div p svg {
    min-width: 20px;
    margin-right: 12px;
    height: 20px;
    width: 20px;
}
}



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

@keyframes patternMove {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}



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


    
    @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);
        }
    }

