* {
    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;
}
.panel-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(202,237,222);
}
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;
    }
}.offer_package {
    background: linear-gradient(135deg, #000000 0%, rgb(133,166,177,0.5) 100%);
    padding: 160px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.offer_package::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg,
            transparent 48%,
            #000000 49%,
            #000000 51%,
            transparent 52%
        ),
        linear-gradient(-45deg,
            transparent 48%,
            #000000 49%,
            #000000 51%,
            transparent 52%
        );
    background-size: 40px 40px;
    opacity: 0.03;
    animation: patternMove 30s linear infinite;
}

.offer_package::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(0deg,
            transparent 95%,
            rgb(133,166,177,0.5) 96%,
            rgb(133,166,177,0.5) 97%,
            transparent 98%
        ),
        linear-gradient(90deg,
            transparent 95%,
            rgb(133,166,177,0.5) 96%,
            rgb(133,166,177,0.5) 97%,
            transparent 98%
        );
    background-size: 30px 30px;
    opacity: 0.05;
    animation: patternMove 20s linear infinite reverse;
}

.offer_package .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.offer_package .pricing_holder {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
}

.offer_package .price_info {
    position: sticky;
    top: 100px;
    height: max-content;
}

.offer_package .price_info h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    line-height: 1.2;
}

.offer_package .price_info h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(133,166,177), rgb(84,119,125));
    transform: scaleY(0);
    animation: lineGrow 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.offer_package .section_description {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 40px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.offer_package .price_types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-content: start;
}

.offer_package .price_type {
    text-decoration: none;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: cardAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.offer_package .price_type:nth-child(2n) {
    animation-delay: 0.2s;
}

.offer_package .price_type:nth-child(3n) {
    animation-delay: 0.4s;
}

.offer_package .price_type:nth-child(4n) {
    animation-delay: 0.6s;
}

.offer_package .price_type_holder {
    background: rgb(202,237,222);
    border-radius: 17px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer_package .price_type:hover .price_type_holder {
    transform: translateY(-10px);
    border-color: rgb(133,166,177,0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.offer_package .photo {
    height: 260px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.offer_package .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgb(133,166,177,0.5) 0%,
        rgb(84,119,125,0.5) 100%
    );
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.offer_package .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        #000000 100%
    );
}

.offer_package .price_type_text {
    padding: 35px;
    position: relative;
    margin-top: -40px;
    background: #ffffff;
    border-radius: 17px;
    transition: transform 0.3s ease;
}

.offer_package .price_type:hover .price_type_text {
    transform: translateY(-5px);
}

.offer_package .price_type_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgb(133,166,177) 0%,
        rgb(84,119,125) 100%
    );
    border-radius: 0 0 10px 10px;
}

.offer_package .price_type_text h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.offer_package .price_type_text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgb(133,166,177,0.5);
    transition: width 0.3s ease;
}

.offer_package .price_type:hover .price_type_text h3::after {
    width: 50px;
}

.offer_package .price_type_text .price_amount {
    color: rgb(133,166,177);
    font-size: 36px;
    font-weight: 700;
    margin: 25px 0;
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    background: linear-gradient(
        45deg,
        rgb(133,166,177,0.5) 0%,
        transparent 100%
    );
    border-radius: 10px;
}

.offer_package .price_type_text p {
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    margin-top: 15px;
}

.offer_package .price_type_text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(84,119,125);
    opacity: 0.6;
}

@keyframes patternMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 40px;
    }
}

