* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.header_pagewrap {
    flex: 1 0 auto;
}

.tutor_match {
    flex: 0 0 auto;
}

.tutor_match {
    background-color: transparent;
    position: relative;
    z-index: 5;
    padding: 60px 0 40px;
}

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

html {
    scrollbar-width: thin;
    scrollbar-color: rgb(179,199,210) rgb(140,164,184,0.5);
}

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

.landing_page::before {
    content: '';
    z-index: 1;
    top: 0;
    position: absolute;
    background: 
    radial-gradient(circle at 20% 30%, rgb(179,199,210,0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgb(140,164,184,0.5) 0%, transparent 50%);
    left: 0;
    pointer-events: none;
    height: 100%;
    width: 100%;
}

.landing_page .start_intro {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    z-index: 3;
    gap: 2rem;
}

.landing_page .start_intro > div:first-child:hover {
    transform: translateX(0);
}

.landing_page .start_intro > div:first-child::before {
    left: 0;
    transform: scaleY(0);
    height: 100%;
    transform-origin: top;
    position: absolute;
    width: 6px;
    background: rgb(179,199,210);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: '';
    top: 0;
}

.landing_page .start_intro > div:last-child {
    display: flex;
    align-items: flex-end;
    position: relative;
    flex-direction: column;
}

.landing_page .promise_block:hover {
    transform: translateY(0);
}

.landing_page h1 {
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: -0.5px;
    margin: 0 0 2rem;
    color: #ffffff;
    padding-bottom: 1rem;
    position: relative;
    line-height: 1.2;
    font-size: 42px;
}

.landing_page h1::after {
    content: '';
    height: 3px;
    bottom: 0;
    position: absolute;
    width: 60%;
    left: 0;
    background: linear-gradient(90deg, rgb(179,199,210) 0%, transparent 100%);
}

.landing_page p {
    color: #ffffff;
    position: relative;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 2;
    padding: 2rem;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

.course_overview::before {
    opacity: 0.7;
    height: 300px;
    background: linear-gradient(135deg, rgb(179,199,210,0.5) 0%, transparent 70%);
    transform: rotate(-15deg);
    position: absolute;
    content: "";
    right: -100px;
    top: -100px;
    z-index: 1;
    width: 300px;
}

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

.course_overview .gallery_slider {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateY(2deg);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 320px;
}

.course_overview .gallery_slider:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.course_overview .gallery_slider:hover::before {
    opacity: 0.2;
}

.course_overview .note_holder {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #ffffff;
    padding: 30px;
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.course_overview .note_holder:hover::before {
    height: 100%;
}

.course_overview h3 {
    transition: transform 0.4s ease;
    font-weight: 600;
    font-size: calc(19px * 1.1);
    transform: translateX(0);
    color: #000000;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.course_overview .note_holder:hover h3::after {
    width: 100px;
}

.course_overview .note_holder:hover .description {
    opacity: 1;
}

.course_overview p.description {
    padding-right: 15px;
    overflow-y: auto;
    scrollbar-color: rgb(179,199,210,0.5) #ffffff;
    display: block;
    scrollbar-width: thin;
    max-height: 300px;
}

.educational_yield::before {
    height: 100%;
    left: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        -45deg,
        rgb(179,199,210,0.5) 0px,
        transparent 2px,
        transparent 10px,
        rgb(179,199,210,0.5) 12px
    );
    position: absolute;
    width: 100%;
    z-index: 1;
    content: "";
    top: 0;
    pointer-events: none;
}

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

.educational_yield .note_holder {
    transform: translateZ(20px);
    flex: 1;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 
                0 5px 15px rgba(0, 0, 0, 0.04),
                0 3px 5px rgb(179,199,210,0.5);
    background: rgba(255, 255, 255, 0.85);
    border-left: 4px solid rgb(179,199,210);
    backdrop-filter: blur(10px);
}

.educational_yield .note_holder {
    flex: 0 0 50%;
    padding: 50px;
}

.educational_yield h4::after {
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: -10px;
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 70px;
    transform: scaleX(1);
    background: rgb(179,199,210);
}

.educational_yield h4::after {
    width: 90px;
}

.educational_yield li:hover {
    transform: translateX(10px);
}

.educational_yield li p {
    font-size: 13px;
    margin: 0;
    align-items: flex-start;
    display: flex;
    color: #000000;
    gap: 15px;
    line-height: 1.6;
}

.educational_yield svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 20px;
    height: 20px;
    transform: translateY(0);
}

.educational_yield li:hover svg path {
    fill: rgb(140,164,184);
}

.educational_yield .gallery_slider:hover {
    box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.12),
                20px 20px 40px rgba(0, 0, 0, 0.08),
                8px 8px 15px rgb(179,199,210,0.5);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateZ(20px);
}

.educational_yield .gallery_slider:hover {
    animation-play-state: paused;
}

.tariff_wrapper {
    overflow: hidden;
    background: rgb(223,232,236);
    padding: 120px 0;
    position: relative;
}

