* {
    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: Lato, sans-serif;
    color: #000000;
}
.wrapper-border {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(214,208,184);
}
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;
    }
}.connect-form {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: Lato, sans-serif;
}

.connect-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(170,166,164), rgb(131,125,125));
    clip-path: circle(25% at 75% 25%);
    transition: clip-path 0.6s ease-in-out;
}

.connect-form:hover::before {
    clip-path: circle(75% at 50% 50%);
}

.connect-form h3 {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.connect-form .form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, background 0.3s;
    position: relative;
    z-index: 1;
}

.connect-form .form:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.95);
}

.connect-form form input {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(131,125,125,0.5);
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.connect-form form input:focus {
    border-color: rgb(170,166,164);
    box-shadow: 0 0 8px rgb(170,166,164,0.5);
    transform: scale(1.01);
}

.connect-form form .button {
    background: rgb(170,166,164);
    color: #ffffff;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    align-self: center;
}

.connect-form form .button:hover {
    background: rgb(131,125,125);
    transform: scale(1.05);
}

.connect-form .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect-form .holder>div {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.connect-form .form_text {
    margin-bottom: 15px;
    font-size: 13px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.connect-form .name_holder {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.connect-form .name_holder input {
    flex: 1;
}

.connect-form .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.connect-form .agree input[type=checkbox] {
    width: auto;
    margin: 0 10px 0 0;
    cursor: pointer;
}

.connect-form .agree label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #000000;
}

.connect-form .agree a {
    margin-left: 5px;
    color: rgb(170,166,164);
    text-decoration: none;
    transition: color 0.3s;
}

.connect-form .agree a:hover {
    color: rgb(131,125,125);
}

@media only screen and (max-width: 600px) {
    .connect-form {
        padding: 50px 10px;
    }
    .connect-form .holder {
        flex-direction: column;
    }
    .connect-form .holder>div {
        width: 100%;
        padding: 0;
    }
    .connect-form h3 {
        font-size: 41px;
    }
    .connect-form form input {
        padding: 10px;
    }
    .connect-form form .button {
        width: 100%;
    }
    .connect-form .name_holder {
        flex-direction: column;
        gap: 0;
    }
}.advantages-benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgb(214,208,184) 0%, rgb(131,125,125,0.5) 100%);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.advantages-benefits .advantages_content {
    background-color: #ffffff;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.advantages-benefits .advantages_content h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 0;
    background: linear-gradient(90deg, rgb(170,166,164) 0%, rgb(131,125,125) 100%);
    position: relative;
}

.advantages-benefits .advantages_content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ffffff;
}

.advantages-benefits .advantages_photo_holder {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.advantages-benefits .advantages_holder {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.advantages-benefits .advantage_item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid rgb(131,125,125,0.5);
    border-radius: 0.25rem;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.advantages-benefits .advantage_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: rgb(170,166,164);
    transform: scaleY(0);
    transition: transform 0.3s ease-in-out;
}

.advantages-benefits .advantage_item:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.advantages-benefits .advantage_item:hover::before {
    transform: scaleY(1);
}

.advantages-benefits .advantage_image {
    flex: 0 0 3rem;
    margin-right: 1rem;
}

.advantages-benefits .advantage_item svg,
.advantages-benefits .advantage_item svg path {
    width: 3rem;
    height: 3rem;
    fill: rgb(170,166,164);
    transition: fill 0.3s ease-in-out;
}

.advantages-benefits .advantage_item:hover svg,
.advantages-benefits .advantage_item:hover svg path {
    fill: rgb(131,125,125);
}

.advantages-benefits .advantage_item h4 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.advantages-benefits .advantage_item:hover h4 {
    color: rgb(170,166,164);
}

.photo {
    flex: 0 0 40%;
    max-width: 40%;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    position: relative;
}

.photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgb(170,166,164,0.5) 0%, rgb(131,125,125,0.5) 100%);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .advantages-benefits .advantages_holder,
    .photo {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .advantages-benefits .advantages_photo_holder {
        flex-direction: column;
    }
    
    .photo {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .advantages-benefits {
        padding: 3rem 0;
    }
    
    .advantages-benefits .advantages_content h2 {
        font-size: 21px;
    }
    
    .advantages-benefits .advantage_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .advantages-benefits .advantage_item::before {
        width: 100%;
        height: 5px;
        transform: scaleX(0);
    }
    
    .advantages-benefits .advantage_item:hover::before {
        transform: scaleX(1);
    }
    
    .advantages-benefits .advantage_image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .advantages-benefits {
        padding: 2rem 0;
    }
    
    .advantages-benefits .advantages_content h2 {
        font-size: 21px;
    }
    
    .advantages-benefits .advantage_item h4 {
        font-size: calc(20px * 0.9);
    }
}footer {
    background: rgb(131,125,125);
    color: #ffffff;
    font-family: Lato, sans-serif;
}
footer .copyright {
    background: rgb(170,166,164,0.5);
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    border-top: 1px solid rgb(170,166,164);
}
footer .logo_holder svg, 
footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(170,166,164);
    transition: transform 0.3s ease, filter 0.3s ease;
}
footer h5 {
    color: rgb(170,166,164);
    font-size: 19px;
    margin: 16px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    margin-right: 10px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}
footer .menu a:hover {
    color: rgb(170,166,164);
    text-shadow: 0 0 5px rgb(170,166,164);
}
footer .contact_info div svg, 
footer .contact_info div svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
    width: 20px;
    height: 20px;
}
footer .contact_info div span {
    color: #ffffff;
    margin-left: 8px;
    transition: color 0.3s ease;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
footer .contact_info div:hover svg, 
footer .contact_info div:hover span {
    fill: rgb(170,166,164);
    color: rgb(170,166,164);
}
footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
    background: linear-gradient(to bottom, rgb(131,125,125) 0%, rgb(131,125,125,0.5) 100%);
    border-top: 1px solid rgb(170,166,164);
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
@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;
        align-items: center;
    }
    footer .contact_info {
        margin-top: 10px;
        align-items: center;
    }
    footer h5 {
        margin-top: 5px;
        text-align: center;
    }
}
.wrapper-border footer .footer_info {
    flex-direction: column;
    align-items: center;
}
.wrapper-border footer .menu_holder {
    flex-direction: row;
}
.wrapper-border footer .footer {
    padding: 0;
    padding-top: 48px;
}
.wrapper-border footer {
    padding-bottom: 48px;
}
.wrapper-border footer .logo_holder {
    width: 80%;
}
.wrapper-border footer .menu {
    margin-top: 24px;
    width:80%;
}
footer .footer_agreement {
    text-align: center;
    margin: 10px 0;
}
.wrapper-border footer .contact_info {
    width: 80%;
    margin: 20px 0;
}
.wrapper-border footer .menu a {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    margin-right: 30px;
}
.wrapper-border footer .menu a:hover {
    color: rgb(170,166,164);
}
.wrapper-border footer .logo_holder svg, 
.wrapper-border footer .logo_holder img {
    width: 56px;
    height: 56px;
    margin: 0;
}
.wrapper-border footer .copyright {
    background: rgb(131,125,125,0.5);
    padding: 0;
    padding-top: 24px;
    border-top: 1px solid rgb(170,166,164);
}
@media only screen and (max-width: 800px) {
    .wrapper-border footer .footer_info {
        padding: 0;
    }
    .wrapper-border footer .menu a {
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .wrapper-border footer .menu {
        margin-top: 16px;
    }
    .wrapper-border footer .menu_holder {
        flex-direction: column;
    }
    .wrapper-border footer .logo_holder {
        width: auto;
    }
}
footer .menu a::before {
    content: "» ";
    color: rgb(170,166,164);
    transition: content 0.3s ease;
}
footer .menu a:hover::before {
    content: "« ";
}
footer .menu a, 
footer .logo_holder svg, 
footer .logo_holder img, 
footer h5 {
    transition: all 0.3s ease;
}
footer .menu a:hover, 
footer .logo_holder svg:hover, 
footer .logo_holder img:hover, 
footer h5:hover {
    color: rgb(170,166,164);
}
footer .footer {
    border-top: 2px solid rgb(170,166,164,0.5);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}
header .main_header {
    background: rgb(170,166,164);
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
header .logo_holder {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-right: 24px;
}
header .logo_holder .logotype {
    display: flex;
    align-items: center;
    text-decoration: none;
}
header .logo_holder svg, header .logo_holder img {
    height: 60px;
    width: 60px;
    fill: rgb(170,166,164);
    transition: transform 0.3s ease-in-out;
}
header .logo_holder svg:hover, header .logo_holder img:hover {
    transform: scale(1.1);
}
header .menu {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
header .menu a {
    color: rgb(170,166,164);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}
header .menu a:hover {
    background: rgb(131,125,125);
    color: #ffffff;
}
header .menu a.active {
    background: #ffffff;
    color: rgb(170,166,164);
    border: 2px solid rgb(131,125,125);
}
header .menu a.active:hover {
    background: rgb(170,166,164);
    color: #ffffff;
    border: 2px solid rgb(170,166,164);
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header .header_content::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 40px;
    background: rgb(170,166,164);
    border-radius: 20px;
    z-index: -1;
}
@media (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        flex-direction: column;
        align-items: flex-start;
        display: none;
        width: 100%;
    }
    header .menu.opened {
        display: flex;
    }
    header .menu a {
        padding: 15px;
        width: 100%;
        text-align: center;
    }
    header .logo_holder {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        height: 40px;
        width: 40px;
    }
}

.wrapper-border header .main_header {
    background: rgb(170,166,164);
}
.wrapper-border header .header_content {
    border-radius: 13px;
    background: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    position: relative;
}
.wrapper-border header .logo_holder .logotype svg, .wrapper-border header .logo_holder .logotype img {
    width: 65px;
    height: 65px;
}
.wrapper-border header .menu a {
    font-weight: 700;
    font-size: 12px;
}.course-overview {
    padding: 100px 0;
    background: linear-gradient(to right, rgb(170,166,164,0.5), rgb(131,125,125,0.5));
    position: relative;
    overflow: hidden;
}

.course-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    animation: float 10s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.course-overview h2 {
    color: #000000;
    font-size: 47px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.course-overview .content {
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.course-overview h3 {
    color: rgb(170,166,164);
    font-size: 29px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.course-overview p {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.course-overview .button {
    display: inline-block;
    background: rgb(131,125,125);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    text-decoration: none;
    margin-top: 20px;
}

.course-overview .button:hover {
    background: rgb(170,166,164);
    color: #ffffff;
    transform: scale(1.05);
}

.course-overview .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.course-overview .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.course-overview .course {
    padding: 20px;
    max-width: 1000px;
    width: 100%;
}

.course-overview .photo {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: rgb(131,125,125,0.5);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.course-overview .photo:hover {
    transform: scale(1.1);
}

.course-overview .text_holder {
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .course-overview {
        padding: 60px 0;
    }

    .course-overview h2 {
        font-size: 29px;
    }

    .course-overview .items {
        flex-direction: column;
    }
}

.wrapper-border .course-overview .items {
    width: 100%;
}

.wrapper-border .course-overview .items .course .content {
    border-radius: 23px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.wrapper-border .course-overview .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.wrapper-border .course-overview .text_holder {
    border-radius: 23px;
    border: 5px solid rgb(131,125,125);
    width: 80%;
    margin-top: -150px;
    background: #ffffff;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.wrapper-border .course-overview h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.wrapper-border .course-overview .button {
    display: inline-block;
    width: fit-content;
    margin-top: 25px;
    padding: 15px 40px;
    border-radius: 10px;
    background: rgb(170,166,164);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.wrapper-border .course-overview .button:hover {
    background: rgb(131,125,125);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .wrapper-border .course-overview .photo {
        width: 100%;
        height: 200px;
    }

    .wrapper-border .course-overview .text_holder {
        width: 90%;
        margin-top: -100px;
        padding: 20px;
    }

    .wrapper-border .course-overview h3 {
        font-size: 20px;
    }
    .course-overview .course {
        padding: 0;
    }
}.privacy-sanctuary {
    background-color: rgb(214,208,184);
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: Lato, sans-serif;
}
.privacy-sanctuary h1 {
    color: rgb(170,166,164);
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 20px;
}
.privacy-sanctuary h2 {
    color: rgb(131,125,125);
    font-size: 29px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}
.privacy-sanctuary h3, .privacy-sanctuary h4, .privacy-sanctuary h5, .privacy-sanctuary h6 {
    color: rgb(170,166,164);
    font-weight: 400;
    margin: 1rem 0;
}
.privacy-sanctuary ul {
    list-style-type: disc;
    margin-left: 20px;
}
.privacy-sanctuary ol {
    list-style-type: decimal;
    margin-left: 20px;
}
.privacy-sanctuary li {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.privacy-sanctuary section {
    margin-top: 20px;
    margin-bottom: 20px;
}
.privacy-sanctuary p {
    color: #000000;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}
.privacy-sanctuary span {
    color: rgb(131,125,125);
    font-weight: 600;
}
.privacy-sanctuary div {
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
    .privacy-sanctuary {
        padding: 20px 10px;
    }
    .privacy-sanctuary h1 {
        font-size: calc(21px - 5px);
    }
    .privacy-sanctuary h2 {
        font-size: calc(21px - 5px);
    }
    .privacy-sanctuary p, .privacy-sanctuary li {
        font-size: calc(18px - 2px);
    }
}
.our-background {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(170,166,164), rgb(131,125,125));
    color: #ffffff;
    font-family: Lato, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wrapper-border .our-background .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    box-shadow: 0 0 20px rgb(170,166,164,0.5), 0 0 40px rgb(131,125,125,0.5);
    backdrop-filter: blur(15px);
    margin-top: 150px;
}

.wrapper-border .our-background .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrapper-border .our-background .photo {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 5px solid rgb(170,166,164);
    box-shadow: 0 0 20px rgb(170,166,164,0.5), 0 0 40px rgb(131,125,125,0.5);
    position: absolute;
    top: -160px;
    animation: photoSlideIn 1s ease-out;
}

@keyframes photoSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrapper-border .our-background .style_element {
    padding: 40px;
    width: 100%;
    color: #ffffff;
    text-align: center;
    z-index: 3;
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease-out;
}

.wrapper-border .our-background h2 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(170,166,164);
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(131,125,125);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.wrapper-border .our-background p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-border .our-background .caption_holder {
        padding: 30px;
    }

    .wrapper-border .our-background .photo {
        width: 200px;
        height: 200px;
        top: -100px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-border .our-background {
        flex-direction: column;
    }

    .wrapper-border .our-background .caption_holder {
        padding: 20px;
    }

    .wrapper-border .our-background .photo {
        width: 150px;
        height: 150px;
        top: -75px;
    }

    .wrapper-border .our-background h2 {
        font-size: calc(36px - 4px);
    }

    .wrapper-border .our-background p {
        font-size: calc(16px - 2px);
    }
    .wrapper-border .our-background .holder {
        padding: 10px;
        margin-top: 75px;
    }
    .wrapper-border .our-background .style_element {
        padding: 20px;
    }
}
.title-greeting {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(170,166,164), rgb(131,125,125));
    padding: 60px 0;
    font-family: Lato, sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.title-greeting .holder {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.title-greeting .photo {
    width: 100%;
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid rgb(170,166,164);
}

.title-greeting .photo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 70%, rgba(255, 255, 255, 0.5));
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.title-greeting .text_holder {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

.title-greeting .text_holder .text_info {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid rgb(170,166,164);
    text-align: center;
}

.title-greeting .text_holder .button {
    padding: 18px 24px;
    color: #ffffff;
    background: rgb(170,166,164);
    border: none;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 22px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgb(131,125,125);
}

.title-greeting .text_holder .button:hover {
    background: rgb(131,125,125);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.title-greeting .text_info h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #000000;
    font-size: 47px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-greeting .text_info span {
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}

.title-greeting .text_info svg {
    width: 90px;
    height: 90px;
    fill: rgb(170,166,164);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 800px) {
    .title-greeting .text_holder {
        flex-direction: column;
        align-items: center;
    }

    .title-greeting .text_info h2 {
        margin-top: 20px;
    }

    .title-greeting .text_holder .button {
        margin-top: 20px;
        margin-left: 0;
    }

    .title-greeting .text_holder .text_info {
        width: 100%;
    }
}.learning-system {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
    position: relative;
}

.learning-system .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: auto;
    background: rgb(170,166,164,0.5);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(170,166,164);
}

.learning-system h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 41px;
    font-weight: 700;
    color: rgb(170,166,164);
    border-bottom: 3px solid rgb(170,166,164);
    padding-bottom: 10px;
    width: 50%;
}

.learning-system p {
    text-align: center;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

@media only screen and (max-width: 800px) {
    .learning-system {
        padding: 50px 0;
    }

    .learning-system .holder {
        padding: 30px;
    }

    .learning-system h2 {
        font-size: 21px;
        margin-bottom: 20px;
        width: 80%;
    }

    .learning-system p {
        width: 100%;
        font-size: 16px;
    }
}

.wrapper-border .learning-system {
    position: relative;
    padding-top: 120px;
    background: rgb(131,125,125,0.5);
}

.wrapper-border .learning-system::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.wrapper-border .learning-system .holder {
    position: relative;
    z-index: 1;
    background: #ffffff;
    width: 100%;
    padding: 60px;
    border-radius: 22px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(131,125,125);
}

.wrapper-border .learning-system h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #000000;
    border-bottom: 2px solid rgb(131,125,125);
    padding-bottom: 15px;
    width: 60%;
    text-align: left;
}

.wrapper-border .learning-system p {
    width: 70%;
    font-size: 16px;
    text-align: left;
    color: #000000;
    line-height: 1.8;
}

@media only screen and (max-width: 800px) {
    .wrapper-border .learning-system .holder {
        padding: 20px;
    }

    .wrapper-border .learning-system {
        padding: 50px 0;
    }

    .wrapper-border .learning-system h2 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
        width: 90%;
    }

    .wrapper-border .learning-system p {
        width: 100%;
        font-size: 16px;
    }
}
.thanks-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, rgb(170,166,164), rgb(131,125,125));
    color: #ffffff;
    font-family: Lato, sans-serif;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}
.thanks-area .container {
    background: linear-gradient(145deg, rgb(131,125,125), rgb(170,166,164));
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #444;
    position: relative;
    overflow: hidden;
}
.thanks-area .container::before,
.thanks-area .container::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
}
.thanks-area .container::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}
.thanks-area .container::after {
    bottom: -10px;
    right: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
}
.thanks-area h2 {
    font-size: 39px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(131,125,125);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.thanks-area p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    padding: 20px 0;
}
.thanks-area p::before,
.thanks-area p::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: rgb(170,166,164);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.thanks-area p::after {
    bottom: 0;
    top: auto;
}
@media only screen and (max-width: 800px) {
    .thanks-area {
        padding: 20px;
    }
    .thanks-area .container {
        padding: 30px;
    }
    .thanks-area h2 {
        font-size: 38px;
    }
    .thanks-area p {
        font-size: 16px;
    }
}
.course-rewards {
    position: relative;
    background: linear-gradient(to bottom, #000000 0%, rgb(214,208,184) 100%);
    padding: 180px 0;
    overflow: hidden;
}

.course-rewards::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(170,166,164,0.5) 0%, 
        transparent 1px,
        transparent 10px,
        rgb(170,166,164,0.5) 11px
    );
    opacity: 0.1;
}

.course-rewards .container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.course-rewards .holder {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    position: relative;
}

.course-rewards .photo {
    position: relative;
    height: 800px;
    transform: translateX(50px);
    clip-path: circle(45% at 50% 50%);
    transition: clip-path 0.6s ease;
}

.course-rewards .photo:hover {
    clip-path: circle(47% at 50% 50%);
}

.course-rewards .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 30%,
        rgb(170,166,164,0.5) 100%
    );
    mix-blend-mode: multiply;
}

.course-rewards .text_holder {
    position: relative;
    padding: 60px;
    margin-right: -100px;
    z-index: 2;
    background: linear-gradient(
        145deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.course-rewards .text_holder::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border: 2px solid rgb(131,125,125,0.5);
    border-radius: 10px;
    opacity: 0.3;
}

.course-rewards .text_holder h2 {
    font-size: calc(30px * 0.9);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

.course-rewards .text_holder ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.course-rewards .text_holder ul li {
    position: relative;
    padding-left: 65px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    transition: transform 0.3s ease;
    text-shadow: 
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.3),
        2px 2px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.course-rewards .text_holder ul li:hover {
    transform: translateX(10px);
}

.course-rewards .text_holder ul li svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    padding: 10px;
    fill: rgb(170,166,164);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.course-rewards .text_holder ul li:first-child svg {
    animation: pulse 3s infinite;
}

@media (max-width: 1200px) {
    .course-rewards {
        padding: 140px 0;
    }

    .course-rewards .holder {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .course-rewards .photo {
        height: 600px;
        width: 100%;
        transform: none;
        clip-path: circle(42% at 50% 50%);
        margin: 0 auto;
        max-width: 800px;
    }

    .course-rewards .text_holder {
        margin-right: 0;
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .course-rewards {
        padding: 100px 0;
    }

    .course-rewards .photo {
        height: 500px;
        width: 100%;
        clip-path: circle(40% at 50% 50%);
    }

    .course-rewards .text_holder {
        padding: 30px;
    }

    .course-rewards .text_holder h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .course-rewards {
        padding: 80px 0;
    }

    .course-rewards .container {
        padding: 0 20px;
    }

    .course-rewards .photo {
        height: 400px;
        width: 100%;
    }

    .course-rewards .text_holder ul {
        gap: 25px;
    }

    .course-rewards .text_holder ul li {
        padding-left: 55px;
        font-size: calc(14px * 0.95);
        text-shadow: 
            -1px -1px 0 rgba(0, 0, 0, 0.3),
            1px -1px 0 rgba(0, 0, 0, 0.3),
            -1px 1px 0 rgba(0, 0, 0, 0.3),
            1px 1px 0 rgba(0, 0, 0, 0.3),
            1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .course-rewards .text_holder ul li svg {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .course-rewards {
        padding: 60px 0;
    }

    .course-rewards .photo {
        height: 300px;
        clip-path: circle(45% at 50% 50%);
    }

    .course-rewards .text_holder {
        padding: 25px;
    }

    .course-rewards .text_holder::before,
    .course-rewards .text_holder::after {
        display: none;
    }

    .course-rewards .text_holder h2 {
        font-size: calc(30px * 0.9);
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .course-rewards .text_holder ul {
        gap: 20px;
    }

    .course-rewards .text_holder ul li {
        padding-left: 45px;
        font-size: calc(14px * 0.9);
        text-shadow: 
            -1px -1px 0 rgba(0, 0, 0, 0.3),
            1px -1px 0 rgba(0, 0, 0, 0.3),
            -1px 1px 0 rgba(0, 0, 0, 0.3),
            1px 1px 0 rgba(0, 0, 0, 0.3),
            1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .course-rewards .text_holder ul li svg {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
}.attempt-now {
    padding: 60px 0;
    background: linear-gradient(135deg, rgb(170,166,164), rgba(0, 0, 0, 0.5));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.attempt-now::before, .attempt-now::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(131,125,125,0.5), transparent 70%);
    border-radius: 50%;
}

.attempt-now::before {
    top: -100px;
    left: -100px;
}

.attempt-now::after {
    bottom: -100px;
    right: -100px;
}

.attempt-now .container {
    max-width: 85%;
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(131,125,125);
    border-radius: 15px;
    background: rgba(rgba(0, 0, 0, 0.5), 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 0;
}

.attempt-now .holder {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(170,166,164,0.5), rgb(131,125,125,0.5));
    position: relative;
    overflow: hidden;
}

.attempt-now .holder::before,
.attempt-now .holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.attempt-now .holder::before {
    background: inherit;
    filter: blur(10px);
    opacity: 0.7;
    animation: ultraSlowPulse 120s ease-in-out infinite;
}

.attempt-now .holder::after {
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgb(170,166,164,0.5) 45%, 
        rgb(131,125,125,0.5) 55%, 
        transparent 100%
    );
    mix-blend-mode: overlay;
    opacity: 0.1;
    animation: subtleGlitch 180s infinite linear alternate, ultraSlowMove 240s ease-in-out infinite alternate;
}

@keyframes subtleGlitch {
    0% { transform: translate(0); }
    25% { transform: translate(-2px, 2px); }
    50% { transform: translate(-2px, -2px); }
    75% { transform: translate(2px, 2px); }
    100% { transform: translate(2px, -2px); }
}

@keyframes ultraSlowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.8; }
}

@keyframes ultraSlowMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.attempt-now .holder svg {
    padding: 15px;
    background: rgb(131,125,125,0.5);
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    z-index: 2;
}

.attempt-now .holder svg path {
    fill: #ffffff;
}

.attempt-now .holder h2 {
    font-size: 37px;
    color: #ffffff;
    font-family: Lato, sans-serif;
    font-weight: 700;
    margin: 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.attempt-now .holder .button {
    padding: 18px 35px;
    background: linear-gradient(45deg, rgb(131,125,125), rgb(170,166,164));
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.attempt-now .holder .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.attempt-now .holder .button:hover::before {
    left: 100%;
}

@media only screen and (max-width: 1024px) {
    .attempt-now {
        padding: 50px 0;
    }
    .attempt-now .container {
        max-width: 95%;
        width: 95%;
    }
    .attempt-now .holder {
        padding: 40px 20px;
    }
    .attempt-now .holder svg {
        width: 100px;
        height: 100px;
    }
    .attempt-now .holder h2 {
        font-size: calc(37px * 0.9);
        margin: 20px 0;
    }
    .attempt-now .holder .button {
        padding: 15px 30px;
    }
}

@media only screen and (max-width: 800px) {
    .attempt-now {
        padding: 40px 0;
    }
    .attempt-now .container {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }
    .attempt-now .holder {
        padding: 30px 15px;
    }
    .attempt-now .holder svg {
        width: 90px;
        height: 90px;
    }
    .attempt-now .holder h2 {
        font-size: 23px;
        margin: 15px 0;
    }
    .attempt-now .holder .button {
        padding: 12px 25px;
        font-size: 17px;
    }
}.education-experience {
    padding-top: 80px;
    padding-bottom: 80px;
}

.education-experience .review .name {
    color: rgb(131,125,125);
}

.education-experience .review span {
    color: rgb(170,166,164);
}

.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: 23px;
    margin-bottom: 8px;
}

.education-experience .review span {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 14px;
}

.education-experience .review .quote {
    font-size: 16px;
    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;
    }
}

.wrapper-border .education-experience .review {
    flex-direction: row;
    max-width: unset;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.wrapper-border .education-experience {
    background: rgb(170,166,164);
    padding: 40px 0;
}

.wrapper-border .education-experience .review .name {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    margin-right: 0.5em;
}

.wrapper-border .education-experience .review span {
    color: rgb(131,125,125);
    font-size: 18px;
}

.wrapper-border .education-experience .review .quote {
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
    font-style: normal;
    position: relative;
}

.wrapper-border .education-experience .photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px -5px #000;
    margin-right: 60px;
}

.wrapper-border .worker_description {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    padding: 30px;
}

@media only screen and (max-width: 800px) {
    .wrapper-border .education-experience .review {
        flex-direction: column;
        padding: 0;
    }

    .wrapper-border .education-experience .photo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .wrapper-border .worker_description {
        padding: 20px;
        justify-content: center;
        text-align: center;
    }
}