* {
    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;
}
.wrapping-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(140,162,191);
}
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;
    }
}.contact_panel {
    padding: 80px 0;
    background: rgb(140,162,191);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact_panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: rgb(93,134,157,0.5);
    transform: translateX(-50%);
    clip-path: circle(75% at center);
    z-index: 0;
}

.contact_panel h3 {
    color: #000000;
    font-size: 39px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    z-index: 1;
}

.contact_panel .form {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact_panel .form:hover {
    transform: translateY(-5px);
}

.contact_panel form input,
.contact_panel form textarea {
    background: #ffffff;
    border: 1px solid rgb(59,80,107,0.5);
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact_panel form input:focus,
.contact_panel form textarea:focus {
    border-color: rgb(93,134,157);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact_panel form .button {
    background: rgb(93,134,157);
    color: #ffffff;
    border: none;
    border-radius: 22px;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: center;
}

.contact_panel form .button:hover {
    background: rgb(59,80,107);
    transform: translateY(-2px);
}

.contact_panel .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_panel .form_text {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
}

.contact_panel .name_holder {
    display: flex;
    gap: 20px;
    width: 100%;
}

.contact_panel .name_holder input {
    flex: 1;
}

.contact_panel .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact_panel .agree label {
    display: block;
    color: #000000;
}

.contact_panel .agree a {
    color: rgb(93,134,157);
    margin-left: 5px;
    text-decoration: none;
    position: relative;
}

.contact_panel .agree a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgb(93,134,157);
    transition: width 0.3s ease;
}

.contact_panel .agree a:hover::after {
    width: 100%;
}

.contact_panel .agree input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .contact_panel {
        padding: 50px 0;
    }
    .contact_panel .name_holder {
        flex-direction: column;
    }
}

.wrapping-container .contact_panel .holder {
    flex-direction: row-reverse;
    justify-content: center;
}

.wrapping-container .contact_panel .holder .form {
    width: 70%;
    background: none;
    box-shadow: none;
}

.wrapping-container .contact_panel .info {
    width: 30%;
}

.wrapping-container .contact_panel .info span {
    font-weight: 400;
}

.wrapping-container .contact_panel form input {
    border-bottom: 1px solid rgb(59,80,107,0.5);
    border-radius: 0 !important;
    font-size: 18px;
    font-weight: 300;
}

.wrapping-container .contact_panel h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
}

.wrapping-container .contact_panel form .button {
    width: fit-content;
    background: rgb(59,80,107);
    color: #ffffff;
    margin-top: 24px;
}.title_portal {
    position: relative;
    background-color: rgb(140,162,191);
    overflow: hidden;
}

.title_portal .holder {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.title_portal .photo {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.title_portal .photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(93,134,157,0.5) 0%, transparent 50%, rgb(59,80,107,0.5) 100%);
    mix-blend-mode: multiply;
}

.title_portal .text_holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.title_portal .text_info {
    position: relative;
}

.title_portal .text_info svg {
    width: 60px;
    height: 60px;
    fill: rgb(93,134,157);
    margin-bottom: 2rem;
}

.title_portal .text_info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.title_portal .text_info span {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    display: block;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid rgb(93,134,157);
}

.title_portal .text_holder .button {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(93,134,157);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title_portal .text_holder .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.3s ease;
}

.title_portal .text_holder .button:hover::before {
    left: 100%;
}

.title_portal .text_holder .button:hover {
    background-color: rgb(59,80,107);
}

@media only screen and (max-width: 1200px) {
    .title_portal .holder {
        grid-template-columns: 1fr;
    }
    
    .title_portal .photo {
        height: 40vh;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    }
}

@media only screen and (max-width: 800px) {
    .title_portal .text_holder {
        padding: 2rem;
    }

    .title_portal .text_info h2 {
        font-size: 18px;
    }

    .title_portal .text_info span {
        font-size: 13px;
    }

    .title_portal .text_holder .button {
        width: 100%;
        text-align: center;
    }
}footer {
    background: rgb(59,80,107);
    color: #ffffff;
}

footer .copyright {
    background: rgb(93,134,157);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(93,134,157);
}

