﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
header,footer {
    width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
.footer {
    flex: 0 0 auto;
}
.head_wrap {
    flex: 1 0 auto;
}
.core-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
section {
    background-color: rgb(240,217,220);
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}

@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}.contact_us {
    position: relative;
    background: linear-gradient(135deg, rgb(240,217,220) 0%, rgb(240,217,220) 50%, rgb(211,163,170,0.5) 150%);
    padding: 120px 0 100px;
    overflow: hidden;
}

.contact_us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgb(211,163,170,0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(211,163,170,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 1;
}

.contact_us::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(211,163,170) 15%, 
        rgb(183,118,130) 35%, 
        rgb(211,163,170) 65%, 
        transparent 100%);
    z-index: 2;
    animation: scanline 3s infinite linear;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0.5;
    }
}

.contact_us .image_carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.06;
    filter: contrast(1.2) brightness(0.8) grayscale(0.5);
    mix-blend-mode: luminosity;
}

.contact_us .image_carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(211,163,170) 0,
        rgb(211,163,170) 5px,
        transparent 5px,
        transparent 10px
    );
    opacity: 0.03;
    mix-blend-mode: color-burn;
}

.contact_us .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_us h3 {
    color: rgb(211,163,170);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.contact_us .connect_card {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 0 0 15px rgb(240,217,220),
        0 0 30px rgb(211,163,170,0.5);
    position: relative;
    z-index: 2;
}

.contact_us .connect_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgb(211,163,170), rgb(183,118,130));
    z-index: 3;
}

.contact_us .request_box {
    flex: 1 1 60%;
    padding: 50px;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #ffffff 85%,
        rgba(rgb(240,217,220), 0.3) 100%
    );
}

.contact_us .request_box::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid rgb(211,163,170,0.5);
    border-right: 2px solid rgb(211,163,170,0.5);
    opacity: 0.5;
}

.contact_us .request_box::before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid rgb(211,163,170,0.5);
    border-left: 2px solid rgb(211,163,170,0.5);
    opacity: 0.5;
}

.contact_us .request_box h3 {
    color: #000000;
    font-size: 24px;
    text-align: left;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: normal;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgb(240,217,220);
}

.contact_us .request_box h3::before,
.contact_us .request_box h3::after {
    display: none;
}

.contact_us .request_box input[type="text"],
.contact_us .request_box textarea {
    width: 100%;
    background: rgb(240,217,220);
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    font-family: Playfair Display, sans-serif;
    font-size: 13px;
    color: #000000;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact_us .request_box input[type="text"]:focus,
.contact_us .request_box textarea:focus {
    background: #ffffff;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.05),
        0 0 0 2px rgb(211,163,170,0.5);
    outline: none;
}

.contact_us .request_box input[type="text"]::placeholder,
.contact_us .request_box textarea::placeholder {
    color: #000000;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact_us .request_box input[type="text"]:focus::placeholder,
.contact_us .request_box textarea:focus::placeholder {
    opacity: 0.4;
    transform: translateX(5px);
}

.contact_us .request_box textarea {
    min-height: 150px;
    resize: vertical;
}

.contact_us .request_box .support_info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact_us .request_box .support_info input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.contact_us .request_box .support_info label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

.contact_us .request_box .support_info label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid rgb(240,217,220);
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.contact_us .request_box .support_info input[type="checkbox"]:checked + label::before {
    background: rgb(211,163,170);
    border-color: rgb(211,163,170);
}

.contact_us .request_box .support_info input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact_us .request_box .support_info a {
    color: rgb(211,163,170);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-image: linear-gradient(
        transparent calc(100% - 2px),
        rgb(211,163,170,0.5) 2px
    );
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.3s ease;
}

.contact_us .request_box .support_info a:hover {
    background-size: 100% 100%;
}

.contact_us .request_box .message_message {
    background: rgb(211,163,170);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgb(211,163,170,0.5);
}

.contact_us .request_box .message_message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(183,118,130) 0%,
        rgb(183,118,130) 10%,
        rgb(211,163,170) 10%,
        rgb(211,163,170) 20%
    );
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.contact_us .request_box .message_message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(211,163,170,0.5);
}

