* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
.viewport-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(227,217,202);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.teaching_history {
    padding: 60px 0;
    background: #ffffff;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
.teaching_history .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.teaching_history .holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.teaching_history .review {
    background: rgb(89,108,104,0.5);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}


.teaching_history .photo {
    width: 100%;
    padding-top: 300px;
    background-size: cover;
    border-radius: 10px;
}

.teaching_history .worker_description {
    flex: 1;
}

.teaching_history .review .name {
    font-size: 19px;
    color: rgb(89,108,104);
    font-weight: 700;
    margin-bottom: 10px;
}

.teaching_history .review span {
    font-size: 18px;
    color: rgb(149,167,146);
    font-weight: 600;
    margin-bottom: 20px;
}

.teaching_history .review .quote {
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    font-style: italic;
}

@media (max-width: 992px) {
    .teaching_history .review {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .teaching_history {
        padding: 40px 0;
    }

    .teaching_history .review {
        width: 100%;
    }

    .teaching_history .photo {
        padding-top: 75%;
    }
}

.viewport-container .teaching_history {
    background: rgb(149,167,146,0.5);
    padding: 50px 0;
}

.viewport-container .teaching_history .container {
    padding: 0;
}

.viewport-container .teaching_history .holder {
    background: rgb(89,108,104,0.5);
    border-radius: 24px;
    padding: 40px;
}

.viewport-container .teaching_history .review {
    width: 100%;
    flex-direction: row;
    padding: 0;
    border-radius: 24px;
    box-shadow: none;
    transition: none;
    margin: 20px 0;
}

.viewport-container .teaching_history .photo {
    width: 40%;
    height: auto;
    border-radius: 10px 0 0 10px;
}

.viewport-container .worker_description {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.viewport-container .teaching_history .review .name {
    font-size: 38px;
    color: #ffffff;
    text-align: left;
    margin-bottom: 10px;
}

.viewport-container .teaching_history .review span {
    font-size: 19px;
    color: #ffffff;
    text-align: left;
    margin-bottom: 10px;
}

.viewport-container .teaching_history .review .quote {
    font-size: 18px;
    color: #ffffff;
    text-align: left;
    font-style: normal;
    margin-bottom: 0;
    padding-left: 0;
    position: relative;
}

.viewport-container .teaching_history .review .quote::before {
    font-size: 20px;
    left: 0;
    top: 0;
    color: #ffffff;
}

.viewport-container .teaching_history .review .quote::after {
    font-size: 20px;
    right: 0;
    bottom: 0;
    color: #ffffff;
}

@media only screen and (max-width: 1000px) {
    .viewport-container .teaching_history .review {
        flex-direction: column;
    }
    
    .viewport-container .worker_description {
        width: 100%;
        text-align: center;
    }
    
    .viewport-container .teaching_history .photo {
        width: 100%;
        height: 320px;
        border-radius: 24px 24px 0 0;
    }
    
    .viewport-container .teaching_history .photo::after {
        padding-bottom: 320px;
    }
    
    .viewport-container .teaching_history .review .name {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .viewport-container .teaching_history .review span {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .viewport-container .teaching_history .review .quote {
        font-size: 18px;
    }
    .viewport-container .teaching_history .holder {
        padding: 10px;
    }
}
.our_mission {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(89,108,104), rgb(149,167,146,0.5));
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    position: relative;
    overflow: hidden;
}

.viewport-container .our_mission .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 90%;
    margin: 0 auto;
}

.viewport-container .our_mission .holder::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgb(149,167,146), transparent);
    opacity: 0.1;
    z-index: -1;
    transform: rotate(45deg);
}

.viewport-container .our_mission .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.viewport-container .our_mission .photo {
    width: 350px;
    height: 350px;
    border-radius: 23px;
    margin-bottom: 40px;
    border: 3px solid rgb(149,167,146);
    box-shadow: 0 0 20px rgb(149,167,146);
}

.viewport-container .our_mission .style_element {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(89,108,104);
    border-radius: 23px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.viewport-container .our_mission h2 {
    font-size: 37px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.viewport-container .our_mission p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 20px;
    text-align: justify;
}

@media only screen and (max-width: 1200px) {
    .viewport-container .our_mission .photo {
        width: 300px;
        height: 300px;
    }

    .viewport-container .our_mission .style_element {
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .viewport-container .our_mission .photo {
        width: 250px;
        height: 250px;
    }

    .viewport-container .our_mission .style_element {
        padding: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .viewport-container .our_mission .style_element {
        padding: 15px;
    }

    .viewport-container .our_mission .photo {
        width: 200px;
        height: 200px;
    }

    .viewport-container .our_mission h2 {
        font-size: calc(37px - 5px);
    }

    .viewport-container .our_mission p {
        font-size: calc(18px - 2px);
    }
}.try_immediately {
    padding-bottom: 80px;
    padding-top: 80px;
}

.try_immediately h2 {
    color: rgb(89,108,104);
}

.try_immediately .button {
    background: rgb(89,108,104);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.try_immediately .button:hover {
    background: rgb(149,167,146);
}

.try_immediately .holder {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.try_immediately h2 {
    font-size: 33px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.try_immediately .button {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .try_immediately .holder {
        flex-direction: column;
    }

    .viewport-container section.try_immediately h2 {
        font-size: 26px;
    }

    .try_immediately h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .try_immediately .button {
        font-size: 24px;
    }

    .try_immediately {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.viewport-container .try_immediately {
    background: linear-gradient(135deg, rgb(149,167,146), rgb(89,108,104));
    padding: 60px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: all 0.3s ease-in-out;
}

.viewport-container .try_immediately .holder {
    margin: auto;
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.viewport-container .try_immediately .holder:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.viewport-container .try_immediately h2 {
    margin-bottom: 40px;
    font-size: 33px;
    font-family: Playfair Display, sans-serif;
    font-weight: 600;
    color: rgb(149,167,146);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgb(149,167,146), rgb(89,108,104));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.3s ease, text-shadow 0.3s ease;
    margin-right: 0;
}

.viewport-container .try_immediately .button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 19px;
    font-family: Playfair Display, sans-serif;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(149,167,146), rgb(89,108,104));
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.viewport-container .try_immediately .button:hover {
    background: linear-gradient(135deg, rgb(89,108,104), rgb(149,167,146));
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

@media only screen and (max-width: 800px) {
    .viewport-container .try_immediately .holder {
        width: 90%;
        padding: 30px 20px;
    }

    .viewport-container .try_immediately h2 {
        font-size: 18px;
    }

    .viewport-container .try_immediately .button {
        width: 100%;
        padding: 15px 0;
    }
}.ideal_participants {
    padding-bottom: 80px;
    padding-top: 80px;
}

.ideal_participants .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ideal_participants ul {
    list-style: none;
}

.ideal_participants ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.ideal_participants ul svg, .ideal_participants ul svg path {
    fill: rgb(149,167,146);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.ideal_participants h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .ideal_participants {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.viewport-container .ideal_participants {
    background: rgb(89,108,104);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.viewport-container .ideal_participants::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgb(149,167,146), rgb(89,108,104));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
}

.viewport-container .ideal_participants .holder {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.viewport-container .ideal_participants h2 {
    color: #ffffff;
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.viewport-container .ideal_participants ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 30px;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

.viewport-container .ideal_participants ul li {
    background: rgb(149,167,146,0.5);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.viewport-container .ideal_participants ul li:hover {
    transform: translateY(-10px);
    background: rgb(89,108,104,0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.viewport-container .ideal_participants ul li svg, .viewport-container .ideal_participants ul li svg path {
    position: static;
    fill: #ffffff;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
}

@media only screen and (max-width: 800px) {
    .viewport-container .ideal_participants ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .viewport-container .ideal_participants h2 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .viewport-container .ideal_participants ul li {
        font-size: 14px;
        padding: 15px;
    }

    .viewport-container .ideal_participants ul li svg {
        width: 20px;
        height: 20px;
    }
}.teaching_process {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffffff;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.teaching_process .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    background: linear-gradient(145deg, rgb(149,167,146) 0%, rgb(89,108,104) 100%);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teaching_process .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.teaching_process h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.teaching_process h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.teaching_process p {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 800px) {
    .teaching_process {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .teaching_process .holder {
        padding: 20px;
        width: 90%;
    }

    .teaching_process h2 {
        font-size: 24px;
    }

    .teaching_process p {
        font-size: 14px;
    }
}

.viewport-container .teaching_process {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #ffffff;
}

.viewport-container .teaching_process::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(135deg, rgb(149,167,146,0.5) 0%, rgb(89,108,104,0.5) 100%);
    z-index: 0;
    transform: skewY(-4deg);
}

.viewport-container .teaching_process .holder {
    padding: 40px;
    width: 60%;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.viewport-container .teaching_process .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.viewport-container .teaching_process h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: left;
    color: #000000;
    position: relative;
}

.viewport-container .teaching_process h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: rgb(149,167,146);
    margin: 10px 0;
    border-radius: 2px;
}

.viewport-container .teaching_process p {
    font-size: 14px;
    text-align: left;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .viewport-container .teaching_process {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .viewport-container .teaching_process .holder {
        padding: 20px;
        width: 90%;
    }

    .viewport-container .teaching_process h2 {
        font-size: 24px;
        text-align: left;
        margin-bottom: 20px;
    }

    .viewport-container .teaching_process p {
        font-size: 14px;
    }
}

.teaching_process .holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: rgb(149,167,146,0.5);
    z-index: -1;
    transition: all 0.5s ease;
    transform: skewX(-10deg) scale(0.9);
    border-radius: 28px;
}

.teaching_process .holder:hover::before {
    transform: skewX(0) scale(1);
}

.teaching_process h2:hover::before {
    width: 100px;
}
.get_in_touch {
    padding: 100px 20px;
    background: rgb(89,108,104);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    position: relative;
    overflow: hidden;
}

.get_in_touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(149,167,146,0.5) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
}

.get_in_touch .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.get_in_touch h3 {
    font-size: 39px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgb(149,167,146);
}

.get_in_touch .form {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.get_in_touch .form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.get_in_touch .form_text {
    font-size: 17px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
}

.get_in_touch form input,
.get_in_touch form textarea {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid rgb(89,108,104,0.5);
    padding: 14px;
    width: 100%;
    margin-bottom: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.get_in_touch form input:focus,
.get_in_touch form textarea:focus {
    border-color: rgb(149,167,146);
    outline: none;
    box-shadow: 0 0 8px rgb(149,167,146,0.5);
}

.get_in_touch form textarea {
    resize: vertical;
    min-height: 120px;
}


.get_in_touch form .button {
    background: rgb(149,167,146);
    color: #ffffff;
    border-radius: 25px;
    font-size: 19px;
    font-weight: 600;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: block;
    margin: auto;
}

.get_in_touch form .button:hover {
    background: rgb(89,108,104);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgb(89,108,104,0.5);
}

.get_in_touch .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.get_in_touch .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.get_in_touch .agree label {
    font-size: 17px;
    color: #ffffff;
    cursor: pointer;
}

.get_in_touch .agree a {
    margin-left: 5px;
    color: rgb(149,167,146);
    text-decoration: underline;
    transition: color 0.3s;
}

.get_in_touch .agree a:hover {
    color: rgb(89,108,104);
}

@media only screen and (max-width: 600px) {
    .get_in_touch {
        padding: 50px 20px;
    }

    .get_in_touch h3 {
        font-size: 35px;
    }

    .get_in_touch .form {
        padding: 20px;
    }

}

.viewport-container .get_in_touch .holder {
    flex-direction: row-reverse;
    width: 100%;
}

.viewport-container .get_in_touch .holder .form {
    width: calc(90% - 50px);
    margin-right: 50px;
    margin: auto;
}

.viewport-container .get_in_touch .logo_holder {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.viewport-container .get_in_touch .logo_holder svg {
    margin-bottom: 10px;
    margin-right: 0;
}

.viewport-container .get_in_touch form input {
    border-bottom: 1px solid rgb(89,108,104,0.5);
    border-radius: 0 !important;
    font-size: 18px;
    font-weight: 300;
    width: 100%;
}

.viewport-container .get_in_touch h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 40px;
}

.viewport-container .get_in_touch form .button {
    width: fit-content;
    background: rgb(89,108,104);
    color: #ffffff;
    margin-top: 24px;
}

.get_in_touch .info .contact_info svg,
.get_in_touch .info .contact_info svg path {
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .viewport-container .get_in_touch .holder {
        flex-direction: column-reverse;
    }

    .viewport-container .get_in_touch .holder .form,
    .viewport-container .get_in_touch .holder .info {
        width: 100%;
    }
}.appNote {
    background: rgb(149,167,146,0.5);
    color: #ffffff;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.appNote .container {
    max-width: 900px;
    padding: 20px;
    background: rgb(227,217,202);
    border-radius: 21px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.appNote h2 {
    font-family: Playfair Display, sans-serif;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(149,167,146);
    border-bottom: 2px solid rgb(89,108,104);
    padding-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.appNote p {
    font-family: Playfair Display, sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.appNote .btn {
    display: inline-block;
    padding: 12px 35px;
    font-family: Playfair Display, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(149,167,146);
    border: 2px solid rgb(89,108,104);
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 20px;
    text-decoration: none;
}
.appNote .btn:hover {
    background-color: rgb(89,108,104);
    color: rgb(149,167,146);
}
@media only screen and (max-width: 800px) {
    .appNote {
        padding: 40px 0;
    }
    .appNote h2 {
        font-size: 19px;
    }
    .appNote p {
        font-size: 18px;
    }
    .appNote .btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}
.appNote .container {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.appNote .container::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid rgb(89,108,104,0.5);
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 21px;
    z-index: -1;
}
.program_overview {
    padding: 100px 0;
    background-color: rgb(89,108,104,0.5);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    position: relative;
    overflow: hidden;
}

.program_overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, rgb(149,167,146,0.5) 20%, rgb(89,108,104,0.5) 80%);
    animation: rotateBg 15s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.program_overview h2 {
    color: rgb(149,167,146);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.program_overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
    position: relative;
}

.program_overview .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.program_overview .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.program_overview .course {
    padding: 15px;
    max-width: 45%;
    margin: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 19px;
    box-shadow: 0 0 20px rgb(149,167,146,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program_overview .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(149,167,146,0.5);
}

.program_overview .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.program_overview .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.program_overview .text_holder {
    text-align: center;
    z-index: 1;
    position: relative;
}

.program_overview h3 {
    color: rgb(89,108,104);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(89,108,104,0.5);
}

.program_overview p {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.program_overview .button {
    display: inline-block;
    background: rgb(149,167,146);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px rgb(149,167,146,0.5);
}

.program_overview .button:hover {
    background: rgb(89,108,104);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgb(89,108,104,0.5);
}

@media (max-width: 768px) {
    .program_overview .course {
        max-width: 90%;
        margin: 10px;
    }

    .program_overview h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

.viewport-container .program_overview {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.viewport-container .program_overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.viewport-container .program_overview .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.viewport-container .program_overview .course {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 19px;
    box-shadow: 0 0 20px rgb(149,167,146,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
}

.viewport-container .program_overview .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.viewport-container .program_overview .photo {
    width: 100%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.viewport-container .program_overview .text_holder {
    text-align: center;
    z-index: 1;
    position: relative;
}

.viewport-container .program_overview h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgb(89,108,104,0.5);
}

.viewport-container .program_overview p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.viewport-container .program_overview .button {
    display: inline-block;
    background: rgb(149,167,146);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 20px rgb(149,167,146,0.5);
}

.viewport-container .program_overview .button:hover {
    background: rgb(89,108,104);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgb(89,108,104,0.5);
}

@media (max-width: 908px) {
    .viewport-container .program_overview .course {
        max-width: 90%;
        margin: 10px;
    }

    .viewport-container .program_overview h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}.program_results {
    padding-bottom: 80px;
    padding-top: 80px;
}
.program_results .holder {
    display: flex;
    width: 100%;
}
.program_results h2 {
    text-align: left;
    margin-bottom: 20px;
}
.program_results .photo {
    width: 50%;
    flex-shrink: 0;
}
.program_results .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.program_results ul {
    list-style: none;
}
.program_results li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.program_results svg, .program_results path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(149,167,146);
    flex-shrink: 0;
}
@media only screen and (max-width: 800px)  {
    .program_results {
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .program_results .holder {
        flex-direction: column;
    }
    .program_results .text_holder {
        width: 100%;
    }
    .program_results .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}
.benefits .advantages_content h2 {
    color: rgb(89,108,104);
}

.benefits .advantage_item svg, .benefits .advantage_item svg path {
    fill: rgb(149,167,146);
}

.benefits .advantage_item p {
    color: #000000;
}

.benefits .advantage_item b {
    color: rgb(149,167,146);
}

.benefits {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 34px;
    font-weight: 600;
}

.benefits .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits .advantage_item svg, .benefits .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .viewport-container .benefits .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits .advantages_content h2 {
        font-size: 30px;
    }

    .benefits .advantages_holder {
        flex-direction: column;
    }

    .benefits {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .viewport-container .benefits .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.viewport-container .benefits {
    position: relative;
    background: color-mix(in srgb, rgb(89,108,104) 60%, #000000);
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.viewport-container .benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.viewport-container .benefits .advantages_content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-align: center;
}

.viewport-container .benefits .advantages_content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.viewport-container .benefits .advantages_description {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.viewport-container .benefits .advantages_holder {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.viewport-container .benefits .advantage_item {
    background: rgb(89,108,104,0.5);
    border: 1px solid rgb(149,167,146);
    border-radius: 10px;
    padding: 40px;
    margin: 20px;
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
    transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.viewport-container .benefits .advantage_item::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid rgb(149,167,146);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.viewport-container .benefits .advantage_item:hover::before {
    opacity: 1;
}

.viewport-container .benefits .advantage_item:hover {
    transform: translateY(-10px);
    border-color: rgb(89,108,104);
}

.viewport-container .benefits .advantage_image {
    margin-bottom: 20px;
}

.viewport-container .benefits .advantage_image img,
.viewport-container .benefits .advantage_image svg {
    width: 80px;
    height: 80px;
    fill: rgb(149,167,146);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.viewport-container .benefits .advantage_item h4 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

@media only screen and (max-width: 1200px) {
    .viewport-container .benefits .advantage_item {
        flex: 1 1 calc(45% - 40px);
        max-width: calc(45% - 40px);
    }
}

@media only screen and (max-width: 800px) {
    .viewport-container .benefits .advantages_holder {
        flex-direction: column;
        align-items: center;
    }

    .viewport-container .benefits .advantage_item {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 20px 0;
    }

    .viewport-container .benefits .advantages_content h2 {
        font-size: 20px;
    }
}.welcome {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: rgb(149,167,146);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.welcome .title_page_holder {
    width: 70%;
    min-height: 800px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 2;
}
.welcome .style_element {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgb(89,108,104);
}
.welcome .style_element::before,
.welcome .style_element::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgb(89,108,104);
}
.welcome .style_element::before {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
}
.welcome .style_element::after {
    width: 30px;
    height: 30px;
    bottom: -15px;
    right: -15px;
}
.welcome .style_element h1 {
    color: rgb(89,108,104);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.welcome .style_element h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: rgb(89,108,104);
    margin: 10px auto 0;
    border-radius: 2px;
}
.welcome .style_element h3 {
    color: rgb(89,108,104);
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}
.welcome .style_element p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

@media only screen and (max-width: 1200px) {
    .welcome .title_page_holder {
        width: 80%;
        min-height: 700px;
        padding: 30px;
    }
    .welcome .style_element {
        padding: 30px;
    }
    .welcome .style_element h1 {
        font-size: 30px;
    }
    .welcome .style_element h3 {
        font-size: 23px;
    }
    .welcome .style_element p {
        font-size: 19px;
    }
}
@media only screen and (max-width: 800px) {
    .welcome {
        padding: 30px 10px;
    }
    .welcome .title_page_holder {
        width: 90%;
        min-height: 600px;
    }
    .welcome .style_element {
        padding: 20px;
        gap: 15px;
    }
    .welcome .style_element h1 {
        font-size: 23px;
    }
    .welcome .style_element h3 {
        font-size: 18px;
    }
    .welcome .style_element p {
        font-size: 12px;
    }
}
.viewport-container .welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgb(149,167,146);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.viewport-container .welcome .title_page_holder {
    width: 100%;
    min-height: 700px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 1;
}
.viewport-container .welcome .style_element {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    text-align: left;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 1px solid #000000;
}
.viewport-container .welcome .style_element::before,
.viewport-container .welcome .style_element::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #000000;
}
.viewport-container .welcome .style_element::before {
    width: 25px;
    height: 25px;
    top: -12px;
    left: -12px;
}
.viewport-container .welcome .style_element::after {
    width: 35px;
    height: 35px;
    bottom: -18px;
    right: -18px;
}
.viewport-container .welcome .style_element h1 {
    color: #000000;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 3;
}
.viewport-container .welcome .style_element h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 12px 0 0;
    border-radius: 2px;
}
.viewport-container .welcome .style_element h3 {
    color: #000000;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.viewport-container .welcome .style_element p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 3;
}


@media only screen and (max-width: 1200px) {
    .viewport-container .welcome .title_page_holder {
        width: 85%;
        min-height: 600px;
        padding: 30px;
    }
    .viewport-container .welcome .style_element {
        padding: 30px;
    }
    .viewport-container .welcome .style_element h1 {
        font-size: 30px;
    }
    .viewport-container .welcome .style_element h3 {
        font-size: 23px;
    }
    .viewport-container .welcome .style_element p {
        font-size: 19px;
    }
}
@media only screen and (max-width: 800px) {
    .viewport-container .welcome {
        padding: 30px 10px;
    }
    .viewport-container .welcome .title_page_holder {
        width: 90%;
        min-height: 500px;
    }
    .viewport-container .welcome .style_element {
        padding: 20px;
        gap: 20px;
    }
    .viewport-container .welcome .style_element h1 {
        font-size: 23px;
    }
    .viewport-container .welcome .style_element h3 {
        font-size: 18px;
    }
    .viewport-container .welcome .style_element p {
        font-size: 12px;
    }
}footer {
    background: rgb(89,108,104);
    color: #ffffff;
}

footer .copyright {
    background: rgb(149,167,146);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(149,167,146);
}

footer h5 {
    color: rgb(149,167,146);
}

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: 23px;
    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: 13px;
    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;
    }

}

.viewport-container footer .footer {
    padding: 0;
}

.viewport-container footer .footer_info {
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    justify-content: center;
    padding: 20px;
}

.viewport-container footer .menu_holder {
    flex-direction: row;
    justify-content: center;
}

.viewport-container footer .menu a {
    margin: 0;
    padding: 5px 20px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}

.viewport-container footer .copyright {
    background: rgb(149,167,146,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

.viewport-container footer .copyright_info {
    text-align: center;
}

.viewport-container footer .logo_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(149,167,146);
    margin-bottom: 20px;
}

.viewport-container footer .logo_holder svg, .viewport-container footer .logo_holder svg path, .viewport-container footer .logo_holder img {
    margin: 0;
    fill: #ffffff;
}

@media only screen and (max-width: 1200px) {
    .viewport-container footer .logo_holder {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .viewport-container footer .menu_holder {
        flex-direction: column;
        text-align: left;
        align-items: center;
        justify-content: center;
    }

    .viewport-container footer .menu a {
        margin-bottom: 5px;
        font-size: 18px
    }

    .viewport-container footer .footer_info {
        padding: 10px;
    }

    .viewport-container footer .copyright_info {
        text-align: center;
    }

    .viewport-container footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
.privacy_hub {
    padding: 60px;
    width: 100%;
    height: auto;
    background: #ffffff;
    border: 2px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.privacy_hub h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 43px;
    font-weight: 700;
    color: rgb(149,167,146);
    text-align: center;
    text-transform: uppercase;
    border-bottom: 3px solid rgb(89,108,104);
    padding-bottom: 15px;
    width: 100%;
    max-width: 800px;
}

.privacy_hub h2 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(89,108,104);
    text-align: left;
    border-left: 5px solid rgb(149,167,146);
    padding-left: 15px;
    width: 100%;
    max-width: 800px;
}

.privacy_hub ul, .privacy_hub ol {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    width: 100%;
    max-width: 800px;
    padding: 20px 0;
}

.privacy_hub ul li, .privacy_hub ol li {
    margin-bottom: 20px;
    font-size: 13px;
    color: #000000;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
}

.privacy_hub ul li::before, .privacy_hub ol li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: rgb(149,167,146);
    border-radius: 50%;
}

.privacy_hub p, .privacy_hub span, .privacy_hub div {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
    font-family: Playfair Display, sans-serif;
    font-size: 13px;
    max-width: 800px;
    width: 100%;
    text-align: justify;
}

.privacy_hub div.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .privacy_hub {
        padding: 30px;
        border-radius: 10px;
    }

    .privacy_hub h1 {
        font-size: calc(43px - 5px);
        padding-bottom: 10px;
    }

    .privacy_hub h2 {
        font-size: calc(35px - 5px);
        padding-left: 10px;
    }

    .privacy_hub ul, .privacy_hub ol {
        padding: 15px 0;
        margin: 20px 0;
    }

    .privacy_hub ul li, .privacy_hub ol li {
        font-size: 13px;
        padding-left: 20px;
    }
}.info_hub {
    color: #000000;
    background-color: #ffffff;
    padding: 64px 0;
    font-family: Playfair Display, sans-serif;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}
.info_hub h2 {
    text-align: center;
    width: 100%;
    margin: 24px 0;
    font-size: 33px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.info_hub h2::before,
.info_hub h2::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 30%;
    background-color: rgb(89,108,104);
    top: 50%;
    transform: translateY(-50%);
}
.info_hub h2::before {
    left: 0;
}
.info_hub h2::after {
    right: 0;
}
.info_hub .contact_description {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    margin: 16px 0;
    width: 100%;
    color: rgba(0, 0, 0, 0.5);
}
.info_hub .info_holder svg {
    width: 28px;
    height: 28px;
    fill: rgb(89,108,104);
    margin-right: 12px;
    transition: fill 0.3s ease;
}
.info_hub .info_holder svg:hover {
    fill: rgb(149,167,146);
}
.info_hub .holder {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 24px 0;
    flex-direction: row-reverse;
}
.info_hub .holder .photo {
    width: 50%;
    order: 1;
    flex-shrink: 0;
    border-radius: 0 11px 11px 0;
    position: relative;
    overflow: hidden;
}
.info_hub .holder .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.info_hub .holder .info_holder {
    font-size: 13px;
    line-height: 1.6;
    width: 50%;
    order: 2;
    flex-shrink: 0;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 11px 0 0 11px;
    background: #ffffff;
    position: relative;
}
.info_hub .holder .info_holder::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: rgb(149,167,146);
    top: 0;
    left: 0;
    opacity: 0.5;
}
.info_hub .holder .info_holder>div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: color 0.3s ease;
    position: relative;
}
.info_hub .contact_politics {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 24px;
}
.info_hub .contact_politics>div {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    position: relative;
}
.info_hub .contact_politics>div::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: rgb(89,108,104);
    left: 0;
    opacity: 0.5;
}
.info_hub .contact_politics>div h4 {
    margin: 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #ffffff;
    padding: 0 8px;
    display: inline-block;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 800px) {
    .info_hub .holder {
        flex-direction: column;
    }
    .info_hub .holder .info_holder {
        border-radius: 11px 11px 0 0;
        align-items: center;
        padding: 24px;
        width: 100%;
        order: 1;
    }
    .info_hub .holder .info_holder::before {
        height: 2px;
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
    }
    .info_hub .holder .photo {
        width: 100%;
        height: 250px;
        border-radius: 0 0 11px 11px;
        order: 2;
    }
}
.client_feedback {
    padding-top: 120px;
    padding-bottom: 120px;
    background: rgb(89,108,104);
    font-family: Playfair Display, sans-serif;
    color: #ffffff;
}

.client_feedback h2 {
    color: rgb(149,167,146);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(149,167,146);
    display: inline-block;
    padding-bottom: 10px;
}

.client_feedback .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.client_feedback .reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.client_feedback .review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgb(89,108,104,0.5);
    border: 1px solid rgb(89,108,104);
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.client_feedback .photo {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.client_feedback .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.client_feedback .review span {
    font-size: 19px;
    font-weight: 600;
    color: rgb(89,108,104);
    margin-bottom: 10px;
}

.client_feedback .review p {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
}



.viewport-container .client_feedback .review {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid rgb(149,167,146);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.viewport-container .client_feedback .photo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 50%;
}

.viewport-container .client_feedback .text {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: calc(100% - 120px);
}

.viewport-container .client_feedback .review span {
    font-size: 19px;
    font-weight: 400;
    color: rgb(149,167,146);
}

.viewport-container .client_feedback .review p {
    color: #000000;
    margin-bottom: 10px;
    font-size: 15px;
}

.viewport-container .client_feedback .holder h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}
@media only screen and (max-width: 900px) {
    .client_feedback h2 {
        font-size: 19px;
    }

    .viewport-container .client_feedback {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .client_feedback .reviews {
        grid-template-columns: 1fr;
    }
}header .main_header {
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid rgb(89,108,104,0.5);
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(149,167,146);
}

header .logo_holder a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 50px;
    width: 50px;
}

header .menu {
    display: flex;
    align-items: center;
}

header .menu a {
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

header .menu a:hover {
    color: #ffffff;
    background: rgb(149,167,146);
}

header .menu a.active {
    color: #ffffff;
    background: rgb(89,108,104);
}

header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }

    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 15px;
    }

    header .menu.opened {
        display: flex;
    }

    header .menu a {
        width: 100%;
        padding: 10px 0;
        text-align: left;
    }
}

.viewport-container header .header_content {
    background: rgb(89,108,104,0.5);
    border-radius: 13px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.viewport-container header .logo_holder {
    border-radius: 13px;
    background: #ffffff;
    padding: 10px 20px;
}

.viewport-container header .menu {
    padding: 0 20px;
}

.viewport-container header .menu a {
    padding: 15px 10px;
    text-align: center;
}

.viewport-container header .menu a:hover {
    background: rgb(89,108,104);
    color: #ffffff;
}

.viewport-container header .menu a.active {
    background: rgb(149,167,146);
    color: #ffffff;
}

@media (max-width: 576px) {
    .viewport-container header .header_content {
        padding: 15px;
        border-radius: 10px;
        justify-content: center;
        align-items: center;
    }

    .viewport-container header .logo_holder {
        margin-bottom: 10px;
        padding: 10px 15px;
        border-radius: 10px;
    }

    .viewport-container header .menu a {
        padding: 10px 0;
    }
}