footer h5 {
    color: rgb(93,134,157);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 21px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 15px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.wrapping-container footer {
    background: rgb(140,162,191);
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.wrapping-container footer .logo_holder {
    display: none;
}

.wrapping-container footer .footer {
    padding: 32px 0;
}

.wrapping-container footer .copyright {
    background: none;
}

.wrapping-container footer .menu a {
    color: rgba(0, 0, 0, 0.5);
    margin-right: 0;
}

.wrapping-container footer .footer_info {
    flex-direction: row;
}

.wrapping-container footer .menu_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wrapping-container footer .menu a:after {
    content: "/";
    margin-left: 5px;
    margin-right: 5px;
}

.wrapping-container footer .menu a:hover {
    color: rgb(93,134,157);
}

.wrapping-container footer .copyright {
    padding: 16px 0;
}

.wrapping-container footer .copyright_info {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .wrapping-container footer .menu_holder {
        flex-direction: column;
    }
}.advantages_benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(93,134,157), rgb(59,80,107));
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    overflow: hidden;
    position: relative;
}
.advantages_benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgb(59,80,107), transparent);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 5s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}
.advantages_benefits .advantages_content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.advantages_benefits .advantages_content h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgb(93,134,157), 0 0 20px rgb(59,80,107);
}
.advantages_benefits .advantages_photo_holder {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}
.advantages_benefits .advantages_photo_holder .photo {
    width: 100%;
    max-width: 600px;
    height: 400px;
    box-shadow: 0 0 30px rgb(93,134,157);
    border: 2px solid rgb(59,80,107);
    border-radius: 24px;
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.advantages_benefits .advantages_photo_holder .photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgb(59,80,107);
}
.advantages_benefits .advantages_holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    background: linear-gradient(135deg, rgb(59,80,107), rgb(93,134,157,0.5));
    border: 2px solid rgb(93,134,157);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.advantages_benefits .advantages_holder .advantage_item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid #ffffff;
    border-radius: 10px;
}
.advantages_benefits .advantages_holder .advantage_item:hover {
    background: rgb(93,134,157,0.5);
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgb(59,80,107);
}
.advantages_benefits .advantages_holder .advantage_item svg,
.advantages_benefits .advantages_holder .advantage_item svg path {
    width: 40px;
    height: 40px;
    fill: #ffffff;
    margin-bottom: 10px;
    transition: fill 0.3s ease;
}
.advantages_benefits .advantages_holder .advantage_item:hover svg path {
    fill: rgb(93,134,157);
}
.advantages_benefits .advantages_holder .advantage_item h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 5px rgb(93,134,157);
}
@media only screen and (max-width: 1024px) {
    .advantages_benefits .advantages_photo_holder {
        flex-direction: column;
    }
    .advantages_benefits .advantages_photo_holder .photo {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    .advantages_benefits .advantages_holder {
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
        flex-direction: column;
    }
    .advantages_benefits .advantages_content h2 {
        font-size: 24px;
    }
}
.testimonials {
    background: linear-gradient(135deg, rgb(140,162,191) 0%, rgb(59,80,107) 100%);
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.testimonials h3 {
    font-size: calc(28px * 1.4);
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 6rem;
    height: 0.2rem;
    background: linear-gradient(90deg, rgb(93,134,157), rgb(59,80,107));
    border-radius: 2px;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials .reviews {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    padding: 0 2rem;
}

.testimonials .reviews .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22rem;
    padding: 2rem;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials .reviews .review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(93,134,157), rgb(59,80,107));
}

.testimonials .reviews .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonials .reviews .review .photo {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgb(93,134,157,0.5);
    background-size: cover;
    background-position: center;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.testimonials .reviews .review .text {
    font-family: Playfair Display, sans-serif;
    text-align: center;
    color: #000000;
    position: relative;
    width: 100%;
}

.testimonials .reviews .review .text::before {
    content: '"';
    font-size: 4rem;
    color: rgb(93,134,157,0.5);
    position: absolute;
    top: -2rem;
    left: -0.5rem;
    opacity: 0.5;
}

.testimonials .reviews .review .text span {
    display: block;
    font-size: 1.1rem;
    color: rgb(93,134,157);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonials .reviews .review .text p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.75rem 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 2rem;
    }
    .testimonials .reviews {
        flex-direction: column;
        align-items: center;
    }
    .testimonials .reviews .review {
        width: 90%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .testimonials h3 {
        font-size: calc(28px * 1.2);
    }
    .testimonials {
        padding: 3rem 1rem;
    }
    .testimonials .reviews .review {
        width: 100%;
        max-width: 320px;
    }
}
.who_we_are {
    padding: 80px 0;
    background: rgb(93,134,157,0.5);
    font-family: Playfair Display, sans-serif;
    color: #000000;
}

.wrapping-container .who_we_are .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.wrapping-container .who_we_are .holder .photo {
    width: 50%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapping-container .who_we_are .holder .photo:hover {
    transform: scale(1.05);
}

.wrapping-container .who_we_are .caption_holder {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.wrapping-container .who_we_are .style_element {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.wrapping-container .who_we_are h2 {
    color: rgb(93,134,157);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
}

.wrapping-container .who_we_are p {
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.5s;
}

.wrapping-container .who_we_are .photo {
    width: 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .wrapping-container .who_we_are .caption_holder {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .wrapping-container .who_we_are .style_element, .wrapping-container .who_we_are .photo {
        width: 100%;
    }

    .wrapping-container .who_we_are .holder .photo {
        height: 300px;
        width: 100%;
    }

    .wrapping-container .who_we_are h2 {
        font-size: 19px;
    }

    .wrapping-container .who_we_are p {
        font-size: 12px;
    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}.gratitudeHub {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(59,80,107,0.5), rgb(93,134,157,0.5));
    padding: 40px;
    position: relative;
    color: #ffffff;
}
.gratitudeHub .container {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 11px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gratitudeHub h2 {
    margin-bottom: 20px;
    font-size: 47px;
    font-family: Playfair Display, sans-serif;
    font-weight: 600;
    color: rgb(59,80,107);
    background: -webkit-linear-gradient(rgb(93,134,157), rgb(59,80,107));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gratitudeHub p {
    font-size: 12px;
    font-family: Playfair Display, sans-serif;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 0;
}
@media only screen and (max-width: 800px) {
    .gratitudeHub {
        padding: 20px;
    }
    
    .gratitudeHub .container {
        padding: 30px;
    }
    
    .gratitudeHub h2 {
        font-size: 34px;
    }
    
    .gratitudeHub p {
        font-size: 20px;
    }
}
.program_results {
    padding-bottom: 80px;
    padding-top: 80px;
}

.program_results .holder {
    display: flex;
    width: 100%;
}

.program_results h2 {
    text-align: left;
    margin-bottom: 20px;
}

.program_results .photo {
    width: 50%;
    flex-shrink: 0;
}

.program_results .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.program_results ul {
    list-style: none;
}

.program_results li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.program_results svg, .program_results path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(93,134,157);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .program_results {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .program_results .holder {
        flex-direction: column;
    }

    .program_results .text_holder {
        width: 100%;
    }

    .program_results .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.wrapping-container .program_results {
    background: rgb(59,80,107,0.5);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wrapping-container .program_results::before {
    content: "";
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(93,134,157,0.5), transparent);
    position: absolute;
    top: -50%;
    left: -50%;
    z-index: 0;
    transform: rotate(45deg);
}

.wrapping-container .program_results .holder {
    flex-direction: row;
    align-items: normal;
    position: relative;
    z-index: 1;
}

.wrapping-container .program_results h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wrapping-container .program_results li {
    margin-bottom: 15px;
    font-size: 12px;
    color: #000000;
    display: flex;
    align-items: center;
}

.wrapping-container .program_results .photo {
    min-height: 450px;
    width: 45%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.wrapping-container .program_results .photo:hover {
    transform: scale(1.01);
}

.wrapping-container .program_results .text_holder {
    padding: 60px;
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #ffffff;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.wrapping-container .program_results svg, .wrapping-container .program_results path {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    fill: rgb(93,134,157);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .wrapping-container .program_results {
        padding: 50px 0;
    }

    .wrapping-container .program_results::before {
        height: 100%;
    }

    .wrapping-container .program_results .holder {
        flex-direction: column;
    }

    .wrapping-container .program_results .photo {
        min-height: 250px;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 0;
    }

    .wrapping-container .program_results .text_holder {
        padding: 40px;
        width: 100%;
        border-radius: 0;
    }

    .wrapping-container .program_results h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}.course_methodology {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgb(140,162,191);
}

.course_methodology .work_holder {
    position: relative;
    padding: 4rem 0;
    min-height: 480px;
}

.course_methodology .work_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 30%, transparent 70%);
    z-index: 1;
}

.course_methodology .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.course_methodology .text_holder {
    max-width: 650px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    animation: slideIn 0.8s ease-out forwards;
}

.course_methodology .text_holder h4 {
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.course_methodology .text_holder p {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: Playfair Display, sans-serif;
    font-weight: 400;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .course_methodology .work_holder {
        min-height: 400px;
        padding: 3rem 0;
    }

    .course_methodology .text_holder {
        max-width: 550px;
        padding: 2rem;
    }

    .course_methodology .text_holder h4 {
        font-size: calc(36px * 0.9);
    }
}

@media (max-width: 768px) {
    .course_methodology .work_holder {
        min-height: 350px;
    }

    .course_methodology .work_holder::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    }

    .course_methodology .text_holder {
        max-width: 100%;
        margin: 0 auto;
        padding: 1.75rem;
    }

    .course_methodology .text_holder h4 {
        font-size: calc(36px * 0.8);
        margin-bottom: 1rem;
    }

    .course_methodology .text_holder p {
        font-size: calc(18px * 0.95);
    }
}

@media (max-width: 576px) {
    .course_methodology .work_holder {
        padding: 2.5rem 0;
    }

    .course_methodology .text_holder {
        padding: 1.5rem;
    }

    .course_methodology .text_holder h4 {
        font-size: calc(36px * 0.7);
    }
}.mentorship_profile {
    background: linear-gradient(
        90deg,
        rgb(59,80,107) 0%,
        rgb(59,80,107) 45%,
        rgb(140,162,191) 45%,
        rgb(140,162,191) 100%
    );
    padding: 160px 0;
    position: relative;
}

.mentorship_profile::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: repeating-linear-gradient(
        -65deg,
        rgba(0, 0, 0, 0.5) 0,
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 12px
    );
    opacity: 0.05;
}

.mentorship_profile .holder {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.mentorship_profile .review {
    display: grid;
    grid-template-columns: minmax(400px, 600px) 1fr;
    gap: 100px;
    position: relative;
}

.mentorship_profile .photo {
    height: 720px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 40px 40px 0 rgb(93,134,157,0.5);
}

.mentorship_profile .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        #000000 100%
    );
    mix-blend-mode: multiply;
}

.mentorship_profile .worker_description {
    background: #ffffff;
    padding: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgb(140,162,191);
}

.mentorship_profile .worker_description::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-left: 3px solid rgb(93,134,157);
    border-top: 3px solid rgb(93,134,157);
}

.mentorship_profile .worker_description::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    border-right: 3px solid rgb(93,134,157);
    border-bottom: 3px solid rgb(93,134,157);
}

.mentorship_profile .name {
    font-size: calc(39px * 1.2);
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
}

.mentorship_profile .job {
    font-size: 19px;
    color: rgb(93,134,157);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 60px;
}

.mentorship_profile .worker_info {
    margin-top: 40px;
    display: grid;
    grid-column: span 2;
}

.mentorship_profile .quote {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    line-height: 1.6;
    padding: 40px;
    background: rgb(140,162,191);
    border-left: 4px solid rgb(93,134,157);
}

.mentorship_profile .story {
    color: #000000;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.6;
    padding: 40px;
    background: rgb(59,80,107);
    border-right: 4px solid rgb(93,134,157);
}

@media (max-width: 1400px) {
    .mentorship_profile {
        padding: 120px 0;
    }

    .mentorship_profile .review {
        gap: 80px;
    }

    .mentorship_profile .photo {
        height: 600px;
        box-shadow: 30px 30px 0 rgb(93,134,157,0.5);
    }

    .mentorship_profile .worker_description {
        padding: 60px;
    }
}

@media (max-width: 1200px) {
    .mentorship_profile {
        background: rgb(140,162,191);
    }

    .mentorship_profile .review {
        grid-template-columns: 1fr;
        max-width: 900px;
        margin: 0 auto;
    }

    .mentorship_profile .photo {
        height: 500px;
        box-shadow: 25px 25px 0 rgb(93,134,157,0.5);
    }

    .mentorship_profile .worker_description {
        padding: 50px;
    }

    .mentorship_profile .worker_description::before,
    .mentorship_profile .worker_description::after {
        width: 60px;
        height: 60px;
    }

    .mentorship_profile .worker_description::before{
        top:20px;
        left:20px;
    }

    .mentorship_profile .worker_description::after {
        bottom: 20px;
        right: 20px;
    }

    .mentorship_profile .worker_info {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .mentorship_profile {
        padding: 80px 0;
    }

    .mentorship_profile .photo {
        height: 400px;
        box-shadow: 20px 20px 0 rgb(93,134,157,0.5);
    }

    .mentorship_profile .worker_description {
        padding: 40px;
    }

    .mentorship_profile .name {
        font-size: 31px;
    }


    .mentorship_profile .job {
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    .mentorship_profile .quote {
        padding: 30px;
    }

    .mentorship_profile .story {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .mentorship_profile {
        padding: 60px 0;
    }

    .mentorship_profile .photo {
        height: 300px;
        box-shadow: 15px 15px 0 rgb(93,134,157,0.5);
    }

    .mentorship_profile .worker_description {
        padding: 30px;
    }

    .mentorship_profile .worker_description::before,
    .mentorship_profile .worker_description::after {
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
    }

    .mentorship_profile .worker_description::after {
        bottom: 20px;
        right: 20px;
        top: auto;
        left: auto;
    }

    .mentorship_profile .name {
        font-size: calc(31px * 0.9);
        padding-left: 25px;
    }

    .mentorship_profile .job {
        letter-spacing: 2px;
        font-size: calc(21px * 0.9);
    }

    .mentorship_profile .quote {
        padding: 20px;
    }

    .mentorship_profile .story {
        padding: 20px;
    }
}.privacy_holder {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);

    color: #000000;
    font-family: Playfair Display, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.privacy_holder h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 41px;
    font-weight: 700;
    color: rgb(93,134,157);
    border-bottom: 2px solid rgb(93,134,157);
    padding-bottom: 10px;
}

.privacy_holder h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 600;
    color: rgb(59,80,107);
    border-left: 4px solid rgb(59,80,107);
    padding-left: 15px;
}

.privacy_holder ul {
    list-style-type: square;
    padding-left: 40px;
    margin: 20px 0;
}

.privacy_holder li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
}

.privacy_holder p, .privacy_holder span, .privacy_holder div {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
    color: #000000;
}

.privacy_holder h3, .privacy_holder h4, .privacy_holder h5, .privacy_holder h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
    color: rgb(93,134,157);
    border-left: 3px solid rgb(93,134,157);
    padding-left: 10px;
}

@media only screen and (max-width: 800px) {
    .privacy_holder {
        padding: 30px;
    }

    .privacy_holder h1 {
        font-size: calc(19px - 4px);
    }

    .privacy_holder h2 {
        font-size: calc(19px - 3px);
    }

    .privacy_holder h3, .privacy_holder h4, .privacy_holder h5, .privacy_holder h6 {
        font-size: calc(19px - 2px);
    }

    .privacy_holder p, .privacy_holder span, .privacy_holder div, .privacy_holder li {
        font-size: calc(16px - 2px);
    }
}.follow {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.follow .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.follow input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(59,80,107,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.follow h2 {
    margin-bottom: 20px;
    text-align: center;
}

.follow .button {
    background: rgb(59,80,107);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.follow .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .follow .holder {
        flex-direction: column;
    }

    .follow {
        padding: 30px 20px;
    }

    .follow input {
        min-width: unset;
    }

    .follow .button {
        flex-shrink: unset;
    }

    .follow .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .follow input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapping-container .follow .holder h2 {
        font-size: 20px;
    }
}

.wrapping-container .follow {
    padding: 80px 0;
    background: rgb(140,162,191);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Playfair Display, sans-serif;
    position: relative;
    overflow: hidden;
}

.wrapping-container .follow .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    background: #ffffff;
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
}

.wrapping-container .follow h2 {
    color: rgb(93,134,157);
    margin: 0 0 20px;
    font-size: 33px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.wrapping-container .follow .input_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.wrapping-container .follow input {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid rgb(93,134,157);
    border-radius: 14px;
    background: #ffffff;
    color: #000000;
    font-size: 13px;
    transition: border 0.3s ease;
}

.wrapping-container .follow input:focus {
    border-color: rgb(59,80,107);
    outline: none;
}

.wrapping-container .follow .button {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 15px 0;
    background: rgb(93,134,157);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wrapping-container .follow .button:hover {
    background: rgb(59,80,107);
}

@media only screen and (max-width: 800px) {
    .wrapping-container .follow {
        padding: 40px 20px;
    }

    .wrapping-container .follow .holder {
        padding: 30px;
        width: 100%;
    }

    .wrapping-container .follow h2 {
        margin-bottom: 25px;
    }

    .wrapping-container .follow .input_holder {
        width: 100%;
    }

    .wrapping-container .follow input {
        width: 100%;
    }

    .wrapping-container .follow .button {
        width: 100%;
        padding: 15px 0;
    }
}.service_info {
    background: radial-gradient(circle, rgb(140,162,191) 0%, rgb(93,134,157,0.5) 100%);
    padding: 5vh 4vw;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 90vw; 
    margin: 20px auto;
    overflow: hidden;
}
.service_info .holder .info_holder div.hours_of_service {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.service_info .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.service_info .holder .info_holder > div > div {
    margin: 5px 0;
}
.service_info .contact_holder {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgb(93,134,157);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 4vh 5vw;
    width: 100%;
    max-width: 80vw; 
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 4vh;
}
.service_info .contact_holder::before {
    content: "";
    display: block;
    width: 70%; 
    height: 4px;
    background: rgb(93,134,157);
    position: absolute;
    bottom: -10px;
    left: 15%;
    border-radius: 12px;
    transition: background 0.3s ease;
}
.service_info .contact_holder:hover::before {
    background: rgb(59,80,107);
}
.service_info .holder {
    display: flex;
    flex-direction: column; 
    align-items: stretch;
    gap: 3vh; 
}
.service_info .info_holder svg {
    width: 25px;
    height: 25px;
    fill: rgb(93,134,157);
    margin-right: 10px;
}
.service_info .holder .contact_description {
    background: linear-gradient(135deg, #ffffff 0%, rgb(93,134,157,0.5) 100%);
    padding: 2vh 3vw;
    border-radius: 10px;
    border: 1px solid rgb(93,134,157);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    line-height: 1.6;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    width: 100%;
    max-width: 70vw; 
}
.service_info .holder .info_holder>div span {
    margin-left: 8px;
}
.service_info .holder .photo {
    width: 100%;
    height: 35vh; 
    background-size: cover;
    background-position: center;
    border-radius: 22px;
    border: 1px solid rgb(93,134,157);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service_info .holder .info_holder {
    display: flex;
    flex-direction: column; 
    align-items: stretch;
    gap: 2vh; 
    width: 100%;
    max-width: 70vw; 
}
.service_info .holder .info_holder > div {
    display: flex;
    align-items: center;
    gap: 1vw;
    font-size: 12px;
    color: #000000;
    background: #ffffff;
    border: 1px solid rgb(93,134,157);
    border-radius: 10px;
    padding: 1.5vh 2vw;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.service_info .holder .info_holder > div:hover {
    background-color: rgb(93,134,157,0.5);
    border-color: rgb(59,80,107);
}
.service_info .holder .info_holder > div a {
    color: rgb(93,134,157);
    text-decoration: none;
    border-bottom: 1px solid rgb(93,134,157);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
.service_info .holder .info_holder > div a:hover {
    color: rgb(59,80,107);
    border-bottom: 1px solid rgb(59,80,107);
}
.service_info .contact_politics {
    margin-top: 4vh;
    padding: 40px 30px;
    padding-top: 60px;
    background: #ffffff;
    border: 1px solid rgb(93,134,157);
    border-radius: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}
.service_info .contact_politics::before {
    content: "📄";
    font-size: 2vw;
    position: absolute;
    top: 15px;
    left: 30px;
    color: rgb(93,134,157);
}
.service_info .contact_politics > div {
    margin-bottom: 2vh;
    text-align: left;
}
.service_info .contact_politics > div h4 {
    font-size: 21px;
    color: rgb(93,134,157);
    margin-bottom: 1vh;
}
.service_info .contact_politics > div p {
    font-size: 12px;
    color: #000000;
}
.service_info h2 {
    font-size: 33px;
    font-weight: 700;
    color: rgb(93,134,157);
    margin-bottom: 3vh;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 1vh;
    border-bottom: 3px solid rgb(93,134,157);
}
@media only screen and (max-width: 800px) {
    .service_info {
        padding: 4vh 2vw;
        width: 95vw;
    }
    .service_info .contact_holder {
        max-width: 100%;
        flex-direction: column; 
    }
    .service_info .holder {
        flex-direction: column; 
    }
    .service_info .holder .photo {
        height: 40vh; 
    }
    .service_info .holder .contact_description {
        max-width: 90vw;
    }
    .service_info .holder .info_holder {
        flex-direction: column;
        max-width: unset;
    }
}
.wrapping-container .program_offerings {
    padding: 60px 0;
    background: rgb(59,80,107);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    position: relative;
    overflow: hidden;
}

.wrapping-container .program_offerings::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(93,134,157,0.5) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgb(93,134,157,0.5) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, rgb(93,134,157,0.5) 25%, transparent 25%),
                linear-gradient(45deg, rgb(93,134,157,0.5) 25%, transparent 25%);
    background-size: 100px 100px;
    z-index: 0;
}

.wrapping-container .program_offerings .items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.wrapping-container .program_offerings .items .course {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    background: rgb(59,80,107);
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    overflow: hidden;
}

.wrapping-container .program_offerings .items .course .content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.wrapping-container .program_offerings .photo {
    width: 50%;
    height: auto;
    background-size: cover;
    background-position: center;
    border-right: 2px solid rgba(0, 255, 255, 0.5);
}

.wrapping-container .program_offerings .text_holder {
    width: 50%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapping-container .program_offerings .text_holder h3 {
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.wrapping-container .program_offerings .text_holder p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.wrapping-container .program_offerings .button {
    align-self: flex-start;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    background: rgb(93,134,157);
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgb(93,134,157);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.wrapping-container .program_offerings .button:hover {
    background: rgb(59,80,107);
    border-color: rgb(59,80,107);
    color: #ffffff;
}

@media only screen and (max-width: 900px) {
    .wrapping-container .program_offerings {
        padding: 40px 0;
    }
    .wrapping-container .program_offerings .items .course .content {
        flex-direction: column;
    }
    .wrapping-container .program_offerings .items .course {
        flex-direction: column;
        width: 100%;
    }

    .wrapping-container .program_offerings .photo {
        width: 100%;
        height: 250px;
        border-right: none;
        border-bottom: 2px solid rgba(0, 255, 255, 0.5);
    }

    .wrapping-container .program_offerings .text_holder {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .wrapping-container .program_offerings .text_holder h3 {
        font-size: 19px;
    }

    .wrapping-container .program_offerings .text_holder p {
        font-size: 18px;
    }

    .wrapping-container .program_offerings .button {
        align-self: center;
    }
}
header .main_header {
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-right: 26px;
}
header .logo_holder .logotype {
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .logo_holder svg, header .logo_holder img {
    height: 60px;
    width: 60px;
    fill: rgb(93,134,157);
    transition: transform 0.3s ease-in-out;
}
header .logo_holder svg:hover, header .logo_holder img:hover {
    transform: scale(1.1);
}
header .menu {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
header .menu a {
    color: rgb(59,80,107);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 10px;
    position: relative;
}
header .menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: rgb(59,80,107);
    transition: width 0.3s ease;
}
header .menu a:hover::before {
    width: 100%;
}
header .menu a.active {
    color: rgb(93,134,157);
}
header .menu a.active::before {
    background: rgb(93,134,157);
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 1px solid rgb(59,80,107);
}
@media (max-width: 1200px) {
    header .logo_holder {
        margin-right: 0;
    }
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 100%;
        padding: 20px;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 15px;
        width: 100%;
        text-align: left;
    }
    header .logo_holder {
        width: 100%;
        justify-content: center;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 40px;
        width: 40px;
    }
}
.wrapping-container header .main_header {
    background: rgb(140,162,191);
}
.wrapping-container header .header_content {
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    position: relative;
}
.wrapping-container header .logo_holder .logotype svg, .wrapping-container header .logo_holder .logotype img {
    width: 65px;
    height: 65px;
}
.wrapping-container header .menu a {
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}