* {
    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: Ubuntu, sans-serif;
    color: #000000;
}
.wrapper-capsule {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(191,203,168);
}
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;
    }
}.future_learners {
    position: relative;
    width: 100%;
}

.future_learners .who_needs_background {
    position: relative;
    padding: 120px 0;
}

.future_learners .who_needs_background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgb(191,203,168) 0%,
        #000000 100%
    );
    opacity: 0.8;
}

.future_learners .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.future_learners .who_needs_text {
    max-width: 1200px;
    margin: 0 auto;
}

.future_learners .who_needs_text h3 {
    font-size: 31px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 60px;
    padding-left: 24px;
    border-left: 6px solid rgb(91,138,114);
}

.future_learners .who_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.future_learners .who_needs_item {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.future_learners .who_needs_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: rgb(91,138,114);
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}

.future_learners .who_needs_item svg {
    width: 36px;
    height: 36px;
    fill: rgb(91,138,114);
    transition: transform 0.3s ease;
}

.future_learners .who_needs_item span {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
}

.future_learners .who_needs_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.future_learners .who_needs_item:hover svg {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .future_learners .who_items {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .future_learners .who_needs_item {
        padding: 35px 25px;
    }
}

@media (max-width: 992px) {
    .future_learners .who_needs_text h3 {
        font-size: calc(31px * 0.9);
        margin-bottom: 50px;
    }

    .future_learners .who_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .future_learners .who_needs_background {
        padding: 90px 0;
    }

    .future_learners .who_needs_text h3 {
        font-size: calc(31px * 0.8);
        margin-bottom: 40px;
        padding-left: 20px;
    }

    .future_learners .who_needs_item {
        padding: 30px 20px;
    }

    .future_learners .who_needs_item svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .future_learners .who_needs_background {
        padding: 70px 0;
    }

    .future_learners .container {
        padding: 0 20px;
    }

    .future_learners .who_needs_text h3 {
        font-size: calc(31px * 0.7);
        margin-bottom: 30px;
        padding-left: 16px;
        border-left-width: 4px;
    }

    .future_learners .who_items {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .future_learners .who_needs_item:hover {
        transform: translateY(-5px);
    }
}header .main_header {
    background:  #ffffff;
    color:  #000000;
}
header .logo_holder svg,header .logo_holder svg path, header .logo_holder img {
    fill: rgb(91,138,114);
}
header .menu a {
    color: rgb(70,79,65);
}
header .menu a:hover {
    color: rgb(91,138,114);
}
header .menu a.active {
    border: 2px solid rgb(70,79,65);
    border-radius: 100px;
}
header .menu a.active:hover {
    color: #ffffff;
    background: rgb(91,138,114);
    border: 2px solid rgb(91,138,114);
}
header {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo_holder {
    padding: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;

}
header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;

}
header .logo_desc {
    font-size: 15px;
    font-weight: 700;
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
header .menu {
    display: flex;
}
header .menu a {
    text-decoration: none;
    padding: 12px 25px;
    font-size: 13px;
}
body .wrapper-capsule header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px)  {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 30px;
        position: static;
        top:100%;
        left:0;
        z-index: 90;
        background: #ffffff;
        width: 100%;
    }
    header .menu a.active {
        border: none;
    }
    header .menu a.active:hover {
        color: rgb(91,138,114);
        background: none;
        border: none;
    }
    header .main_header {
        position: relative;
        z-index: 99;
    }
    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype {
        margin-right: 5px;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.wrapper-capsule header .menu a.active {
    border: none;
    border-radius: 0;
}
.wrapper-capsule header .menu a.active:hover {
    border: none;
    background: none;
    color: rgb(91,138,114);
}
.wrapper-capsule header .logo_holder {
    margin-right: 0;

}
.wrapper-capsule header .logo_holder .logotype svg, .wrapper-capsule header .logo_holder .logotype img {
    margin-left: 20px;
}
.wrapper-capsule header .menu {
    width: 100%;
    justify-content: center;
}
.wrapper-capsule header .menu a {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 800px)  {
    header .logo_holder .logotype {
        margin-right: 0;
    }
    .wrapper-capsule header .header_content .logo_holder {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    .wrapper-capsule header .logo_holder .logotype svg, .wrapper-capsule header .logo_holder .logotype img {
        margin-left: 0;
    }
    .wrapper-capsule header .menu {
        padding-top:30px;
        align-items: center;
    }
}.tariff_list {
    position: relative;
    overflow: hidden;
    background: rgb(191,203,168);
    padding: 100px 0;
}

.tariff_list .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: 1;
}
.tariff_list .price_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-right: 5vw;
    position: relative;
    z-index: 2;
}

.tariff_list .price_holder h2 {
    font-size: 37px;
    color: rgb(91,138,114);
    margin: 20px 0;
    text-align: right;
    width: 100%;
}

.tariff_list .price_section_description {
    font-size: 12px;
    color: #000000;
    max-width: 60%;
    text-align: right;
    margin-bottom: 50px;
}

.tariff_list .price_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
    width: 100%;
    padding-right: 5vw;
}

.tariff_list .price_card {
    background: #ffffff;
    border-radius: 23px;
    padding: 40px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: skew(-5deg);
}

.tariff_list .price_card:hover {
    transform: skew(-5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tariff_list .price_card h3 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
    transform: skew(5deg);
}

.tariff_list .price_card .price_amount {
    font-size: 39px;
    color: rgb(91,138,114);
    font-weight: 700;
    margin-bottom: 30px;
    transform: skew(5deg);
}

.tariff_list .price_card p {
    font-size: 12px;
    color: #000000;
    margin-bottom: 30px;
    transform: skew(5deg);
}

.tariff_list .price_card .button {
    display: inline-block;
    padding: 12px 24px;
    background: rgb(91,138,114);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: skew(5deg);
}

.tariff_list .price_card .button:hover {
    background: rgb(70,79,65);
}

@media (max-width: 100px) {
    .tariff_list .photo {
        width: 50%;
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    }
    .tariff_list .container {
        padding-left: 30%;
    }
    .tariff_list .price_holder {
        padding-right: 3vw;
    }
    .tariff_list .price_section_description {
        max-width: 80%;
    }
    .tariff_list .price_cards {
        padding-right: 3vw;
    }
    .tariff_list .price_card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 1200px) {
    .tariff_list .photo {
        width: 100%;
        height: 300px;
        clip-path: none;
        position: relative;
    }
    .tariff_list .container {
        padding-left: 20px;
    }
    .tariff_list .price_holder {
        padding-right: 20px;
    }
    .tariff_list .price_section_description {
        max-width: 100%;
    }
    .tariff_list .price_cards {
        padding-right: 20px;
    }
    .tariff_list .price_card {
        width: 100%;
        transform: none;
    }
    .tariff_list .price_card:hover {
        transform: translateY(-10px);
    }
    .tariff_list .price_card h3,
    .tariff_list .price_card .price_amount,
    .tariff_list .price_card p,
    .tariff_list .price_card .button {
        transform: none;
    }
}
.benefits_overview .advantages_content h2 {
    color: rgb(70,79,65);
}

.benefits_overview .advantage_item svg, .benefits_overview .advantage_item svg path {
    fill: rgb(91,138,114);
}

.benefits_overview .advantage_item p {
    color: #000000;
}

.benefits_overview .advantage_item b {
    color: rgb(91,138,114);
}

.benefits_overview {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_overview .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_overview .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_overview .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 31px;
    font-weight: 600;
}

.benefits_overview .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_overview .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_overview .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_overview .advantage_item svg, .benefits_overview .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule .benefits_overview .advantages_holder {
        justify-content: center;
    }
    .wrapper-capsule .benefits_overview .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_overview .advantages_content h2 {
        font-size: 30px;
    }

    .benefits_overview .advantages_holder {
        flex-direction: column;
    }

    .benefits_overview {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-capsule .benefits_overview .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-capsule .benefits_overview {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgb(70,79,65), rgb(91,138,114,0.5));
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.wrapper-capsule .benefits_overview .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrapper-capsule .benefits_overview .advantages_content h2 {
    font-size: 31px;
    font-weight: 600;
    color: rgb(91,138,114);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: #ffffff 1px 1px;
}

.wrapper-capsule .benefits_overview .advantages_content h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, rgb(91,138,114), rgb(70,79,65));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.wrapper-capsule .benefits_overview .advantages_description {
    font-size: 13px;
    margin-bottom: 40px;
    padding: 0 20px;
    color: #ffffff;
}

.wrapper-capsule .benefits_overview .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-capsule .benefits_overview .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(25% - 20px);
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapper-capsule .benefits_overview .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wrapper-capsule .benefits_overview .advantage_image {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 2px solid rgb(70,79,65,0.5);
    border-radius: 50%;
    position: relative;
    background: rgb(91,138,114,0.5);
}

.wrapper-capsule .benefits_overview .advantage_image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.wrapper-capsule .benefits_overview .advantage_item h4 {
    font-weight: 700;
    font-size: 23px;
    margin-top: 20px;
    color: #000000;
}

@media only screen and (max-width: 1200px) {
    .wrapper-capsule .benefits_overview .advantages_holder .advantage_item {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule .benefits_overview {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-capsule .benefits_overview .advantages_content h2 {
        font-size: 23px;
    }

    .wrapper-capsule .benefits_overview .advantages_holder {
        flex-direction: column;
    }

    .wrapper-capsule .benefits_overview .advantages_holder .advantage_item {
        width: 100%;
    }
}.opening_page {
    width: 100%;
    overflow: hidden;
}
.opening_page .title_page_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.opening_page .title_page_holder::before,
.opening_page .title_page_holder::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.opening_page .title_page_holder::before {
    background: linear-gradient(to bottom, rgb(91,138,114,0.5) 0%, rgb(91,138,114,0.5) 100%);
}
.opening_page .title_page_holder::after {
    background: rgba(0, 0, 0, 0.3);
}
.opening_page .style_element {
    position: relative;
    z-index: 2;
    background: #ffffff;
    width: 60%;
    max-width: 1200px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.opening_page .style_element h1 {
    font-family: Ubuntu, sans-serif;
    font-size: 43px;
    font-weight: 700;
    color: rgb(70,79,65);
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.opening_page .style_element h3 {
    font-family: Ubuntu, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: rgb(70,79,65,0.5);
    margin-bottom: 12px;
    text-align: left;
}
.opening_page .style_element p {
    font-family: Ubuntu, sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 24px;
}

.wrapper-capsule .opening_page .title_page_holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wrapper-capsule .opening_page .style_element {
    width: 50%;
    max-width: 1000px;
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.wrapper-capsule .opening_page .title_page_holder::before {
    clip-path: polygon(100% 0, 70% 0, 40% 100%, 0 100%);
}
.wrapper-capsule .opening_page .style_element h1 {
    color: #000000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.wrapper-capsule .opening_page .style_element h3 {
    color: rgb(70,79,65);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.wrapper-capsule .opening_page .style_element p {
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 800px) {
    .opening_page .title_page_holder {
        min-height: 500px;
        height: auto;
    }
    .wrapper-capsule .opening_page .style_element {
        width: 100%;
        padding: 30px;
    }
    .opening_page .style_element h1 {
        font-size: 32px;
    }
    .opening_page .style_element h3 {
        font-size: 24px;
    }
    .opening_page .style_element p {
        font-size: 17px;
    }
}.learning_profits {
    padding-bottom: 80px;
    padding-top: 80px;
}

.learning_profits .holder {
    display: flex;
    width: 100%;
}

.learning_profits h2 {
    text-align: left;
    margin-bottom: 20px;
}

.learning_profits .photo {
    width: 50%;
    flex-shrink: 0;
}

.learning_profits .text_holder {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.learning_profits ul {
    list-style: none;
}

.learning_profits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.learning_profits svg, .learning_profits path {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(91,138,114);
    flex-shrink: 0;
}

@media only screen and (max-width: 800px) {
    .learning_profits {
        padding-bottom: 30px;
        padding-top: 30px;
    }

    .learning_profits .holder {
        flex-direction: column;
    }

    .learning_profits .text_holder {
        width: 100%;
    }

    .learning_profits .photo {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
    }
}

.wrapper-capsule .learning_profits {
    background: rgb(70,79,65,0.5);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wrapper-capsule .learning_profits::before {
    content: "";
    width: 60%;
    height: 100%;
    background: rgb(91,138,114,0.5);
    position: absolute;
    top: 0;
    left: -10%;
    transform: rotate(-15deg);
    z-index: 0;
}

.wrapper-capsule .learning_profits::after {
    content: "";
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: -15%;
    transform: rotate(15deg);
    z-index: 0;
}

.wrapper-capsule .learning_profits .holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    width: 100%;
}

.wrapper-capsule .learning_profits .photo {
    width: 45%;
    min-height: 450px;
    background: #000000 no-repeat center center;
    background-size: cover;
    border-radius: 13px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wrapper-capsule .learning_profits .text_holder {
    width: 50%;
    padding: 40px;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.wrapper-capsule .learning_profits h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(91,138,114);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.wrapper-capsule .learning_profits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-capsule .learning_profits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: #000000;
}

.wrapper-capsule .learning_profits svg, .wrapper-capsule .learning_profits path {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: rgb(91,138,114);
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule .learning_profits {
        padding: 60px 0;
    }

    .wrapper-capsule .learning_profits::before,
    .wrapper-capsule .learning_profits::after {
        display: none;
    }

    .wrapper-capsule .learning_profits .holder {
        flex-direction: column;
    }

    .wrapper-capsule .learning_profits .photo {
        width: 100%;
        min-height: 250px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .wrapper-capsule .learning_profits .text_holder {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    .wrapper-capsule .learning_profits h2 {
        font-size: 22px;
    }
}.contact_form_box {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(191,203,168);
}
.contact_form_box h3 {
    color: rgb(70,79,65);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact_form_box .form {
    background: #ffffff;
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 40px;
}
.contact_form_box .info svg, .contact_form_box .info svg path {
    fill: rgb(91,138,114);
}
.contact_form_box .info .contact_info h5 {
    color: rgb(91,138,114);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.contact_form_box .info span {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
}
.contact_form_box .info .contact_info svg, .contact_form_box .info .contact_info svg path {
    fill: #000000;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.contact_form_box form input {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(70,79,65,0.5);
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}
.contact_form_box form input:focus {
    border: 1px solid rgb(91,138,114);
    box-shadow: 0 0 10px rgb(91,138,114,0.5);
}
.contact_form_box form .button {
    background: rgb(70,79,65);
    color: #ffffff;
    border-radius: 50px;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}
.contact_form_box form .button:hover {
    background: rgb(91,138,114);
    box-shadow: 0 10px 20px rgb(91,138,114,0.5);
}
.contact_form_box .holder {
    display: flex;
    flex-wrap: wrap;
}
.contact_form_box .holder > div {
    flex: 1 1 45%;
    padding: 40px;
    margin: 20px;
    background: rgb(191,203,168);
    border-radius: 17px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.contact_form_box .info {
    padding-top: 40px;
}
.contact_form_box .logo_holder {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}
.contact_form_box .logo_holder svg, .contact_form_box .logo_holder img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
.contact_form_box .info .contact_info span {
    font-weight: 300;
}
.contact_form_box .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.contact_form_box .name_holder {
    display: flex;
    justify-content: space-between;
}
.contact_form_box .name_holder #surname {
    margin-left: 24px;
}
.contact_form_box .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact_form_box .agree label {
    display: block;
}
.contact_form_box .agree a {
    margin-left: 5px;
    color: rgb(91,138,114);
    text-decoration: underline;
}
.contact_form_box .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}
@media only screen and (max-width: 800px) {
    .contact_form_box .holder {
        flex-direction: column;
    }
    .contact_form_box .holder > div {
        width: 100%;
    }
    .contact_form_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact_form_box h3 {
        font-size: 36px;
    }
}
.wrapper-capsule .contact_form_box .container {
    width: 100%;
}
.wrapper-capsule .contact_form_box {
    padding: 0;
}
.wrapper-capsule .contact_form_box .info {
    background: rgb(191,203,168);
}
.wrapper-capsule .contact_form_box .form_text {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 30px;
}
.wrapper-capsule .contact_form_box .holder > div {
    padding: 40px;
    padding-bottom: 60px;
    border-radius: 0 !important;
}
.wrapper-capsule .contact_form_box form input {
    background: rgb(191,203,168);
    border-radius: 7px;
    border: 1px solid rgb(70,79,65);
    width: 100%;
}
.wrapper-capsule .contact_form_box h3 {
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
    margin-bottom: 40px;
}
.wrapper-capsule .contact_form_box .info .contact_info svg, .wrapper-capsule .contact_form_box .info .contact_info svg path, .wrapper-capsule .contact_form_box .info .contact_info img {
    width: 30px;
    height: 30px;
    fill: rgb(91,138,114);
    margin-bottom: 20px;
}
.wrapper-capsule .contact_form_box .info .contact_info > div {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}
.wrapper-capsule .contact_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.wrapper-capsule .contact_form_box form .button {
    background: rgb(91,138,114);
    border: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
}
.wrapper-capsule .contact_form_box .name_holder {
    flex-direction: column;
}
.wrapper-capsule .contact_form_box .name_holder #surname {
    margin-left: 0;
}
.wrapper-capsule .contact_form_box label {
    display: block;
    font-size: 16px;
    line-height: 25px;
}
.wrapper-capsule .contact_form_box .info .contact_info span {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
@media only screen and (max-width: 800px) {
    .wrapper-capsule .contact_form_box .holder > div {
        padding: 20px;
        padding-bottom: 20px;
        padding-top: 20px;
        width: 100%;
        margin: 0;
    }
    .wrapper-capsule .contact_form_box .info .contact_info > div {
        margin-bottom: 30px;
    }
    .wrapper-capsule .contact_form_box h3 {
        margin-bottom: 20px;
        font-size: 36px;
    }
    .wrapper-capsule .contact_form_box .container {
        padding: 0;
    }
}
.company_overview {
    padding: 80px 0;
    background: rgb(91,138,114,0.5);
    font-family: Ubuntu, sans-serif;
    color: #000000;
}

.wrapper-capsule .company_overview .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.wrapper-capsule .company_overview .holder .photo {
    width: 50%;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.wrapper-capsule .company_overview .holder .photo:hover {
    transform: scale(1.05);
}

.wrapper-capsule .company_overview .caption_holder {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.wrapper-capsule .company_overview .style_element {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.wrapper-capsule .company_overview h2 {
    color: rgb(91,138,114);
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
}

.wrapper-capsule .company_overview p {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.5s;
}

.wrapper-capsule .company_overview .photo {
    width: 40%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule .company_overview .caption_holder {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .wrapper-capsule .company_overview .style_element, .wrapper-capsule .company_overview .photo {
        width: 100%;
    }

    .wrapper-capsule .company_overview .holder .photo {
        height: 300px;
        width: 100%;
    }

    .wrapper-capsule .company_overview h2 {
        font-size: 19px;
    }

    .wrapper-capsule .company_overview p {
        font-size: 15px;
    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, -40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}.gratitudeWeb {
    background-color: rgb(91,138,114,0.5);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.gratitudeWeb::before, .gratitudeWeb::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgb(91,138,114,0.5);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}
.gratitudeWeb::before {
    top: -50px;
    left: -50px;
}
.gratitudeWeb::after {
    bottom: -50px;
    right: -50px;
}
.gratitudeWeb .container {
    background-color: #ffffff;
    border-radius: 11px;
    padding: 50px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.gratitudeWeb .container h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 44px;
    color: rgb(91,138,114);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid rgb(70,79,65);
    padding-bottom: 10px;
}
.gratitudeWeb .container p {
    font-family: Ubuntu, sans-serif;
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
    text-align: center;
}
.gratitudeWeb .container .info-block {
    background-color: rgb(191,203,168);
    border: 1px solid rgb(70,79,65,0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.gratitudeWeb .container .info-block h5 {
    font-family: Ubuntu, sans-serif;
    font-size: 23px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 1px solid rgb(91,138,114,0.5);
    padding-bottom: 5px;
}
.gratitudeWeb .container .info-block p {
    font-family: Ubuntu, sans-serif;
    font-size: 17px;
    color: #000000;
    margin-bottom: 0;
    text-align: left;
}
@media only screen and (max-width: 800px) {
    .gratitudeWeb {
        padding: 40px 10px;
    }
    .gratitudeWeb .container {
        padding: 30px 20px;
    }
    .gratitudeWeb .container h2 {
        font-size: calc(44px - 8px);
    }
    .gratitudeWeb .container p {
        font-size: calc(17px - 2px);
    }
    .gratitudeWeb::before, .gratitudeWeb::after {
        width: 70px;
        height: 70px;
    }
}
footer {
    background: rgb(70,79,65);
    color: #ffffff;
}

footer .copyright {
    background: rgb(91,138,114);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(91,138,114);
}

footer h5 {
    color: rgb(91,138,114);
}

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: 22px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 16px;
}

@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;
    }

}

.wrapper-capsule footer {
    background: #252525;
}

.wrapper-capsule footer .copyright {
    background: none;
    padding: 10px 0;
}

.wrapper-capsule footer .footer {
    padding-top: 30px;
    padding-bottom: 0;
}

.wrapper-capsule footer .footer_info {
    justify-content: flex-end;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff;
}

.wrapper-capsule footer .logo_holder svg, .wrapper-capsule footer .logo_holder img {
    width: 160px;
    height: 160px;
}

.wrapper-capsule footer .menu {
    width: calc(50% - 90px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.wrapper-capsule footer h5 {
    width: 200px;
}

.wrapper-capsule footer .menu_holder {
    width: 200px;
}

.wrapper-capsule footer .menu a {
    margin-right: 0;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.wrapper-capsule footer .menu a:hover {
    color: rgb(91,138,114);
}

.wrapper-capsule footer .copyright_info {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule footer .footer_info {
        align-items: center;
    }

    .wrapper-capsule footer h5 {
        text-align: center;
    }

    .wrapper-capsule footer .menu {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .wrapper-capsule footer .menu a {
        text-align: center;
    }

    .wrapper-capsule footer .logo_holder svg, .wrapper-capsule footer .logo_holder img {
        margin-right: 0;
        width: 120px;
        height: 120px;
    }

    .wrapper-capsule footer .logo_holder {
        margin-bottom: 10px;
    }
}.program_information {
    padding-top: 90px;
    padding-bottom: 90px;
    background: linear-gradient(to right, rgb(70,79,65,0.5), rgb(91,138,114,0.5));
    color: #000000;
    font-family: Ubuntu, sans-serif;
    border-radius: 10px;
}

.program_information h2 {
    color: rgb(91,138,114);
    font-size: 37px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.program_information .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.program_information .items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.program_information .course {
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program_information .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.program_information .photo {
    height: 300px;
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgb(91,138,114,0.5);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, border 0.3s ease;
}

.program_information .text_holder {
    padding: 20px;
}

.program_information h3 {
    font-size: 37px;
    font-weight: 600;
    color: rgb(91,138,114);
    margin-bottom: 16px;
}

.program_information p {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}

.program_information .button {
    display: inline-block;
    background: rgb(91,138,114);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.program_information .button:hover {
    background: rgb(70,79,65);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 800px) {
    .program_information {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .program_information .photo {
        height: 200px;
        width: 200px;
    }

    .program_information h3 {
        font-size: 21px;
    }

    .program_information p {
        font-size: 14px;
    }

    .program_information .button {
        padding: 10px 20px;
    }
}

.wrapper-capsule .program_information {
    background: rgb(191,203,168);
    padding: 80px 0;
}

.wrapper-capsule .program_information .items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-capsule .program_information .photo {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid rgb(91,138,114,0.5);
}

.wrapper-capsule .program_information .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.wrapper-capsule .program_information .text_holder {
    text-align: center;
    padding: 20px;
}

.wrapper-capsule .program_information h3 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 20px;
    color: rgb(91,138,114);
}

.wrapper-capsule .program_information p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.wrapper-capsule .program_information .button {
    margin-top: 30px;
    padding: 15px 40px;
    background: none;
    border: 2px solid rgb(91,138,114);
    border-radius: 50px;
    color: rgb(91,138,114);
    transition: background 0.3s ease, color 0.3s ease;
}

.wrapper-capsule .program_information .button:hover {
    background: rgb(91,138,114);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .wrapper-capsule .program_information .photo {
        width: 200px;
        height: 200px;
    }

    .wrapper-capsule .program_information h3 {
        font-size: 37px;
    }

    .wrapper-capsule .program_information p {
        font-size: 16px;
    }

    .wrapper-capsule .program_information .button {
        padding: 10px 30px;
    }
}
.academic_experience {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(70,79,65), rgba(0, 0, 0, 0.5));
    position: relative;
    overflow: hidden;
    border: 5px solid rgb(91,138,114);
}
.academic_experience .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
.academic_experience::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgb(91,138,114,0.5);
    transform: rotate(45deg);
    opacity: 0.1;
    z-index: 1;
}
.academic_experience .review {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid rgb(91,138,114);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.academic_experience .review .photo {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 4px solid rgb(91,138,114);
    max-width: 30vw;
    min-width: 200px;
    height: auto;
}
.academic_experience .review .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}
.academic_experience .worker_description,
.academic_experience .worker_info {
    flex: 1;
    padding: 20px;
    color: #ffffff;
    background: rgb(70,79,65,0.5);
    position: relative;
    border: 3px solid rgb(91,138,114);
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 250px;
}
.academic_experience .worker_description::before,
.academic_experience .worker_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}
.academic_experience .worker_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 30vw;
}
.academic_experience .worker_description p {
    margin-bottom: 15px;
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.academic_experience .worker_info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 30vw;
}
.academic_experience .worker_info p {
    margin: 10px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(91,138,114);
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.academic_experience .review {
    animation: fadeInUp 0.5s ease-in-out both;
}
@media only screen and (max-width: 1200px) {
    .academic_experience .review {
        flex-direction: column;
        padding: 10px;
    }
    .academic_experience .review .photo {
        width: 100%;
        height: 400px;
        margin: 0 0 20px 0;
        max-width: 100%;
        flex: auto;
    }
    .academic_experience .worker_description,
    .academic_experience .worker_info {
        width: 100%;
        padding: 10px;
        max-width: 100%;
    }
    .academic_experience .worker_info p {
        font-size: 14px;
    }
}
.privacy_space {
    padding: 40px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;

}
.privacy_space h1 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 42px;
    font-family: Ubuntu, sans-serif;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.privacy_space h2 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 33px;
    font-family: Ubuntu, sans-serif;
    font-weight: 600;
    text-align: left;
    color: #ffffff;
}
.privacy_space h4,.privacy_space h3, .privacy_space h5 {
    color: #ffffff;
}
.privacy_space ul {
    list-style-type: none;
    padding-left: 0;
}
.privacy_space li {
    margin-bottom: 15px;
    font-size: 17px;
    font-family: Ubuntu, sans-serif;
    color: #000000;
    line-height: 1.6;
    padding: 10px;
    background: rgb(91,138,114,0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}
.privacy_space li:hover {
    background: rgb(91,138,114);
    color: #ffffff;
}
.privacy_space div {
    margin-bottom: 20px;
    padding: 15px;
    background: rgb(191,203,168);
    border-radius: 25px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    font-size: 17px;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.privacy_space p, .privacy_space span {
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--white-color_opacity);
}
@media only screen and (max-width: 800px) {
    .privacy_space {
        padding: 20px;
    }
    .privacy_space h1 {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: calc(21px - 4px);
    }
    .privacy_space h2 {
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: calc(21px - 4px);
    }
    .privacy_space li {
        margin-bottom: 10px;
        padding: 8px;
    }
    .privacy_space div {
        padding: 10px;
    }
}