.tariff_wrapper::before {
    z-index: 0;
    filter: blur(80px);
    height: 600px;
    content: "";
    position: absolute;
    width: 600px;
    right: -10%;
    background: linear-gradient(135deg, rgb(179,199,210,0.5), rgb(140,164,184,0.5));
    opacity: 0.15;
    top: -15%;
}

.tariff_wrapper .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    position: relative;
}

.tariff_wrapper .value_plan {
    flex-direction: column;
    display: flex;
    gap: 60px;
}

.tariff_wrapper .study_cost h2 {
    background: linear-gradient(90deg, #000000, rgb(179,199,210));
    font-size: 31px;
    margin-bottom: 15px;
    color: transparent;
    color: #000000;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    transform: perspective(1000px) rotateX(0deg);
    font-weight: 700;
    transition: transform 0.5s ease;
}

.tariff_wrapper .price_plan {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    display: grid;
    perspective: 1000px;
}

.tariff_wrapper .annual_fee:hover {
    z-index: 5;
    transform: translateZ(20px) scale(1.02);
}

.tariff_wrapper .learning_packages {
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.5s ease;
    position: relative;
    display: flex;
    background: #ffffff;
    overflow: hidden;
    flex-direction: column;
}

.tariff_wrapper .annual_fee:hover .learning_packages::before {
    transform: scaleX(1);
}

.tariff_wrapper .tuition_plans {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-grow: 1;
    flex-direction: column;
    z-index: 2;
    padding: 35px 30px;
}

.tariff_wrapper .tuition_plans h3 {
    overflow-wrap: break-word;
    transform: translateY(0);
    color: #000000;
    font-weight: 600;
    position: relative;
    word-break: break-word;
    margin-bottom: 15px;
    transition: transform 0.4s ease, color 0.3s ease;
    font-size: calc(20px + 2px);
}

.tariff_wrapper .annual_fee:hover .tuition_plans .access_cost {
    transform: scale(1.05);
}

.tariff_wrapper .tuition_plans .access_cost::after {
    height: 2px;
    transition: width 0.4s ease;
    width: 50px;
    content: "";
    position: absolute;
    background: rgb(140,164,184,0.5);
    bottom: -10px;
    left: 0;
}

.tariff_wrapper .annual_fee:hover .tuition_plans p {
    opacity: 1;
}

.tariff_wrapper .annual_fee .gallery_slider {
    height: 220px;
    overflow: hidden;
    position: relative;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}

.tariff_wrapper .annual_fee .gallery_slider::after {
    left: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    top: 0;
    right: 0;
    content: "";
    bottom: 0;
    opacity: 0;
    position: absolute;
}

.tyPage::before {
    transform: rotate(-15deg) skewX(10deg);
    position: absolute;
    animation: floatElement 15s ease-in-out infinite;
    top: -10%;
    z-index: 1;
    height: 70%;
    background: linear-gradient(220deg, rgb(140,164,184,0.5) 20%, transparent 80%);
    right: -5%;
    filter: blur(60px);
    content: "";
    width: 40%;
}

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

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

.tyPage .edu_values {
    padding: 50px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    opacity: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s forwards 0.5s ease-out;
    transform: translateY(30px);
    border-radius: 13px;
}

.tyPage .edu_values::after {
    position: absolute;
    transform: translateY(-10px);
    height: 160px;
    right: 20px;
    content: "";
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(179,199,210,0.5) 0%, transparent 70%);
    width: 160px;
    top: 20px;
    opacity: 0.2;
}

.tyPage span {
    text-align: left;
    position: relative;
    color: #000000;
    padding-left: 15px;
    border-left: 3px solid rgb(179,199,210,0.5);
    font-size: calc(12px * 1.1);
    line-height: 1.8;
    font-family: Arial, sans-serif;
}

.course_candidates::before {
    opacity: 0.3;
    left: 0;
    width: 100%;
    top: 0;
    content: "";
    background: radial-gradient(circle at 30% 40%, rgb(179,199,210,0.5) 0%, transparent 35%),
                radial-gradient(circle at 70% 60%, rgb(140,164,184,0.5) 0%, transparent 35%);
    position: absolute;
    height: 100%;
}

.course_candidates h3::before {
    height: 100px;
    top: -20px;
    left: -30px;
    width: 100px;
    position: absolute;
    border: 2px solid rgb(179,199,210,0.5);
    border-radius: 50%;
    content: "";
    z-index: -1;
}

.course_candidates ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
}

.course_candidates ul li::before {
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transition: opacity 0.4s ease;
    opacity: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(179,199,210), rgb(140,164,184));
    height: 100%;
    position: absolute;
    content: "";
}

.course_candidates ul li::after {
    top: -10px;
    content: "";
    left: -10px;
    border-radius: 50%;
    z-index: -2;
    position: absolute;
    border: 2px dashed rgb(179,199,210,0.5);
    height: calc(100% + 20px);
    opacity: 0.5;
    transition: all 0.4s ease;
    width: calc(100% + 20px);
}

