* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Roboto, sans-serif;
    color: #000000;
}
.framework-wrap_key {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(169,173,178);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}header {
    background: linear-gradient(135deg, rgb(106,113,144), rgb(82,86,92));
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #000000;
}
.main_header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.main_header .header_holder {
    width: 100%;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
    border-right: 2px solid #000000;
    padding-right: 20px;
}
.main_header .logo_holder svg,
.main_header .logo_holder img {
    width: 60px;
    height: 60px;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 20px;
    border-left: 2px solid #000000;
    margin: 14px 0;
}
.main_header .header_menu {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-grow: 1;
}
.main_header .header_menu a {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    border: 2px solid #000000;
}
.main_header .header_menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(106,113,144), rgb(82,86,92));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.main_header .header_menu a:hover::before {
    opacity: 1;
}
.main_header .header_menu a:hover {
    color: #000000;
    border-color: rgb(82,86,92);
}
@media only screen and (max-width: 1200px) {
    .main_header .container {
        flex-direction: column;
        justify-items: center;
    }
    .main_header .logo_holder {
        justify-content: center;
        border-right: none;
        border-bottom: 2px solid #000000;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .main_header .header_description {
        border-left: none;
        border-top: 2px solid #000000;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .main_header .header_menu a {
        padding: 8px 12px;
        font-size: 19px;
    }
}
.main_header .header_menu a:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(106,113,144), rgb(82,86,92));
    opacity: 0.1;
    z-index: -1;
}.get_help_info_key {
    color: #000000;
    background-color: rgb(169,173,178);
    padding: 60px 20px;
    font-family: Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}