.contact_us .request_box .message_message:hover::before {
    opacity: 1;
    animation: buttonBg 5s linear infinite;
}

@keyframes buttonBg {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.contact_us .help_reach {
    flex: 1 1 35%;
    padding: 50px;
    background: rgb(240,217,220);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact_us .help_reach::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(211,163,170,0.5) 0%, transparent 10px),
        radial-gradient(circle at 80% 70%, rgb(211,163,170,0.5) 0%, transparent 10px);
    background-size: 60px 60px;
    opacity: 0.1;
}

.contact_us .help_reach::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 90%, rgb(211,163,170,0.5) 100%),
        linear-gradient(180deg, transparent 90%, rgb(211,163,170,0.5) 100%);
    opacity: 0.3;
}

.contact_us .help_reach h4 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact_us .help_reach h4::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, rgb(211,163,170), rgb(183,118,130));
}

.contact_us .help_reach .support_query {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_us .help_reach .support_query li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border-left: 3px solid rgb(211,163,170);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact_us .help_reach .support_query li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgb(211,163,170);
    z-index: 2;
}

.contact_us .help_reach .support_query li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(211,163,170,0.5);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact_us .help_reach .support_query li:hover {
    transform: translateX(5px);
    border-left-color: rgb(183,118,130);
}

.contact_us .help_reach .support_query li:hover::after {
    opacity: 0.05;
}

