* {
    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: Roboto, sans-serif;
    color: #000000;
}
.inner-container-920 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(190,219,187);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.future-members-879 {
    padding-bottom: 80px;
    padding-top: 80px;
}
.future-members-879 .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.future-members-879 ul {
    list-style: none;
}
.future-members-879 ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}
.future-members-879 ul svg, .future-members-879 ul svg path {
    fill: rgb(141,181,150);
    width: 20px;
    height: 20px;
    position: absolute;
    left:0;
    flex-shrink: 0;
}

.future-members-879 h2 {
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px)  {
    .future-members-879 {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}footer {
    background: linear-gradient(145deg, rgb(141,181,150), rgb(112,112,112));
    color: #000000;
    font-family: Roboto, sans-serif;
    padding: 50px 0;
    border-top: 1px solid rgb(141,181,150,0.5);
    border-bottom: 1px solid rgb(141,181,150,0.5);
    transition: background 0.3s ease-in-out;
}
footer:hover {
    background: linear-gradient(145deg, rgb(141,181,150), rgb(112,112,112));
}
footer .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
footer .footer_info {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
}
footer .logo_holder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    padding: 20px;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
footer .logo_holder:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(141,181,150,0.5);
}
footer .logo_holder svg, 
footer .logo_holder img {
    width: 80px;
    height: 80px;
    fill: rgb(141,181,150);
}
footer h5 {
    font-size: 24px;
    color: rgb(141,181,150);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgb(141,181,150,0.5);
    padding-bottom: 5px;
    position: relative;
    text-shadow: 1px 1px var(--white-color_opacity);
}
footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: rgb(141,181,150);
    transition: width 0.3s ease;
}
footer h5:hover::after {
    width: 100%;
}
footer .menu {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
}
footer .menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    margin: 5px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}
footer .menu a:hover {
    background: rgb(141,181,150);
    color: #ffffff;
}
footer .contact_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}
footer .contact_info div svg {
    fill: rgb(141,181,150);
    width: 20px;
    height: 20px;
    margin-right: 10px;
    transition: fill 0.3s;
}
footer .contact_info div:hover svg {
    fill: rgb(112,112,112);
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 12px;
}
footer .footer_agreement {
    text-align: center;
    margin: 30px 0;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgb(141,181,150,0.5);
    padding-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
footer .copyright {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
}
footer .copyright_info {
    color: #ffffff;
    text-align: center;
    font-size: 12px;
}
footer .copyright_info a {
    color: rgb(141,181,150);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
}
footer .copyright_info a:hover {
    border-bottom: 1px solid rgb(141,181,150);
    color: rgb(112,112,112);
}
footer .menu_holder {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 800px) {
    footer .logo_holder {
        margin-bottom: 20px;
    }
    footer .menu_holder {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer .footer_info {
        flex-direction: column;
        align-items: center;
    }
    footer .menu {
        flex-direction: column;
        align-items: center;
    }
    footer .contact_info {
        margin-top: 10px;
        align-items: center;
    }
}
.course-info-075 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.course-info-075 h2 {
    color: rgb(112,112,112);
}
.course-info-075 .content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgb(0 0 0 / 18%);
}
.course-info-075 h3 {
    color: rgb(141,181,150);
}
.course-info-075 p {
    color: #000000;
}
.course-info-075 .button {
    background: rgb(112,112,112);
    color:  #ffffff;
    margin-top: 30px;
    width: fit-content;
}
.course-info-075 .button:hover {
    background: rgb(141,181,150);
}

.course-info-075 .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.course-info-075 .items {
    display: flex;
    justify-content: center;
    align-items: center;
}
.course-info-075 .course {
    padding: 12px;
    max-width: 100%;
}
.course-info-075 .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
}
.course-info-075 .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;

}
.course-info-075 h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
}
.course-info-075 .photo {
    height: 500px;
    width: calc(100% - 60px);
    margin-top: 30px;
}
.course-info-075 .text_holder {
    padding: 30px;
}
.course-info-075 h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}
.course-info-075 p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
}
.course-info-075 .button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 25px;
    text-decoration: none;
}