.get_help_info_key .contact_holder {
    padding: 30px;
    border-radius: 17px;
    background-color: #ffffff;
    border: 2px solid rgb(106,113,144);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.get_help_info_key .holder {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}
.get_help_info_key .holder .info_holder div.daily_hours_key {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.get_help_info_key .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.get_help_info_key .holder .info_holder > div > div {
    margin: 5px 0;
}
.get_help_info_key .holder .contact_description {
    flex: 1;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #000000;
}
.get_help_info_key .holder .photo {
    flex: 0 0 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 17px;
    border: 2px solid rgb(106,113,144);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}
@keyframes photoHoverEffect {
    0% {
        border-color: rgb(106,113,144);
    }
    100% {
        border-color: rgb(82,86,92);
    }
}
.get_help_info_key .holder .photo:hover {
    animation: photoHoverEffect 0.3s forwards;
}
.get_help_info_key .holder .info_holder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.get_help_info_key .holder .info_holder > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid rgb(106,113,144);
    transition: color 0.3s ease, border-left-color 0.3s ease;
}
@keyframes infoHoverEffect {
    0% {
        color: #000000;
        border-left-color: rgb(106,113,144);
    }
    100% {
        color: rgb(82,86,92);
        border-left-color: rgb(82,86,92);
    }
}
.get_help_info_key .holder .info_holder > div:hover {
    animation: infoHoverEffect 0.3s forwards;
}
.get_help_info_key .holder .info_holder>div span {
    margin-left: 8px;
}
.get_help_info_key .holder .info_holder > div a {
    color: rgb(106,113,144);
    text-decoration: none;
    transition: color 0.3s ease;
}
.get_help_info_key .holder .info_holder > div a:hover,
.get_help_info_key .holder .info_holder > div a:focus {
    color: rgb(82,86,92);
}
.get_help_info_key .contact_politics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}
.get_help_info_key .contact_politics > div {
    background-color: #ffffff;
    border-radius: 17px;
    border: 2px solid rgb(106,113,144);
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@keyframes politicsHoverEffect {
    0% {
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    100% {
        background-color: rgb(106,113,144,0.5);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}
.get_help_info_key .contact_politics > div:hover {
    animation: politicsHoverEffect 0.3s forwards;
}
.get_help_info_key .contact_politics > div h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(106,113,144);
}
.get_help_info_key .contact_politics > div p {
    font-size: 12px;
    line-height: 1.6;
    color: #000000;
}
.get_help_info_key .info_holder svg {
    width: 24px;
    height: 24px;
    fill: rgb(106,113,144);
    transition: fill 0.3s ease;
}
@keyframes iconHoverEffect {
    0% {
        fill: rgb(106,113,144);
    }
    100% {
        fill: rgb(82,86,92);
    }
}
.get_help_info_key .info_holder svg:hover {
    animation: iconHoverEffect 0.3s forwards;
}
.get_help_info_key h2 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    border-bottom: 4px solid rgb(106,113,144);
    padding-bottom: 10px;
    position: relative;
    transition: border-color 0.3s ease;
}
.get_help_info_key h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: rgb(106,113,144);
    border-radius: 10px;
}
@keyframes headingHoverEffect {
    0% {
        border-color: rgb(106,113,144);
    }
    100% {
        border-color: rgb(82,86,92);
    }
}
.get_help_info_key h2:hover::after {
    animation: headingHoverEffect 0.3s forwards;
}
@media only screen and (max-width: 800px) {
    .get_help_info_key .holder {
        flex-direction: column;
        align-items: center;
    }
    .get_help_info_key .holder .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }
    .get_help_info_key .holder .info_holder {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .get_help_info_key .contact_holder {
        padding: 15px;
        border: none;
        box-shadow: none;
    }
}
.benefits_summary_key {
    padding: 80px 0;
    background: rgb(169,173,178);
}
.benefits_summary_key .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.benefits_summary_key .advantages_photo_holder {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.benefits_summary_key .advantages_photo_holder .photo {
    width: 100%;
    height: auto;
    border-top: 4px solid rgb(106,113,144);
    height: 400px;
}
.benefits_summary_key .advantages_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}
.benefits_summary_key .advantages_holder .advantage_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.benefits_summary_key .advantages_holder .advantage_item svg, .benefits_summary_key .advantages_holder .advantage_item svg path {
    width: 55px;
    height: 55px;
    fill: rgb(106,113,144);
    margin-right: 20px;
}
.benefits_summary_key .advantages_content h2 {
    font-size: 37px;
    color: rgb(106,113,144);
    text-align: center;
    margin: 20px 0;
    margin-bottom: 40px;
}
@media only screen and (max-width: 800px) {
    .benefits_summary_key .advantages_photo_holder {
        flex-direction: column;
    }
    .benefits_summary_key .advantages_photo_holder .photo {
        width: 100%;
        height: 200px;
    }
    .benefits_summary_key .advantages_content h2 {
        font-size: 22px;
    }
    .benefits_summary_key .advantages_holder {
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
    }
    .benefits_summary_key .advantages_holder .advantage_item {
        width: 100%;
        justify-content: flex-start;
    }
}.client_experience_key {
    background: linear-gradient(135deg, #000000 0%, rgb(82,86,92) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.client_experience_key::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(106,113,144,0.5) 5%, transparent 60%);
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

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

.client_experience_key .container {
    position: relative;
    z-index: 1;
}

.client_experience_key h3 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.client_experience_key h3::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 3px;
    background: linear-gradient(90deg, rgb(106,113,144), rgb(82,86,92));
    border-radius: 3px;
}

.client_experience_key .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
}

.client_experience_key .review {
    background: rgb(169,173,178);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    width: calc(33.333% - 1.67rem);
    min-width: 280px;
}

.client_experience_key .review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(106,113,144), rgb(82,86,92));
}

.client_experience_key .review::after {
    content: '"';
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    font-size: 8rem;
    color: rgb(106,113,144,0.5);
    font-family: Roboto, sans-serif;
    line-height: 1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.client_experience_key .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.client_experience_key .review:hover::after {
    transform: rotate(10deg);
    opacity: 0.2;
}

.client_experience_key .photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgb(106,113,144);
    box-shadow: 0 0 0 4px rgb(169,173,178), 0 0 0 6px rgb(106,113,144,0.5);
}

.client_experience_key .text {
    text-align: center;
    color: #000000;
    position: relative;
    z-index: 1;
}