.contact_us .help_reach .support_query li svg {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact_us .help_reach .support_query li:hover svg {
    transform: scale(1.2);
}

.contact_us .help_reach .support_query li svg path {
    fill: rgb(211,163,170);
    transition: all 0.3s ease;
}

.contact_us .help_reach .support_query li:hover svg path {
    fill: rgb(183,118,130);
}

.contact_us .help_reach .support_query li span {
    color: #000000;
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.contact_us .help_reach .support_query li a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact_us .help_reach .support_query li a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(211,163,170);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact_us .help_reach .support_query li a:hover {
    color: rgb(211,163,170);
}

.contact_us .help_reach .support_query li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 992px) {
    .contact_us {
        padding: 80px 0 60px;
    }
    
    .contact_us h3 {
        margin-bottom: 40px;
    }
    
    .contact_us .connect_card {
        flex-direction: column;
    }
    
    .contact_us .request_box,
    .contact_us .help_reach {
        flex: 1 1 100%;
    }
    
    .contact_us .help_reach {
        border-top: 1px solid rgb(240,217,220);
    }
}

@media (max-width: 768px) {
    .contact_us {
        padding: 60px 0;
    }
    
    .contact_us h3 {
        font-size: calc(38px * 0.85);
        margin-bottom: 35px;
    }

    .contact_us .request_box h3,
    .contact_us .help_reach h4 {
        font-size: calc(24px * 0.9);
    }
    
    .contact_us .request_box,
    .contact_us .help_reach {
        padding: 35px;
    }
    
    .contact_us .request_box::before,
    .contact_us .request_box::after {
        width: 30px;
        height: 30px;
    }
    
    .contact_us .request_box input[type="text"],
    .contact_us .request_box textarea {
        padding: 14px 16px;
    }
}

@media (max-width: 576px) {
    .contact_us {
        padding: 50px 0;
    }
    
    .contact_us h3 {
        font-size: calc(38px * 0.7);
        margin-bottom: 30px;
    }

    .contact_us .connect_card {
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(0, 0, 0, 0.02),
            0 0 0 8px rgb(240,217,220);
    }
    
    .contact_us .request_box,
    .contact_us .help_reach {
        padding: 25px 20px;
    }
    
    .contact_us .request_box::before,
    .contact_us .request_box::after {
        display: none;
    }
    
    .contact_us .request_box input[type="text"],
    .contact_us .request_box textarea {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .contact_us .request_box .support_info label {
        font-size: calc(15px * 0.9);
    }
    
    .contact_us .request_box .message_message {
        width: 100%;
        padding: 14px 20px;
    }
    
    .contact_us .help_reach .support_query li {
        padding: 12px;
        margin-bottom: 15px;
    }
}.benefits_outline {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(211,163,170), rgb(183,118,130));
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
}
.benefits_outline .study_pros {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(183,118,130,0.5);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 40px;
    transition: all 0.3s ease-in-out;
}
.benefits_outline .learning_reasons {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
}
.benefits_outline .learning_reasons .image_carousel {
    width: 100%;
    max-width: 300px;
    min-height: 300px;
    background: rgb(211,163,170,0.5);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits_outline .learning_reasons .image_carousel:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.benefits_outline .learn_tracks {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    background: rgb(183,118,130,0.5);
    border-radius: 10px;
    padding: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    gap: 20px;
    justify-content: space-between;
}
.benefits_outline .learn_tracks .knowledge_boosts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgb(211,163,170,0.5);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 30%;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}
.benefits_outline .learn_tracks .knowledge_boosts:hover {
    background: rgb(183,118,130);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.benefits_outline .learn_tracks .knowledge_boosts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(211,163,170);
    opacity: 0.5;
    transition: height 0.3s ease;
}
.benefits_outline .learn_tracks .knowledge_boosts:hover::before {
    height: 100%;
    opacity: 0.2;
}
.benefits_outline .learn_tracks .learning_expertise {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefits_outline .learn_tracks .learning_expertise svg, .benefits_outline .learn_tracks .learning_expertise svg path {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}
.benefits_outline .study_pros h2 {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.benefits_outline .study_pros h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: rgb(211,163,170);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.benefits_outline .study_pros h4 {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
}
@media only screen and (max-width: 1200px) {
    .benefits_outline .study_pros {
        padding: 20px;
    }
    .benefits_outline .learning_reasons {
        flex-direction: column;
    }
    .benefits_outline .learning_reasons .image_carousel {
        width: 80%;
    }
    .benefits_outline .learn_tracks {
        flex-direction: column;
        align-items: stretch;
    }
    .benefits_outline .learn_tracks .knowledge_boosts {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 800px) {
    .benefits_outline {
        padding: 40px 10px;
    }
    .benefits_outline .study_pros h2 {
        font-size: 19px;
    }
    .benefits_outline .learning_reasons .image_carousel {
        width: 100%;
    }
    .benefits_outline .learn_tracks {
        padding: 10px;
    }
    .benefits_outline .learn_tracks .knowledge_boosts {
        padding: 10px;
    }
    .benefits_outline .learn_tracks .learning_expertise {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
}
.welcome .start_intro {
    background-size: cover;
    background-position: center !important;
}

.welcome .study_guides h1 {
    color: rgb(183,118,130);
}

.welcome .study_guides h3 {
    color: rgb(183,118,130);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.welcome .study_guides p {
    color: #000000;
    text-align: right;
}

.welcome {
    width: 100%;
}

.welcome .start_intro {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.welcome .study_guides {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.welcome .study_guides h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.welcome .study_guides p {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .welcome .start_intro {
        min-height: 320px;
        height: auto;
    }

    .welcome .study_guides {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .welcome .study_guides h1 {
        font-size: 18px;
    }

    .welcome .study_guides h3 {
        font-size: 16px;
    }

    .welcome .study_guides p {
        font-size: 14px;
    }


}

.core-container .welcome {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.core-container .welcome .start_intro {
    background-size: cover !important;
    background-position: right center !important;
}

.core-container .welcome .start_intro {
    width: 50%;
    min-height: 400px;
    height: auto;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.core-container .welcome .study_guides {
    clip-path: none;
    width: 100%;
    padding: 30px 20px;
    position: absolute;
    top: unset;
    left: -100%;
    bottom: unset;
    min-width: unset;
    align-items: flex-start;
    justify-content: center;
    padding-left: 40px;
    background: #ffffff;
    border-radius: 0 !important;
}

.core-container .welcome .study_guides h1 {
    text-align: left;
    font-size: 36px;
    line-height: 46px;
    color: #000000;
}

.core-container .welcome .study_guides h3 {
    color: #000000;
    text-align: left;
    z-index: 2;
}

.core-container .welcome .study_guides p {
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
}

@media only screen and (max-width: 1200px) {
    .core-container .welcome .start_intro {
        width: 100%;
    }

    .core-container .welcome .study_guides {
        width: 80%;
        position: relative;
        left: unset;
    }
}

@media only screen and (max-width: 800px) {

    .core-container .welcome .start_intro {
        background-size: cover !important;
    }
}.id_thankbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(240,217,220);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.id_thankbox .container {
    background-color: rgb(240,217,220);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.id_thankbox h2 {
    font-size: 42px;
    color: rgb(211,163,170);
    margin-bottom: 20px;
    font-family: Playfair Display, sans-serif;
    font-weight: 600;
    border-bottom: 4px solid rgb(211,163,170);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}
.id_thankbox p {
    font-size: 15px;
    color: #000000;
    font-family: Playfair Display, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(183,118,130);
}
@media only screen and (max-width: 800px) {
    .id_thankbox {
        padding: 20px;
    }
    .id_thankbox .container {
        padding: 20px;
    }
    .id_thankbox h2 {
        font-size: 37px;
        padding-bottom: 5px;
    }
    .id_thankbox p {
        font-size: 14px;
        padding: 15px;
    }
}
.privacy_stockade {
    padding: 40px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    line-height: 1.6;
}

.privacy_stockade h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 43px;
    font-family: Playfair Display, sans-serif;
    color: rgb(211,163,170);
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid rgb(211,163,170);
    padding-bottom: 10px;
}

.privacy_stockade h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 30px;
    font-family: Playfair Display, sans-serif;
    color: rgb(183,118,130);
    font-weight: 600;
    border-bottom: 1px solid rgb(183,118,130);
    padding-bottom: 8px;
}

.privacy_stockade h3, .privacy_stockade h4, .privacy_stockade h5, .privacy_stockade h6 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 22px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
    text-transform: uppercase;
}

.privacy_stockade ul, .privacy_stockade ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 10px 0;
    margin: 0;
}

.privacy_stockade li {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.8;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.privacy_stockade section {
    background: #ffffff;
}

.privacy_stockade p, .privacy_stockade span, .privacy_stockade div {
    line-height: 1.8;
    margin-bottom: 10px;
    font-family: Playfair Display, sans-serif;
    color: #000000;
    font-size: 12px;
}

@media only screen and (max-width: 800px) {
    .privacy_stockade {
        padding: 20px;
        box-shadow: none;
    }

    .privacy_stockade h1, .privacy_stockade h2 {
        text-align: left;
        font-size: calc(22px - 5px);
        border-bottom-width: 1px;
    }

    .privacy_stockade ul, .privacy_stockade ol {
        padding: 10px 0;
    }

    .privacy_stockade li {
        padding: 5px 0;
    }

    .privacy_stockade p, .privacy_stockade span, .privacy_stockade div {
        padding-bottom: 5px;
    }
}.about_this {
    position: relative;
    background: linear-gradient(135deg, rgb(240,217,220) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 120px 0;
    overflow: hidden;
}

.about_this::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgb(211,163,170,0.5) 0%, transparent 50%);
    z-index: 1;
    animation: pulse 15s infinite alternate;
}

.about_this::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 80%, rgb(183,118,130,0.5) 0%, transparent 50%);
    z-index: 1;
    animation: pulse 20s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

.about_this .container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}

.about_this .who_weare {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.about_this .who_weare::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 1px solid rgb(211,163,170,0.5);
    border-radius: 21px;
    z-index: -1;
    transform: rotate(-1deg);
    opacity: 0.4;
    animation: borderPulse 8s infinite alternate;
}

@keyframes borderPulse {
    0% {
        border-color: rgb(211,163,170,0.5);
    }
    50% {
        border-color: rgb(183,118,130,0.5);
    }
    100% {
        border-color: rgb(211,163,170,0.5);
    }
}

.about_this .teach_method {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 30px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 21px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about_this .teach_method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about_this .image_carousel {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about_this .image_carousel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgb(211,163,170,0.5);
    animation: rotate 15s linear infinite;
}

.about_this .image_carousel::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 1px dashed rgb(183,118,130,0.5);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about_this .smart_track {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about_this .training_experts {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.about_this .training_experts::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgb(211,163,170);
    transition: width 0.3s ease;
}

.about_this .teach_method:hover .training_experts::after {
    width: 100px;
}

.about_this .vision_mission {
    font-size: 16px;
    color: rgb(183,118,130);
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about_this .text_details {
    position: relative;
    padding: 40px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 21px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease;
}

.about_this .text_details:hover {
    transform: perspective(1000px) rotateY(0);
}

.about_this .text_details::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid rgb(211,163,170);
    border-left: 2px solid rgb(211,163,170);
    opacity: 0.5;
}

.about_this .text_details::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid rgb(183,118,130);
    border-right: 2px solid rgb(183,118,130);
    opacity: 0.5;
}

.about_this .heritage_edu {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgb(211,163,170);
    font-weight: 600;
    font-size: 18px;
}

.about_this .heritage_edu svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(211,163,170);
    transition: transform 0.5s ease;
}

.about_this .heritage_edu svg path {
    fill: rgb(211,163,170);
    transition: fill 0.3s ease;
}

.about_this h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.about_this h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgb(211,163,170) 0%, rgb(183,118,130) 100%);
    transition: width 0.5s ease;
}

.about_this .text_details:hover h2::after {
    width: 120px;
}

.about_this p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 0;
    position: relative;
}

@media (max-width: 992px) {
    .about_this {
        padding: 80px 0;
    }
    
    .about_this .container {
        padding: 0 20px;
    }
    
    .about_this .who_weare {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about_this .teach_method {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about_this .text_details {
        transform: none;
        padding: 30px;
    }
    
    .about_this h2 {
        font-size: calc(28px * 0.9);
    }
}

@media (max-width: 768px) {
    .about_this {
        padding: 60px 0;
    }
    
    .about_this .who_weare::before {
        display: none;
    }
    
    .about_this .image_carousel {
        width: 150px;
        height: 150px;
    }
    
    .about_this .image_carousel::before,
    .about_this .image_carousel::after {
        display: none;
    }
    
    .about_this .teach_method {
        padding: 20px;
    }
    
    .about_this .text_details {
        padding: 25px 20px;
    }
    
    .about_this .text_details::before,
    .about_this .text_details::after {
        width: 25px;
        height: 25px;
    }
    
    .about_this h2 {
        font-size: calc(28px * 0.8);
        margin-bottom: 20px;
    }
    
    .about_this .heritage_edu svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .about_this {
        padding: 40px 0;
    }
    
    .about_this .image_carousel {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .about_this .training_experts {
        font-size: calc(20px * 0.9);
    }
    
    .about_this .vision_mission {
        font-size: calc(16px * 0.9);
    }
    
    .about_this .heritage_edu {
        font-size: calc(18px * 0.9);
    }
    
    .about_this h2 {
        font-size: calc(28px * 0.7);
        padding-bottom: 10px;
    }
    
    .about_this p {
        font-size: calc(16px * 0.9);
        line-height: 1.6;
    }
}.instructor_profile {
    padding: 60px 0;
    background: linear-gradient(180deg, rgb(240,217,220) 0%, rgb(183,118,130,0.5) 100%);
    font-family: Playfair Display, sans-serif;
}
.instructor_profile .alumni_feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(211,163,170);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.instructor_profile .alumni_feedback .image_carousel {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgb(211,163,170);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.instructor_profile .alumni_feedback .image_carousel:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.instructor_profile .exp_flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}
.instructor_profile .exp_flex p.name {
    margin-bottom: 5px;
    font-size: 46px;
    font-weight: 700;
    color: rgb(211,163,170);
}
.instructor_profile .exp_flex p.career_trajectory {
    font-size: 19px;
    font-weight: 300;
    color: #ffffff;
}
.instructor_profile .worker_info {
    width: 100%;
}
.instructor_profile .worker_info p {
    margin: 20px 0;
    padding: 20px;
    background: rgb(211,163,170,0.5);
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease-in-out;
}
.instructor_profile .worker_info p:hover {
    transform: translateY(-5px);
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.instructor_profile .alumni_feedback {
    animation: fadeIn 0.8s ease-in-out;
}
@media only screen and (max-width: 800px) {
    .instructor_profile .alumni_feedback {
        padding: 20px;
    }
    .instructor_profile .alumni_feedback .image_carousel {
        width: 150px;
        height: 150px;
    }
    .instructor_profile .exp_flex {
        margin-bottom: 10px;
    }
    .instructor_profile .worker_info p {
        padding: 15px;
    }
}
.join_our_community {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.join_our_community .who_weare {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join_our_community input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(183,118,130,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.join_our_community h2 {
    margin-bottom: 20px;
    text-align: center;
}

.join_our_community .message_message {
    background: rgb(183,118,130);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.join_our_community .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .join_our_community .who_weare {
        flex-direction: column;
    }

    .join_our_community {
        padding: 30px 20px;
    }

    .join_our_community input {
        min-width: unset;
    }

    .join_our_community .message_message {
        flex-shrink: unset;
    }

    .join_our_community .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .join_our_community input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .core-container .join_our_community .who_weare h2 {
        font-size: 20px;
    }
}

.core-container .join_our_community {
    background: rgb(240,217,220);
    padding: 60px 30px;
    position: relative;
    color: #000000;
}

.core-container .join_our_community .who_weare {
    padding: 40px;
    background: #ffffff;
    border-radius: 29px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.core-container .join_our_community h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: rgb(211,163,170);
}

.core-container .join_our_community .input_holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
}

.core-container .join_our_community input[type="email"] {
    border-radius: 10px;
    background: rgb(240,217,220);
    color: #000000;
    padding: 14px 20px;
    width: 70%;
    border: 1px solid rgb(211,163,170);
    font-size: 15px;
    margin: 0;
}

.core-container .join_our_community .message_message {
    border-radius: 10px;
    background: rgb(211,163,170);
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

@media only screen and (max-width: 800px) {
    .core-container .join_our_community {
        padding: 30px 20px;
    }

    .core-container .join_our_community .who_weare {
        padding: 30px;
    }

    .core-container .join_our_community .input_holder {
        flex-direction: column;
        gap: 15px;
    }

    .core-container .join_our_community input[type="email"] {
        width: 100%;
    }

    .core-container .join_our_community .message_message {
        width: 100%;
    }
}header .nav_header {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
header .head_info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
header .head_info .head_top img, header .head_info .head_top svg {
    height: 50px;
    width: auto;
}
header .main_mentor {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
header .main_mentor a {
    text-decoration: none;
    color: rgb(183,118,130);
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    font-family: Playfair Display, sans-serif;
    font-weight: 600;
}
header .main_mentor a:hover {
    background-color: rgb(211,163,170,0.5);
    color: rgb(211,163,170);
}
header .main_mentor a.active {
    border-bottom: 3px solid rgb(211,163,170);
    color: rgb(211,163,170);
}
header .main_mentor a.active:hover {
    background-color: rgb(211,163,170);
    color: #ffffff;
}
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }
    header .main_mentor {
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }
    header .menu.top_nav {
        display: flex;
    }
    header .main_mentor a {
        padding: 15px;
        width: 100%;
        text-align: center;
    }
}
.core-container header .top_pagebar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.core-container header .head_info .head_top img {
    width: 40px;
    height: 40px;
}
.core-container header .main_mentor a {
    font-size: 14px;
    font-weight: 700;
}
.core-container header .main_mentor a:hover {
    color: rgb(211,163,170);
    background: rgb(211,163,170,0.5);
}
.core-container header .main_mentor a.active {
    border-bottom: 2px solid rgb(211,163,170);
}
.core-container header .main_mentor a.active:hover {
    background: rgb(211,163,170);
    color: #ffffff;
    border-bottom: none;
}
.core-container header .head_section {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.core-container header .head_mainbar {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    text-transform: uppercase;
}
@media (max-width: 800px) {
    .core-container header .top_pagebar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .core-container header .head_info {
        margin-bottom: 20px;
    }
    .core-container header .main_mentor {
        width: 100%;
        text-align: center;
    }
    .core-container header .main_mentor a {
        width: 100%;
        padding: 10px 0;
    }
}.course_summary {
    padding-top: 90px;
    padding-bottom: 90px;
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.course_summary h2 {
    color: rgb(211,163,170);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.course_summary .head_wrap {
    border-radius: 27px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #ffffff;
}
.course_summary .head_wrap:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}
.course_summary h3 {
    color: rgb(183,118,130);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}
.course_summary p {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}
.course_summary .message_message {
    background: rgb(211,163,170);
    color: #ffffff;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}
.course_summary .message_message:hover {
    background: rgb(183,118,130);
    transform: translateY(-5px);
}
.course_summary .who_weare {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.course_summary .skill_tool {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.course_summary .grow_skills {
    padding: 20px;
    margin-bottom: 40px;
}
.course_summary .head_wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
}
.course_summary .text_details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}
.course_summary .image_carousel {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .course_summary .skill_tool {
        flex-direction: column;
    }
    .course_summary h2 {
        font-size: 18px;
    }
    .course_summary h3 {
        font-size: 20px;
    }
    .course_summary .grow_skills {
        max-width: 100%;
        flex-basis: 100%;
        padding: 0;
    }
    .course_summary {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .core-container .course_summary .head_wrap {
        padding: 10px;
    }
}
.core-container .course_summary {
    position: relative;
    overflow: hidden;
    background: rgb(240,217,220);
}
.core-container .course_summary .skill_tool {
    width: 100%;
}
.core-container .course_summary .head_wrap {
    border-radius: 10px;
    box-shadow: none;
}
.core-container .course_summary .text_details {
    position: relative;
    z-index: 3;
    background: none;
    width: 100%;
    min-height: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: #000000;
    border: none;
}
.core-container .course_summary h3 {
    font-size: 38px;
    font-weight: 700;
    color: rgb(183,118,130);
    margin: 0;
}
.core-container .course_summary p {
    padding: 0 40px 0 0;
    margin-top: 20px;
    font-size: 17px;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}
.core-container .course_summary .message_message {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background: rgb(211,163,170);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.core-container .course_summary .message_message:hover {
    background: rgb(183,118,130);
    transform: translateY(-5px);
}
@media only screen and (max-width: 800px) {
    .core-container .course_summary .text_details {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .core-container .course_summary p {
        padding: 0;
        font-size: 17px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .core-container .course_summary h3 {
        font-size: 20px;
    }
    .core-container .course_summary .message_message {
        margin-top: 20px;
    }
}footer {
    background: rgb(183,118,130);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 60px 20px;
    position: relative;
}
footer .footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .head_info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
footer .head_info img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}
footer .head_info img:hover {
    transform: scale(1.1);
}
footer h5 {
    color: rgb(211,163,170);
    font-size: 19px;
    margin: 20px 0;
    font-weight: 600;
    text-transform: uppercase;
}
footer .main_mentor {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .main_mentor a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}
footer .main_mentor a:hover {
    color: rgb(211,163,170);
}
footer .support_query {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .support_query div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}
footer .support_query div svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: rgb(211,163,170);
    transition: fill 0.3s ease-in-out;
}
footer .support_query div span {
    font-size: 15px;
    font-weight: 400;
}
footer .support_query div:hover svg {
    fill: rgb(183,118,130);
}
footer .support_query div:hover span {
    color: rgb(183,118,130);
}
footer .footer_milestones {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: var(--white-color_opacity);
    font-size: 15px;
}
footer .online_tools {
    background: rgb(183,118,130);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #000000;
    margin-top: 40px;
}
footer .skill_test {
    color: var(--white-color_opacity);
}
footer .skill_test a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}
footer .skill_test a:hover {
    color: rgb(211,163,170);
}

footer .campus_links {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgb(183,118,130,0.5);
}
footer .main_mentor a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: rgb(211,163,170);
    transition: width 0.3s ease-in-out;
    margin-top: 5px;
}
footer .main_mentor a:hover:after {
    width: 100%;
}
footer .support_query div span {
    transition: color 0.3s ease-in-out;
}
footer .support_query div:hover span {
    color: rgb(211,163,170);
}
footer .head_info svg, footer .head_info svg path {
    fill: rgb(211,163,170);
    width: 125px;
    height: 125px;
    transition: fill 0.3s ease-in-out;
}
footer .head_info:hover svg, footer .head_info:hover svg path {
    fill: #ffffff;
}
@media only screen and (max-width: 1200px) {
    footer .footer {
        padding: 0 20px;
    }
    footer .footer_milestones {
        text-align: center;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer {
        flex-direction: column;
        align-items: center;
    }
    footer .main_mentor, footer .support_query {
        align-items: center;
    }
    footer h5 {
        margin-top: 10px;
        text-align: center;
    }
    footer .footer_milestones {
        text-align: center;
        margin-top: 20px;
    }
}