* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.wrapper-structure {
    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,224,240);
}
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;
    }
}.client-testimonials {
    background-color: rgb(214,224,240);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.client-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(141,147,171,0.5) 0%, rgb(57,59,68,0.5) 100%);
    opacity: 0.1;
}

.client-testimonials .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.client-testimonials .holder {
    text-align: center;
}

.client-testimonials h3 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.client-testimonials h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: rgb(141,147,171);
}

.client-testimonials .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.client-testimonials .review {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 25px;
    display: flex;
    align-items: center;
    text-align: left;
    width: calc(33.333% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgb(57,59,68,0.5);
}

.client-testimonials .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgb(141,147,171);
}

.client-testimonials .photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid rgb(57,59,68);
    transition: all 0.3s ease;
    object-fit: cover;
}

.client-testimonials .review:hover .photo {
    border-color: rgb(141,147,171);
}

.client-testimonials .text {
    flex-grow: 1;
}

.client-testimonials .text p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-testimonials .text span {
    font-size: 18px;
    color: #000000;
    display: block;
    position: relative;
    padding-left: 15px;
}

.client-testimonials .text span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background-color: rgb(141,147,171);
}

@media (max-width: 991px) {
    .client-testimonials .review {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .client-testimonials {
        padding: 50px 0;
    }

    .client-testimonials h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .client-testimonials .reviews {
        gap: 20px;
    }

    .client-testimonials .review {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .client-testimonials .photo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .client-testimonials .text span {
        padding-left: 0;
    }

    .client-testimonials .text span::before {
        display: none;
    }
}.our-background {
    padding: 60px 0;
    background: rgb(57,59,68);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.wrapper-structure .our-background .holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-structure .our-background .holder .photo {
    flex: 1 1 40%;
    min-width: 300px;
    height: 500px;
    position: relative;
    z-index: 2;
    border-radius: 14px;
    box-shadow: 0 0 20px rgb(141,147,171,0.5), 0 0 40px rgb(141,147,171,0.5), 0 0 60px rgb(141,147,171,0.5);
    transition: transform 0.5s, box-shadow 0.5s;
    margin-bottom: 20px;
}

.wrapper-structure .our-background .caption_holder {
    flex: 1 1 50%;
    background: rgb(57,59,68,0.5);
    border-radius: 14px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(57,59,68,0.5);
}

.wrapper-structure .our-background .caption_holder::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgb(141,147,171), rgb(57,59,68));
    filter: blur(50px);
    z-index: 0;
}

.wrapper-structure .our-background .style_element {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wrapper-structure .our-background h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.wrapper-structure .our-background p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 800px) {
    .wrapper-structure .our-background .holder {
        flex-direction: column;
    }

    .wrapper-structure .our-background .holder .photo {
        width: 100%;
        height: 300px;
    }

    .wrapper-structure .our-background .caption_holder {
        padding: 20px;
    }
}footer {
    background: rgb(57,59,68);
    color: #000000;
    font-family: Ubuntu, sans-serif;
    padding: 0;
    border-top: 5px solid rgb(141,147,171);
    position: relative;
}
.footer {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgb(141,147,171,0.5);
    border-radius: 50%;
    z-index: 1;
    animation: animateBackground 10s linear infinite;
}
.footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgb(141,147,171,0.5);
    border-radius: 50%;
    z-index: 1;
    animation: animateBackground 12s linear infinite;
}
@keyframes animateBackground {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(141,147,171);
    z-index: 2;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 2;
}
footer h5 {
    color: rgb(141,147,171);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(141,147,171);
    border-radius: 10px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
footer .menu a:hover {
    color: rgb(141,147,171);
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    z-index: 2;
}
footer .contact_info div svg, footer .contact_info div img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: rgb(141,147,171);
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 18px;
    z-index: 2;
}
footer .footer_agreement {
    margin-top: 20px;
    text-align: center;
    z-index: 2;
    color: #ffffff;
}
footer .copyright {
    background: rgb(141,147,171);
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    z-index: 2;
}
footer .copyright_info {
    font-size: 16px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu a {
        margin: 10px;
    }
}
@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: 20px;
    }
    footer h5 {
        margin-top: 10px;
    }
    footer .footer_agreement {
        text-align: left;
    }
}
.course-structure {
    padding: 120px 0;
    background: rgb(214,224,240);
    position: relative;
    overflow: hidden;
}