.client_experience_key .text span {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: rgb(106,113,144);
    margin-bottom: 0.5rem;
}

.client_experience_key .text p {
    font-size: 12px;
	font-weight: 600;
    line-height: 1.8;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgb(169,173,178) 0%, rgb(82,86,92,0.5) 100%);
    border-radius: 10px;
    margin-top: 1rem;
}

.client_experience_key .text p::before,
.client_experience_key .text p::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(106,113,144);
    opacity: 0.1;
}

.client_experience_key .text p::before {
    top: -5px;
    left: -5px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.client_experience_key .text p::after {
    bottom: -5px;
    right: -5px;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.client_experience_key .review:hover .text p {
    opacity: 1;
    background: linear-gradient(135deg, rgb(169,173,178) 0%, rgb(106,113,144,0.5) 100%);
}

@media (max-width: 991px) {
    .client_experience_key .review {
        width: calc(50% - 1.25rem);
    }
}

@media (max-width: 768px) {
    .client_experience_key {
        padding: 4rem 1rem;
    }
    
    .client_experience_key .reviews {
        flex-direction: column;
        align-items: center;
    }
    
    .client_experience_key .review {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .client_experience_key h3 {
        font-size: 36px;
    }
    
    .client_experience_key .review {
        padding: 1.5rem;
    }
}.academic_expertise_key {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
}

.academic_expertise_key .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.academic_expertise_key .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 33%;
    background: rgb(82,86,92,0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 29px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin: 20px;
}


.academic_expertise_key .photo {
    width: 300px;
    height: 300px;
    max-width: 100%;
    margin-bottom: 16px;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    border: 5px solid rgb(106,113,144);
    transition: border 0.3s ease-in-out;
}

.academic_expertise_key .review .name {
    font-size: 20px;
    color: rgb(106,113,144);
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

.academic_expertise_key .review span {
    font-size: 17px;
    color: rgb(82,86,92);
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
}

.academic_expertise_key .review .quote {
    font-size: 17px;
    color: #000000;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    padding: 0 20px;
}

@media only screen and (max-width: 1200px) {
    .academic_expertise_key .review {
        max-width: unset;
        width: 45%;
    }
}

@media only screen and (max-width: 800px) {
    .academic_expertise_key .holder {
        flex-direction: column;
    }

    .academic_expertise_key .review {
        max-width: unset;
        width: 80%;
        padding: 20px;
    }

    .academic_expertise_key {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.framework-wrap_key .academic_expertise_key {
    position: relative;
    padding: 20px 0;
}

.framework-wrap_key .academic_expertise_key::after {
    content: "";
    width: 100%;
    height: 280px;
    background: rgb(82,86,92);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-bottom-left-radius: 29px;
    border-bottom-right-radius: 29px;
}

.framework-wrap_key .academic_expertise_key .holder {
    position: relative;
    z-index: 1;
    justify-content: center;
}

.framework-wrap_key .academic_expertise_key .review {
    max-width: 80%;
    width: auto;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: #ffffff;
    padding: 30px;
}

.framework-wrap_key .academic_expertise_key .photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.framework-wrap_key .worker_description {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.framework-wrap_key .academic_expertise_key .review .name {
    width: 100%;
    text-align: center;
    font-size: 29px;
    font-weight: 600;
    color: rgb(106,113,144);
    margin-bottom: 12px;
}

.framework-wrap_key .academic_expertise_key .review span {
    font-size: 22px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    color: rgb(82,86,92);
    margin-bottom: 16px;
}

.framework-wrap_key .academic_expertise_key .review .quote {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .framework-wrap_key .academic_expertise_key .review {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    .framework-wrap_key .worker_description {
        width: 100%;
    }

    .framework-wrap_key .academic_expertise_key .photo {
        width: 220px;
        height: 220px;
        margin: 20px;
    }

    .framework-wrap_key .academic_expertise_key::after {
        height: 200px;
    }
}
.program_offerings_key {
    padding: 100px 0;
    background: linear-gradient(to right, rgb(106,113,144,0.5), rgb(82,86,92,0.5));
    position: relative;
    overflow: hidden;
}

.program_offerings_key::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    animation: float 10s infinite;
}

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

.program_offerings_key h2 {
    color: #000000;
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.program_offerings_key .content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.program_offerings_key h3 {
    color: rgb(106,113,144);
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.program_offerings_key p {
    color: #000000;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.program_offerings_key .button {
    display: inline-block;
    background: rgb(82,86,92);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 20px;
}

.program_offerings_key .button:hover {
    background: rgb(106,113,144);
    color: #ffffff;
    transform: scale(1.05);
}

.program_offerings_key .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program_offerings_key .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.program_offerings_key .course {
    padding: 20px;
    max-width: 1000px;
    width: 100%;
}

.program_offerings_key .photo {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: rgb(82,86,92,0.5);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.program_offerings_key .photo:hover {
    transform: scale(1.1);
}

.program_offerings_key .text_holder {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
}

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

    .program_offerings_key h2 {
        font-size: 32px;
    }

    .program_offerings_key .items {
        flex-direction: column;
    }
}

.framework-wrap_key .program_offerings_key .items {
    width: 100%;
}

.framework-wrap_key .program_offerings_key .items .course .content {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.framework-wrap_key .program_offerings_key .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.framework-wrap_key .program_offerings_key .text_holder {
    border-radius: 15px;
    border: 5px solid rgb(82,86,92);
    width: 80%;
    margin-top: -150px;
    background: #ffffff;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.framework-wrap_key .program_offerings_key h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.framework-wrap_key .program_offerings_key .button {
    display: inline-block;
    width: fit-content;
    margin-top: 25px;
    padding: 15px 40px;
    border-radius: 10px;
    background: rgb(106,113,144);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.framework-wrap_key .program_offerings_key .button:hover {
    background: rgb(82,86,92);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .framework-wrap_key .program_offerings_key .photo {
        width: 100%;
        height: 200px;
    }

    .framework-wrap_key .program_offerings_key .text_holder {
        width: 90%;
        margin-top: -100px;
        padding: 20px;
    }

    .framework-wrap_key .program_offerings_key h3 {
        font-size: 17px;
    }
    .program_offerings_key .course {
        padding: 0;
    }
}.price_set_key {
    position: relative;
    background: rgb(169,173,178);
    padding: 150px 0;
    overflow: hidden;
    width: 100%;
}

.price_set_key::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(0deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgb(106,113,144,0.5) 49%, rgb(106,113,144,0.5) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgb(82,86,92,0.5) 49%, rgb(82,86,92,0.5) 51%, transparent 52%),
        radial-gradient(circle at 50% 50%, rgb(106,113,144,0.5) 0%, transparent 1%),
        radial-gradient(circle at 0% 0%, rgb(82,86,92,0.5) 0%, transparent 6%),
        radial-gradient(circle at 100% 100%, rgb(106,113,144,0.5) 0%, transparent 6%);
    background-size: 
        30px 30px,
        30px 30px,
        60px 60px,
        60px 60px,
        60px 60px,
        200px 200px,
        200px 200px;
    background-position: 
        center center,
        center center,
        center center,
        center center,
        center center,
        center center,
        center center;
    animation: bgAnimation 30s linear infinite;
    opacity: 0.07;
}

.price_set_key::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 2px, 
            rgb(106,113,144,0.5) 3px, 
            transparent 4px),
        repeating-linear-gradient(-45deg, 
            transparent, 
            transparent 2px, 
            rgb(82,86,92,0.5) 3px, 
            transparent 4px),
        radial-gradient(circle at 30% 30%, rgb(106,113,144,0.5) 0%, transparent 10%),
        radial-gradient(circle at 70% 70%, rgb(82,86,92,0.5) 0%, transparent 10%);
    background-size: 50px 50px, 50px 50px, 400px 400px, 400px 400px;
    opacity: 0.05;
    animation: bgAnimation 20s linear infinite reverse;
}

@keyframes bgAnimation {
    0% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(1deg) scale(1.05);
    }
    66% {
        transform: rotate(-1deg) scale(0.95);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

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

.price_set_key .price_info_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.price_set_key .photo {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto 80px;
    overflow: hidden;
    border-radius: 21px;
}

.price_set_key .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: contrast(1.1) brightness(0.9);
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.price_set_key .photo:hover::before {
    transform: scale(1.05);
}

.price_set_key .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(120deg, 
            rgb(106,113,144,0.5) 0%,
            transparent 40%
        ),
        linear-gradient(-120deg,
            rgb(82,86,92,0.5) 0%,
            transparent 40%
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 10px,
            rgb(106,113,144,0.5) 10.5px,
            transparent 11px
        );
    background-size: 100% 100%, 100% 100%, 200% 200%;
    opacity: 0.2;
    animation: gradientFlow 8s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0 0, 0 0, 0 0;
        opacity: 0.2;
    }
    50% {
        background-position: 0 0, 0 0, 40px 40px;
        opacity: 0.3;
    }
}

.price_set_key h2 {
    font-size: 47px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.price_set_key h3 {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-bottom: 5rem;
    line-height: 1.6;
}

.price_set_key .price_items {
    display: grid;
    gap: 30px;
    width: 100%;
}

.price_set_key .price_item {
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 21px;
}

.price_set_key .price_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgb(106,113,144,0.5),
        transparent 50%,
        rgb(82,86,92,0.5)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 21px;
}

.price_set_key .price_item h3 {
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    margin: 0;
    padding: 2.5rem 3rem 1rem;
    text-align: left;
}

.price_set_key .price_item .price_amount {
    font-size: 47px;
    font-weight: 700;
    padding: 0 3rem 2rem;
    color: rgb(106,113,144);
    position: relative;
}

.price_set_key .price_item span {
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    padding: 2rem 3rem;
    position: relative;
    border-top: 1px solid rgb(106,113,144,0.5);
}

.price_set_key .price_item .button {
    margin: 2rem 3rem 3rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgb(106,113,144), rgb(82,86,92));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: block;
    margin-top: auto;
}

.price_set_key .price_item .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 50%, 
        transparent 100%
    );
    opacity: 0.2;
    transition: left 0.5s ease;
}

.price_set_key .price_item:hover .button {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px -5px rgb(106,113,144,0.5);
}

.price_set_key .price_item:hover .button::before {
    left: 100%;
}

@media (min-width: 768px) {
    .price_set_key .price_items:has(.price_item:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .price_set_key .price_items:has(.price_item:nth-child(3):last-child) {
        grid-template-columns: repeat(3, 1fr);
    }

    .price_set_key .price_items:has(.price_item:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .price_set_key .price_items:has(.price_item:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }

    .price_set_key .price_items:has(.price_item:nth-child(2):last-child),
    .price_set_key .price_items:has(.price_item:nth-child(4):last-child) {
        max-width: 1000px;
    }
    
    .price_set_key .photo {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .price_set_key {
        padding: 80px 0;
    }

    .price_set_key .photo {
        height: 350px;
        margin-bottom: 60px;
    }

    .price_set_key h2 {
        font-size: calc(47px * 0.8);
    }

    .price_set_key h3 {
        font-size: calc(20px * 0.9);
        margin-bottom: 3rem;
    }

    .price_set_key .price_items {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price_set_key .price_item h3 {
        font-size: calc(28px * 0.9);
        padding: 2rem 2rem 0.5rem;
    }

    .price_set_key .price_item .price_amount {
        padding: 0 2rem 1.5rem;
    }

    .price_set_key .price_item span {
        padding: 1.5rem 2rem;
    }

    .price_set_key .price_item .button {
        margin: 1.5rem 2rem;
    }
}.framework-wrap_key .our_background_key {
    padding: 80px 0;
    background: rgb(169,173,178);
    color: #000000;
    font-family: Roboto, sans-serif;
}

.framework-wrap_key .our_background_key .holder {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.framework-wrap_key .our_background_key .photo {
    width: 100%;
    height: 360px;
    background-size: cover;
    border-radius: 13px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-bottom: 20px;
}

.framework-wrap_key .our_background_key .caption_holder {
    background: #ffffff;
    width: 100%;
    padding: 40px 60px;
    border-radius: 13px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.framework-wrap_key .our_background_key .caption_holder:hover {
    background: rgb(106,113,144,0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.framework-wrap_key .our_background_key .style_element h2 {
    font-size: 37px;
    margin-bottom: 20px;
    font-weight: 600;
    color: rgb(106,113,144);
    transition: color 0.5s ease;
}

.framework-wrap_key .our_background_key .style_element p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    transition: color 0.5s ease;
}

.framework-wrap_key .our_background_key .caption_holder:hover h2 {
    color: rgb(82,86,92);
}

.framework-wrap_key .our_background_key .caption_holder:hover p {
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .framework-wrap_key .our_background_key {
        padding: 40px 0;
    }

    .framework-wrap_key .our_background_key .photo {
        height: 200px;
    }

    .framework-wrap_key .our_background_key .caption_holder {
        width: 100%;
        padding: 20px 30px;
    }

    .framework-wrap_key .our_background_key .style_element h2 {
        font-size: 24px;
    }

    .framework-wrap_key .our_background_key .style_element p {
        font-size: 15px;
    }
}
footer {
    background: linear-gradient(135deg, rgb(82,86,92) 0%, #000000 100%);
    color: #ffffff;
    font-family: Roboto, sans-serif;
    padding: 40px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgb(106,113,144);
}
footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    padding: 0 20px;
}
footer .logo_holder {
    display: flex;
    align-items: center;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(106,113,144);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.5));
}
footer .menu {
    display: flex;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    background: linear-gradient(135deg, rgb(106,113,144) 0%, rgb(82,86,92) 100%);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
footer .menu a:hover {
    background: linear-gradient(135deg, rgb(82,86,92) 0%, rgb(106,113,144) 100%);
}
footer .copyright {
    background: rgb(106,113,144,0.5);
    padding: 15px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
footer .copyright_info {
    color: #ffffff;
    font-size: 14px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .menu_holder {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
.title_section_key {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.title_section_key .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title_section_key .style_element {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 800px;
    width: 80%;
    animation: fadeIn 1.2s ease-in-out;
}
.title_section_key .style_element h1 {
    color: rgb(106,113,144);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: slideInLeft 1s ease-in-out;
}
.title_section_key .style_element h3 {
    color: rgb(82,86,92);
    font-size: 30px;
    margin-bottom: 16px;
    animation: slideInRight 1s ease-in-out;
}
.title_section_key .style_element p {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 24px;
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        transform: translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        transform: translateX(50%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@media only screen and (max-width: 1200px) {
    .title_section_key .title_page_holder {
        min-height: 500px;
    }
    .title_section_key .style_element {
        padding: 30px;
        max-width: 700px;
    }
    .title_section_key .style_element h1 {
        font-size: calc(45px - 10px);
    }
    .title_section_key .style_element h3 {
        font-size: calc(30px - 8px);
    }
    .title_section_key .style_element p {
        font-size: calc(15px - 2px);
    }
}
@media only screen and (max-width: 800px) {
    .title_section_key .title_page_holder {
        min-height: 400px;
    }
    .title_section_key .style_element {
        padding: 20px;
        max-width: 90%;
    }
    .title_section_key .style_element h1 {
        font-size: calc(45px - 20px);
    }
    .title_section_key .style_element h3 {
        font-size: calc(30px - 16px);
    }
    .title_section_key .style_element p {
        font-size: calc(15px - 4px);
    }
}
.framework-wrap_key .title_section_key {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.framework-wrap_key .title_section_key .title_page_holder {
    width: 100%;
    background-position: center;
}
.framework-wrap_key .title_section_key .style_element {
    position: relative;
    padding: 40px;
    background: rgb(106,113,144,0.5);
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.framework-wrap_key .title_section_key .style_element h1,
.framework-wrap_key .title_section_key .style_element h3,
.framework-wrap_key .title_section_key .style_element p {
    color: #ffffff;
    text-align: left;
}
.framework-wrap_key .title_section_key .style_element h1 {
    font-size: 45px;
    margin-bottom: 12px;
}
.framework-wrap_key .title_section_key .style_element h3 {
    font-size: 30px;
    margin-bottom: 12px;
}
.framework-wrap_key .title_section_key .style_element p {
    font-size: 15px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
    .framework-wrap_key .title_section_key .title_page_holder {
        width: 100%;
    }
    .framework-wrap_key .title_section_key .style_element {
        padding: 30px;
    }
}
@media only screen and (max-width: 800px) {
    .framework-wrap_key .title_section_key .style_element {
        padding: 20px;
    }
}.privacy_cloister_key {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    height: auto;
    background: rgb(82,86,92,0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.privacy_cloister_key h1 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 47px;
    font-weight: 700;
    color: rgb(106,113,144);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.privacy_cloister_key h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 33px;
    font-weight: 600;
    color: rgb(82,86,92);
    text-transform: capitalize;
    border-bottom: 2px solid rgb(106,113,144);
    padding-bottom: 5px;
}

.privacy_cloister_key h3, .privacy_cloister_key h4, .privacy_cloister_key h5, .privacy_cloister_key h6 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

.privacy_cloister_key ul, .privacy_cloister_key ol {
    list-style: none;
    padding-left: 20px;
    padding: 15px 0;
}

.privacy_cloister_key ul li::before {
    content: '•';
    color: rgb(106,113,144);
    font-size: 1.5em;
    margin-right: 10px;
    vertical-align: middle;
}

.privacy_cloister_key li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}

.privacy_cloister_key p, .privacy_cloister_key span, .privacy_cloister_key div {
    line-height: 1.8;
    margin-bottom: 10px;
    color: #000000;
    font-family: Roboto, sans-serif;
}

.privacy_cloister_key div.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width: 800px) {
    .privacy_cloister_key {
        padding: 20px 10px;
        border-radius: 10px;
    }

    .privacy_cloister_key h1 {
        font-size: calc(24px - 10px);
    }

    .privacy_cloister_key h2 {
        font-size: calc(24px - 5px);
    }

    .privacy_cloister_key h3, .privacy_cloister_key h4, .privacy_cloister_key h5, .privacy_cloister_key h6 {
        font-size: calc(24px - 5px);
    }
}.ty_message_key {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(169,173,178);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.ty_message_key .container {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.ty_message_key h2 {
    margin-bottom: 20px;
    font-size: 39px;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    color: #000000;
    border-bottom: 2px solid rgb(106,113,144);
    padding-bottom: 10px;
    width: 100%;
}
.ty_message_key p {
    font-size: 15px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-top: 10px;
}
@media only screen and (max-width: 800px) {
    .ty_message_key {
        padding: 20px;
    }
    
    .ty_message_key .container {
        padding: 30px;
    }
    
    .ty_message_key h2 {
        font-size: 32px;
    }
    
    .ty_message_key p {
        font-size: 23px;
    }
}
.course_benefits_key {
    background: linear-gradient(180deg, rgb(169,173,178) 60%, rgb(106,113,144,0.5) 100%);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.course_benefits_key::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgb(82,86,92,0.5) 100%);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.course_benefits_key .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.course_benefits_key .holder {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.course_benefits_key .text_holder {
    padding: 60px;
    background: #ffffff;
    border-radius: 0 24px 24px 0;
    border-left: 5px solid rgb(106,113,144);
    box-shadow: -30px 30px 60px -20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.course_benefits_key .text_holder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(106,113,144);
}

.course_benefits_key .text_holder h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
}

.course_benefits_key .photo {
    height: 500px;
    border-radius: 24px 0 0 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 30px 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.course_benefits_key .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.course_benefits_key .text_holder ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.course_benefits_key .text_holder li {
    position: relative;
    padding-left: 35px;
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}

.course_benefits_key .text_holder li svg {
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    fill: rgb(106,113,144);
}

@media (max-width: 1200px) {
    .course_benefits_key {
        padding: 100px 0;
    }

    .course_benefits_key .holder {
        gap: 60px;
    }

    .course_benefits_key .text_holder {
        padding: 40px;
        margin-left: 0;
    }

    .course_benefits_key .photo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .course_benefits_key {
        padding: 80px 0;
    }

    .course_benefits_key .holder {
        gap: 40px;
    }

    .course_benefits_key .text_holder {
        padding: 30px;
    }

    .course_benefits_key .text_holder ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course_benefits_key .photo {
        height: 350px;
    }

    .course_benefits_key .text_holder::before {
        width: 30px;
        height: 30px;
        top: -15px;
        left: -15px;
    }
}

@media (max-width: 480px) {
    .course_benefits_key {
        padding: 60px 0;
    }

    .course_benefits_key .holder {
        gap: 30px;
    }

    .course_benefits_key .text_holder {
        padding: 25px;
    }

    .course_benefits_key .photo {
        height: 280px;
    }

    .course_benefits_key .text_holder h2 {
        font-size: calc(28px * 0.85);
        margin-bottom: 30px;
    }

    .course_benefits_key::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.5;
    }
}.connect_with_us_key {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(106,113,144,0.5);
}

.connect_with_us_key h3 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.connect_with_us_key .form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.connect_with_us_key form input,
.connect_with_us_key form textarea {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(82,86,92,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 24px;
    outline: none;
    transition: border 0.3s ease;
}

.connect_with_us_key form input:focus,
.connect_with_us_key form textarea:focus {
    border: 1px solid rgb(106,113,144);
}

.connect_with_us_key form .button {
    background: rgb(106,113,144);
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.connect_with_us_key form .button:hover {
    background: rgb(82,86,92);
}

.connect_with_us_key .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.connect_with_us_key .name_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.connect_with_us_key .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: #000000;
}

.connect_with_us_key .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.connect_with_us_key .agree label {
    display: flex;
    align-items: center;
}

.connect_with_us_key .agree a {
    margin-left: 5px;
    color: rgb(106,113,144);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.connect_with_us_key .agree a:hover {
    color: rgb(82,86,92);
}

.connect_with_us_key .form_text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .connect_with_us_key {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .connect_with_us_key .form {
        padding: 20px;
    }

    .connect_with_us_key h3 {
        font-size: 47px;
    }
}

.framework-wrap_key .connect_with_us_key {
    background: rgb(169,173,178);
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
}

.framework-wrap_key .connect_with_us_key .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.framework-wrap_key .connect_with_us_key .form {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 50px;
    width: 60%;
    max-width: 800px;
}

.framework-wrap_key .connect_with_us_key .form_text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 13px;
    color: #000000;
}

.framework-wrap_key .connect_with_us_key form input {
    background: rgb(106,113,144,0.5);
    border: 1px solid rgb(82,86,92);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.framework-wrap_key .connect_with_us_key form input:focus {
    border-color: rgb(106,113,144);
}

.framework-wrap_key .connect_with_us_key form label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.framework-wrap_key .connect_with_us_key .name_holder {
    flex-direction: column;
    width: 100%;
}

.framework-wrap_key .connect_with_us_key h3 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.framework-wrap_key .connect_with_us_key .agree {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #000000;
}

.framework-wrap_key .connect_with_us_key .agree a {
    color: rgb(106,113,144);
    text-decoration: underline;
}

.framework-wrap_key .connect_with_us_key form .button {
    background: rgb(82,86,92);
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 50%;
    margin: 20px auto 0;
}

.framework-wrap_key .connect_with_us_key form .button:hover {
    background: rgb(106,113,144);
}

@media only screen and (max-width: 800px) {
    .framework-wrap_key .connect_with_us_key .form {
        padding: 30px;
        width: 90%;
    }

    .framework-wrap_key .connect_with_us_key form .button {
        width: 100%;
    }
}