* {
    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: Playfair Display, sans-serif;
    color: #000000;
}
.wr_content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(223,211,195);
}
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 {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(199,177,152), rgb(89,110,121));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main_header {
    border-top: 5px solid rgb(199,177,152);
    border-bottom: 2px solid rgb(199,177,152);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.main_header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}
.main_header .header_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}
.main_header .header_holder .logo_holder {
    margin: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgb(199,177,152);
    border-radius: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgb(199,177,152,0.5);
}
.main_header .header_holder .logo_holder svg, .main_header .header_holder .logo_holder img {
    width: 80px;
    height: 80px;
    fill: rgb(199,177,152);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.main_header .header_holder .logo_holder:hover svg, .main_header .header_holder .logo_holder:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgb(199,177,152,0.5));
}
.main_header .header_description {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 10px;
    flex-grow: 1;
    text-align: center;
    border-left: 2px solid rgb(199,177,152);
    text-shadow: 0 0 10px rgb(199,177,152,0.5);
}
.main_header .header_menu {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    margin-top: 0;
    position: relative;
    z-index: 11;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(89,110,121));
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 0 10px rgb(199,177,152,0.5);
}
.main_header .header_menu a {
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    border-right: 2px solid rgb(199,177,152);
    text-shadow: 0 0 10px rgb(199,177,152,0.5);
    display: flex;
    align-items: center;
}
.main_header .header_menu a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(199,177,152);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 0 0 10px rgb(199,177,152,0.5);
}
.main_header .header_menu a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}
.main_header .header_menu a:first-child {
    color: rgb(199,177,152);
}
.main_header .header_menu a:last-child {
   border-right: none;
}
@media only screen and (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        border-bottom: none;
    }
    .main_header .header_description {
        margin: 10px 0;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    .main_header .header_menu {
        justify-content: center;
        flex-direction: column;
        border-radius: 0;
    }
    .main_header .header_menu a {
        margin: 5px 0;
        border-right: none;
        border-bottom: 2px solid rgb(199,177,152);
    }
}footer {
    background: rgb(89,110,121);
    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 .logo_holder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
footer .logo_holder img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}
footer .logo_holder img:hover {
    transform: scale(1.1);
}
footer h5 {
    color: rgb(199,177,152);
    font-size: 20px;
    margin: 20px 0;
    font-weight: 600;
    text-transform: uppercase;
}
footer .menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}
footer .menu a:hover {
    color: rgb(199,177,152);
}
footer .contact_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}
footer .contact_info div svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: rgb(199,177,152);
    transition: fill 0.3s ease-in-out;
}
footer .contact_info div span {
    font-size: 18px;
    font-weight: 400;
}
footer .contact_info div:hover svg {
    fill: rgb(89,110,121);
}
footer .contact_info div:hover span {
    color: rgb(89,110,121);
}
footer .footer_agreement {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: var(--white-color_opacity);
    font-size: 18px;
}
footer .copyright {
    background: rgb(89,110,121);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #000000;
    margin-top: 40px;
}
footer .copyright_info {
    color: var(--white-color_opacity);
}
footer .copyright_info a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}
footer .copyright_info a:hover {
    color: rgb(199,177,152);
}

footer .footer_info {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgb(89,110,121,0.5);
}
footer .menu a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: rgb(199,177,152);
    transition: width 0.3s ease-in-out;
    margin-top: 5px;
}
footer .menu a:hover:after {
    width: 100%;
}
footer .contact_info div span {
    transition: color 0.3s ease-in-out;
}
footer .contact_info div:hover span {
    color: rgb(199,177,152);
}
footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(199,177,152);
    width: 125px;
    height: 125px;
    transition: fill 0.3s ease-in-out;
}
footer .logo_holder:hover svg, footer .logo_holder:hover svg path {
    fill: #ffffff;
}
@media only screen and (max-width: 1200px) {
    footer .footer {
        padding: 0 20px;
    }
    footer .footer_agreement {
        text-align: center;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer {
        flex-direction: column;
        align-items: center;
    }
    footer .menu, footer .contact_info {
        align-items: center;
    }
    footer h5 {
        margin-top: 10px;
        text-align: center;
    }
    footer .footer_agreement {
        text-align: center;
        margin-top: 20px;
    }
}.zR_advantages_summary {
    padding: 80px 0;
    background: rgb(89,110,121,0.5);
}
.zR_advantages_summary .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.zR_advantages_summary .advantages_photo_holder {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.zR_advantages_summary .advantages_photo_holder .photo {
    width: 50%;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.zR_advantages_summary .advantages_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
}
.zR_advantages_summary .advantages_holder .advantage_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.zR_advantages_summary .advantages_holder .advantage_item svg, .zR_advantages_summary .advantages_holder .advantage_item svg path {
    width: 55px;
    height: 55px;
    fill: rgb(199,177,152);
    margin-right: 20px;
}
.zR_advantages_summary .advantages_content h2 {
    font-size: 30px;
    color: rgb(199,177,152);
    text-align: center;
    margin: 20px 0;
    margin-bottom: 40px;
}
@media only screen and (max-width: 800px) {
    .zR_advantages_summary .advantages_photo_holder {
        flex-direction: column;
    }
    .zR_advantages_summary .advantages_photo_holder .photo {
        width: 100%;
        height: 200px;
    }
    .zR_advantages_summary .advantages_content h2 {
        font-size: 21px;
    }
    .zR_advantages_summary .advantages_holder {
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
    }
}.Gw_instructor_profile {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(223,211,195) 0%, rgb(89,110,121,0.5) 100%);
    overflow: hidden;
}

.Gw_instructor_profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgb(199,177,152,0.5) 0%, transparent 60%);
    pointer-events: none;
}