@keyframes lineGrow {
    to { transform: scaleY(1); }
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes cardAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .offer_package .pricing_holder {
        grid-template-columns: 320px 1fr;
        gap: 60px;
    }

    .offer_package .price_types {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .offer_package {
        padding: 120px 0;
    }

    .offer_package .pricing_holder {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .offer_package .price_info {
        position: relative;
        top: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .offer_package .price_info h2 {
        padding-left: 0;
    }

    .offer_package .price_info h2::before {
        left: 50%;
        top: -20px;
        width: 60px;
        height: 4px;
        transform: translateX(-50%) scaleX(0);
        animation: lineGrowHorizontal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .offer_package .section_description {
        transform: translateY(20px);
    }

    .offer_package .price_types {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .offer_package {
        padding: 100px 0;
    }

    .offer_package .price_types {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer_package .photo {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .offer_package {
        padding: 80px 0;
    }

    .offer_package .price_type_text {
        padding: 25px;
        margin-top: -30px;
    }

    .offer_package .price_info h2 {
        font-size: calc(36px * 0.9);
    }
}

@keyframes lineGrowHorizontal {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}.thanksField {
    background-color: rgb(133,166,177,0.5);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.thanksField .container {
    background-color: rgb(133,166,177,0.5);
    border: 1px solid rgb(133,166,177,0.5);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px rgb(133,166,177,0.5);
    position: relative;
    z-index: 2;
}
.thanksField .container h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 44px;
    color: rgb(133,166,177);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgb(133,166,177,0.5);
}
.thanksField .container p {
    font-family: Ubuntu, sans-serif;
    font-size: 16px;
    color: rgb(84,119,125);
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 3px rgb(84,119,125,0.5);
}
.thanksField .container .info-block {
    background-color: rgb(202,237,222);
    border: 1px solid rgb(84,119,125,0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}
.thanksField .container .info-block h5 {
    font-family: Ubuntu, sans-serif;
    font-size: 18px;
    color: rgb(133,166,177);
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 0 3px rgb(133,166,177,0.5);
    text-transform: uppercase;
}
.thanksField .container .info-block p {
    font-family: Ubuntu, sans-serif;
    font-size: 16px;
    color: #000000;
    margin-bottom: 0;
}
@media only screen and (max-width: 800px) {
    .thanksField {
        padding: 30px 10px;
    }
    .thanksField .container {
        padding: 30px 20px;
    }
    .thanksField .container h2 {
        font-size: calc(44px - 6px);
    }
    .thanksField .container p {
        font-size: calc(16px - 2px);
    }
}
footer {
    background: rgb(84,119,125);
    color: #000000;
    font-family: Ubuntu, sans-serif;
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 2px solid rgb(133,166,177);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}
footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    fill: rgb(133,166,177);
}
footer .logo_holder svg:hover, footer .logo_holder img:hover {
    transform: scale(1.1);
}
footer .menu a {
    color: rgb(133,166,177);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}
footer .menu a:hover {
    background: rgb(133,166,177);
    color: #ffffff;
}
footer .menu_holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
footer .footer_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .copyright {
    background: #000000;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
}
footer .copyright_info {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}
footer .copyright_info a {
    color: rgb(133,166,177);
    text-decoration: underline;
    margin-left: 5px;
    margin-right: 5px;
}
.panel-container footer .footer {
    padding: 0;
}
.panel-container footer .footer_info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.panel-container footer .menu_holder {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.panel-container footer .menu a {
    font-size: 15px;
    color: rgb(133,166,177);
    margin: 0 5px;
    padding: 5px 10px;
    transition: background 0.3s ease, color 0.3s ease;
}
.panel-container footer .menu a:hover {
    background: rgb(133,166,177,0.5);
    color: #ffffff;
    border-radius: 29px;
}
.panel-container footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
}
.panel-container footer .copyright_info {
    text-align: center;
    font-size: 15px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
    .panel-container footer .menu_holder {
        flex-direction: column;
        align-items: center;
    }
    .panel-container footer .menu a {
        padding-left: 0;
        font-size: 18px;
    }
    .panel-container footer .footer_info {
        padding: 20px 10px;
    }
    .panel-container footer .copyright_info {
        text-align: center;
    }
    .panel-container footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    footer .menu_holder {
        align-items: center;
    }
    footer .menu a {
        margin-bottom: 10px;
    }
    footer .footer_info {
        padding: 20px 0;
    }
    footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}.info_hub {
    color: #000000;
    background-color: #ffffff;
    padding: 58px 0;
}
.info_hub h2 {
    text-align: center;
    width: 100%;
    margin: 18px 0;
}
.info_hub .contact_description {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
    margin-bottom: 24px;
    width: 100%;
}
.info_hub .info_holder svg {
    width: 24px;
    height: 24px;
    fill: rgb(84,119,125);
    margin-right: 8px;
}
.info_hub .holder .info_holder div.open_for_business {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.info_hub .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.info_hub .holder .info_holder > div > div {
    margin: 5px 0;
}
.info_hub .holder {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 20px 0;
}
.info_hub .holder .photo {
    width: 50%;
    order: 2;
    flex-shrink: 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}
.info_hub .holder .photo:after {
    content: "";
    z-index: 2;
    background-image: linear-gradient(90deg, rgb(202,237,222), rgba(255, 255, 255, 0) 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
}
.info_hub .holder .info_holder {
    font-size: 18px;
    line-height: 24px;
    width: 50%;
    order: 1;
    flex-shrink: 0;
    padding: 96px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 15px 0 0 15px;
    background: rgb(202,237,222);
}
.info_hub .holder .info_holder>div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.info_hub .holder .info_holder>div span {
    margin-left: 8px;
}
.info_hub .contact_politics {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.info_hub .contact_politics>div {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}
.info_hub .contact_politics>div h4 {
    margin: 10px 0;
}
@media only screen and (max-width: 800px)  {
    .info_hub .holder .info_holder {
        width: 100%;
        border-radius: 15px 15px 0 0;
        align-items: center;
    }
    .info_hub .holder .photo {
        width: 100%;
        height: 300px;
        border-radius: 0 0 15px 15px;
    }
    .info_hub .holder .photo:after {
        background-image: linear-gradient(180deg, rgb(202,237,222), rgba(255, 255, 255, 0) 50%);
    }
}.learning_system {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.learning_system::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgb(133,166,177) 0%, transparent 70%);
    transform: translateX(-50%);
    opacity: 0.4;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
}

.learning_system .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: auto;
    background: #ffffff;
    border-radius: 29px;
    padding: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.learning_system h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: rgb(133,166,177);
    border-bottom: 2px solid rgb(133,166,177);
    padding-bottom: 10px;
    width: 50%;
}

.learning_system p {
    text-align: center;
    font-size: 17px;
    color: #000000;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learning_system .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(133,166,177);
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.learning_system .button:hover {
    background: rgb(84,119,125);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 800px) {
    .learning_system {
        padding: 50px 0;
    }

    .learning_system .holder {
        padding: 30px;
    }

    .learning_system h2 {
        font-size: 18px;
        margin-bottom: 20px;
        width: 80%;
    }

    .learning_system p {
        width: 100%;
        font-size: 17px;
    }
}

.panel-container .learning_system {
    position: relative;
    padding-top: 120px;
    background: rgb(84,119,125,0.5);
}

.panel-container .learning_system::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.panel-container .learning_system .holder {
    position: relative;
    z-index: 1;
    background: #ffffff;
    width: 100%;
    padding: 60px;
    border-radius: 29px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(84,119,125);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.panel-container .learning_system h2 {
    font-size: 35px;
    margin-bottom: 50px;
    color: #000000;
    border-bottom: 2px solid rgb(84,119,125);
    padding-bottom: 15px;
    width: 60%;
    text-align: left;
}

.panel-container .learning_system p {
    width: 70%;
    font-size: 17px;
    text-align: left;
    color: #000000;
    line-height: 1.8;
}

@media only screen and (max-width: 800px) {
    .panel-container .learning_system .holder {
        padding: 20px;
    }

    .panel-container .learning_system {
        padding: 50px 0;
    }

    .panel-container .learning_system h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
        width: 90%;
    }

    .panel-container .learning_system p {
        width: 100%;
        font-size: 17px;
    }
}
.panel-container .company_info .holder {
    height: auto;
    position: relative;
    overflow: hidden;
}

.company_info {
    padding: 80px 0;
    background: rgb(84,119,125);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.panel-container .company_info .holder .photo {
    display: block;
    width: 400px;
    height: 400px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    overflow: hidden;
}

.panel-container .company_info .caption_holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 20px;
    gap: 20px;
    border-left: 5px solid rgb(133,166,177);
}

.panel-container .company_info .style_element {
    background: rgb(133,166,177,0.5);
    padding: 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 368px;
    border-radius: 23px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: background 0.8s ease, transform 0.8s ease;
}

.panel-container .company_info .style_element:hover {
    background: rgb(133,166,177);
    transform: scale(1.02);
}

.panel-container .company_info h2 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.8s ease;
}

.panel-container .company_info h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgb(84,119,125);
    bottom: -10px;
    left: 0;
    transition: width 0.8s ease;
}

.panel-container .company_info h2:hover::after {
    width: 100%;
}

.panel-container .company_info p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.8s ease;
}

@media only screen and (max-width: 1200px) {
    .panel-container .company_info .holder .photo {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .panel-container .company_info .style_element {
        width: 100%;
        padding: 30px;
    }
    .panel-container .company_info .holder .photo {
        width: 100%;
        height: 250px;
        margin-top: 10px;
    }
    .panel-container .company_info .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .panel-container .company_info h2 {
        font-size: 30px;
    }
}

.panel-container .company_info .style_element::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgb(84,119,125,0.5);
    border-radius: 23px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(15px);
    transition: opacity 0.8s ease;
}

.panel-container .company_info .style_element:hover::before {
    opacity: 0.9;
}


.panel-container .company_info .style_element:hover::after {
    height: 110%;
}header {
    background: linear-gradient(135deg, rgb(133,166,177), rgb(84,119,125));
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #000000;
}
.main_header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.main_header .header_holder {
    width: 100%;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
    border-right: 2px solid #000000;
    padding-right: 20px;
}
.main_header .logo_holder svg,
.main_header .logo_holder img {
    width: 60px;
    height: 60px;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-family: Ubuntu, sans-serif;
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 20px;
    border-left: 2px solid #000000;
    margin: 14px 0;
}
.main_header .header_menu {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-grow: 1;
}
.main_header .header_menu a {
    font-family: Ubuntu, sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    border: 2px solid #000000;
}
.main_header .header_menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(133,166,177), rgb(84,119,125));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.main_header .header_menu a:hover::before {
    opacity: 1;
}
.main_header .header_menu a:hover {
    color: #000000;
    border-color: rgb(84,119,125);
}
@media only screen and (max-width: 1200px) {
    .main_header .container {
        flex-direction: column;
        justify-items: center;
    }
    .main_header .logo_holder {
        justify-content: center;
        border-right: none;
        border-bottom: 2px solid #000000;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .main_header .header_description {
        border-left: none;
        border-top: 2px solid #000000;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .main_header .header_menu a {
        padding: 8px 12px;
        font-size: 18px;
    }
}
.main_header .header_menu a:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(133,166,177), rgb(84,119,125));
    opacity: 0.1;
    z-index: -1;
}.try_immediately {
    padding-bottom: 80px;
    padding-top: 80px;
}

.try_immediately h2 {
    color: rgb(84,119,125);
}

.try_immediately .button {
    background: rgb(84,119,125);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.try_immediately .button:hover {
    background: rgb(133,166,177);
}

.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;
    }

    .panel-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;
    }
}

.panel-container .try_immediately {
    background: rgb(133,166,177);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.panel-container .try_immediately .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.panel-container .try_immediately .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border: 1px solid rgb(84,119,125);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.panel-container .try_immediately .holder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.panel-container .try_immediately h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 33px;
    color: rgb(133,166,177);
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    padding-bottom: 10px;
    margin-right: 0;
}

.panel-container .try_immediately h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgb(133,166,177);
    transition: width 0.3s ease, left 0.3s ease;
}

