* {
    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: Merriweather, sans-serif;
    color: #000000;
}
.wrap-structure-7 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(199,216,209);
}
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;
    }
}.appHub-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(157,157,158,0.5);
    padding: 50px 20px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    border-top: 4px solid rgb(157,157,158);
}
.appHub-2 .container {
    width: 100%;
    max-width: 900px;
    background-color: rgb(199,216,209);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(157,157,158,0.5);
}
.appHub-2 h2 {
    margin-bottom: 30px;
    font-size: 39px;
    font-weight: 600;
    color: rgb(157,157,158);
    border-bottom: 3px solid rgb(41,50,65);
    padding-bottom: 10px;
    width: 100%;
    text-transform: uppercase;
}
.appHub-2 p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    padding: 20px;
}
@media only screen and (max-width: 800px) {
    .appHub-2 {
        padding: 30px 10px;
    }
    .appHub-2 .container {
        padding: 30px;
    }
    .appHub-2 h2 {
        font-size: 37px;
        padding-bottom: 8px;
    }
    .appHub-2 p {
        font-size: 21px;
        padding: 15px;
    }
}
.customer-opinions-7 {
    padding: 80px 0;
    background: linear-gradient(to bottom right, rgb(157,157,158), rgb(41,50,65));
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    overflow: hidden;
}

.customer-opinions-7 .container {
    position: relative;
    z-index: 1;
}

.customer-opinions-7 h2 {
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.customer-opinions-7 .reviews {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.customer-opinions-7 .review {
    position: relative;
    width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}

.customer-opinions-7 .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.customer-opinions-7 .photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.customer-opinions-7 .photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.customer-opinions-7 .photo:hover img {
    transform: scale(1.1);
}

.customer-opinions-7 .text {
    text-align: center;
}

.customer-opinions-7 .text span {
    display: block;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.customer-opinions-7 .text p {
    font-size: 18px;
    font-weight: 400;
}

.customer-opinions-7 .review::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease-in-out;
    pointer-events: none;
}

.customer-opinions-7 .review:hover::after {
    border-color: rgba(255, 255, 255, 0.5);
}

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

.customer-opinions-7 .review {
    animation: fadeInUp 0.5s ease-out;
}

@media (max-width: 768px) {
    .customer-opinions-7 .review {
        width: calc(50% - 30px);
    }
}

@media (max-width: 800px) {
    .customer-opinions-7 .reviews {
        flex-wrap: wrap;
    }
    .customer-opinions-7 .review {
        width: 100%;
    }
}

.wrap-structure-7 .customer-opinions-7 {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.wrap-structure-7 .customer-opinions-7::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 20%, transparent 20%);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    transform: translateX(-50%);
    z-index: 0;
}

@keyframes moveBackground {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(-50%, -55%);
    }
}

.wrap-structure-7 .customer-opinions-7 .review {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgb(157,157,158);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wrap-structure-7 .customer-opinions-7 .photo {
    width: 150px;
    height: 150px;
}

.wrap-structure-7 .customer-opinions-7 .text span {
    font-size: 18px;
}

.wrap-structure-7 .customer-opinions-7 .text p {
    font-size: 16px;
}
footer {
    background: rgb(41,50,65);
    color: #ffffff;
}

footer .copyright {
    background: rgb(157,157,158);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(157,157,158);
}

footer h5 {
    color: rgb(157,157,158);
}

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: 20px;
    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: 14px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 13px;
}

@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;
    }

}

.wrap-structure-7 footer .logo_holder svg, .wrap-structure-7 footer .logo_holder img {
    width: 55px;
    height: 55px;
    margin: 0;
}

.wrap-structure-7 footer {
    padding-top: 60px;
    padding-bottom: 40px;
}

.wrap-structure-7 footer .footer {
    padding: 0;
}

.wrap-structure-7 footer .footer_info {
    flex-direction: column;
    width: 100%;
}

.wrap-structure-7 footer .menu {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
}

.wrap-structure-7 footer .copyright {
    background: rgb(41,50,65);
}

.wrap-structure-7 footer .menu_holder {
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
}

.wrap-structure-7 footer .menu a {
    font-weight: 400;
    margin-right: 24px;
}

.wrap-structure-7 footer .menu a:last-child {
    margin-right: 0;
}

.wrap-structure-7 footer .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.wrap-structure-7 footer h5 {
    white-space: nowrap;
    font-size: 14px;
    margin: 0;
}

footer .copyright {
    padding: 10px 0;
}

.wrap-structure-7 footer .copyright_info {
    text-align: right;
}

@media only screen and (max-width: 800px) {
    .wrap-structure-7 footer .footer_info {
        padding: 0;
        align-items: center;
    }

    .wrap-structure-7 footer h5 {
        display: none;
    }

    .wrap-structure-7 footer .menu_holder {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .wrap-structure-7 footer .menu a {
        margin-right: 0;
    }

    .wrap-structure-7 footer .copyright_info {
        text-align: center;
    }
}.program-information-6 {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgb(157,157,158,0.5), rgb(41,50,65,0.5));
    color: #000000;
}