.course_candidates ul li svg {
    transition: all 0.4s ease;
    width: 40px;
    margin-top: 45px;
    flex-shrink: 0;
    margin-bottom: 20px;
    height: 40px;
}

.course_candidates ul li svg path {
    fill: rgb(179,199,210);
    transition: fill 0.4s ease;
}

.stay_updated {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 4rem;
    background: rgb(223,232,236);
}

.stay_updated::after {
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgb(179,199,210,0.5) 10px, rgb(179,199,210,0.5) 11px),
        repeating-linear-gradient(135deg, transparent, transparent 10px, rgb(140,164,184,0.5) 10px, rgb(140,164,184,0.5) 11px);
    top: 0;
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
}

.stay_updated .edu_values::after {
    position: absolute;
    width: 100px;
    content: "";
    height: 100px;
    left: -30px;
    background: rgb(140,164,184);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    bottom: -30px;
    animation: rotate-shape 20s linear infinite reverse;
    opacity: 0.15;
}

.stay_updated p::before {
    border: 2px solid rgb(179,199,210,0.5);
    left: -15px;
    opacity: 0.5;
    width: 50px;
    animation: square-pulse 5s infinite alternate;
    z-index: -1;
    position: absolute;
    content: "";
    height: 50px;
    top: -15px;
}

.stay_updated .input_holder {
    perspective: 1000px;
    height: 60px;
    align-items: stretch;
    position: relative;
    display: flex;
}

.stay_updated .sub_objective {
    background: #ffffff;
    height: 100%;
    font-size: 17px;
    padding: 0 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    border: 1px solid transparent;
    color: #000000;
    flex: 1;
}

.stay_updated .sub_objective::placeholder {
    opacity: 0.6;
    color: #000000;
}

.stay_updated .upgrade_skills {
    font-weight: 600;
    border: none;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    background: rgb(179,199,210);
    isolation: isolate;
    padding: 0 2rem;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-top-right-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    color: #ffffff;
}