.panel-container .try_immediately h2:hover::before {
    width: 100%;
    left: 0;
}

.panel-container .try_immediately .button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: rgb(84,119,125);
    border: 2px solid rgb(84,119,125);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.panel-container .try_immediately .button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgb(133,166,177,0.5);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.panel-container .try_immediately .button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.panel-container .try_immediately .button:hover {
    color: rgb(84,119,125);
    background: #ffffff;
    border-color: rgb(133,166,177);
}

@media only screen and (max-width: 800px) {
    .panel-container .try_immediately .holder {
        padding: 40px 20px;
    }

    .panel-container .try_immediately h2 {
        font-size: 41px;
    }

    .panel-container .try_immediately .button {
        padding: 10px 30px;
        font-size: 17px;
    }
}.course_program {
    padding: 100px 0;
    background: #ffffff;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.course_program h2 {
    color: rgb(133,166,177);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.course_program .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.course_program .items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.course_program .course {
    padding: 20px;
    min-width: 300px;
    margin: 10px 0;
    border: 1px solid rgb(133,166,177,0.5);
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course_program .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.course_program .photo {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}
.course_program .text_holder {
    padding: 20px;
    background: rgb(133,166,177,0.5);
    border-radius: 10px;
}
.course_program h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(133,166,177);
}
.course_program p {
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.5;
}
.course_program .button {
    background: rgb(133,166,177);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

@media only screen and (max-width: 800px) {
    .course_program {
        padding: 50px 0;
    }
    .course_program .items {
        flex-direction: column;
        align-items: center;
    }
    .course_program .course {
        width: 100%;
        max-width: unset;
        padding: 0;
    }
    .course_program h3 {
        font-size: 24px;
    }
    .course_program p {
        font-size: 15px;
    }
}

.panel-container .course_program {
    position: relative;
    overflow: hidden;
}
.panel-container .course_program .items {
    width: 100%;
}
.panel-container .course_program .content {
    border-radius: 0;
    box-shadow: none;
}
.panel-container .course_program .photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-position: center !important;
    border-radius: 0 !important;
}
.panel-container .course_program .photo::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.panel-container .course_program .text_holder {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    width: 80%;
    padding: 30px;
    color: #000000;
    border: 2px solid rgb(133,166,177);
    border-radius: 15px;
    text-align: center;
}
.panel-container .course_program h3 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    color: rgb(133,166,177);
}
.panel-container .course_program p {
    padding: 0 20px;
    margin-top: 20px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}
