* {
    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: Arial, sans-serif;
    color: #000000;
}
.outer-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(250,249,249);
}
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;
    }
}.privacy-hedge {
    background-color: rgb(250,249,249);
    color: #000000;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}
.privacy-hedge:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.privacy-hedge h1 {
    color: rgb(190,227,219);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.privacy-hedge h2 {
    color: rgb(137,176,174);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.privacy-hedge h3, .privacy-hedge h4, .privacy-hedge h5, .privacy-hedge h6 {
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
}
.privacy-hedge h5 {
    font-size: 21px;
}
.privacy-hedge h6 {
    font-size: 19px;
}
.privacy-hedge ul, .privacy-hedge ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.privacy-hedge li {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
    font-size: 17px;
}
.privacy-hedge li::before {
    content: '•';
    color: rgb(190,227,219);
    position: absolute;
    left: 0;
    top: 0;
}
.privacy-hedge p, .privacy-hedge span {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.privacy-hedge p {
    text-align: justify;
}
.privacy-hedge .container {
    max-width: 1200px;
    margin: 0 auto;
}
.privacy-hedge .container div {
    margin-bottom: 30px;
}
@media only screen and (max-width: 800px) {
    .privacy-hedge {
        padding: 20px;
        border-radius: 10px;
    }
    .privacy-hedge h1 {
        font-size: calc(21px - 10px);
    }
    .privacy-hedge h2 {
        font-size: calc(21px - 8px);
    }
    .privacy-hedge p, .privacy-hedge span {
        font-size: calc(17px - 2px);
    }
}
.privacy-hedge a {
    color: rgb(190,227,219);
    text-decoration: none;
    border-bottom: 1px solid rgb(190,227,219,0.5);
    transition: all 0.3s ease;
}
.privacy-hedge a:hover {
    color: rgb(137,176,174);
    border-bottom: 1px solid rgb(137,176,174);
}
.privacy-hedge button {
    background-color: rgb(190,227,219);
    color: #ffffff;
    font-size: 17px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.privacy-hedge button:hover {
    background-color: rgb(137,176,174);
}.tyBlock {
    background: linear-gradient(135deg, rgb(190,227,219), rgb(137,176,174));
    padding: 50px 20px;
    display: grid;
    place-items: center;
    min-height: 100vh;
    text-align: center;
}
.tyBlock .container {
    background: #ffffff;
    border-radius: 11px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tyBlock h2 {
    font-family: Arial, sans-serif;
    font-size: 37px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid rgb(190,227,219);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}
.tyBlock p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 500px;
    width: 100%;
    text-align: left;
}
@media only screen and (max-width: 800px) {
    .tyBlock {
        padding: 30px 10px;
    }
    
    .tyBlock .container {
        padding: 30px;
    }
    .tyBlock h2 {
        font-size: calc(37px - 4px);
    }
    .tyBlock p {
        font-size: calc(14px - 1px);
    }
}
footer {
    background: rgb(137,176,174);
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 60px 0;
    border-top: 4px solid rgb(190,227,219);
}
footer .footer {
    padding: 0;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(137,176,174,0.5);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
footer .logo_holder svg, 
footer .logo_holder img {
    height: 60px;
    width: 60px;
    margin-right: 20px;
}
footer .menu {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-end;
    margin-left: 20px;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin: 0 15px;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
footer .menu a:hover {
    color: rgb(190,227,219);
    border-color: rgb(190,227,219);
}
footer .copyright {
    background: rgb(190,227,219);
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
}
footer .copyright_info {
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
    footer .logo_holder {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .menu {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    footer .menu a {
        margin: 10px 0;
    }
    footer .copyright_info {
        text-align: center;
    }
}
footer .logo_holder svg {
    fill: rgb(190,227,219);
    transition: fill 0.3s ease-in-out;
}
footer .logo_holder:hover svg {
    fill: #ffffff;
}
footer .menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(190,227,219);
    transition: width 0.3s;
}
footer .menu a:hover::after {
    width: 100%;
}
footer .menu a {
    font-weight: 400;
}
footer .copyright_info {
    border-top: 1px solid rgb(137,176,174,0.5);
    padding-top: 15px;
    margin-top: 15px;
}.future-members {
    padding-bottom: 80px;
    padding-top: 80px;
}

.future-members .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future-members ul {
    list-style: none;
}

.future-members ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.future-members ul svg, .future-members ul svg path {
    fill: rgb(190,227,219);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.future-members h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .future-members {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.outer-container .future-members {
    padding: 60px 0;
    background: linear-gradient(45deg, rgb(137,176,174) 0%, rgb(250,249,249) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer-container .future-members .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    padding: 40px 60px;
    background: #ffffff;
    border-radius: 27px;
    border: 1px solid rgb(190,227,219);
    margin: auto;
}

.outer-container .future-members h2 {
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: rgb(190,227,219);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.outer-container .future-members ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.outer-container .future-members ul li {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgb(137,176,174,0.5);
    display: flex;
    align-items: center;
    position: relative;
}

.outer-container .future-members ul svg, .outer-container .future-members ul svg path {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    fill: rgb(137,176,174);
    position: static;
}

@media only screen and (max-width: 800px) {
    .outer-container .future-members {
        padding: 40px 0;
    }

    .outer-container .future-members .holder {
        padding: 30px 20px;
        width: 90%;
    }

    .outer-container .future-members h2 {
        font-size: calc(34px - 4px);
        margin-bottom: 20px;
    }

    .outer-container .future-members ul li {
        font-size: calc(18px - 2px);
        padding: 10px 0;
    }

    .outer-container .future-members ul svg, .outer-container .future-members ul svg path {
        margin-right: 8px;
        width: 18px;
        height: 18px;
    }
}

.outer-container .future-members::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(190,227,219,0.5);
    z-index: -1;
    border-radius: 27px;
}.client-experience {
    padding: 100px 0;
    background: rgb(250,249,249);
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.client-experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 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%);
    }
}

.client-experience h2 {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.client-experience .reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.client-experience .review {
    flex: 1 1 calc(33.333% - 30px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.client-experience .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.client-experience .review::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0.5;
    transform: rotate(45deg);
    z-index: 0;
    animation: gradientMove 8s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.client-experience .photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border: 4px solid rgb(190,227,219);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-experience .text {
    position: relative;
    z-index: 1;
}

.client-experience .text span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.client-experience .text p {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
}

@media (max-width: 992px) {
    .client-experience .review {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .client-experience .review {
        flex: 1 1 100%;
    }
}

.outer-container .client-experience {
    background: rgb(250,249,249);
    padding: 80px 0;
    position: relative;
}

.outer-container .client-experience::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(137,176,174,0.5);
    top: 0;
    left: 0;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.outer-container .client-experience .review {
    background: #ffffff;
    border: 1px solid rgb(190,227,219);
    box-shadow: none;
    padding: 40px 20px;
}

.outer-container .client-experience .review span::before {
    content: "";
    display: block;
    width: 60px;
    height: 20px;
    background: url('data:image/svg+xml,<svg style="color: %23f3da35" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16"><path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" fill="%23f3da35"></path></svg>');
    background-size: contain;
    margin: auto;
    margin-bottom: 15px;
}

.outer-container .client-experience .review span {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.outer-container .client-experience .review p {
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
}

@media (max-width: 1200px) {
    .outer-container .client-experience .review {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .outer-container .client-experience .review {
        flex: 1 1 100%;
    }
}
header {
    background: linear-gradient(135deg, rgb(190,227,219), rgb(137,176,174));
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #000000;
}
.main_header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.main_header .header_holder {
    width: 100%;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
    border-right: 2px solid #000000;
    padding-right: 20px;
}
.main_header .logo_holder svg,
.main_header .logo_holder img {
    width: 60px;
    height: 60px;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 20px;
    border-left: 2px solid #000000;
    margin: 14px 0;
}
.main_header .header_menu {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-grow: 1;
}
.main_header .header_menu a {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    border: 2px solid #000000;
}
.main_header .header_menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(190,227,219), rgb(137,176,174));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.main_header .header_menu a:hover::before {
    opacity: 1;
}
.main_header .header_menu a:hover {
    color: #000000;
    border-color: rgb(137,176,174);
}
@media only screen and (max-width: 1200px) {
    .main_header .container {
        flex-direction: column;
        justify-items: center;
    }
    .main_header .logo_holder {
        justify-content: center;
        border-right: none;
        border-bottom: 2px solid #000000;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .main_header .header_description {
        border-left: none;
        border-top: 2px solid #000000;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .main_header .header_menu a {
        padding: 8px 12px;
        font-size: 17px;
    }
}
.main_header .header_menu a:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(190,227,219), rgb(137,176,174));
    opacity: 0.1;
    z-index: -1;
}.who-we-are {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(190,227,219) 30%, rgb(137,176,174) 100%);
    color: #000000;
    font-family: Arial, sans-serif;
}

.outer-container .who-we-are .holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.outer-container .who-we-are .holder .photo {
    display: block;
    width: 40%;
    height: 400px;
    flex-shrink: 0;
    max-width: 500px;
    border-radius: 23px;
    box-shadow: 0 10px 20px rgb(190,227,219,0.5), 0 6px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-left: 20px;
}

.outer-container .who-we-are .caption_holder {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgb(190,227,219,0.5), 0 6px 6px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.outer-container .who-we-are .caption_holder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: rgb(190,227,219,0.5);
    border-radius: 10px;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}

.outer-container .who-we-are .caption_holder:hover::before {
    transform: translate(-10px, -10px);
}

.outer-container .who-we-are h2 {
    color: rgb(190,227,219);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.outer-container .who-we-are p {
    color: #000000;
    font-size: 17px;
    line-height: 1.6;
}

@media only screen and (max-width: 1200px) {
    .outer-container .who-we-are .caption_holder {
        flex-direction: column;
    }
    .outer-container .who-we-are .holder .photo {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .outer-container .who-we-are .caption_holder::before {
        content: none;
    }
}

@media only screen and (max-width: 800px) {
    .outer-container .who-we-are .holder {
        flex-direction: column;
        align-items: center;
    }

    .outer-container .who-we-are .caption_holder {
        padding: 20px;
        text-align: center;
    }
}.homepage {
    background-color: rgb(250,249,249);
    font-family: Arial, sans-serif;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 85px 0;
}

.homepage .holder {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.homepage .photo {
    height: 300px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.homepage .text_holder {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    background-color: #ffffff;
    position: relative;
}

.homepage .text_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, rgb(190,227,219), rgb(137,176,174));
    border-radius: 3px;
}

.homepage .text_info {
    margin-bottom: 2rem;
    text-align: center;
}

.homepage .text_info svg {
    width: 50px;
    height: 50px;
    fill: rgb(190,227,219);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.homepage .text_info svg:hover {
    transform: scale(1.1);
}

.homepage .text_info h2 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.homepage .text_info span {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

.homepage .button {
    align-self: center;
    padding: 0.75rem 2rem;
    background-color: #ffffff;
    color: rgb(190,227,219);
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgb(190,227,219);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.homepage .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgb(190,227,219);
    transition: all 0.3s ease;
    z-index: -1;
}

.homepage .button:hover {
    color: #ffffff;
}

.homepage .button:hover::before {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .homepage .holder {
        flex-direction: row;
        align-items: stretch;
    }

    .homepage .photo {
        flex: 1;
        height: auto;
    }

    .homepage .text_holder {
        flex: 1;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .homepage .text_holder {
        padding: 2rem;
    }

    .homepage .text_info h2 {
        font-size: 23px;
    }

    .homepage .text_info span {
        font-size: 13px;
        max-width: 100%;
    }

    .homepage .button {
        padding: 0.6rem 1.5rem;
        font-size: 13px;
    }
}.price-list {
    position: relative;
    background: rgb(250,249,249);
    padding: 120px 0;
    overflow: hidden;
}

.price-list::before {
    width: 60%;
    height: 60%;
    top: -10%;
    right: -20%;
    border-radius: 40% 60% 70% 30%;
}

.price-list .price_info_holder {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.price-list .photo {
    width: calc(100% + 60px);
    height: 400px;
    margin: -30px -30px 60px;
    position: relative;
    overflow: hidden;
}

.price-list .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(137,176,174,0.5);
    mix-blend-mode: color;
    z-index: 1;
}

.price-list .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5) 0,
        rgba(0, 0, 0, 0.5) 2px,
        transparent 2px,
        transparent 8px
    );
    z-index: 2;
}

.price-list h2 {
    font-size: 41px;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

.price-list h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: rgb(190,227,219);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.price-list h2::after {
    animation: glowLine 2s infinite;
}

@keyframes glowLine {
    0% { box-shadow: 0 0 5px rgb(190,227,219,0.5); }
    50% { box-shadow: 0 0 20px rgb(190,227,219); }
    100% { box-shadow: 0 0 5px rgb(190,227,219,0.5); }
}

.price-list h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 80px;
    font-weight: 300;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-list .price_items {
    display: grid;
    gap: 30px;
    position: relative;
}

.price-list .price_items:has(.price_item:nth-child(2)) {
    grid-template-columns: repeat(2, minmax(300px, 450px));
    justify-content: center;
}

.price-list .price_items:has(.price_item:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.price-list .price_items:has(.price_item:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(300px, 450px));
    justify-content: center;
}

.price-list .price_item {
    background: linear-gradient(165deg, 
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(190,227,219,0.5);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.price-list .price_item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgb(190,227,219,0.5) 50%,
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.price-list .price_item:hover::before {
    transform: translateX(100%);
}

.price-list .price_item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(190,227,219);
    right: 0;
    top: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.price-list .price_item h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 2px solid rgb(190,227,219);
}

.price-list .price_item .price_amount {
    font-size: 33px;
    color: rgb(190,227,219);
    margin: 30px 0;
    font-weight: 700;
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.price-list .price_item .price_amount::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgb(190,227,219);
    margin-right: 5px;
}

.price-list .price_item span {
    font-size: 14px;
    color: #000000;
    display: block;
    margin-bottom: 35px;
    line-height: 1.7;
}

.price-list .price_item .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: transparent;
    color: rgb(190,227,219);
    border: 1px solid rgb(190,227,219);
    border-radius: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: auto;
}

.price-list .price_item .button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(190,227,219);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.price-list .price_item .button:hover {
    color: #ffffff;
}

.price-list .price_item .button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.price-list .price_item:hover {
    transform: translateY(-5px);
    border-color: rgb(190,227,219);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    .price-list .price_items:has(.price_item:nth-child(3)) {
        grid-template-columns: repeat(2, minmax(300px, 450px));
    }
}

@media (max-width: 991px) {
    .price-list {
        padding: 80px 0;
    }

    .price-list .photo {
        height: 300px;
        margin: -20px -20px 40px;
        width: calc(100% + 40px);
    }

    .price-list .price_item {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .price-list {
        padding: 60px 0;
    }

    .price-list .price_info_holder {
        padding: 0 20px;
    }

    .price-list .photo {
        height: 200px;
        margin: -15px -15px 30px;
        width: calc(100% + 30px);
    }

    .price-list .price_items,
    .price-list .price_items:has(.price_item:nth-child(2)),
    .price-list .price_items:has(.price_item:nth-child(3)),
    .price-list .price_items:has(.price_item:nth-child(4)) {
        grid-template-columns: minmax(280px, 400px);
    }

    .price-list h2 {
        font-size: calc(33px * 1.1);
    }

    .price-list .price_item .button {
        width: 100%;
    }
}.course-info {
    padding: 100px 0;
    background: rgb(250,249,249);
    position: relative;
    overflow: hidden;
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgb(190,227,219), 0 0 30px rgb(190,227,219), 0 0 40px rgb(190,227,219), 0 0 50px rgb(190,227,219), 0 0 60px rgb(190,227,219);
    }
    50% {
        box-shadow: 0 0 10px rgb(190,227,219), 0 0 20px rgb(190,227,219), 0 0 30px rgb(190,227,219), 0 0 40px rgb(190,227,219);
    }
}

.course-info h2 {
    color: rgb(190,227,219);
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: neonGlow 1.5s infinite alternate;
}

.course-info .content {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.course-info h3 {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.course-info p {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.course-info .button {
    background: rgb(137,176,174);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.course-info .button:hover {
    background: rgb(190,227,219);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgb(190,227,219);
}

.course-info .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75px;
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
    transition: left 0.5s;
}

.course-info .button:hover::before {
    left: 125%;
}

.course-info .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course-info .items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.course-info .course {
    padding: 20px;
    max-width: 100%;
    flex: 1;
    margin: 0 10px;
}

.course-info .photo {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.course-info .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: overlay;
}

.course-info .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

@media only screen and (max-width: 800px) {
    .course-info {
        padding: 60px 0;
    }
    .course-info h2 {
        font-size: 36px;
    }
    .course-info h3 {
        font-size: 18px;
    }
    .course-info .course {
        max-width: 100%;
        width: 100%;
        padding: 10px;
    }
    .course-info .items {
        flex-direction: column;
        padding: 0;
    }
    .course-info .photo {
        height: 250px;
    }
}

.outer-container .course-info .container {
    width: 100%;
    padding: 0;
}

.outer-container .course-info .items {
    width: 100%;
}

.outer-container .course-info .items .course {
    padding: 0;
    width: 100%;
}

.outer-container .course-info .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 50% !important;
}

.outer-container .course-info .course .content {
    border-radius: 0 !important;
    box-shadow: none;
    background: rgb(250,249,249);
}

.outer-container .course-info .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
    background: none;
    padding: 20px;
}

.outer-container .course-info p {
    margin-top: 20px;
    text-align: center;
}

.outer-container .course-info .button {
    margin-top: 30px;
    width: fit-content;
}

.outer-container .course-info h3 {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .course-info h2 {
        font-size: 18px;
    }
    .course-info h3 {
        font-size: 19px;
    }
    .course-info .photo {
        height: 200px;
    }
    .outer-container .course-info .course .content {
        padding: 20px;
    }
}
.access-now {
    padding-bottom: 80px;
    padding-top: 80px;
}

.access-now h2 {
    color: rgb(137,176,174);
}

.access-now .button {
    background: rgb(137,176,174);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.access-now .button:hover {
    background: rgb(190,227,219);
}

.access-now .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.access-now h2 {
    font-size: 36px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.access-now .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .access-now .holder {
        flex-direction: column;
    }

    .outer-container section.access-now h2 {
        font-size: 26px;
    }

    .access-now h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .access-now .button {
        font-size: 24px;
    }

    .access-now {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.outer-container .access-now .holder {
    width: 85%;
    padding: 60px;
    background: linear-gradient(135deg, rgb(190,227,219,0.5), rgb(137,176,174,0.5));
    border: 2px solid rgb(190,227,219);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.outer-container .access-now .holder:hover {
    transform: scale(1.05);
}

.outer-container .access-now h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
}

.outer-container .access-now .button {
    padding: 20px 100px;
    color: #ffffff;
    background: rgb(190,227,219);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 19px;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.outer-container .access-now .button:hover {
    background: rgb(137,176,174);
    box-shadow: 0 4px 10px rgb(137,176,174,0.5);
}

@media only screen and (max-width: 800px) {
    .outer-container .access-now .holder {
        width: 95%;
        padding: 40px;
    }

    .outer-container .access-now h2 {
        font-size: 36px;
    }

    .outer-container .access-now .button {
        width: 100%;
        padding: 15px;
    }
}header .top_plank {
    background: rgb(190,227,219);
    color:  #ffffff;
}
header .top_plank .top_plank_content div svg, header .top_plank .top_plank_content div svg path {
    fill: #ffffff;
}
header .top_plank .top_plank_content div span {
    color: #ffffff;
}
header .top_plank .top_plank_content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 12px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .top_plank_content div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .top_plank_content div img, header .top_plank .top_plank_content div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.benefits-summary {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(190,227,219), rgb(137,176,174));
    position: relative;
    overflow: hidden;
}

.benefits-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #ffffff 10%, transparent 10%);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.benefits-summary .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.benefits-summary .advantages_content h2 {
    font-size: clamp(18px, 5vw, 35px);
    color: #ffffff;
    text-align: center;
    margin: 0 0 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.benefits-summary .advantages_content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffffff;
    border-radius: 10px;
}

.benefits-summary .advantages_photo_holder {
    display: flex;
    align-items: stretch;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
    perspective: 1000px;
}

.benefits-summary .advantages_photo_holder .photo {
    width: 35%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 27px;
    flex-shrink: 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
    position: relative;
}

.benefits-summary .advantages_photo_holder .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(0.7);
    transition: filter 0.5s ease;
}

.benefits-summary .advantages_holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 65%;
    background: #ffffff;
    border-radius: 27px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.benefits-summary .advantages_holder .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgb(250,249,249);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-summary .advantages_holder .advantage_item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, transparent, rgb(190,227,219,0.5), transparent);
    transition: all 0.6s ease;
}

.benefits-summary .advantages_holder .advantage_item .advantage_image {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefits-summary .advantages_holder .advantage_item svg,
.benefits-summary .advantages_holder .advantage_item svg path {
    width: 50px;
    height: 50px;
    fill: rgb(190,227,219);
    transition: all 0.3s ease;
}

.benefits-summary .advantages_holder .advantage_item h4 {
    color: #000000;
    font-size: 17px;
    margin-top: 15px;
    transition: color 0.3s ease;
}

@media only screen and (max-width: 1024px) {
    .benefits-summary .advantages_photo_holder {
        flex-direction: column;
    }

    .benefits-summary .advantages_photo_holder .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .benefits-summary .advantages_holder {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .benefits-summary {
        padding: 60px 0;
    }

    .benefits-summary .advantages_content {
        padding: 20px;
    }

    .benefits-summary .advantages_holder {
        grid-template-columns: 1fr;
    }

    .benefits-summary .advantages_photo_holder .photo {
        height: 250px;
    }
}

@media only screen and (max-width: 480px) {
    .benefits-summary .advantages_content h2 {
        font-size: 18px;
    }

    .benefits-summary .advantages_holder .advantage_item {
        padding: 20px 15px;
    }
}.get-help-info {
    color: #000000;
    background-color: #ffffff;
    padding: 74px 0;
}
.get-help-info .info_holder svg {
    width: 22px;
    height: 22px;
    fill: rgb(190,227,219,0.5);
    margin-right: 12px;
}
.get-help-info .container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0rem 1.25rem 1.5625rem -0.3125rem, rgba(0, 0, 0, 0.04) 0rem 0.625rem 0.625rem -0.3125rem
}
.get-help-info .contact_holder {
    width: 60%;
    padding: 40px 10px;
}
.get-help-info .holder .info_holder div.open-to-public {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.get-help-info .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.get-help-info .holder .info_holder > div > div {
    margin: 5px 0;
}
.get-help-info .contact_holder h2 {
    position: absolute;
    z-index: 3;
    left: 1%;
    text-align: center;
    top:30px;
    width: 36%;
    color: #ffffff;
}
.get-help-info .contact_holder .contact_description  {
    position: absolute;
    z-index: 3;
    left: 1%;
    text-align: center;
    top:25%;
    width: 36%;
    color: #ffffff;
}
.get-help-info .contact_holder .photo {
    position: absolute;
    width: 38%;
    height: 100%;
    left: 0;
    top:0;
    z-index: 1;
}
.get-help-info .contact_holder .photo:after{
    content: "";
    z-index: 2;
    background-image: linear-gradient(180deg, rgb(190,227,219), rgba(255, 255, 255, 0) 90%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}
.get-help-info .info_holder {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}
.get-help-info .info_holder>div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.get-help-info .contact_politics {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}
.get-help-info .contact_politics>div {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.get-help-info .holder .info_holder>div span {
    margin-left: 8px;
}
.get-help-info .contact_politics>div h4 {
    font-weight: bold;
    font-size: 20px;
    margin: 8px 0;
}
@media only screen and (max-width: 1100px)  {
    .get-help-info .container {
        box-shadow: none;
        overflow: visible;
        border-radius: 0;
    }
    .get-help-info .contact_holder .photo {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .get-help-info .contact_holder h2 {
        padding: 40px;
        width: 100%;
    }
    .get-help-info .contact_holder {
        position: relative;
        width: 100%;
        border-radius: 26px;
        overflow: hidden;
        padding: 30px;
        box-shadow: rgba(0, 0, 0, 0.1) 0rem 1.25rem 1.5625rem -0.3125rem, rgba(0, 0, 0, 0.04) 0rem 0.625rem 0.625rem -0.3125rem
    }
    .get-help-info .contact_holder .contact_description {
        width: 100%;
        top: 80px;
        padding: 40px;
    }
}