@media only screen and (max-width: 600px)  {
    .course-info-075 .items {
        flex-direction: column;
    }
    .course-info-075 h2 {
        font-size: 30px;
    }
    .course-info-075 h3 {
        font-size: 26px;
    }
    .course-info-075 .course {
        max-width: unset;
        width: 100%;
    }
    .course-info-075 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.inner-container-920 .course-info-075 .items {
    width: 100%;
}
.inner-container-920 .course-info-075 .items .course .content {
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.inner-container-920 .course-info-075 .photo {
    border-radius: 50px;
    height: 681px;
    width: 1022px;
    margin: 0;
}
.inner-container-920 .course-info-075 .text_holder {
    border-radius: 50px;
    border: 8px solid rgb(112,112,112);
    width: 60%;
    margin-top:-320px;
    background: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.inner-container-920 .course-info-075 h3 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}
.inner-container-920 .course-info-075 .button {
    display: inline;
    width: fit-content;
    margin-top: 35px;
    padding: 20px 45px;
    border-radius: 50px;
    background: rgb(141,181,150);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.inner-container-920 .course-info-075 .button:hover {
    background: rgb(112,112,112);
    color: #ffffff;
}
@media only screen and (max-width: 800px)  {
    .inner-container-920 .course-info-075 .photo {
        width: 340px;
        height: 316px;
    }
    .inner-container-920 .course-info-075 .text_holder {
        width: 90%;
        margin-top: -158px;
        padding: 20px;
    }
    .inner-container-920 .course-info-075 .items .course {
        padding: 0;
    }
    .inner-container-920 .course-info-075 h3 {
        font-size: 30px;
    }
}header .main_header {
    background: rgb(112,112,112);
    color: #ffffff;
    border-bottom: 2px solid rgb(141,181,150);
    padding: 20px 0;
}
header .logo_holder svg, header .logo_holder svg path, header .logo_holder img {
    fill: rgb(141,181,150);
}
header .menu a {
    color: rgb(112,112,112);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 10px 20px;
    font-size: 18px;
    border-bottom: 2px solid transparent;
}
header .menu a:hover {
    color: rgb(141,181,150);
    border-bottom: 2px solid rgb(141,181,150);
}
header .menu a.active {
    border-bottom: 2px solid rgb(141,181,150);
    color: rgb(141,181,150);
}
header {
    border-bottom: 1px solid rgb(141,181,150);
}
header .main_header {
    width: 100%;
}
header .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
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: 14px;
    font-weight: 600;
    color: rgb(112,112,112);
}
header .logo_holder .logo_desc {
    text-transform: uppercase;
}
header .logo_holder .logotype svg, header .logo_holder .logotype img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
}
header .menu {
    display: flex;
    gap: 15px;
}
body .inner-container-920 header .opened {
    display: flex;
}
@media only screen and (max-width: 1200px) {
    header .header_content {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }
    header .menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: #000000;
        padding: 20px;
    }
    header .menu a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgb(112,112,112,0.5);
    }
    header .menu a.active {
        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: 50px;
        height: 50px;
    }
    header .header_content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.inner-container-920 header .logotype {
    padding: 10px;
    border-radius: 27px;
}
.inner-container-920 header .main_header {
    background: rgb(112,112,112);
    position: relative;
}
.inner-container-920 header .main_header::before {
    position: absolute;
    content: "";
    top: 0;
    height: 4px;
    width: 100%;
    background: rgb(141,181,150);
    z-index: 0;
}
.inner-container-920 header .logo_holder .logotype svg, .inner-container-920 header .logo_holder .logotype img {
    margin: 0;
}
.inner-container-920 header .logo_holder {
    padding: 0;
}
.inner-container-920 header .menu {
    padding-top: 10px;
}
.inner-container-920 header .menu a {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}
.inner-container-920 header .menu a:hover {
    color: rgb(141,181,150);
}
.inner-container-920 header .header_content {
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 800px) {
    .inner-container-920 header .menu {
        background: none;
        align-items: center;
    }
    .inner-container-920 header .logo_holder .logotype svg, .inner-container-920 header .logo_holder .logotype img {
        width: 50px;
        height: 50px;
    }
    .inner-container-920 header .menu a {
        text-align: center;
    }
    .inner-container-920 header .logo_holder {
        justify-content: center;
        align-items: center;
    }
    .inner-container-920 header .menu {
        padding-bottom: 20px;
    }
}
.join-list-485 {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.join-list-485 .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.join-list-485 input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(112,112,112,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.join-list-485 h2 {
    margin-bottom: 20px;
    text-align: center;
}

.join-list-485 .button {
    background: rgb(112,112,112);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.join-list-485 .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .join-list-485 .holder {
        flex-direction: column;
    }

    .join-list-485 {
        padding: 30px 20px;
    }

    .join-list-485 input {
        min-width: unset;
    }

    .join-list-485 .button {
        flex-shrink: unset;
    }

    .join-list-485 .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .join-list-485 input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .inner-container-920 .join-list-485 .holder h2 {
        font-size: 20px;
    }
}

.inner-container-920 .join-list-485 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.inner-container-920 .join-list-485 h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #000000;
}

.inner-container-920 .join-list-485 input {
    padding: 6px 30px;
    height: 60px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #000000;
    font-weight: 300;
    font-size: 16px;
    margin-right: 30px;
    min-width: 40%;
}

.inner-container-920 .join-list-485 .input_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-container-920 .join-list-485 .button {
    padding: 6px 30px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #000000;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 16px;
}

@media only screen and (max-width: 800px) {
    .inner-container-920 .join-list-485 h2 {
        font-size: 22px;
    }

    .inner-container-920 .join-list-485 {
        padding: 50px 0;
    }

    .inner-container-920 .join-list-485 input {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }

    .inner-container-920 .join-list-485 .button {
        width: 100%;
    }
}.greeting-page-281 {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
.greeting-page-281 .title_page_holder {
    width: 100%;
    min-height: 700px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.greeting-page-281 .title_page_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(141,181,150,0.5), rgb(112,112,112,0.5));
    z-index: 1;
    backdrop-filter: blur(5px);
}
.greeting-page-281 .style_element {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 60px;
    border-radius: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.greeting-page-281 .style_element h1 {
    font-family: Roboto, sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: rgb(141,181,150);
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.greeting-page-281 .style_element h3 {
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(112,112,112);
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.greeting-page-281 .style_element p {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
    .greeting-page-281 .title_page_holder {
        min-height: 400px;
    }
    .greeting-page-281 .style_element {
        padding: 20px 30px;
    }
    .greeting-page-281 .style_element h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }
    .greeting-page-281 .style_element h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .greeting-page-281 .style_element p {
        font-size: 15px;
    }
}
.inner-container-920 .greeting-page-281 {
    position: relative;
    background: rgb(190,219,187);
}
.inner-container-920 .greeting-page-281 .title_page_holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(131, 162, 234, 0.2);
    z-index: 0;
    backdrop-filter: blur(6px);
}
.inner-container-920 .greeting-page-281 .style_element {
    position: relative;
    clip-path: none;
    margin: auto;
    height: auto;
    background: #ffffff;
    display: flex;
    padding: 30px 60px;
    flex-direction: column;
    min-height: 336px;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 50%;
}
.inner-container-920 .greeting-page-281 .title_page_holder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-container-920 .greeting-page-281 .style_element h1 {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: rgb(141,181,150);
    margin-top: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.inner-container-920 .greeting-page-281 .style_element h3 {
    color: rgb(112,112,112);
    text-align: center;
    z-index: 2;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.inner-container-920 .greeting-page-281 .style_element p {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 22px;
    line-height: 32px;
    color: #000000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 800px) {
    .inner-container-920 .greeting-page-281 .title_page_holder {
        padding: 20px;
    }
    .inner-container-920 .greeting-page-281 .style_element h1 {
        font-size: 28px;
        margin-top: 20px;
    }
    .inner-container-920 .greeting-page-281 .style_element {
        padding: 30px 10px;
        min-height: 300px;
        height: auto;
        width: auto;
    }
}.contact-form-box-765 {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff, rgb(190,219,187));
    font-family: Roboto, sans-serif;
    color: #000000;
    border: 1px solid rgb(112,112,112,0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.contact-form-box-765 h3 {
    color: rgb(141,181,150);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, rgb(141,181,150), rgb(112,112,112));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-form-box-765 .holder {
    display: flex;
    flex-direction: row;
    gap: 30px;
    background: #ffffff;
    border: 1px solid var(--white-color_opacity);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-form-box-765 .info {
    padding: 20px;
    width: 50%;
    background: linear-gradient(135deg, #ffffff, var(--white-color_opacity));
    color: #000000;
    border-right: 1px solid var(--white-color_opacity);
}
.contact-form-box-765 .info h5 {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-form-box-765 .info .logo_holder {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-form-box-765 .info .logo_holder svg, 
.contact-form-box-765 .info .logo_holder img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    fill: rgb(141,181,150);
}
.contact-form-box-765 .info .logo_holder span {
    font-size: 22px;
    color: #000000;
}
.contact-form-box-765 .info .contact_info > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.contact-form-box-765 .info .contact_info svg, 
.contact-form-box-765 .info .contact_info path {
    fill: rgb(141,181,150);
    width: 20px;
    height: 20px;
}
.contact-form-box-765 .info .contact_info span {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.5);
}
.contact-form-box-765 .form {
    padding: 20px;
    background: #ffffff;
    width: 50%;
    border-radius: 10px;
}
.contact-form-box-765 .form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form-box-765 .form form h3 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
}
.contact-form-box-765 form input {
    border: 1px solid var(--white-color_opacity);
    padding: 12px;
    font-size: 17px;
    background: #ffffff;
    border-radius: 10px;
    outline: none;
    width: 100%;
    border: 1px solid rgb(141,181,150);
    color: #000000;
    transition: background 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s;
}
.contact-form-box-765 form .name_holder {
    display: flex;
    justify-content: space-between;
}
.contact-form-box-765 form .name_holder input {
    width: 48%;
}
.contact-form-box-765 form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-form-box-765 form input:focus {
    background: var(--white-color_opacity);
    border: 1px solid rgb(141,181,150);
    box-shadow: 0 0 5px rgb(141,181,150);
}
.contact-form-box-765 form .button {
    padding: 12px;
    background: linear-gradient(135deg, rgb(141,181,150), rgb(112,112,112));
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 27px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-form-box-765 form .button:hover {
    background: linear-gradient(135deg, rgb(112,112,112), rgb(141,181,150));
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgb(141,181,150,0.5);
}
.contact-form-box-765 .agree {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-form-box-765 .agree input[type=checkbox] {
    width: auto;
    margin: 0;
    accent-color: rgb(141,181,150);
}
.contact-form-box-765 .agree label {
    font-size: 17px;
    color: #000000;
}
.contact-form-box-765 .agree a {
    color: rgb(141,181,150);
    text-decoration: underline;
    transition: color 0.3s;
}
.contact-form-box-765 .agree a:hover {
    color: rgb(112,112,112);
}
@media only screen and (max-width: 800px) {
    .contact-form-box-765 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .contact-form-box-765 .holder {
        flex-direction: column;
    }
    .contact-form-box-765 .info, 
    .contact-form-box-765 .form {
        width: 100%;
    }
    .contact-form-box-765 .info .logo_holder span {
        font-size: 12px;
    }
    .contact-form-box-765 .container .holder  h3 {
        font-size: 22px;
    }
}
.meet-us-837 .holder {
    background-size: cover;
}

.meet-us-837 .style_element {
    background: #ffffff;
}

.meet-us-837 {
    padding-bottom: 80px;
    padding-top: 80px;
}

.meet-us-837 h2 {
    color: rgb(112,112,112);
}

.meet-us-837 span {
    color: rgb(141,181,150);
}

.meet-us-837 p {
    color: #000000;
}

.meet-us-837 .holder {
    display: flex;
    justify-content: flex-end;
    padding: 40px;
    height: auto;
}

.meet-us-837 .style_element {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    min-width: 400px;
    padding: 20px;
}

.meet-us-837 .caption_holder {
    display: flex;
    justify-content: flex-end;
}

.meet-us-837 h2 {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
}

.meet-us-837 span {
    margin-bottom: 16px;
    font-size: 19px;
    font-weight: 600;
}

.meet-us-837 p {
    font-size: 18px;
    font-weight: 300;
}

@media only screen and (max-width: 600px) {
    .meet-us-837 .holder {
        padding: 0px;
    }

    .meet-us-837 .style_element {
        width: 100%;
        min-width: unset;
    }

    .meet-us-837 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .meet-us-837 h2 {
        font-size: 30px;
    }
}

.inner-container-920 .meet-us-837 .holder {
    height: auto;

}

.meet-us-837 {
    padding: 60px 0;
}

.inner-container-920 .meet-us-837 .holder .photo {
    display: block;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.inner-container-920 .meet-us-837 .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 500px;
}

.inner-container-920 .meet-us-837 .style_element {
    background: rgb(141,181,150);
    padding: 30px 30px 30px 200px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 368px;
}

.inner-container-920 .meet-us-837 h2 {
    color: #ffffff;
    margin-top: 35px;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 36px;
}

.inner-container-920 .meet-us-837 p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 16px;
    line-height: 25px;
}

@media only screen and (max-width: 1200px) {
    .inner-container-920 .meet-us-837 .holder .photo {
        width: 400px;
        height: 400px;
    }
}

@media only screen and (max-width: 800px) {
    .inner-container-920 .meet-us-837 .style_element {
        width: 100%;
        padding: 30px;
    }

    .inner-container-920 .meet-us-837 .holder .photo {
        width: 320px;
        height: 320px;
        position: relative;
        bottom: 20px;
        margin-bottom: -20px;
    }

    .inner-container-920 .meet-us-837 .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }

    .inner-container-920 .meet-us-837 h2 {
        font-size: 28px;
    }
}.thanksCard-154 {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.thanksCard-154 .container {
    max-width: 1000px;
    padding: 40px;
    border: 1px solid rgb(141,181,150);
    border-radius: 26px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    background: rgb(190,219,187);
}
.thanksCard-154 h2 {
    font-family: Roboto, sans-serif;
    font-size: 29px;
    font-weight: 600;
    color: rgb(141,181,150);
    margin-bottom: 20px;
    position: relative;
}
.thanksCard-154 h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: rgb(141,181,150);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.thanksCard-154 p {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 800px) {
    .thanksCard-154 {
        padding: 40px 0;
    }
    .thanksCard-154 h2 {
        font-size: 21px;
    }
    .thanksCard-154 p {
        font-size: 12px;
    }
}
.thanksCard-154 .container {
    position: relative;
    padding: 40px;
}
.thanksCard-154 .container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 26px;
    z-index: -1;
}
.thanksCard-154 h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background-color: rgb(112,112,112);
    margin: 20px auto 0;
}
.secure-bunker-390 {
    padding: 40px;
    width: 100%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: auto;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.secure-bunker-390::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;

    z-index: -1;
}

.secure-bunker-390 h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 45px;
    color: rgb(141,181,150);
    font-family: Roboto, sans-serif;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid rgb(141,181,150);
    padding-bottom: 10px;
}

.secure-bunker-390 h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 33px;
    color: rgb(112,112,112);
    font-family: Roboto, sans-serif;
    font-weight: 600;
    text-align: left;
    border-left: 4px solid rgb(112,112,112);
    padding-left: 15px;
}

.secure-bunker-390 h3, .secure-bunker-390 h4, .secure-bunker-390 h5, .secure-bunker-390 h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
    color: rgb(141,181,150);
    font-family: Roboto, sans-serif;
    font-weight: 400;
}

.secure-bunker-390 ul, .secure-bunker-390 ol {
    list-style: none;
    padding-left: 0;
    padding: 15px 0;
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    margin: 0;
}

.secure-bunker-390 li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.secure-bunker-390 li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: rgb(141,181,150);
    font-size: 1.2em;
    line-height: 1em;
    top: 50%;
    transform: translateY(-50%);
}

.secure-bunker-390 section {
    background: #000000;
    border: 1px solid rgb(112,112,112,0.5);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.secure-bunker-390 p, .secure-bunker-390 span, .secure-bunker-390 div {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    border-left: 3px solid rgb(141,181,150);
    padding-left: 15px;
}

@media only screen and (max-width: 800px) {
    .secure-bunker-390 {
        padding: 20px;
        width: 95%;
    }

    .secure-bunker-390 h1 {
        font-size: calc(24px - 6px);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .secure-bunker-390 h2 {
        font-size: calc(24px - 6px);
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .secure-bunker-390 ul, .secure-bunker-390 ol {
        padding-left: 15px;
    }

    .secure-bunker-390 li {
        padding-left: 20px;
    }

    .secure-bunker-390 p, .secure-bunker-390 span, .secure-bunker-390 div {
        margin-bottom: 15px;
        padding-left: 10px;
    }
}.client-testimonials-835 {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(112,112,112);
    color: #ffffff;
    font-family: Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.client-testimonials-835::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(141,181,150), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.client-testimonials-835 h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.client-testimonials-835 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.client-testimonials-835 .reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.client-testimonials-835 .review {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(112,112,112,0.5);
    border-radius: 21px;
    padding: 20px;
    width: calc(50% - 40px);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgb(141,181,150,0.5);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.client-testimonials-835 .review:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgb(141,181,150);
}

.client-testimonials-835 .photo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgb(141,181,150);
    background: rgb(141,181,150,0.5);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
}

.client-testimonials-835 .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-testimonials-835 .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.client-testimonials-835 .review span {
    color: rgb(141,181,150);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-testimonials-835 .review p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .client-testimonials-835 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .client-testimonials-835 h2 {
        font-size: 40px;
    }

    .client-testimonials-835 .review {
        width: 100%;
        padding: 15px;
        flex-direction: column;
    }
    .client-testimonials-835 .photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


.benefits-overview-047 .advantages_content h2 {
    color: rgb(112,112,112);
}

.benefits-overview-047 .advantage_item svg, .benefits-overview-047 .advantage_item svg path {
    fill: rgb(141,181,150);
}

.benefits-overview-047 .advantage_item p {
    color: #000000;
}

.benefits-overview-047 .advantage_item b {
    color: rgb(141,181,150);
}

.benefits-overview-047 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits-overview-047 .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits-overview-047 .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits-overview-047 .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 28px;
    font-weight: 600;
}

.benefits-overview-047 .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits-overview-047 .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits-overview-047 .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits-overview-047 .advantage_item svg, .benefits-overview-047 .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .inner-container-920 .benefits-overview-047 .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits-overview-047 .advantages_content h2 {
        font-size: 30px;
    }

    .benefits-overview-047 .advantages_holder {
        flex-direction: column;
    }

    .benefits-overview-047 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .inner-container-920 .benefits-overview-047 .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.inner-container-920 .benefits-overview-047 .advantages_content h2 {
    font-size: 48px;
    font-weight: 300;
}

.inner-container-920 .benefits-overview-047 {
    justify-content: space-between;
}

.inner-container-920 .benefits-overview-047 .advantage_item {
    padding: 30px;
    align-items: flex-start;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    justify-content: flex-start;
    width: 24%;
}

.inner-container-920 .benefits-overview-047 .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0 60px 0 rgba(0, 0, 0, 0.1);
}

.inner-container-920 .benefits-overview-047 .advantage_item svg, .inner-container-920 .benefits-overview-047 .advantage_item img {
    width: 50px;
    height: 50px;
}

.inner-container-920 .benefits-overview-047 .advantages_content h4 {
    text-align: left;
    font-size: 24px;
    font-weight: 600;

}

@media only screen and (max-width: 800px) {
    .inner-container-920 .benefits-overview-047 .advantage_item {
        width: 100%;
    }

    .inner-container-920 .benefits-overview-047 .advantages_content h2 {
        font-size: 28px;
    }
}