.panel-container .course_program .button {
    margin-top: 30px;
    padding: 10px 25px;
    background: rgb(84,119,125);
    border: 2px solid rgb(133,166,177);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 15px;
    transition: background 0.3s ease, border 0.3s ease;
}
.panel-container .course_program .button:hover {
    background: rgb(133,166,177);
    border: 2px solid rgb(84,119,125);
}

@media only screen and (max-width: 600px) {
    .panel-container .course_program .text_holder {
        width: 100%;
        padding: 20px;
    }
    .panel-container .course_program p {
        padding: 0;
        font-size: 15px;
        line-height: 1.4;
        margin-top: 20px;
    }
    .panel-container .course_program h3 {
        font-size: 17px;
    }
    .panel-container .course_program .button {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 17px;
    }
}.future_members {
    position: relative;
    background: rgb(202,237,222);
    padding: 150px 0;
    overflow: hidden;
}

.future_members::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgb(133,166,177,0.5);
    border-radius: 0 0 0 100%;
    transform: rotate(-15deg);
}

.future_members .container {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
    z-index: 1;
}

.future_members .who_needs_photo {
    flex: 0 0 400px;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    position: relative;
    border: 15px solid #ffffff;
    box-shadow: 
        0 0 0 15px rgb(133,166,177,0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.future_members .who_needs_text {
    flex: 1;
    max-width: 650px;
}

.future_members .who_needs_text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(133,166,177);
    display: inline-block;
}

.future_members .who_needs_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.future_members .who_needs_list div {
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateX(-30px);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.future_members .who_needs_list div:nth-child(2) {
    transform: translateX(30px);
}

.future_members .who_needs_list div:hover {
    transform: translateX(0);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.future_members .who_needs_list svg {
    width: 30px;
    height: 30px;
    fill: rgb(133,166,177);
    flex-shrink: 0;
}

.future_members .who_needs_list div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: rgb(133,166,177);
    border-radius: 10px 0 0 10px;
}

@media (max-width: 1200px) {
    .future_members {
        padding: 100px 0;
    }

    .future_members .container {
        gap: 60px;
    }

    .future_members .who_needs_photo {
        flex: 0 0 350px;
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .future_members .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .future_members .who_needs_text h2 {
        margin-left: auto;
        margin-right: auto;
    }

    .future_members .who_needs_list div {
        transform: translateX(0);
        justify-content: center;
    }

    .future_members .who_needs_list div:nth-child(2) {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .future_members {
        padding: 80px 0;
    }

    .future_members .who_needs_photo {
        flex: 0 0 300px;
        height: 300px;
        width: 300px;
        border-width: 10px;
    }

    .future_members .who_needs_list div {
        padding: 20px 25px;
    }

    .future_members .who_needs_text h2 {
        font-size: calc(38px * 0.9);
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .future_members {
        padding: 60px 0;
    }

    .future_members .who_needs_photo {
        flex: 0 0 250px;
        height: 250px;
        width: 250px;
    }

    .future_members .who_needs_list {
        gap: 20px;
    }

    .future_members .who_needs_list div {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }

    .future_members .who_needs_list svg {
        width: 24px;
        height: 24px;
    }

    .future_members .who_needs_text h2 {
        font-size: calc(38px * 0.8);
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
}.connect_form {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(133,166,177) 0%, rgb(84,119,125) 100%);
    position: relative;
    overflow: hidden;
}

.connect_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.connect_form h3 {
    color: rgb(133,166,177);
    font-size: 41px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.connect_form .form {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 50px;
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.connect_form form input,
.connect_form form textarea {
    color: #000000;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid rgb(133,166,177,0.5);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: Ubuntu, sans-serif;
    transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.connect_form form input:focus,
.connect_form form textarea:focus {
    border-color: rgb(84,119,125);
    outline: none;
    background: #ffffff;
    transform: scale(1.02);
}

.connect_form form .button {
    background: rgb(133,166,177);
    color: #ffffff;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.connect_form form .button:hover {
    background: rgb(84,119,125);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.connect_form .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.connect_form .name_holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connect_form .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.connect_form .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    margin-right: 10px;
}

.connect_form .agree label {
    display: block;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}

.connect_form .agree a {
    margin-left: 5px;
    color: rgb(133,166,177);
    text-decoration: underline;
    transition: color 0.3s;
}

.connect_form .agree a:hover {
    color: rgb(84,119,125);
}

.connect_form .form_text {
    margin-bottom: 30px;
    font-size: 16px;
    color: #000000;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .connect_form {
        padding: 60px 0;
    }
    .connect_form h3 {
        font-size: 37px;
    }
    .connect_form .form {
        padding: 30px;
    }
}

.panel-container .connect_form .holder {
    flex-direction: column-reverse;
}

.panel-container .connect_form .form {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}.title_opener {
    width: 100%;
    font-family: Ubuntu, sans-serif;
    color: #ffffff;
    overflow: hidden;
}
.title_opener .title_page_holder {
    width: 100%;
    min-height: 680px;
    background-size: cover;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}
.title_opener .title_page_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}
.title_opener .title_page_holder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(0, 255, 255, 0.2) 50%, rgba(0, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
    animation: neonGrid 5s linear infinite;
}
@keyframes neonGrid {
    from {background-position: 0 0;}
    to {background-position: 50px 50px;}
}
.title_opener .style_element {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 19px;
    box-shadow: 0 0 20px rgb(133,166,177), 0 0 30px rgb(84,119,125);
    text-align: center;
    max-width: 800px;
    margin: auto;
}
.title_opener .style_element h1 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(133,166,177);
    margin-bottom: 20px;
}
.title_opener .style_element h3 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(84,119,125);
    margin-bottom: 15px;
}
.title_opener .style_element p {
    font-size: 13px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 800px) {
    .title_opener .title_page_holder {
        min-height: 400px;
        padding: 10px;
    }
    .title_opener .style_element {
        padding: 30px;
    }
    .title_opener .style_element h1 {
        font-size: 23px;
    }
    .title_opener .style_element h3 {
        font-size: 19px;
    }
    .title_opener .style_element p {
        font-size: 17px;
    }
}
.panel-container .title_opener .style_element {
    position: static;
    background: rgb(84,119,125);
    padding: 50px;
    text-align: left;
    border-radius: 19px;
    box-shadow: 0 0 20px rgb(84,119,125), 0 0 30px rgb(133,166,177);
    max-width: 1000px;
    margin: 50px auto;
}
.panel-container .title_opener .title_page_holder {
    padding-top: 120px;
    padding-bottom: 120px;
}
.panel-container .title_opener .style_element h1 {
    font-size: 48px;
    color: rgb(133,166,177);
    margin: 0 0 20px 0;
}
.panel-container .title_opener .style_element h3 {
    font-size: 36px;
    color: #ffffff;
    margin: 0 0 20px 0;
}
.panel-container .title_opener .style_element p {
    font-size: 18px;
    color: var(--white-color_opacity);
    line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
    .panel-container .title_opener .style_element {
        padding: 40px;
    }
    .panel-container .title_opener .style_element h1 {
        font-size: 36px;
    }
    .panel-container .title_opener .style_element h3 {
        font-size: 28px;
    }
    .panel-container .title_opener .style_element p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 800px) {
    .panel-container .title_opener .style_element {
        padding: 30px;
    }
    .panel-container .title_opener .style_element h1,
    .panel-container .title_opener .style_element h3,
    .panel-container .title_opener .style_element p {
        text-align: center;
    }
    .panel-container .title_opener .title_page_holder {
        padding: 0;
    }
}.education_experience {
    padding-top: 80px;
    padding-bottom: 80px;
}

.education_experience .review .name {
    color: rgb(84,119,125);
}

.education_experience .review span {
    color: rgb(133,166,177);
}

.education_experience .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.education_experience .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.education_experience .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.education_experience .review .name {
    font-size: 18px;
    margin-bottom: 8px;
}

.education_experience .review span {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 14px;
}

.education_experience .review .quote {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .education_experience .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .education_experience .holder {
        flex-direction: column;
    }

    .education_experience .review {
        max-width: unset;
        width: 100%;
    }

    .education_experience {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.panel-container .education_experience .holder {
    background: rgb(84,119,125);
    border-radius: 12px;
}

.panel-container .education_experience {
    padding: 64px 0;
}

.panel-container .education_experience .review {
    max-width: unset;
    width: 80%;
    padding: 0;
    flex-direction: row;
    align-items: center;
}

.panel-container .education_experience .photo {
    margin-bottom: -20px;
    margin-top: -20px;
    border-radius: 14px;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.panel-container .worker_description {
    margin-left: 48px;
}

.panel-container .education_experience .review .name {
    color: #ffffff;
    margin-bottom: 5px;
}

.panel-container .education_experience .review .quote {
    color: var(--white-color_opacity);
    margin-top: 10px;
    font-style: normal;
}

.panel-container .education_experience .review span {
    font-size: 18px;
}

@media only screen and (max-width: 800px) {
    .panel-container .education_experience .review {
        flex-direction: column;
    }

    .panel-container .education_experience .photo {
        margin-bottom: 10px;
        width: 200px;
        height: 200px;
    }

    .panel-container .education_experience .holder {
        padding: 20px;
        padding-top: 0;
    }

    .panel-container .worker_description {
        margin-left: 0;
        text-align: center;
    }
}.privacy_repository {
    padding: 50px;
    width: 100%;
    overflow: hidden;
    height: auto;
    border: 1px solid rgb(133,166,177);
    font-family: Ubuntu, sans-serif;
    color: #ffffff;
    box-shadow: inset 0 0 10px rgb(84,119,125,0.5), 0 0 15px rgb(133,166,177,0.5);
}

.privacy_repository h1 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 39px;
    font-weight: 700;
    color: rgb(133,166,177);
    border-bottom: 2px solid rgb(133,166,177);
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, rgb(133,166,177), rgb(84,119,125));
    -webkit-background-clip: text;
    color: transparent;
}

.privacy_repository h2 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 29px;
    font-weight: 600;
    color: rgb(84,119,125);
    border-bottom: 1px solid rgb(84,119,125);
    padding-bottom: 10px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgb(84,119,125), rgb(133,166,177));
    -webkit-background-clip: text;
    color: transparent;
}

.privacy_repository h3, .privacy_repository h4, .privacy_repository h5, .privacy_repository h6 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 600;
    color: rgb(133,166,177);
    background: linear-gradient(90deg, rgb(133,166,177), rgb(84,119,125));
    -webkit-background-clip: text;
    color: transparent;
}

.privacy_repository ul, .privacy_repository ol {
    list-style: none;
    padding-left: 0;
    padding: 20px 0;
    border-radius: 10px;
}

.privacy_repository li {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    padding-left: 20px;
    position: relative;
}

.privacy_repository li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: rgb(133,166,177);
    font-weight: 700;
}

.privacy_repository section {
    background: rgb(202,237,222);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgb(133,166,177,0.5);
}

.privacy_repository p, .privacy_repository span, .privacy_repository div {
    line-height: 2;
    margin-bottom: 15px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 300;
    background: linear-gradient(90deg, rgb(133,166,177), rgb(84,119,125));
    -webkit-background-clip: text;
    color: transparent;
}

@media only screen and (max-width: 800px) {
    .privacy_repository {
        padding: 20px 10px;
    }

    .privacy_repository h1 {
        font-size: calc(23px * 0.8);
    }

    .privacy_repository h2 {
        font-size: calc(23px * 0.8);
    }

    .privacy_repository h3, .privacy_repository h4, .privacy_repository h5, .privacy_repository h6 {
        font-size: calc(23px * 0.8);
    }

    .privacy_repository p, .privacy_repository span, .privacy_repository div {
        font-size: calc(12px * 0.9);
    }
}.benefits_outline {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(133,166,177), rgb(84,119,125));
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    overflow: hidden;
}
.benefits_outline .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgb(202,237,222);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefits_outline .advantages_content h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(45deg, rgb(133,166,177), rgb(84,119,125));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 20px;
}
.benefits_outline .advantages_photo_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.benefits_outline .advantages_photo_holder .photo {
    width: 100%;
    height: 300px;
    max-width: 600px;
    background: rgb(202,237,222);
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(133,166,177);
    border-radius: 26px;
}
.benefits_outline .advantages_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    background: rgb(202,237,222);
    border: 2px solid rgb(84,119,125);
    border-radius: 26px;
    overflow: hidden;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}