.program-information-6 h2 {
    color: rgb(157,157,158);
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.program-information-6 .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.program-information-6 .course {
    padding: 15px;
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-information-6 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.program-information-6 .photo {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.program-information-6 h3 {
    color: rgb(157,157,158);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.program-information-6 p {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-information-6 .button {
    background: rgb(41,50,65);
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

@media only screen and (max-width: 800px) {
    .program-information-6 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .program-information-6 h2 {
        font-size: 28px;
    }
    .program-information-6 .items {
        flex-direction: column;
    }
    .program-information-6 .photo {
        height: 200px;
    }
}

.wrap-structure-7 .program-information-6 .container {
    width: 100%;
    padding: 0 15px;
}

.wrap-structure-7 .program-information-6 .items {
    width: 100%;
}

.wrap-structure-7 .program-information-6 .items .course {
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
}

.wrap-structure-7 .program-information-6 .photo {
    height: 250px;
    width: 100%;
    margin: 0;
    border-radius: 10px;
    background-position: center !important;
}

.wrap-structure-7 .program-information-6 .course .content {
    border-radius: 10px;
    box-shadow: none;
    padding: 20px;
}

.wrap-structure-7 .program-information-6 .text_holder {
    max-width: 100%;
    margin: 20px 0;
    justify-content: flex-start;
    align-items: center;
}

.wrap-structure-7 .program-information-6 p {
    margin-top: 20px;
    text-align: center;
}

.wrap-structure-7 .program-information-6 .button {
    margin-top: 30px;
    width: fit-content;
}

.wrap-structure-7 .program-information-6 h3 {
    text-align: center;
}
.title-opener-1 {
    background-color: rgb(199,216,209);
    padding: 100px 0;
    font-family: Merriweather, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.title-opener-1 .holder {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05); 
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.title-opener-1 .holder:hover {
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1); 
}
.title-opener-1 .photo {
    width: 50%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease; 
}
.title-opener-1 .text_holder {
    width: 45%;
    padding: 40px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05); 
    position: relative;
    transition: transform 0.3s ease;
}
.title-opener-1 .text_info {
    position: relative;
    margin-bottom: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.title-opener-1 .text_info h2 {
    font-size: 19px;
    color: rgb(157,157,158);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(41,50,65,0.5); 
    transition: color 0.3s ease, border-color 0.3s ease;
}

.title-opener-1 .text_info span {
    font-size: 13px;
    color: #000000;
}
.title-opener-1 .text_info svg {
    width: 80px;
    height: 80px;
    fill: rgb(157,157,158);
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.title-opener-1 .text_holder .button {
    padding: 10px 16px;
    background-color: rgb(157,157,158);
    color: #ffffff;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: none;
    width: fit-content;
    align-self: center;
}
.title-opener-1 .text_holder .button:hover {
    background-color: rgb(41,50,65);
    box-shadow: 0px 7px 25px rgba(0, 0, 0, 0.2); 
}
@media (max-width: 1200px) {
    .title-opener-1 .holder {
        flex-direction: column; 
    }
    .title-opener-1 .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .title-opener-1 .text_holder {
        width: 100%;
    }
}
@media (max-width: 800px) {
    .title-opener-1 {
        padding: 60px 0;
    }
    .title-opener-1 .photo {
        height: 200px;
    }
    .title-opener-1 .text_info h2 {
        font-size: 19px;
    }
}
.join-now-7 {
    padding: 80px 0;
    background: rgb(199,216,209);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 10px solid rgb(157,157,158);
    border-bottom: 10px solid rgb(41,50,65);
    overflow: hidden;
}

.join-now-7::before,
.join-now-7::after,
.join-now-7 .container::before,
.join-now-7 .container::after {
    content: '';
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.join-now-7::before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgb(157,157,158) 2%, transparent 2.5%),
        radial-gradient(circle at 75% 75%, rgb(41,50,65) 2%, transparent 2.5%),
        radial-gradient(circle at 50% 50%, rgb(157,157,158) 1%, transparent 1.5%),
        radial-gradient(circle at 10% 90%, rgb(41,50,65) 3%, transparent 3.5%);
    background-size: 100% 100%, 120% 120%, 150% 150%, 200% 200%;
    animation: rotateBackground 60s linear infinite;
}

.join-now-7::after {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 75% 25%, rgb(41,50,65) 2%, transparent 2.5%),
        radial-gradient(circle at 25% 75%, rgb(157,157,158) 2%, transparent 2.5%),
        radial-gradient(circle at 50% 50%, rgb(41,50,65) 1%, transparent 1.5%),
        radial-gradient(circle at 90% 10%, rgb(157,157,158) 3%, transparent 3.5%);
    background-size: 120% 120%, 100% 100%, 180% 180%, 220% 220%;
    animation: rotateBackground 50s linear infinite reverse;
}

.join-now-7 .container::before {
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: rgb(157,157,158);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatShape 15s ease-in-out infinite;
}

.join-now-7 .container::after {
    bottom: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: rgb(41,50,65);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: floatShape 18s ease-in-out infinite reverse;
}

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

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

.join-now-7 .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 90%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.join-now-7 .holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: rgb(199,216,209);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 11px;
    position: relative;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 3px 3px rgba(0, 0, 0, 0.1),
        0 0 50px rgba(0, 0, 0, 0.1) inset;
    width: 100%;
}

.join-now-7 .holder::before,
.join-now-7 .holder::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgb(157,157,158), rgb(41,50,65));
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 20s ease-in-out infinite alternate;
}

.join-now-7 .holder::before {
    top: -100px;
    left: -100px;
}

.join-now-7 .holder::after {
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(360deg) scale(1);
    }
}

.join-now-7 .holder svg {
    width: 80px;
    height: 80px;
    margin-right: 30px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.join-now-7 .holder svg:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.15));
}