footer::before {
    opacity: 0.9;
    content: "";
    width: 100%;
    left: 0;
    background: linear-gradient(to right,
    #000000 0%,
    rgb(179,199,210,0.5) 50%,
    #000000 100%);
    z-index: 1;
    height: 100%;
    position: absolute;
    top: 0;
}

.tutor_match .company_holder h3 {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 31px;
    font-weight: 700;
    position: relative;
}

.tutor_match .footer_address {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
    color: #ffffff;
}

.tutor_match .footer_account {
    grid-template-columns: repeat(2, 1fr);
    grid-column: span 8;
    grid-gap: 30px;
    display: grid;
}

.tutor_match .top_train h5 {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.tutor_match .top_train h5,
.tutor_match .company_holder h3 {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tutor_match .top_train .head_primary a::before {
    transform: translateY(-50%);
    position: absolute;
    width: 6px;
    background: rgb(140,164,184);
    content: "";
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 50%;
}

.diploma_cta {
    margin-top: 40px;
    z-index: 5;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.diploma_cta .digital_res {
    text-align: center;
    font-size: 15px;
    opacity: 0.7;
    color: #ffffff;
}

.diploma_cta .digital_res {
    display: inline-block;
    position: relative;
}

.tutor_match .container::before {
    top: 0;
    opacity: 0.05;
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    background: 
    linear-gradient(to right, rgb(179,199,210,0.5) 1px, transparent 1px) 0 0 / 40px 100%,
    linear-gradient(to bottom, rgb(179,199,210,0.5) 1px, transparent 1px) 0 0 / 100% 40px;
    content: "";
    left: 0;
    pointer-events: none;
}

footer::after {
    z-index: 2;
    position: absolute;
    bottom: 0;
    content: "";
    height: 5px;
    opacity: 0.3;
    background: linear-gradient(to right,
    rgb(179,199,210),
    rgb(140,164,184),
    rgb(179,199,210));
    width: 100%;
    left: 0;
}

.tutor_match .top_train:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.diploma_cta .digital_res::before {
    top: 50%;
    content: "";
    position: absolute;
    opacity: 0.5;
    left: -40px;
    width: 30px;
    background: rgb(179,199,210);
    transform: translateY(-50%);
    height: 1px;
}

.trackingSettingsBox {
    width: 100%;
    z-index: 90;
    border-top: 2px solid rgb(179,199,210);
    background: rgb(223,232,236);
    bottom: 0;
    position: fixed;
}

.trackingSettingsBox h5 {
    font-size: 22px;
    margin-bottom: 6px;
}

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

.visitor_controls svg, .visitor_controls svg path, .visitor_controls img {
    height: 100px;
    fill: rgb(179,199,210);
    width: 100px;
}

.trackingSettingsBox p a {
    color: rgb(179,199,210);
    text-decoration: none;
}


.wrapper-container .trackingSettingsBox {
    box-shadow: rgb(140,164,184,0.5) 0px 0px 10px 10px;
    background: rgb(179,199,210);
}

.wrapper-container .edu_approve {
    color: rgb(179,199,210);
    border: none;
    background: #ffffff;
    font-size: 20px;
    padding: 10px;
    margin-left: 30px;
}

.wrapper-container .trackingSettingsBox p a {
    text-decoration: underline;
    color: rgb(140,164,184);
}

header .top_plank {
    color:  #ffffff;
    background: rgb(179,199,210);
}

header .top_plank .best_learn div span {
    color: #ffffff;
}

header .top_plank .best_learn div {
    margin-right: 24px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

header .top_plank .best_learn div img, header .top_plank .best_learn div svg {
    height: 16px;
    width: 16px;
    margin-right: 8px;
}

header::after {
    left: 0;
    z-index: 0;
    content: '';
    width: 100%;
    position: absolute;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    top: 0;
    height: 100%;
}

header .nav_study::before {
    width: 5px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgb(179,199,210), rgb(140,164,184));
    content: '';
    height: 100%;
}

header .nav_study::after {
    content: '';
    right: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, rgb(140,164,184), rgb(179,199,210));
    width: 5px;
    height: 100%;
}

header .main_tutor svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    height: auto;
    transition: all 0.3s ease;
    width: 170px;
}

header .main_tutor:hover svg {
    transform: scale(1.03);
}

header .main_pro {
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #000000;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 18px;
    font-weight: 600;
    background: rgb(223,232,236);
    z-index: 1;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    padding: 0.7rem 1.3rem;
}

header .main_pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: #ffffff;
}

.confidential_hearth h1 {
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 45px;
    padding-bottom: 15px;
    grid-column: span 2;
    text-align: center;
    color: rgb(179,199,210);
    border-bottom: 3px solid rgb(140,164,184);
}

.confidential_hearth ul, .confidential_hearth ol {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.confidential_hearth section {
    border-radius: 27px;
    width: 100%;
    padding: 30px;
    background: rgb(140,164,184,0.5);
}

.confidential_hearth p, .confidential_hearth span, .confidential_hearth div {
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.who_we_are .container {
    position: relative;
    max-width: 1200px;
    transform: translateZ(0);
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
}

.who_we_are h2 {
    margin-bottom: 48px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    position: relative;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 28px;
    transform: translateX(-8px);
}

.who_we_are .note_holder {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.who_we_are .note_holder > div {
    position: relative;
    overflow: hidden;
}

.who_we_are .note_holder p::after {
    height: 2px;
    content: "";
    transform: scaleX(0);
    left: 0;
    position: absolute;
    bottom: -4px;
    width: 100%;
    transform-origin: right;
    background: rgb(140,164,184);
    animation: expandLine 0.8s 0.6s ease-out forwards;
}

.customer_support {
    position: relative;
    overflow: hidden;
    background: rgb(223,232,236);
    padding: 80px 0;
}

.customer_support::after {
    position: absolute;
    opacity: 0.2;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 200%;
    animation: pulse 15s infinite alternate;
    content: "";
    left: 50%;
    top: 50%;
    background: radial-gradient(circle, rgb(179,199,210,0.5) 0%, transparent 60%);
    height: 200%;
}

.customer_support .contact_feedback::before {
    right: -75px;
    opacity: 0.4;
    filter: blur(30px);
    z-index: -1;
    border-radius: 50%;
    height: 150px;
    top: -75px;
    background: linear-gradient(45deg, rgb(179,199,210) 0%, rgb(140,164,184) 100%);
    content: "";
    position: absolute;
    width: 150px;
}



.customer_support h2 {
    display: inline-block;
    font-size: 33px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.customer_support h2::after {
    width: 50%;
    content: "";
    background: linear-gradient(90deg, rgb(179,199,210) 0%, rgb(140,164,184) 100%);
    position: absolute;
    left: 0;
    height: 4px;
    bottom: -10px;
    border-radius: 10px;
}

.customer_support .write_form::before {
    background: linear-gradient(90deg, transparent, rgb(179,199,210,0.5), transparent);
    width: 80%;
    content: "";
    height: 1px;
    transform: translateX(-50%);
    left: 50%;
    top: -20px;
    position: absolute;
}

.customer_support .contact_assistance::before {
    border-radius: 50%;
    width: 100%;
    z-index: -1;
    background: conic-gradient(from 135deg, rgb(179,199,210) 0%, transparent 60%, rgb(140,164,184) 120%, rgb(179,199,210) 180%);
    top: 0;
    opacity: 0.2;
    content: "";
    position: absolute;
    transform: scale(0.85);
    transition: all 0.4s ease;
    height: 100%;
    left: 0;
}



.customer_support .contact_assistance:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 
                0 0 15px rgb(179,199,210,0.5),
                0 0 30px rgb(140,164,184,0.5);
    transform: translateY(-5px) scale(1.15);
}

.customer_support .contact_assistance:hover::before {
    opacity: 0.6;
    transform: scale(1);
}

.customer_support .contact_assistance svg {
    filter: drop-shadow(0 0 3px rgb(179,199,210,0.5));
    fill: rgb(179,199,210);
    width: 28px;
    height: 28px;
    transition: all 0.4s ease;
    stroke: rgb(179,199,210);
}

.customer_support .contact_assistance svg path {
    fill: rgb(179,199,210);
    transition: all 0.4s ease;
    stroke: rgb(179,199,210);
}

.customer_support p:hover svg {
    fill: rgb(140,164,184);
    stroke: rgb(140,164,184);
}

.customer_support p svg path {
    transition: all 0.3s ease;
    stroke: rgb(179,199,210);
    fill: rgb(179,199,210);
}

.attempt_now {
    margin: 4rem 0;
    padding: 5rem 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgb(140,164,184) 0%, rgb(179,199,210) 100%);
    position: relative;
}

.attempt_now::after {
    left: -50%;
    width: 200%;
    animation: pulseGlow 15s ease-in-out infinite;
    z-index: 2;
    position: absolute;
    content: "";
    background: radial-gradient(circle, rgb(255, 255, 255, 0.5) 0%, transparent 60%);
    opacity: 0.1;
    top: -50%;
    transform-origin: center;
    height: 200%;
}

.attempt_now h6 {
    text-align: center;
    font-weight: 700;
    line-height: 1.6;
    position: relative;
    font-size: calc(21px * 1.1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) translateZ(20px);
    margin-bottom: 2.5rem;
    max-width: 800px;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.attempt_now span {
    position: relative;
    transform: perspective(800px) rotateX(2deg);
    z-index: 5;
    display: inline-block;
}

.attempt_now .inquiry_form {
    color: rgb(140,164,184);
    font-size: 20px;
    display: inline-flex;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 220px;
    transform-origin: center;
    border: none;
    justify-content: center;
    position: relative;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 
              0 3px 6px rgba(0, 0, 0, 0.05),
              0 0 0 2px rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    background: #ffffff;
    border-radius: 10px;
    align-items: center;
}

.attempt_now .inquiry_form:hover::before {
    transform: translateX(100%);
}

.attempt_now .inquiry_form:hover span {
    transform: scale(1.05);
}

.user_testimonials {
    overflow: hidden;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(223,232,236) 0%, rgb(179,199,210,0.5) 100%);
}

.user_testimonials::before {
    left: 0;
    top: 0;
    content: "";
    background: repeating-linear-gradient(
        30deg,
        rgb(140,164,184,0.5) 0px,
        transparent 2px,
        transparent 10px,
        rgb(140,164,184,0.5) 12px
    );
    opacity: 0.05;
    height: 100%;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.user_testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    margin-bottom: 60px;
    max-width: 80%;
    transform: translateX(5%);
    color: #000000;
    text-align: left;
}

.user_testimonials .edu_ratings {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.user_testimonials .edu_reviews:nth-child(odd) {
    transform: translateY(40px);
}

.user_testimonials .edu_reviews:nth-child(even) {
    transform: translateY(20px);
}

.user_testimonials .edu_reviews:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.user_testimonials .edu_reviews::before {
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 0;
    color: rgb(140,164,184,0.5);
    font-weight: 700;
    right: 20px;
    position: absolute;
    content: "";
    opacity: 0.15;
    font-size: 150px;
    top: -20px;
}

.user_testimonials .edu_reviews:hover::after {
    transform: scaleX(1);
}

.user_testimonials .edu_reviews div {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    z-index: 2;
    align-items: center;
}

.user_testimonials .edu_reviews img {
    width: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-right: 15px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    height: 60px;
    object-fit: cover;
}

.user_testimonials .edu_reviews:hover h4::after {
    width: 50px;
}

.user_testimonials .edu_reviews .description {
    position: relative;
    margin: 0;
    font-size: calc(12px - 1px);
    z-index: 2;
    color: #000000;
    line-height: 1.6;
    font-style: italic;
}

.user_testimonials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.user_testimonials a::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    position: absolute;
    transition: left 0.7s ease;
    top: 0;
    height: 100%;
    left: -100%;
    content: "";
    width: 100%;
}

.user_testimonials a:hover::before {
    left: 100%;
}

.developer_experience::before {
    opacity: 0.3;
    width: 40%;
    position: absolute;
    background: rgb(179,199,210,0.5);
    filter: blur(60px);
    transform-origin: center;
    height: 40%;
    animation: floating 15s ease-in-out infinite;
    right: -5%;
    content: "";
    top: -5%;
    z-index: 0;
}

.developer_experience .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
    max-width: 1200px;
}

.developer_experience .edu_reviews {
    transform: perspective(1000px) rotateX(2deg);
    grid-template-columns: 1fr;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: grid;
    opacity: 0;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 4px;
}

.developer_experience .edu_reviews .gallery_slider::before {
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(
        to bottom,
        transparent 65%,
        rgba(rgb(179,199,210), 0.2) 100%
    );
    content: "";
    position: absolute;
    width: 100%;
    z-index: 1;
}

.developer_experience .edu_reviews .gallery_slider:hover::after {
    opacity: 1;
}

.developer_experience .edu_reviews > div:nth-child(2) {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}

.developer_experience .edu_reviews .name {
    display: inline-block;
    color: #000000;
    font-size: 23px;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 700;
}

.developer_experience .edu_reviews > div:nth-child(2) > div {
    color: rgb(140,164,184);
    font-size: calc(18px - 0.1rem);
    margin-top: 1rem;
    font-weight: 600;
}

.developer_experience .edu_reviews .career_details {
    position: relative;
    line-height: 1.7;
    font-size: 18px;
    border-left: 3px solid rgb(179,199,210,0.5);
    margin: 0;
    padding-left: 1.5rem;
    color: #000000;
}

.contact_boxHY0 {
    background: linear-gradient(160deg, rgb(223,232,236) 0%, rgb(179,199,210,0.5) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

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

.contact_boxHY0 h2 {
    margin-bottom: 50px;
    color: #000000;
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 46px;
    text-align: center;
}

.contact_boxHY0 .gallery_slider {
    position: relative;
    height: 200px;
    width: 100%;
}

.contact_boxHY0 .feedback_help {
    padding: 50px;
    width: 100%;
    position: relative;
}

.contact_boxHY0 form h3::after {
    content: "";
    bottom: -10px;
    background: rgb(179,199,210);
    border-radius: 1.5px;
    height: 3px;
    position: absolute;
    left: 0;
    width: 100%;
}

.contact_boxHY0 form input[type="text"]:focus {
    outline: none;
    border-color: rgb(179,199,210);
}

.contact_boxHY0 form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.contact_boxHY0 .connect_reach {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact_boxHY0 .connect_reach input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.contact_boxHY0 .connect_reach label::before {
    width: 22px;
    top: 2px;
    content: "";
    background: rgb(223,232,236);
    transition: all 0.3s ease;
    border-radius: 10px;
    left: 0;
    height: 22px;
    position: absolute;
}

.contact_boxHY0 .connect_reach label a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(179,199,210);
}

.contact_boxHY0 .connect_reach label a:hover {
    text-decoration: underline;
}

.contact_boxHY0 form .inquiry_form {
    padding: 16px 20px;
    font-family: Arial, sans-serif;
    background: rgb(179,199,210);
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}



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


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



@media (min-width: 768px) {.landing_page {
    padding: 4rem 2rem;
}.landing_page .start_intro {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}.landing_page h3 {
    font-size: calc(21px * 1.1);
}.landing_page h1 {
    font-size: calc(42px * 1.2);
}.landing_page p {
    font-size: calc(12px * 1.1);
}.landing_page .promise_block {
    padding: 3rem;
}
}



@media (min-width: 1024px) {.landing_page {
    padding: 5rem 2rem;
}.landing_page .start_intro > div:first-child {
    transform: translateX(-40px);
}.landing_page .promise_block {
    transform: translate(40px, 20px);
}.landing_page .promise_block:hover {
    transform: translate(20px, 0);
}.landing_page h3 {
    max-width: 80%;
    font-size: calc(21px * 1.2);
}.landing_page h1 {
    font-size: calc(42px * 1.3);
}
}



@media (max-width: 767px) {.landing_page .start_intro {
    transform: perspective(1000px) rotateX(0);
}.landing_page .start_intro > div:first-child {
    padding: 1.5rem;
    transform: translateX(0);
}.landing_page h3 {
    max-width: 100%;
    font-size: calc(21px * 0.9);
}.landing_page .promise_block {
    padding: 1.5rem;
    transform: translateY(0);
}.landing_page h1 {
    margin-bottom: 1.5rem;
    font-size: calc(42px * 0.9);
}.landing_page p {
    padding: 1.5rem;
}}



@media (min-width: 992px) {.course_overview .program_path {
    gap: 80px;
}.course_overview .gallery_slider {
    height: 500px;
}.course_overview .note_holder {
    padding: 50px;
}.course_overview h3 {
    font-size: calc(19px * 1.2);
}.course_overview p.description {
    font-size: calc(15px * 1.05);
    line-height: 1.75;
    max-height: 400px;
}
}



@media (max-width: 767px) {.course_overview {
    padding: 80px 0;
}.course_overview .note_holder {
    padding: 25px 20px;
}.course_overview h3 {
    font-size: calc(17px * 1.1);
    margin-bottom: 20px;
    padding-bottom: 12px;
}.course_overview p.description {
    max-height: 250px;
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}}



@media (min-width: 768px) {.educational_yield .edu_values {
    gap: 60px;
    flex-direction: row;
    align-items: center;
}.educational_yield .note_holder {
    flex: 0 0 55%;
}.educational_yield .note_holder > div {
    gap: 30px;
    flex-direction: row;
}.educational_yield .note_holder > div > div {
    flex: 1;
}.educational_yield h4 {
    font-size: calc(18px * 1.1);
}.educational_yield li p span:last-child {
    font-size: calc(13px * 1.05);
}
}



@media (min-width: 992px) {.tariff_wrapper {
    padding: 140px 0;
}.tariff_wrapper .value_plan {
    flex-direction: row;
    align-items: flex-start;
}.tariff_wrapper .study_cost {
    align-self: flex-start;
    transform: translateX(0);
    width: 30%;
    position: sticky;
    margin-right: 70px;
    order: 0;
    top: 100px;
}.tariff_wrapper .price_plan {
    grid-template-columns: repeat(2, 1fr);
    width: 70%;
}
}



@media (max-width: 991px) {.tariff_wrapper {
    padding: 80px 0;
}.tariff_wrapper .study_cost {
    transform: translateX(0);
    text-align: center;
}.tariff_wrapper .study_cost .price_opts {
    margin: 0 auto;
}
}



@media (max-width: 480px) {.tariff_wrapper {
    padding: 50px 0;
}.tariff_wrapper .tuition_plans h3 {
    font-size: 20px;
}.tariff_wrapper .tuition_plans .access_cost {
    font-size: calc(20px + 2px);
}.tariff_wrapper .tuition_plans p {
    font-size: calc(12px - 1px);
}}



@media (max-width: 767px) {.tyPage {
    padding: 60px 0;
}.tyPage h2 {
    font-size: calc(38px * 0.7);
    margin-bottom: 30px;
}.tyPage h2::after {
    bottom: -10px;
    width: 60px;
}.tyPage .edu_values {
    padding: 30px 20px;
}.tyPage li::before {
    display: none;
}.tyPage span {
    font-size: 12px;
    line-height: 1.6;
}
}



@media (max-width: 1200px) {.course_candidates ul {
    gap: 40px;
}.course_candidates ul li {
    height: 200px;
    width: 200px;
}
}



@media (max-width: 768px) {.course_candidates {
    padding: 80px 0;
}.course_candidates h3 {
    margin-bottom: 50px;
    font-size: calc(30px * 0.8);
}.course_candidates ul {
    gap: 30px;
}.course_candidates ul li {
    height: 200px;
    width: 200px;
}.course_candidates ul li svg {
    width: 35px;
    height: 35px;
    margin-top: 40px;
}
}



@media (max-width: 480px) {.course_candidates ul li {
    height: 200px;
    width: 200px;
}.course_candidates ul li svg {
    margin-bottom: 15px;
    height: 30px;
    width: 30px;
    margin-top: 35px;
}.course_candidates ul li > span {
    padding: 0 20px;
}}



@media (max-width: 768px) {.stay_updated {
    padding: 3rem 1.5rem;
}.stay_updated .edu_values {
    gap: 2rem;
    grid-template-columns: 1fr;
}.stay_updated p {
    font-size: 21px;
}.stay_updated .input_holder {
    flex-direction: column;
    height: auto;
}.stay_updated .sub_objective {
    height: 60px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 1rem;
}.stay_updated .upgrade_skills {
    border-radius: 10px;
    height: 60px;
    width: 100%;
}}



@media (max-width: 575px) {.tutor_match {
    padding: 30px 0 20px;
}.tutor_match .company_holder,
  .tutor_match .top_train {
    padding: 20px;
}.tutor_match .company_holder h3 {
    font-size: calc(31px - 4px);
}.diploma_cta {
    padding: 20px 0;
}}


@media only screen and (max-width: 800px) {.visitor_controls {
    display: none;
}.user_tracker {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.trackingSettingsBox h5 {
    text-align: center;
}.trackingSettingsBox p {
    text-align: center;
}.gdpr_banner {
    margin-bottom: 20px;
}body .wrapper-container .edu_approve {
    margin-bottom: 10px;
    margin-left: 0;
}}



@media (max-width: 480px) {header {
    padding: 0.8rem 1.5%;
}header .nav_study {
    padding: 0.8rem 0.8rem 1rem;
}header .main_tutor {
    padding: 0 0 0.6rem 0;
}header .main_tutor svg {
    width: 120px;
}header .top_train {
    padding-bottom: 0.3rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-top: 0.6rem;
    justify-content: flex-start;
}header .top_train::-webkit-scrollbar {
    height: 3px;
}header .top_train::-webkit-scrollbar-thumb {
    background: rgb(179,199,210);
    border-radius: 10px;
}header .main_pro {
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 3px;
}}



@media (min-width: 992px) {.who_we_are {
    padding: 180px 0 120px;
}.who_we_are::after {
    opacity: 0.15;
    animation: floatElement 15s infinite ease-in-out;
    right: -5%;
    position: absolute;
    top: -10%;
    border-radius: 10px;
    border: 15px solid rgb(140,164,184,0.5);
    z-index: 1;
    transform: rotate(15deg);
    width: 300px;
    height: 300px;
    content: "";
}.who_we_are .container {
    padding: 0 40px;
}.who_we_are h2 {
    font-size: calc(28px * 1.4);
    margin-bottom: 70px;
}.who_we_are .note_holder {
    padding: 80px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 80px 100%, 0 calc(100% - 80px));
    margin-left: 80px;
}.who_we_are .note_holder p {
    font-size: calc(18px * 1.8);
    margin-bottom: 30px;
}
}



@media (max-width: 992px) {.customer_support {
    padding: 60px 0;
}.customer_support .contact_feedback {
    padding: 30px;
}.customer_support h2 {
    font-size: calc(33px * 0.9);
}.customer_support .write_form {
    gap: 30px;
}.customer_support .contact_assistance {
    height: 65px;
    width: 65px;
}
}



@media (max-width: 576px) {.customer_support {
    padding: 40px 0;
}.customer_support .contact_feedback {
    padding: 20px;
    border-radius: calc(10px * 0.8);
}.customer_support h2 {
    margin-bottom: 15px;
    font-size: calc(33px * 0.7);
}.customer_support h2::after {
    height: 3px;
    bottom: -8px;
}.customer_support p {
    font-size: calc(16px * 0.9);
    margin-bottom: 15px;
}.customer_support .write_form {
    margin-top: 25px;
    gap: 15px;
}.customer_support .contact_assistance {
    height: 50px;
    width: 50px;
}.customer_support .contact_assistance svg {
    width: 20px;
    height: 20px;
}.customer_support .contact_assistance::after {
    border-width: 1px;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}.customer_support .contact_assistance:hover::after {
    right: -2px;
    border-width: 2px;
    left: -2px;
    top: -2px;
    bottom: -2px;
}
}



@media screen and (max-width: 576px) {.attempt_now {
    margin: 2rem 0;
    padding: 3rem 0.5rem;
}.attempt_now h6 {
    font-size: calc(21px * 0.85);
    margin-bottom: 1.5rem;
}.attempt_now h6::after {
    width: 50px;
}.attempt_now .inquiry_form {
    padding: 10px 18px;
    font-size: calc(20px * 0.9);
    min-width: 160px;
}
}



@media (prefers-reduced-motion) {.attempt_now::before,
  .attempt_now::after {
    animation: none;
}.attempt_now .inquiry_form::before {
    transition: none;
}}



@media (max-width: 992px) {.user_testimonials {
    padding: 80px 20px 50px;
}.user_testimonials h2 {
    transform: translateX(0);
    text-align: center;
    max-width: 100%;
}.user_testimonials h2::after {
    transform: translateX(-50%);
    left: 50%;
}.user_testimonials .edu_ratings {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.user_testimonials .edu_reviews {
    padding: 25px 20px;
}
}



@media (max-width: 480px) {.user_testimonials {
    padding: 50px 10px 30px;
}.user_testimonials h2 {
    margin-bottom: 30px;
    font-size: calc(36px - 12px);
}.user_testimonials .edu_reviews {
    padding: 20px 15px;
}.user_testimonials .edu_reviews div {
    margin-bottom: 15px;
}.user_testimonials .edu_reviews img {
    height: 50px;
    width: 50px;
}.user_testimonials a {
    font-size: calc(19px - 2px);
    padding: 12px 25px;
}}



@media (min-width: 992px) {.developer_experience .edu_reviews {
    grid-template-columns: 320px 1fr;
    padding: 3.5rem;
}.developer_experience .edu_reviews > div:first-child {
    max-width: 320px;
}.developer_experience .edu_reviews .gallery_slider {
    height: 350px;
}.developer_experience .edu_reviews .career_details {
    line-height: 1.8;
    font-size: calc(18px + 0.05rem);
}
}



@media screen and (min-width: 768px) {.contact_boxHY0 .feedback_widget {
    flex-direction: row;
    max-width: 1000px;
}.contact_boxHY0 .gallery_slider {
    height: auto;
    width: 40%;
    min-height: 400px;
}.contact_boxHY0 .feedback_help {
    width: 60%;
}
}



@media screen and (max-width: 576px) {.contact_boxHY0 {
    padding: 60px 0;
}.contact_boxHY0 h2 {
    margin-bottom: 30px;
    font-size: calc(46px * 0.7);
}.contact_boxHY0 .feedback_help {
    padding: 30px 20px;
}.contact_boxHY0 form h3 {
    font-size: calc(20px * 0.9);
}
}



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



@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(rgb(179,199,210), 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(rgb(179,199,210), 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(rgb(179,199,210), 0);
  }
}



@keyframes square-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}



@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}



@keyframes growHeight {
  from { height: 0; }
  to { height: 100%; }
}



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



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

@keyframes slideLine {
    0% {
        transform: translateX(-100%);
        opacity: 0.7;
    }
    50% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.7;
    }
}

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



@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.1);
  }
}



@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(5deg);
    }
    50% {
        transform: translate(2%, 10%) rotate(-5deg);
    }
    75% {
        transform: translate(-5%, 5%) rotate(2deg);
    }
}



@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