.benefits_outline .advantages_holder .advantage_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: calc(100% / 3);
    cursor: pointer;
    transition: background 0.3s ease;
    border-right: 1px solid rgb(133,166,177);
}
.benefits_outline .advantages_holder .advantage_item:last-child {
    border-right: none;
}
.benefits_outline .advantages_holder .advantage_item:hover {
    background: rgb(133,166,177,0.5);
}
.benefits_outline .advantages_holder .advantage_item svg,
.benefits_outline .advantages_holder .advantage_item svg path {
    width: 40px;
    height: 40px;
    fill: rgb(133,166,177);
    margin-bottom: 10px;
}
.benefits_outline .advantages_holder .advantage_item h4 {
    color: #000000;
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}
@media only screen and (max-width: 1024px) {
    .benefits_outline {
        padding: 40px 10px;
    }
    .benefits_outline .advantages_content h2 {
        font-size: 21px;
    }
    .benefits_outline .advantages_photo_holder .photo {
        width: 100%;
        height: 200px;
    }
    .benefits_outline .advantages_holder {
        flex-direction: column;
    }
    .benefits_outline .advantages_holder .advantage_item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgb(133,166,177);
    }
    .benefits_outline .advantages_holder .advantage_item:last-child {
        border-bottom: none;
    }
}