.join-now-7 .holder svg path {
    fill: rgb(157,157,158);
    transition: fill 0.3s ease;
}

.join-now-7 .holder svg:hover path {
    fill: rgb(41,50,65);
}

.join-now-7 .holder h2 {
    font-size: 34px;
    font-weight: 700;
    color: rgb(157,157,158);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 1;
    text-align: left;
}

.join-now-7 .holder h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, rgb(157,157,158), rgb(41,50,65));
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.join-now-7 .holder .button {
    padding: 12px 30px;
    background: linear-gradient(135deg, rgb(157,157,158), rgb(41,50,65));
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    display: inline-block;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.join-now-7 .holder .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.join-now-7 .holder .button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(255, 255, 255, 0.2) inset;
}

.join-now-7 .holder .button:hover::before {
    transform: translateX(100%);
}

@media only screen and (max-width: 1024px) {
    .join-now-7 {
        padding: 60px 0;
    }

    .join-now-7 .container {
        width: 95%;
        padding: 30px;
    }

    .join-now-7 .holder {
        padding: 25px;
    }

    .join-now-7 .holder svg {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }

    .join-now-7 .holder h2 {
        font-size: calc(34px * 0.9);
    }

    .join-now-7 .holder .button {
        padding: 10px 25px;
        font-size: calc(20px * 0.95);
    }
}

@media only screen and (max-width: 768px) {
    .join-now-7 {
        padding: 50px 0;
    }

    .join-now-7 .container {
        padding: 20px;
    }

    .join-now-7 .holder {
        flex-direction: column;
        padding: 20px;
    }

    .join-now-7 .holder svg {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .join-now-7 .holder h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .join-now-7 .holder h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .join-now-7 .holder .button {
        padding: 10px 20px;
        font-size: 18px;
        width: 100%;
    }
}.album-showcase-4 {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background: 
        linear-gradient(120deg, 
            rgb(157,157,158,0.5) 0%,
            transparent 30%
        ),
        linear-gradient(-120deg, 
            rgb(41,50,65,0.5) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at center,
            rgb(199,216,209) 0%,
            rgba(0, 0, 0, 0.5) 200%
        );
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
}

.album-showcase-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(45deg,
            rgb(157,157,158,0.5) 0,
            rgb(157,157,158,0.5) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(-45deg,
            rgb(41,50,65,0.5) 0,
            rgb(41,50,65,0.5) 1px,
            transparent 1px,
            transparent 20px
        );
    opacity: 0.1;
    z-index: -1;
    animation: moveGrid 30s linear infinite;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.album-showcase-4 .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.album-showcase-4 .gallery_holder {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.album-showcase-4 .gallery_holder h2 {
    color: #000000;
    font-size: 29px;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin: 0;
    padding-bottom: 1rem;
}

.album-showcase-4 .gallery_holder h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgb(157,157,158),
        rgb(41,50,65)
    );
    border-radius: 10px;
}

.album-showcase-4 .gallery_items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    perspective: 1000px;
}

.album-showcase-4 .gallery_items:has(li:nth-child(5)) li {
    grid-column: span 2;
}

.album-showcase-4 .gallery_items:has(li:nth-child(5)) li:first-child,
.album-showcase-4 .gallery_items:has(li:nth-child(5)) li:nth-child(2) {
    grid-column: span 3;
}

.album-showcase-4 .gallery_items:has(li:nth-child(7)) li {
    grid-column: span 2;
}

.album-showcase-4 .gallery_items:has(li:nth-child(7)) li:first-child,
.album-showcase-4 .gallery_items:has(li:nth-child(7)) li:nth-child(2),
.album-showcase-4 .gallery_items:has(li:nth-child(7)) li:nth-child(3) {
    grid-column: span 3;
}