.course-structure .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course-structure h2 {
    font-size: 39px;
    font-weight: 700;
    color: rgb(141,147,171);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.course-structure h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 5px;
    background: rgb(57,59,68);
    transform: translateX(-50%);
}

.course-structure .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.course-structure .course {
    background: #ffffff;
    border: 2px solid rgb(141,147,171,0.5);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.course-structure .course::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgb(57,59,68,0.5);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.course-structure .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course-structure .photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid rgb(57,59,68,0.5);
}

.course-structure .text_holder {
    text-align: center;
    width: 100%;
}

.course-structure h3 {
    font-size: 38px;
    font-weight: 600;
    color: rgb(141,147,171);
    margin-bottom: 15px;
    position: relative;
}

.course-structure h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30px;
    height: 3px;
    background: rgb(57,59,68);
    transform: translateX(-50%);
}

.course-structure p {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-structure .button {
    display: inline-block;
    padding: 12px 24px;
    background: rgb(141,147,171);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgb(141,147,171);
}

.course-structure .button:hover {
    background: rgb(57,59,68);
    border-color: rgb(57,59,68);
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .course-structure {
        padding: 80px 0;
    }

    .course-structure h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .course-structure .items {
        gap: 20px;
    }

    .course-structure .course {
        padding: 15px;
    }

    .course-structure h3 {
        font-size: 22px;
    }

    .course-structure p {
        font-size: 16px;
        line-height: 1.4;
    }

    .course-structure .button {
        padding: 10px 20px;
        font-size: 18px;
    }
}.educational-gains {
    position: relative;
    padding: 180px 0;
    background: rgb(214,224,240);
    overflow: hidden;
    perspective: 1000px;
}

.educational-gains::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background-image: 
        linear-gradient(45deg, rgb(141,147,171,0.5) 1px, transparent 1px),
        linear-gradient(-45deg, rgb(141,147,171,0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: gridRotate 60s linear infinite;
}

@keyframes gridRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.educational-gains .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.educational-gains .holder {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(2deg);
}

.educational-gains .content_holder {
    position: relative;
    padding: 120px 80px;
    min-height: 700px;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.educational-gains .content_holder h3 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding: 50px;
    background: linear-gradient(
        170deg,
        rgb(57,59,68,0.5) 0%,
        rgb(141,147,171,0.5) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgb(141,147,171,0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateZ(30px);
    max-width: 800px;
    margin: 0 auto;
}

.educational-gains .content_holder h3::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgb(141,147,171,0.5)
    );
    opacity: 0.1;
    border-radius: inherit;
}

.educational-gains .content_holder div {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.educational-gains .content_holder p {
    color: #ffffff;
    font-size: calc(15px * 1.1);
    line-height: 1.8;
    position: relative;
    padding: 40px 35px;
    background: rgb(57,59,68,0.5);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

.educational-gains .content_holder p::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        45deg,
        rgb(141,147,171,0.5),
        transparent 40%,
        transparent 60%,
        rgb(141,147,171,0.5)
    );
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.educational-gains .content_holder p:nth-child(3n+1) {
    transform: translateZ(30px) translateY(-20px);
    background: linear-gradient(
        135deg,
        rgb(57,59,68,0.5) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.educational-gains .content_holder p:nth-child(3n+2) {
    transform: translateZ(10px);
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgb(57,59,68,0.5) 100%
    );
}

.educational-gains .content_holder p:nth-child(3n+3) {
    transform: translateZ(20px) translateY(20px);
    background: linear-gradient(
        135deg,
        rgb(141,147,171,0.5) 0%,
        rgb(57,59,68,0.5) 100%
    );
}

.educational-gains .content_holder p:hover {
    transform: translateZ(50px) scale(1.05);
    border-color: rgb(141,147,171,0.5);
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 30px rgb(141,147,171,0.5);
}

.educational-gains .content_holder p:hover::before {
    opacity: 1;
}

@media (max-width: 1400px) {
    .educational-gains .content_holder {
        padding: 100px 60px;
        gap: 80px;
    }

    .educational-gains .content_holder div {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .educational-gains {
        padding: 140px 0;
    }

    .educational-gains .content_holder {
        gap: 70px;
    }

    .educational-gains .content_holder h3 {
        font-size: calc(46px * 0.9);
        padding: 40px;
    }

    .educational-gains .content_holder div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .educational-gains {
        padding: 100px 0;
        perspective: none;
    }

    .educational-gains .holder {
        transform: none;
    }

    .educational-gains .content_holder {
        padding: 60px 40px;
        gap: 60px;
    }

    .educational-gains .content_holder h3 {
        padding: 30px;
        font-size: calc(46px * 0.8);
        transform: none;
    }

    .educational-gains .content_holder p {
        transform: none !important;
        padding: 30px 25px;
    }

    .educational-gains .content_holder p:hover {
        transform: translateY(-10px) !important;
    }
}

@media (max-width: 768px) {
    .educational-gains {
        padding: 80px 0;
    }

    .educational-gains .container {
        padding: 0 20px;
    }

    .educational-gains .content_holder {
        padding: 40px 20px;
        gap: 50px;
    }

    .educational-gains .content_holder div {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .educational-gains .content_holder h3 {
        font-size: calc(46px * 0.7);
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .educational-gains {
        padding: 60px 0;
    }

    .educational-gains .content_holder {
        padding: 30px 15px;
        gap: 40px;
    }

    .educational-gains .content_holder h3 {
        font-size: calc(46px * 0.6);
        padding: 20px;
    }

    .educational-gains .content_holder p {
        padding: 25px 20px;
        font-size: 15px;
    }
}.privacy-harbor {
    padding: 40px;
    width: 100%;
    overflow: hidden;
    height: auto;
    border: 2px solid rgb(141,147,171);
    font-family: Ubuntu, sans-serif;
    color: #ffffff;
    box-shadow: 0 0 15px rgb(141,147,171,0.5);
}

.privacy-harbor h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    color: rgb(141,147,171);
    border-bottom: 2px solid rgb(141,147,171);
    padding-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(141,147,171,0.5);
}

.privacy-harbor h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 600;
    color: rgb(57,59,68);
    border-bottom: 1px solid rgb(57,59,68);
    padding-bottom: 5px;
    text-shadow: 0 0 10px rgb(57,59,68,0.5);
}

.privacy-harbor h3, .privacy-harbor h4, .privacy-harbor h5, .privacy-harbor h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 600;
    color: rgb(141,147,171);
    text-shadow: 0 0 5px rgb(141,147,171,0.5);
}

.privacy-harbor li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    position: relative;
}

.privacy-harbor li::before {
    content: "▸";
    color: rgb(141,147,171);
    position: absolute;
    left: -15px;
    top: 0;
}

.privacy-harbor section {
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgb(141,147,171,0.5);
}

.privacy-harbor p, .privacy-harbor span, .privacy-harbor div {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
    font-weight: 300;
    text-shadow: 0 0 5px rgb(141,147,171,0.5);
}

@media only screen and (max-width: 800px) {
    .privacy-harbor {
        padding: 20px 10px;
    }

    .privacy-harbor h1 {
        font-size: calc(23px * 0.8);
    }

    .privacy-harbor h2 {
        font-size: calc(23px * 0.8);
    }

    .privacy-harbor h3, .privacy-harbor h4, .privacy-harbor h5, .privacy-harbor h6 {
        font-size: calc(23px * 0.8);
    }

    .privacy-harbor p, .privacy-harbor span, .privacy-harbor div {
        font-size: calc(14px * 0.9);
    }
}.gratMessage {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(141,147,171), rgb(57,59,68));
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.gratMessage .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 900px;
    padding: 60px;
    background: linear-gradient(145deg, rgb(214,224,240), rgb(214,224,240));
    border: 2px solid rgb(141,147,171);
    border-radius: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
}
.gratMessage h2 {
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
    color: rgb(141,147,171);
    border-bottom: 2px solid rgb(141,147,171);
    padding-bottom: 10px;
    width: 100%;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 1px 1px #ffffff;
}
.gratMessage h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 40%;
    height: 3px;
    background: rgb(57,59,68);
    transform: translateX(-50%);
}
.gratMessage p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    text-shadow: 1px 1px #ffffff;
}
.gratMessage p + p {
    margin-top: 20px;
}
@media only screen and (max-width: 800px) {
    .gratMessage {
        padding: 10px;
    }
    .gratMessage .container {
        padding: 30px;
        width: 100%;
    }
    .gratMessage h2 {
        font-size: 32px;
    }
    .gratMessage p {
        font-size: 14px;
    }
}
#contact_form {
    padding: 100px 0;
    background: rgb(214,224,240);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.contact-us .holder {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 29px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contact-us .info {
    background: rgb(57,59,68);
    color: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.contact-us .info h3 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
}
.contact-us .logo_holder {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-us .logo_holder img, .contact-us .logo_holder svg {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    fill: rgb(141,147,171);
}
.contact-us .contact_info {
    margin-top: 30px;
}
.contact-us .contact_info h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(141,147,171);
}
.contact-us .contact_info div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.contact-us .contact_info div svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    margin-right: 10px;
}
.contact-us .contact_info span {
    font-size: 18px;
}
.contact-us .form {
    width: calc(100% - 400px);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-us .form h3 {
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #000000;
}
.contact-us .form form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact-us .form input,
.contact-us .form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    border: 1px solid rgb(57,59,68,0.5);
    border-radius: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-us .form input:focus,
.contact-us .form textarea:focus {
    border-color: rgb(141,147,171);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    outline: none;
}
.contact-us .form .button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    background: rgb(141,147,171);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.contact-us .form .button:hover {
    background: rgb(57,59,68);
    transform: translateY(-2px);
}
.contact-us .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-us .agree input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
}
.contact-us .agree label {
    font-size: 18px;
}
.contact-us .agree a {
    color: rgb(141,147,171);
    text-decoration: underline;
    margin-left: 5px;
}
@media (max-width: 992px) {
    .contact-us .holder {
        flex-direction: column;
    }
    .contact-us .info,
    .contact-us .form {
        width: 100%;
        padding: 20px;
    }
}
@media (max-width: 600px) {
    #contact_form {
        padding: 50px 0;
    }
    .contact-us .info h3,
    .contact-us .form h3 {
        font-size: 48px;
    }
    .contact-us .form input,
    .contact-us .form textarea {
        padding: 10px;
    }
}
.mentorship-profile {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mentorship-profile .review .name {
    color: rgb(57,59,68);
}

.mentorship-profile .review span {
    color: rgb(141,147,171);
}

.mentorship-profile .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentorship-profile .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.mentorship-profile .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.mentorship-profile .review .name {
    font-size: 24px;
    margin-bottom: 8px;
}

.mentorship-profile .review span {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 14px;
}

.mentorship-profile .review .quote {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .mentorship-profile .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .mentorship-profile .holder {
        flex-direction: column;
    }

    .mentorship-profile .review {
        max-width: unset;
        width: 100%;
    }

    .mentorship-profile {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.wrapper-structure .mentorship-profile {
    padding: 40px;
    background: rgb(141,147,171,0.5);
}

.wrapper-structure .mentorship-profile .container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.wrapper-structure .mentorship-profile .holder {
    background: #ffffff;
}

.wrapper-structure .mentorship-profile .review {
    width: 100%;
    flex-direction: row-reverse;
    max-width: unset;
    padding: 0;
    align-items: center;
}

.wrapper-structure .mentorship-profile .photo {
    height: 500px;
    width: 500px;
    max-width: unset;
    border-radius: 0 !important;
    margin: 0;
}

.wrapper-structure .worker_description {
    width: calc(100% - 500px);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    padding-left: 60px;
}

.wrapper-structure .mentorship-profile .review .name {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000000;
    text-align: left;
}

.wrapper-structure .mentorship-profile .review span {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: left;
    color: #000000;
}

.wrapper-structure .mentorship-profile .review .quote {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    font-style: normal;
}

@media only screen and (max-width: 1000px) {
    .wrapper-structure .mentorship-profile .review {
        flex-direction: column;
    }

    .wrapper-structure .worker_description {
        width: 100%;
    }

    .wrapper-structure .mentorship-profile .photo {
        width: 100%;
        height: 320px;
    }

    .wrapper-structure .mentorship-profile {
        padding: 20px;
    }

    .wrapper-structure .mentorship-profile .review .name {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .wrapper-structure .mentorship-profile .review span {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .wrapper-structure .mentorship-profile .review .quote {
        font-size: 16px;
    }
}.benefits-summary {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(214,224,240), rgb(57,59,68,0.5));
    color: #000000;
    font-family: Ubuntu, sans-serif;
}
.benefits-summary .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefits-summary .advantages_content {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}
.benefits-summary .advantages_content h2 {
    font-size: 32px;
    color: rgb(141,147,171);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}
.benefits-summary .advantages_content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(141,147,171);
    margin: 10px auto 0;
}
.benefits-summary .advantages_photo_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.benefits-summary .photo {
    flex: 1 1 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.benefits-summary .advantages_holder {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.benefits-summary .advantage_item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex: 1 1 auto;
    margin-bottom: 20px;
}
.benefits-summary .advantage_item:last-child {
    margin-bottom: 0;
}
.benefits-summary .advantage_image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgb(141,147,171,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.benefits-summary .advantage_image svg, .benefits-summary .advantage_image svg path {
    width: 40px;
    height: 40px;
    fill: #000000;
}
.benefits-summary .advantage_item h4 {
    font-size: 23px;
    color: #000000;
    margin: 0;
}
@media (max-width: 900px) {
    .benefits-summary .advantages_photo_holder {
        flex-direction: column;
        align-items: center;
    }
    .benefits-summary .photo {
        width: 100%;
        flex: auto;
        height: 300px;
    }
    .benefits-summary .advantages_holder {
        width: 100%;
        align-items: center;
    }
    .benefits-summary .advantage_item {
        width: 100%;
    }
}
header .main_header {
    background:  #ffffff;
    color:  #000000;
}
header .logo_holder svg,header .logo_holder svg path, header .logo_holder img {
    fill: rgb(141,147,171);
}
header .menu a {
    color: rgb(57,59,68);
}
header .menu a:hover {
    color: rgb(141,147,171);
}
header .menu a.active {
    border: 2px solid rgb(57,59,68);
    border-radius: 100px;
}
header .menu a.active:hover {
    color: #ffffff;
    background: rgb(141,147,171);
    border: 2px solid rgb(141,147,171);
}
header {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .175);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo_holder {
    padding: 5px 0;
    display: flex;
    align-items: center;
    text-decoration: none;

}
header .logo_caption {
    display: flex;
    flex-direction: column;
    height: 100%;

}
header .logo_desc {
    font-size: 15px;
    font-weight: 700;
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}
header .menu {
    display: flex;
}
header .menu a {
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
}
body .wrapper-structure header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px)  {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 0;
        position: static;
        top:100%;
        left:0;
        z-index: 90;

        width: 100%;
    }
    header .menu a.active {
        border: none;
    }
    header .menu a.active:hover {
        color: rgb(141,147,171);
        background: none;
        border: none;
    }
    header .main_header {
        position: relative;
        z-index: 99;
    }
    header .logo_holder {
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    header .logo_holder .logotype {
        margin-right: 5px;
    }
    header .logo_holder .logotype svg, header .logo_holder .logotype img {
        margin: 0;
        width: 40px;
        height: 40px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.wrapper-structure header .main_header {
    position: relative;
    background: rgb(141,147,171);
    padding-top: 50px;
    padding-bottom: 50px;
}
.wrapper-structure header .main_header:before {
    content:"";
    height: 50px;
    width: 100%;
    position: absolute;
    left: 0;
    top:0;
    background: #ffffff;
    z-index: 0;
}
.wrapper-structure header .main_header:after {
    content:"";
    height: 50px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom:0;
    background: #ffffff;
    z-index: 0;
}
.wrapper-structure .logotype {
    padding: 40px 30px 60px 30px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 86%, 0 95%);
    clip-path: polygon(0 0, 100% 0, 100% 86%, 0 95%);
    background: rgb(57,59,68);
    margin: -50px 0;
    position: relative;
    z-index: 1;
}
.wrapper-structure header .logo_holder {
    padding: 0;
}
.wrapper-structure header .menu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 4px solid transparent;
    text-transform: uppercase;
    padding: 10px 0;
    margin: 0 15px;
}
.wrapper-structure header .menu a:hover {
    border-bottom: 4px solid rgb(57,59,68);
    color: #ffffff;
}
@media only screen and (max-width: 800px)  {
    .wrapper-structure .logotype {
        margin: 0;
    }
    .wrapper-structure header .logo_holder {
        justify-content: center;
    }
    .wrapper-structure header .main_header:before, .wrapper-structure header .main_header:after {
        display: none;
    }
    .wrapper-structure header .main_header {
        padding: 10px 0;
    }
    .wrapper-structure header .menu {
        background: none;
        align-items: center;
        padding: 0;
    }
    .wrapper-structure header .menu a {
        text-align: center;
    }
    .wrapper-structure header .logo_holder .logotype {
        margin: 0;
        padding: 20px 15px 30px 15px;
    }
    .wrapper-structure header .logo_holder .logotype svg,.wrapper-structure header .logo_holder .logotype img {
        height: 60px;
        width: 60px;
    }
}.study-process {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.study-process .work_holder {
    padding: 55px 0;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.study-process .work_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, 
            rgba(0,0,0,0.8) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            transparent 70%
        );
    z-index: 1;
}

.study-process .work_holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            transparent 49.5%, 
            rgba(255,255,255,0.05) 50%, 
            transparent 50.5%
        ),
        linear-gradient(0deg, 
            transparent 49.5%, 
            rgba(255,255,255,0.05) 50%, 
            transparent 50.5%
        );
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 2;
    opacity: 0.5;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

.study-process .container {
    position: relative;
    z-index: 3;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.study-process .text_holder {
    width: 75%;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.98) 100%
    );
    border-radius: 21px;
    padding: 45px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 25px 50px -12px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.1);
}

.study-process .text_holder::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgb(141,147,171) 0%,
        rgb(57,59,68) 50%,
        rgb(141,147,171) 100%
    );
    border-radius: calc(21px + 2px);
    z-index: -1;
    animation: borderFlow 6s linear infinite;
    opacity: 0.7;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.study-process .text_holder::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgb(57,59,68) 90deg,
        transparent 180deg,
        rgb(141,147,171) 270deg,
        transparent 360deg
    );
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.study-process .text_holder h4 {
    color: #000000;
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid rgb(57,59,68);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.study-process .text_holder div {
    position: relative;
    padding: 25px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0) 100%
    );
    border-radius: 10px;
}