.Gw_instructor_profile .holder {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 27px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.Gw_instructor_profile .review {
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-rows: auto 1fr;
    gap: 30px;
}

.Gw_instructor_profile .photo {
    grid-row: 1 / 3;
    height: 500px;
    border-radius: 27px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.Gw_instructor_profile .photo:hover {
    transform: rotate(0deg) scale(1.02);
}

.Gw_instructor_profile .worker_description {
    padding: 20px 0;
}

.Gw_instructor_profile .name {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.Gw_instructor_profile .job {
    font-size: 24px;
    font-weight: 600;
    color: rgb(199,177,152);
}

.Gw_instructor_profile .worker_info {
    padding-right: 40px;
}

.Gw_instructor_profile .quote {
    font-size: 18px;
    font-weight: 600;
    color: rgb(89,110,121);
    margin-bottom: 20px;
    font-style: italic;
}

.Gw_instructor_profile .story {
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
}

@media (max-width: 1024px) {
    .Gw_instructor_profile {
        padding: 80px 0;
    }

    .Gw_instructor_profile .holder {
        padding: 30px;
        margin: 0 20px;
    }

    .Gw_instructor_profile .review {
        grid-template-columns: 300px 1fr;
        gap: 20px;
    }

    .Gw_instructor_profile .photo {
        height: 400px;
    }

    .Gw_instructor_profile .worker_info {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .Gw_instructor_profile {
        padding: 60px 0;
    }

    .Gw_instructor_profile .review {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .Gw_instructor_profile .photo {
        grid-row: 1;
        height: 350px;
        transform: rotate(0deg);
    }

    .Gw_instructor_profile .worker_description {
        text-align: center;
        padding: 10px 0;
    }

    .Gw_instructor_profile .worker_info {
        padding-right: 0;
    }

    .Gw_instructor_profile .quote {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .Gw_instructor_profile {
        padding: 40px 0;
    }

    .Gw_instructor_profile .holder {
        padding: 20px;
        margin: 0 15px;
    }

    .Gw_instructor_profile .photo {
        height: 280px;
    }

    .Gw_instructor_profile .name {
        font-size: calc(35px * 0.9);
    }

    .Gw_instructor_profile .job {
        font-size: calc(24px * 0.9);
    }

    .Gw_instructor_profile .quote {
        font-size: calc(18px * 0.9);
    }
}.wH_privacy_safehouse {
    font-family: Playfair Display, sans-serif;
    background-color: rgb(223,211,195);
    padding: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #000000;
}
.wH_privacy_safehouse h1 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(199,177,152);
    margin-bottom: 20px;
}
.wH_privacy_safehouse h2 {
    font-size: 36px;
    font-weight: 600;
    color: rgb(89,110,121);
    margin-bottom: 15px;
}
.wH_privacy_safehouse h3, .wH_privacy_safehouse h4, .wH_privacy_safehouse h5, .wH_privacy_safehouse h6 {
    margin: 1rem 0;
}
.wH_privacy_safehouse ul {
    list-style-type: none;
    padding: 0;
}
.wH_privacy_safehouse li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.wH_privacy_safehouse p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.wH_privacy_safehouse div {
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
    .wH_privacy_safehouse {
        padding: 30px;
    }
    .wH_privacy_safehouse h1 {
        font-size: calc(24px * 0.8);
    }
    .wH_privacy_safehouse h2 {
        font-size: calc(24px * 0.9);
    }
}.IW_connect_with_us {
    padding: 100px 20px;
    background: rgb(223,211,195);
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.IW_connect_with_us .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.IW_connect_with_us .holder {
    width: 100%;
}
.IW_connect_with_us .info {
    flex: 1;
    padding: 40px;
    background: rgb(199,177,152);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.IW_connect_with_us .info h3 {
    color: #ffffff;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
}
.IW_connect_with_us .info .logo_holder {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.IW_connect_with_us .info .logo_holder svg, .IW_connect_with_us .info .logo_holder img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
.IW_connect_with_us .info .logo_holder span {
    color: #ffffff;
    font-size: 20px;
}
.IW_connect_with_us .info .contact_info h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.IW_connect_with_us .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.IW_connect_with_us .info .contact_info svg {
    fill: #ffffff;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
.IW_connect_with_us .info .contact_info span {
    color: #ffffff;
    font-size: 17px;
}
.IW_connect_with_us .form {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.IW_connect_with_us .form h3 {
    color: rgb(199,177,152);
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
.IW_connect_with_us .form form {
    display: flex;
    flex-direction: column;
}
.IW_connect_with_us .form form input {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid rgb(199,177,152,0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.IW_connect_with_us .form form input:focus {
    border-color: rgb(199,177,152);
    box-shadow: 0 0 10px rgb(199,177,152,0.5);
    outline: none;
}
.IW_connect_with_us .form form .button {
    background: rgb(89,110,121);
    color: #ffffff;
    border-radius: 100px;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    text-align: center;
}
.IW_connect_with_us .form form .button:hover {
    background: rgb(199,177,152);
}
.IW_connect_with_us .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.IW_connect_with_us .agree label {
    display: block;
    color: #000000;
    font-size: 17px;
}
.IW_connect_with_us .agree a {
    margin-left: 5px;
    color: rgb(199,177,152);
    text-decoration: underline;
}
.IW_connect_with_us .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}
@media only screen and (max-width: 768px) {
    .IW_connect_with_us {
        padding: 50px 10px;
    }
    .IW_connect_with_us .container {
        flex-direction: column;
        padding: 10px;
        border-radius: 0;
    }
    .IW_connect_with_us .info, .IW_connect_with_us .form {
        padding: 30px 20px;
    }
    .IW_connect_with_us .info h3, .IW_connect_with_us .form h3 {
        font-size: 20px;
    }
}
.cx_gratitudeBox {
    background: linear-gradient(135deg, rgb(199,177,152), rgb(89,110,121));
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.cx_gratitudeBox .container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: #000000;
}
.cx_gratitudeBox h2 {
    font-family: Playfair Display, sans-serif;
    font-size: 37px;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(199,177,152);
}
.cx_gratitudeBox p {
    font-family: Playfair Display, sans-serif;
    font-size: 12px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
}
.cx_gratitudeBox .button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(199,177,152);
    border: 2px solid rgb(199,177,152);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: inset 0 0 0 0 rgb(89,110,121);
    transition: box-shadow 0.2s ease-in-out;
}
.cx_gratitudeBox .button:hover {
    box-shadow: inset 0 -4px 0 0 rgb(89,110,121);
}
@media only screen and (max-width: 800px) {
    .cx_gratitudeBox {
        padding: 40px 10px;
    }
    .cx_gratitudeBox .container {
        padding: 20px;
    }
    .cx_gratitudeBox h2 {
        font-size: 21px;
    }
    .cx_gratitudeBox p {
        font-size: 12px;
    }
}.Te_experience_trial {
    padding-bottom: 80px;
    padding-top: 80px;
}

.Te_experience_trial h2 {
    color: rgb(89,110,121);
}

.Te_experience_trial .button {
    background: rgb(89,110,121);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.Te_experience_trial .button:hover {
    background: rgb(199,177,152);
}

.Te_experience_trial .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.Te_experience_trial h2 {
    font-size: 35px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.Te_experience_trial .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .Te_experience_trial .holder {
        flex-direction: column;
    }

    .wr_content-wrapper section.Te_experience_trial h2 {
        font-size: 26px;
    }

    .Te_experience_trial h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .Te_experience_trial .button {
        font-size: 24px;
    }

    .Te_experience_trial {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wr_content-wrapper .Te_experience_trial {
    background: rgb(89,110,121);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wr_content-wrapper .Te_experience_trial .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wr_content-wrapper .Te_experience_trial .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 60px 40px;
    border: 2px solid rgb(199,177,152);
    box-shadow: inset 0 0 0 4px rgb(89,110,121), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.wr_content-wrapper .Te_experience_trial h2 {
    font-family: Playfair Display, sans-serif;
    font-size: 35px;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(199,177,152);
    width: fit-content;
    margin-right: 0;
}

.wr_content-wrapper .Te_experience_trial .button {
    display: inline-block;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: rgb(199,177,152);
    border: 2px solid rgb(199,177,152);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.wr_content-wrapper .Te_experience_trial .button:hover {
    color: rgb(199,177,152);
    background: #ffffff;
    border-color: rgb(199,177,152);
}

@media only screen and (max-width: 800px) {
    .wr_content-wrapper .Te_experience_trial .holder {
        padding: 40px 20px;
    }

    .wr_content-wrapper .Te_experience_trial h2 {
        font-size: 40px;
    }

    .wr_content-wrapper .Te_experience_trial .button {
        padding: 10px 30px;
        font-size: 12px;
    }
}.fe_course_offering {
    padding: 100px 20px;
    background: rgb(89,110,121);
    color: #ffffff;
}

.fe_course_offering h2 {
    color: rgb(199,177,152);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 2px solid rgb(199,177,152);
    display: inline-block;
    padding-bottom: 10px;
}

.fe_course_offering .content {
    border-radius: 17px;
    overflow: hidden;
    background: rgb(89,110,121,0.5);
    border: 1px solid rgb(199,177,152);
}

.fe_course_offering h3 {
    color: rgb(199,177,152);
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.fe_course_offering p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
}

.fe_course_offering .button {
    background: rgb(199,177,152);
    color: #ffffff;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 400;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}

.fe_course_offering .photo {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid rgb(199,177,152);
    filter: grayscale(80%);
}

.fe_course_offering .container {
    max-width: 1200px;
    margin: auto;
}

.fe_course_offering .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fe_course_offering .items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.fe_course_offering .course {
    flex: 1 1 calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 5px solid rgb(199,177,152);
    padding-left: 20px;
}

.fe_course_offering .text_holder {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media only screen and (max-width: 1024px) {
    .fe_course_offering .course {
        flex: 1 1 calc(50% - 40px);
    }
}

@media only screen and (max-width: 600px) {
    .fe_course_offering {
        padding: 60px 20px;
    }

    .fe_course_offering h2 {
        font-size: 33px;
    }

    .fe_course_offering .course {
        flex: 1 1 100%;
    }

    .fe_course_offering .photo {
        height: 250px;
    }

    .fe_course_offering p {
        font-size: 15px;
        padding: 0 10px;
    }

    .fe_course_offering .button {
        padding: 10px 20px;
        font-size: 19px;
    }
}

.wr_content-wrapper .fe_course_offering .container {
    width: 100%;
    padding: 0;
}

.wr_content-wrapper .fe_course_offering .items {
    width: 100%;
}

.wr_content-wrapper .fe_course_offering .items .course {
    padding: 0;
    width: 100%;
}

.wr_content-wrapper .fe_course_offering .photo {
    height: 250px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 30% !important;
}

.wr_content-wrapper .fe_course_offering .course .content {
    border-radius: 0 !important;
    box-shadow: none;
}

.wr_content-wrapper .fe_course_offering .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: unset;
}

.wr_content-wrapper .fe_course_offering p {
    margin-top: 20px;
    text-align: left;
}

.wr_content-wrapper .fe_course_offering .button {
    margin-top: 30px;
    width: fit-content;
}

.wr_content-wrapper .fe_course_offering h3 {
    text-align: left;
}
.No_our_background {
    padding: 100px 15px;
    background: linear-gradient(to right, rgb(199,177,152), rgb(89,110,121,0.5));
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    position: relative;
    overflow: hidden;
}

.wr_content-wrapper .No_our_background .holder {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.wr_content-wrapper .No_our_background .caption_holder {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(199,177,152,0.5);
    border-radius: 27px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wr_content-wrapper .No_our_background .caption_holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
}

.wr_content-wrapper .No_our_background .photo {
    flex: 1 1 300px;
    border-radius: 27px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}

.wr_content-wrapper .No_our_background .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    transition: filter 0.3s ease;
}

.wr_content-wrapper .No_our_background .photo:hover img {
    filter: grayscale(0%) contrast(1);
}

.wr_content-wrapper .No_our_background .style_element {
    flex: 1;
    text-align: center;
}

.wr_content-wrapper .No_our_background h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(199,177,152);
    display: inline-block;
    padding-bottom: 10px;
    color: #000000;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.wr_content-wrapper .No_our_background h2:hover {
    color: rgb(89,110,121);
    border-color: rgb(89,110,121);
}

.wr_content-wrapper .No_our_background p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    color: #000000;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

@media (max-width: 1200px) {
    .wr_content-wrapper .No_our_background .holder {
        flex-direction: column;
        align-items: center;
    }

    .wr_content-wrapper .No_our_background .caption_holder {
        margin-bottom: 30px;
    }
}

@media (max-width: 800px) {
    .No_our_background {
        padding: 60px 10px;
    }

    .wr_content-wrapper .No_our_background .caption_holder {
        padding: 30px;
    }

    .wr_content-wrapper .No_our_background .photo {
        width: 100%;
    }

    .wr_content-wrapper .No_our_background .style_element {
        padding: 10px;
    }
}.Fj_opening_board {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}
.Fj_opening_board .title_page_holder {
    width: 100%;
    min-height: 800px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border: 5px solid rgb(199,177,152);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
}
.Fj_opening_board .style_element {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    width: 80%;
    max-width: 1000px;
    padding: 50px;
    border-radius: 21px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1;
    border: 2px solid rgb(89,110,121);
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.Fj_opening_board .style_element h1 {
    font-size: 39px;
    font-weight: 700;
    color: rgb(199,177,152);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(89,110,121);
    padding-bottom: 10px;
    transition: color 0.5s ease-in-out;
}
.Fj_opening_board .style_element h3 {
    font-size: 29px;
    color: rgb(89,110,121);
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.5s ease-in-out;
}
.Fj_opening_board .style_element p {
    font-size: 17px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.5s ease-in-out;
}
.Fj_opening_board .style_element::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px dashed rgb(199,177,152);
    border-radius: 21px;
    z-index: -1;
    transition: border-color 0.5s ease-in-out;
}
.Fj_opening_board .style_element::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px dotted rgb(89,110,121);
    border-radius: 21px;
    z-index: -2;
    transition: border-color 0.5s ease-in-out;
}
.Fj_opening_board .title_page_holder:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgb(89,110,121);
}
.Fj_opening_board .style_element:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.9);
}
.Fj_opening_board .style_element h1:hover,
.Fj_opening_board .style_element h3:hover,
.Fj_opening_board .style_element p:hover {
    color: rgb(199,177,152);
}
.Fj_opening_board .style_element::before:hover,
.Fj_opening_board .style_element::after:hover {
    border-color: rgb(199,177,152);
}
.wr_content-wrapper .Fj_opening_board {
    position: relative;
    padding: 0;
    background: rgb(223,211,195);
}
.wr_content-wrapper .Fj_opening_board::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    z-index: 0;
}
.wr_content-wrapper .Fj_opening_board .title_page_holder {
    border: 8px solid rgb(199,177,152);
    box-shadow: inset 0 0 10px rgb(89,110,121,0.5);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.wr_content-wrapper .Fj_opening_board .style_element {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgb(199,177,152,0.5) 0%, #ffffff 100%);
    padding: 60px;
    text-align: left;
    border-radius: 21px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
}
.wr_content-wrapper .Fj_opening_board .style_element h1 {
    text-align: left;
    color: #000000;
    font-size: 39px;
    margin-bottom: 20px;
    z-index: 1;
    border-bottom: 2px solid rgb(199,177,152);
    padding-bottom: 15px;
    transition: color 0.5s ease-in-out;
}
.wr_content-wrapper .Fj_opening_board .style_element h3 {
    text-align: left;
    font-size: 29px;
    color: #000000;
    margin-bottom: 15px;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}
.wr_content-wrapper .Fj_opening_board .style_element p {
    text-align: left;
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    z-index: 1;
    transition: color 0.5s ease-in-out;
}
@media only screen and (max-width: 1200px) {
    .Fj_opening_board .style_element {
        width: 95%;
        padding: 30px;
    }
    .wr_content-wrapper .Fj_opening_board .style_element {
        padding: 50px 30px;
    }
}
@media only screen and (max-width: 800px) {
    .Fj_opening_board .style_element {
        width: 100%;
        padding: 20px;
    }
    .wr_content-wrapper .Fj_opening_board .style_element {
        padding: 40px 20px;
    }
    .Fj_opening_board .style_element h1 {
        font-size: calc(39px - 10px);
    }
    .Fj_opening_board .style_element h3 {
        font-size: calc(29px - 5px);
    }
    .Fj_opening_board .style_element p {
        font-size: 17px;
    }
}