.album-showcase-4 .gallery_item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.album-showcase-4 .gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.album-showcase-4 .gallery_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.album-showcase-4 .gallery_item:hover {
    z-index: 10;
    transform: scale(1.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.album-showcase-4 .gallery_item:hover::before {
    opacity: 0.1;
}

.album-showcase-4 .gallery_items:nth-child(3n + 1) .gallery_item:hover {
    transform-origin: left center;
}

.album-showcase-4 .gallery_items:nth-child(3n) .gallery_item:hover {
    transform-origin: right center;
}

.album-showcase-4 .gallery_holder::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.album-showcase-4 .gallery_holder:has(.gallery_item:hover)::before {
    opacity: 0.7;
    visibility: visible;
}

@media (max-width: 1200px) {
    .album-showcase-4 .gallery_items {
        grid-template-columns: repeat(4, 1fr);
    }

    .album-showcase-4 .gallery_items:has(li:nth-child(5)) li,
    .album-showcase-4 .gallery_items:has(li:nth-child(7)) li {
        grid-column: span 2;
    }

    .album-showcase-4 .gallery_item:hover {
        transform: scale(1.6);
    }

    .album-showcase-4 .gallery_items:nth-child(2n + 1) .gallery_item:hover {
        transform-origin: left center;
    }

    .album-showcase-4 .gallery_items:nth-child(2n) .gallery_item:hover {
        transform-origin: right center;
    }
}

@media (max-width: 768px) {
    .album-showcase-4 .gallery_items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .album-showcase-4 .gallery_items:has(li:nth-child(5)) li,
    .album-showcase-4 .gallery_items:has(li:nth-child(7)) li {
        grid-column: span 2;
    }

    .album-showcase-4 .gallery_holder h2 {
        font-size: calc(29px * 0.85);
    }

    .album-showcase-4 .gallery_item:hover {
        transform: scale(1.4);
        transform-origin: center;
    }

    .album-showcase-4 .gallery_item img {
        aspect-ratio: 3/2;
    }
}

@media (max-width: 575px) {
    .album-showcase-4 .gallery_items {
        grid-template-columns: 1fr;
    }

    .album-showcase-4 .gallery_items:has(li:nth-child(5)) li,
    .album-showcase-4 .gallery_items:has(li:nth-child(7)) li {
        grid-column: span 1;
    }

    .album-showcase-4 .gallery_item:hover {
        transform: scale(1.2);
    }
}

@media (hover: none) {
    .album-showcase-4 .gallery_item {
        transform: none !important;
    }
    
    .album-showcase-4 .gallery_item:active {
        transform: scale(1.4) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .album-showcase-4::before {
        animation: none;
    }

    .album-showcase-4 .gallery_item,
    .album-showcase-4 .gallery_item img {
        transition: none;
    }
}.potential-students-0 {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(to right, #ffffff 50%, rgb(199,216,209) 50%);
    overflow: hidden;
}

.potential-students-0::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgb(157,157,158,0.5) 0%,
        rgb(157,157,158,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0.1;
}

.potential-students-0 .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.potential-students-0 .who_needs_photo {
    flex: 0 0 45%;
    position: relative;
    aspect-ratio: 1;
    border-radius: 50% 50% 50% 0;
    overflow: hidden;
    transform: rotate(-5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        -15px 15px 0 rgb(157,157,158),
        15px -15px 0 rgb(41,50,65,0.5);
}

.potential-students-0 .who_needs_photo:hover {
    transform: rotate(0deg);
}

.potential-students-0 .who_needs_photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 30%,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.potential-students-0 .who_needs_text {
    flex: 1;
    max-width: 600px;
}

.potential-students-0 .who_needs_text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
    padding-left: 25px;
}

.potential-students-0 .who_needs_text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: rgb(157,157,158);
    border-radius: 10px;
}

.potential-students-0 .who_needs_list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.potential-students-0 .who_needs_list div {
    position: relative;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 17px;
    font-family: Merriweather, sans-serif;
    font-size: 17px;
    color: #000000;
    transform: translateX(0);
    transition: all 0.3s ease;
    border: 1px solid rgb(199,216,209);
}

.potential-students-0 .who_needs_list div:nth-child(even) {
    transform: translateX(40px);
}

.potential-students-0 .who_needs_list div:hover {
    background: linear-gradient(135deg, #ffffff 0%, rgb(199,216,209) 100%);
    border-color: transparent;
}

.potential-students-0 .who_needs_list div svg {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    padding: 6px;
    background: rgb(157,157,158);
    border-radius: 50%;
    fill: #ffffff;
}

@media (max-width: 1200px) {
    .potential-students-0 {
        background: #ffffff;
    }

    .potential-students-0 .container {
        flex-direction: column;
        gap: 60px;
    }

    .potential-students-0 .who_needs_photo {
        flex: 0 0 auto;
        width: 80%;
        max-width: 500px;
    }

    .potential-students-0 .who_needs_text {
        max-width: 100%;
        text-align: center;
    }

    .potential-students-0 .who_needs_text h2 {
        padding-left: 0;
        padding-bottom: 20px;
    }

    .potential-students-0 .who_needs_text h2::before {
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 6px;
    }

    .potential-students-0 .who_needs_list div:nth-child(even) {
        transform: translateX(0);
    }
}

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

    .potential-students-0 .who_needs_photo {
        width: 100%;
        border-radius: 30% 30% 30% 0;
    }

    .potential-students-0 .who_needs_list div {
        padding: 25px 30px 25px 40px;
    }

    .potential-students-0 .who_needs_list div svg {
        width: 24px;
        height: 24px;
        left: 8px;
    }
}

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

    .potential-students-0 .who_needs_text h2 {
        font-size: calc(32px * 0.85);
    }

    .potential-students-0 .who_needs_list div {
        font-size: calc(17px * 0.95);
        padding: 20px 25px 20px 35px;
    }
}.pricing-container-7 {
    position: relative;
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.pricing-container-7 .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.pricing-container-7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgb(157,157,158,0.5), transparent 70%),
        radial-gradient(circle at 70% 30%, rgb(41,50,65,0.5), transparent 50%);
    z-index: 2;
}

.price_holder {
    position: relative;
    z-index: 3;
}

.pricing-container-7 .price_holder h2 {
    font-size: calc(38px * 1.2);
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-container-7 .price_holder h2::before,
.pricing-container-7 .price_holder h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: rgb(157,157,158);
}

.pricing-container-7 .price_holder h2::before {
    left: -70px;
}

.pricing-container-7 .price_holder h2::after {
    right: -70px;
}

.pricing-container-7 .price_section_description {
    font-size: calc(17px * 1.1);
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.pricing-container-7 .price_cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.pricing-container-7 .price_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    min-width: 250px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.pricing-container-7 .price_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(157,157,158,0.5), rgb(41,50,65,0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-container-7 .price_card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-container-7 .price_card:hover::before {
    opacity: 0.2;
}

.pricing-container-7 .price_card > * {
    position: relative;
    z-index: 1;
}

.pricing-container-7 .price_card h3 {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.pricing-container-7 .price_card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgb(157,157,158);
    transition: width 0.3s ease;
}

.pricing-container-7 .price_card:hover h3::after {
    width: 80px;
}

.pricing-container-7 .price_amount {
    font-size: calc(28px * 1.2);
    color: #ffffff;
    font-weight: 700;
    margin: 20px 0;
    display: block;
    text-align: center;
    text-shadow: 0 0 10px rgb(157,157,158,0.5);
}

.pricing-container-7 .price_card p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: center;
}

.pricing-container-7 .price_card .button {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 12px 25px;
    background: rgb(157,157,158);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.pricing-container-7 .price_card .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.7s ease;
}

.pricing-container-7 .price_card .button:hover::before {
    left: 100%;
}

.pricing-container-7 .price_card .button:hover {
    background: rgb(41,50,65);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .pricing-container-7 .price_card {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 992px) {
    .pricing-container-7 .price_cards {
        flex-wrap: wrap;
    }

    .pricing-container-7 .price_card {
        width: calc(50% - 15px);
    }
}

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

    .pricing-container-7 .price_holder h2 {
        font-size: calc(28px * 1.1);
    }

    .pricing-container-7 .price_holder h2::before,
    .pricing-container-7 .price_holder h2::after {
        width: 30px;
    }

    .pricing-container-7 .price_holder h2::before {
        left: -40px;
    }

    .pricing-container-7 .price_holder h2::after {
        right: -40px;
    }

    .pricing-container-7 .price_section_description {
        font-size: 17px;
        padding: 15px;
    }

    .pricing-container-7 .price_card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

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

    .pricing-container-7 .price_holder h2 {
        font-size: 28px;
    }

    .pricing-container-7 .price_holder h2::before,
    .pricing-container-7 .price_holder h2::after {
        display: none;
    }

    .pricing-container-7 .price_section_description {
        font-size: calc(17px * 0.9);
    }

    .pricing-container-7 .price_card {
        padding: 30px;
    }
}.join-our-community-3 {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.join-our-community-3 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join-our-community-3 input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(41,50,65,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.join-our-community-3 h2 {
    margin-bottom: 20px;
    text-align: center;
}

.join-our-community-3 .button {
    background: rgb(41,50,65);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.join-our-community-3 .input_holder {
    display: flex;
    align-items: center;
}

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

    .join-our-community-3 {
        padding: 30px 20px;
    }

    .join-our-community-3 input {
        min-width: unset;
    }

    .join-our-community-3 .button {
        flex-shrink: unset;
    }

    .join-our-community-3 .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .join-our-community-3 input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrap-structure-7 .join-our-community-3 .holder h2 {
        font-size: 20px;
    }
}

.wrap-structure-7 .join-our-community-3 {
    padding: 100px 20px;
    background: #000000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wrap-structure-7 .join-our-community-3::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgb(157,157,158,0.5), rgb(41,50,65,0.5));
    filter: blur(100px);
    z-index: 0;
    opacity: 0.7;
    animation: neonGlow 8s infinite alternate;
}

@keyframes neonGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.wrap-structure-7 .join-our-community-3 .container {
    position: relative;
    z-index: 2;
}

.wrap-structure-7 .join-our-community-3 .holder {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgb(157,157,158,0.5);
}

.wrap-structure-7 .join-our-community-3 h2 {
    font-size: 29px;
    font-weight: 700;
    color: rgb(157,157,158);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.wrap-structure-7 .join-our-community-3 h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: rgb(157,157,158);
    margin: 15px auto 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.5);
    }
    100% {
        transform: scaleX(1);
    }
}

.wrap-structure-7 .join-our-community-3 .input_holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
}

.wrap-structure-7 .join-our-community-3 input[type="email"] {
    padding: 15px 25px;
    font-size: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgb(157,157,158,0.5);
    border-radius: 10px;
    margin-right: 10px;
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(157,157,158,0.5);
}

.wrap-structure-7 .join-our-community-3 input[type="email"]:focus {
    border-color: rgb(41,50,65);
    box-shadow: 0 0 20px rgb(41,50,65,0.5);
    outline: none;
}

.wrap-structure-7 .join-our-community-3 .button {
    background: rgb(41,50,65);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 600;
    border: none;
    border-radius: 19px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgb(41,50,65,0.5);
}

.wrap-structure-7 .join-our-community-3 .button:hover {
    background: rgb(41,50,65,0.5);
    box-shadow: 0 0 30px rgb(41,50,65,0.5);
}

@media only screen and (max-width: 800px) {
    .wrap-structure-7 .join-our-community-3 {
        padding: 50px 15px;
    }

    .wrap-structure-7 .join-our-community-3 .holder {
        padding: 40px 25px;
    }

    .wrap-structure-7 .join-our-community-3 h2 {
        margin-bottom: 20px;
        font-size: 19px;
    }

    .wrap-structure-7 .join-our-community-3 .input_holder {
        flex-direction: column;
    }

    .wrap-structure-7 .join-our-community-3 input[type="email"] {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrap-structure-7 .join-our-community-3 .button {
        width: 100%;
        padding: 15px;
    }
}.company-overview-3 {
    padding: 100px 0;
    background: linear-gradient(120deg, rgb(41,50,65), rgb(157,157,158));
    position: relative;
    overflow: hidden;
}

.wrap-structure-7 .company-overview-3 .holder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.wrap-structure-7 .company-overview-3 .holder::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: rgb(41,50,65,0.5);
    border-radius: 20px;
    transform: rotate(10deg);
    z-index: -1;
}

.wrap-structure-7 .company-overview-3 .holder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgb(157,157,158);
    border-radius: 50%;
    box-shadow: 0 0 0 10px #ffffff;
    z-index: -1;
}