.study-process .text_holder p {
    color: #000000;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Ubuntu, sans-serif;
    position: relative;
    padding-left: 25px;
}

.study-process .text_holder p::before {
    content: '>';
    position: absolute;
    left: 0;
    color: rgb(57,59,68);
    font-weight: 700;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .study-process .text_holder {
        width: 85%;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .study-process .text_holder {
        width: 100%;
        padding: 30px;
    }
    
    .study-process .work_holder {
        padding: 40px 0;
    }
    
    .study-process .text_holder h4 {
        font-size: calc(37px * 0.9);
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .study-process .work_holder {
        padding: 30px 0;
    }
    
    .study-process .text_holder {
        padding: 25px;
    }
    
    .study-process .text_holder div {
        padding: 15px;
    }
    
    .study-process .text_holder h4 {
        font-size: calc(37px * 0.8);
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .study-process .text_holder p {
        font-size: calc(12px * 0.95);
        padding-left: 20px;
        line-height: 1.6;
    }
}.welcome-board {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.welcome-board .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(141,147,171);
    transition: transform 0.3s ease;
}
.welcome-board .style_element {
    position: relative;
    width: 70%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 25px;
    text-align: left;
    transition: background 0.3s ease;
}
.welcome-board .style_element h1 {
    font-size: 45px;
    font-weight: 700;
    color: rgb(141,147,171);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(141,147,171);
}
.welcome-board .style_element h3 {
    font-size: 22px;
    font-weight: 600;
    color: rgb(57,59,68);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgb(57,59,68);
}
.welcome-board .style_element p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.welcome-board .style_element::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(141,147,171,0.5) 10%, transparent 70%);
    z-index: 0;
    opacity: 0.6;
    filter: blur(10px);
    transition: all 0.3s ease;
}
.welcome-board .style_element::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(57,59,68,0.5) 10%, transparent 70%);
    z-index: 0;
    opacity: 0.6;
    filter: blur(10px);
    transition: all 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .welcome-board .title_page_holder {
        min-height: 320px;
        height: auto;
    }
    .welcome-board .style_element {
        width: 90%;
        padding: 20px;
    }
    .welcome-board .style_element h1 {
        font-size: 37px;
    }
    .welcome-board .style_element h3 {
        font-size: 16px;
    }
    .welcome-board .style_element p {
        font-size: 14px;
    }
}
.wrapper-structure .welcome-board .style_element {
    position: static;
    height: 100%;
    padding: 40px;
    z-index: 1;
    width: 60%;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    padding: 50px 30px;
    top: 0;
    transition: all 0.3s ease;
}

.wrapper-structure .welcome-board .title_page_holder {
    height: 450px;
    min-height: unset;
    background-position: center;
    background-size: cover;
    justify-content: flex-start;
}
.wrapper-structure .welcome-board .style_element h1 {
    text-align: left;
    font-size: 36px;
    position: relative;
    z-index: 1;
    color: rgb(141,147,171);
    text-shadow: 0 0 10px #ffffff;
}
.wrapper-structure .welcome-board .style_element h3 {
    text-align: left;
    font-size: 18px;
    position: relative;
    z-index: 1;
    color: rgb(57,59,68);
    text-shadow: 0 0 10px rgb(57,59,68);
}
.wrapper-structure .welcome-board .style_element p {
    text-align: left;
    font-size: 18px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1200px) {
    .wrapper-structure .welcome-board .style_element {
        padding: 30px;
    }
}
@media only screen and (max-width: 800px) {
    .wrapper-structure .welcome-board .style_element {
        width: 100%;
        padding: 80px 30px;
    }
    .wrapper-structure .welcome-board .style_element::after {
        display: none;
    }
    .wrapper-structure .welcome-board .title_page_holder {
        height: auto;
    }
}.join-our-mailing-list {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.join-our-mailing-list .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join-our-mailing-list input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(57,59,68,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.join-our-mailing-list h2 {
    margin-bottom: 20px;
    text-align: center;
}

.join-our-mailing-list .button {
    background: rgb(57,59,68);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.join-our-mailing-list .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .join-our-mailing-list .holder {
        flex-direction: column;
    }

    .join-our-mailing-list {
        padding: 30px 20px;
    }

    .join-our-mailing-list input {
        min-width: unset;
    }

    .join-our-mailing-list .button {
        flex-shrink: unset;
    }

    .join-our-mailing-list .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .join-our-mailing-list input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .wrapper-structure .join-our-mailing-list .holder h2 {
        font-size: 20px;
    }
}

.wrapper-structure .join-our-mailing-list {
    position: relative;
    background: linear-gradient(135deg, rgb(141,147,171) 0%, rgb(57,59,68) 100%);
    padding: 80px 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wrapper-structure .join-our-mailing-list::before {
    content: "";
    display: block;
    width: 200%;
    height: 200%;
    background: rgb(141,147,171,0.5);
    position: absolute;
    top: -50px;
    left: -50px;
    border-radius: 50%;
    z-index: 0;
}

.wrapper-structure .join-our-mailing-list .container {
    position: relative;
    z-index: 1;
}

.wrapper-structure .join-our-mailing-list .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.wrapper-structure .join-our-mailing-list h2 {
    color: #000000;
    font-size: 33px;
    font-family: Ubuntu, sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper-structure .join-our-mailing-list .input_holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.wrapper-structure .join-our-mailing-list input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgb(57,59,68,0.5);
    border-radius: 21px;
    background: #ffffff;
    color: #000000;
    font-family: Ubuntu, sans-serif;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.wrapper-structure .join-our-mailing-list input[type="email"]:focus {
    border-color: rgb(141,147,171);
    box-shadow: 0 0 10px rgb(141,147,171,0.5);
}

.wrapper-structure .join-our-mailing-list .subscribe_button {
    background: rgb(57,59,68);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 21px;
    font-size: 20px;
    font-family: Ubuntu, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wrapper-structure .join-our-mailing-list .subscribe_button:hover {
    background: #000000;
}

@media only screen and (max-width: 800px) {
    .wrapper-structure .join-our-mailing-list {
        padding: 30px 20px;
    }

    .wrapper-structure .join-our-mailing-list .holder {
        flex-direction: column;
        width: 100%;
        padding: 30px;
    }

    .wrapper-structure .join-our-mailing-list .input_holder {
        flex-direction: column;
    }

    .wrapper-structure .join-our-mailing-list h2 {
        margin-bottom: 16px;
        padding: 0 5px;
    }

    .wrapper-structure .join-our-mailing-list input {
        margin: 0;
        margin-bottom: 16px;
        width: 100%;
    }
}