.wrap-structure-7 .company-overview-3 .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.wrap-structure-7 .company-overview-3 .photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 10px solid #ffffff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.wrap-structure-7 .company-overview-3 .photo::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border: 2px dashed #000000;
    border-radius: 50%;
    z-index: -1;
}

.wrap-structure-7 .company-overview-3 .style_element {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 90%;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.wrap-structure-7 .company-overview-3 .style_element::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgb(41,50,65);
    border-radius: 50%;
    box-shadow: 0 0 0 5px #ffffff;
    transform: translateX(-50%);
    z-index: -1;
}

.wrap-structure-7 .company-overview-3 h2 {
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.wrap-structure-7 .company-overview-3 h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 4px;
    background: rgb(157,157,158);
    transform: translateX(-50%);
}

.wrap-structure-7 .company-overview-3 p {
    color: #000000;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
    position: relative;
    padding: 0 10px;
}

.wrap-structure-7 .company-overview-3 p::before, .wrap-structure-7 .company-overview-3 p::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgb(157,157,158);
    border-radius: 50%;
}

.wrap-structure-7 .company-overview-3 p::before {
    top: 0;
    left: 10px;
}

.wrap-structure-7 .company-overview-3 p::after {
    bottom: 0;
    right: 10px;
}

@media only screen and (max-width: 1200px) {
    .wrap-structure-7 .company-overview-3 .photo {
        width: 200px;
        height: 200px;
    }

    .wrap-structure-7 .company-overview-3 .style_element {
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .wrap-structure-7 .company-overview-3 .holder {
        flex-direction: column;
        align-items: center;
    }

    .wrap-structure-7 .company-overview-3 .photo {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .wrap-structure-7 .company-overview-3 .style_element {
        width: 100%;
        padding: 20px;
    }

    .wrap-structure-7 .company-overview-3 .style_element::before {
        display: none;
    }
}.benefits-overview-1 {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(157,157,158), rgb(41,50,65));
    color: #ffffff;
    font-family: Merriweather, sans-serif;
}
.benefits-overview-1 .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(41,50,65,0.5);
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 40px;
    transition: all 0.3s ease-in-out;
}
.benefits-overview-1 .advantages_photo_holder {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
}
.benefits-overview-1 .advantages_photo_holder .photo {
    width: 100%;
    max-width: 300px;
    min-height: 300px;
    background: rgb(157,157,158,0.5);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits-overview-1 .advantages_photo_holder .photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.benefits-overview-1 .advantages_holder {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    background: rgb(41,50,65,0.5);
    border-radius: 24px;
    padding: 20px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    gap: 20px;
    justify-content: space-between;
}
.benefits-overview-1 .advantages_holder .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgb(157,157,158,0.5);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    width: 30%;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}
.benefits-overview-1 .advantages_holder .advantage_item:hover {
    background: rgb(41,50,65);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.benefits-overview-1 .advantages_holder .advantage_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(157,157,158);
    opacity: 0.5;
    transition: height 0.3s ease;
}
.benefits-overview-1 .advantages_holder .advantage_item:hover::before {
    height: 100%;
    opacity: 0.2;
}
.benefits-overview-1 .advantages_holder .advantage_image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefits-overview-1 .advantages_holder .advantage_image svg, .benefits-overview-1 .advantages_holder .advantage_image svg path {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}
.benefits-overview-1 .advantages_content h2 {
    font-size: 31px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.benefits-overview-1 .advantages_content h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: rgb(157,157,158);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}
.benefits-overview-1 .advantages_content h4 {
    color: #ffffff;
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
}
@media only screen and (max-width: 1200px) {
    .benefits-overview-1 .advantages_content {
        padding: 20px;
    }
    .benefits-overview-1 .advantages_photo_holder {
        flex-direction: column;
    }
    .benefits-overview-1 .advantages_photo_holder .photo {
        width: 80%;
    }
    .benefits-overview-1 .advantages_holder {
        flex-direction: column;
        align-items: stretch;
    }
    .benefits-overview-1 .advantages_holder .advantage_item {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 800px) {
    .benefits-overview-1 {
        padding: 40px 10px;
    }
    .benefits-overview-1 .advantages_content h2 {
        font-size: 20px;
    }
    .benefits-overview-1 .advantages_photo_holder .photo {
        width: 100%;
    }
    .benefits-overview-1 .advantages_holder {
        padding: 10px;
    }
    .benefits-overview-1 .advantages_holder .advantage_item {
        padding: 10px;
    }
    .benefits-overview-1 .advantages_holder .advantage_image {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
}
.privacy-silo-2 {
    background-color: #ffffff;
    color: #000000;
    font-family: Merriweather, sans-serif;
    padding: 2rem;
    border: 1px solid rgb(157,157,158);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.privacy-silo-2 h1, .privacy-silo-2 h2 {
    margin-bottom: 0.75rem;
    color: rgb(157,157,158);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.privacy-silo-2 h1 {
    font-size: 40px;
    font-weight: 700;
    border-left: 4px solid rgb(41,50,65);
    padding-left: 0.5rem;
}
.privacy-silo-2 h2 {
    font-size: 35px;
    font-weight: 600;
    border-left: 3px solid rgb(41,50,65,0.5);
    padding-left: 0.5rem;
}
.privacy-silo-2 ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.privacy-silo-2 ul li {
    font-size: 17px;
    font-weight: 400;
    padding: 0.5rem;
    background-color: rgb(41,50,65,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.privacy-silo-2 ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: rgb(157,157,158);
    border-radius: 50%;
    margin-right: 0.75rem;
}
.privacy-silo-2 p, .privacy-silo-2 span {
    font-size: 17px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 1rem;
}
.privacy-silo-2 div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.privacy-silo-2 section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media only screen and (max-width: 800px) {
    .privacy-silo-2 {
        padding: 1.5rem;
        border-radius: 10px;
        gap: 1rem;
    }
    .privacy-silo-2 h1 {
        font-size: calc(19px * 0.9);
    }
    .privacy-silo-2 h2 {
        font-size: calc(19px * 0.9);
    }
    .privacy-silo-2 ul {
        gap: 0.75rem;
    }
    .privacy-silo-2 ul li {
        padding: 0.75rem;
    }
    .privacy-silo-2 ul li::before {
        width: 8px;
        height: 8px;
    }
}.main_header {
    background: linear-gradient(135deg, rgb(157,157,158,0.5) 0%, rgb(41,50,65,0.5) 100%);
    padding: 15px 0;
    border-bottom: 2px solid rgb(41,50,65);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main_header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.main_header .header_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: radial-gradient(circle at top right, rgb(199,216,209) 0%, var(--white-color_opacity) 100%);
    border-radius: 14px;
    padding: 10px 20px;
    border: 1px solid rgb(41,50,65,0.5);
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(157,157,158);
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}
.main_header .header_logo:hover {
    transform: scale(1.05);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(157,157,158);
}
.main_header .header_description {
    font-size: 14px;
    color: #000000;
    margin-left: 20px;
    padding: 5px 10px;
    background: linear-gradient(90deg, rgb(157,157,158,0.5) 0%, transparent 100%);
    border-radius: 10px;
}
.main_header .header_menu {
    display: flex;
    gap: 15px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgb(157,157,158,0.5) 0%, rgb(41,50,65,0.5) 100%);
    border: 1px solid transparent;
}
.main_header .header_menu a:hover {
    background: linear-gradient(45deg, rgb(41,50,65,0.5) 0%, rgb(157,157,158,0.5) 100%);
    border-color: rgb(157,157,158);
    box-shadow: 0 0 10px rgb(157,157,158,0.5);
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        text-align: center;
        margin-bottom: 10px;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(157,157,158) 0%, rgb(41,50,65) 100%);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        animation: none !important;
        transition: none !important;
    }
}.contact-4 {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff, rgb(199,216,209));
    font-family: Merriweather, sans-serif;
    color: #000000;
    border: 1px solid rgb(41,50,65,0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.contact-4 h3 {
    color: rgb(157,157,158);
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, rgb(157,157,158), rgb(41,50,65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-4 .holder {
    display: flex;
    flex-direction: row;
    gap: 30px;
    background: #ffffff;
    border: 1px solid var(--white-color_opacity);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-4 .info {
    padding: 20px;
    width: 50%;
    background: linear-gradient(135deg, #ffffff, var(--white-color_opacity));
    color: #000000;
    border-right: 1px solid var(--white-color_opacity);
}
.contact-4 .info h5 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-4 .info .logo_holder {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-4 .info .logo_holder svg, 
.contact-4 .info .logo_holder img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    fill: rgb(157,157,158);
}
.contact-4 .info .logo_holder span {
    font-size: 20px;
    color: #000000;
}
.contact-4 .info .contact_info > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.contact-4 .info .contact_info svg, 
.contact-4 .info .contact_info path {
    fill: rgb(157,157,158);
    width: 20px;
    height: 20px;
}
.contact-4 .info .contact_info span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
}
.contact-4 .form {
    padding: 20px;
    background: #ffffff;
    width: 50%;
    border-radius: 10px;
}
.contact-4 .form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-4 .form form h3 {
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
}
.contact-4 form input {
    border: 1px solid var(--white-color_opacity);
    padding: 12px;
    font-size: 16px;
    background: #ffffff;
    border-radius: 10px;
    outline: none;
    width: 100%;
    border: 1px solid rgb(157,157,158);
    color: #000000;
    transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
}
.contact-4 form .name_holder {
    display: flex;
    justify-content: space-between;
}
.contact-4 form .name_holder input {
    width: 48%;
}
.contact-4 form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-4 form input:focus {
    background: var(--white-color_opacity);
    border: 1px solid rgb(157,157,158);
    box-shadow: 0 0 5px rgb(157,157,158);
}
.contact-4 form .button {
    padding: 12px;
    background: linear-gradient(135deg, rgb(157,157,158), rgb(41,50,65));
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-4 form .button:hover {
    background: linear-gradient(135deg, rgb(41,50,65), rgb(157,157,158));
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgb(157,157,158,0.5);
}
.contact-4 .agree {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-4 .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    accent-color: rgb(157,157,158);
}
.contact-4 .agree label {
    font-size: 16px;
    color: #000000;
}
.contact-4 .agree a {
    color: rgb(157,157,158);
    text-decoration: underline;
    transition: color 0.3s;
}
.contact-4 .agree a:hover {
    color: rgb(41,50,65);
}
@media only screen and (max-width: 800px) {
    .contact-4 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .contact-4 .holder {
        flex-direction: column;
    }
    .contact-4 .info, 
    .contact-4 .form {
        width: 100%;
    }
    .contact-4 .info .logo_holder span {
        font-size: 12px;
    }
    .contact-4 .container .holder  h3 {
        font-size: 20px;
    }
}
.education-experience-2 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.education-experience-2 .review .name {
    color: rgb(41,50,65);
}

.education-experience-2 .review span {
    color: rgb(157,157,158);
}

.education-experience-2 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.education-experience-2 .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.education-experience-2 .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.education-experience-2 .review .name {
    font-size: 24px;
    margin-bottom: 8px;
}

.education-experience-2 .review span {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 14px;
}

.education-experience-2 .review .quote {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .education-experience-2 .review {
        max-width: unset;
    }
}

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

    .education-experience-2 .review {
        max-width: unset;
        width: 100%;
    }

    .education-experience-2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrap-structure-7 .education-experience-2 .review {
    flex-direction: row;
    max-width: unset;
    width: 100%;
    align-items: center;
    padding: 0;
    background: rgb(41,50,65,0.5);
}

.wrap-structure-7 .education-experience-2 .holder {
    width: 100%;
}

.wrap-structure-7 .education-experience-2 .photo {
    border-radius: 0 0 300px 0;
    margin-right: 48px;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.wrap-structure-7 .worker_description {
    padding: 32px 32px 32px 0px;
    display: flex;
    flex-direction: column-reverse;
}

.wrap-structure-7 .education-experience-2 .review .name {
    color: #000000;
    order: 1;
    font-size: 15px;
    font-weight: 700;
}

.wrap-structure-7 .education-experience-2 .review span {
    color: rgba(0, 0, 0, 0.5);
    order: 0;
    font-size: 15px;
}

.wrap-structure-7 .education-experience-2 .review .quote {
    color: #000000;
    order: 2;
    margin-bottom: 16px;
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .wrap-structure-7 .education-experience-2 .review {
        flex-direction: column;
    }

    .wrap-structure-7 .education-experience-2 .photo {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrap-structure-7 .worker_description {
        width: 100%;
        padding: 20px;
    }
}