* {
    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;
}
.tool_wrapper-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(166,166,166);
}
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;
    }
}.tool_get_help_info {
    color: #000000;
    background: radial-gradient(circle at top left, rgb(83,83,83), rgb(166,166,166));
    padding: 10vh 0;
    overflow: hidden;
    position: relative;
}
.tool_get_help_info .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 28px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    border: 2px solid rgb(71,112,129);
    max-width: 90vw;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    background: rgba(0, 0, 0, 0.5);
}
.tool_get_help_info .holder .info_holder div.tool_business_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.tool_get_help_info .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.tool_get_help_info .holder .info_holder > div > div {
    margin: 5px 0;
}
.tool_get_help_info .holder .info_holder>div span {
    margin-left: 8px;
}
.tool_get_help_info .contact_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5vw;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.tool_get_help_info .contact_holder h2 {
    font-size: 30px;
    color: rgb(71,112,129);
    margin-bottom: 1.5vw;
    text-shadow: 0 0 15px rgb(71,112,129);
    position: relative;
    z-index: 2;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}
.tool_get_help_info .contact_holder h2:hover {
    color: rgb(83,83,83);
    text-shadow: 0 0 25px rgb(83,83,83);
}
.tool_get_help_info .contact_holder .contact_description {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    margin: 2vw 0;
    padding: 2vw;
    border: 2px solid rgb(71,112,129);
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(71,112,129);
    max-width: 90vw;
    min-width: 280px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.tool_get_help_info .contact_holder .contact_description:hover {
    box-shadow: 0 0 20px rgb(71,112,129);
}
.tool_get_help_info .contact_holder .photo {
    width: 100%;
    height: 50vh;
    border-radius: 28px;
    margin-bottom: 2vw;
    position: relative;
    transition: filter 0.4s ease, transform 0.4s ease;
    border: 2px solid rgb(71,112,129);
}
@keyframes hoverEffect {
    0% {
        filter: brightness(100%);
    }
    50% {
        filter: brightness(120%);
    }
    100% {
        filter: brightness(100%);
    }
}
.tool_get_help_info .photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 255, 255, 0.3), rgba(0, 255, 255, 0));
    border-radius: 28px;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.tool_get_help_info .photo:hover::before {
    opacity: 0.7;
}
.tool_get_help_info .info_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2vw;
    border-radius: 28px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border: 2px solid rgb(71,112,129);
    position: relative;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}
@keyframes infoHover {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 1);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
}
.tool_get_help_info .info_holder:hover {
    animation: infoHover 0.6s ease;
}
.tool_get_help_info .info_holder > div {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw;
    font-size: 14px;
    color: #ffffff;
    position: relative;
}
.tool_get_help_info .info_holder svg {
    width: 24px;
    height: 24px;
    fill: rgb(71,112,129);
    margin-right: 12px;
    transition: fill 0.4s ease;
}
.tool_get_help_info .info_holder svg:hover {
    fill: rgb(83,83,83);
}
.tool_get_help_info .info_holder a {
    color: rgb(71,112,129);
    text-decoration: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
    position: relative;
}
.tool_get_help_info .info_holder a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(71,112,129);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}
.tool_get_help_info .info_holder a:hover {
    color: rgb(83,83,83);
    text-shadow: 0 0 10px rgb(83,83,83);
}
.tool_get_help_info .info_holder a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.tool_get_help_info .contact_politics {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2vw;
    margin-top: 25px;
    border-radius: 28px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    border: 2px solid rgb(71,112,129);
    position: relative;
}
.tool_get_help_info .contact_politics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(71,112,129);
    border-radius: 28px 28px 0 0;
    z-index: -1;
}
.tool_get_help_info .contact_politics > div {
    margin-bottom: 2vw;
}
.tool_get_help_info .contact_politics > div h4 {
    font-weight: 600;
    font-size: 24px;
    color: rgb(71,112,129);
    margin-bottom: 1vw;
    text-shadow: 0 0 10px rgb(71,112,129);
}
.tool_get_help_info .contact_politics > div p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}
@media only screen and (max-width: 768px) {
    .tool_get_help_info .container {
        max-width: 100vw;
        padding: 4vw;
    }
    .tool_get_help_info .contact_holder {
        padding: 6vw;
    }
    .tool_get_help_info .contact_holder .photo {
        height: 40vh;
    }
    .tool_get_help_info .contact_description {
        padding: 3vw;
    }
    
    .tool_get_help_info .contact_politics {
        padding: 4vw;
    }
}
@media only screen and (max-width: 480px) {
    .tool_get_help_info .container {
        padding: 2vw;
    }
    .tool_get_help_info .contact_holder {
        padding: 4vw;
    }
    .tool_get_help_info .contact_holder .photo {
        height: 30vh;
    }
    .tool_get_help_info .contact_description {
        padding: 2vw;
        font-size: 14px;
    }
    .tool_get_help_info .contact_politics {
        padding: 3vw;
    }
}
.tool_meet_us {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(83,83,83), rgb(71,112,129,0.5));
    color: #ffffff;
    font-family: Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.tool_wrapper-viewport .tool_meet_us .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 90%;
    margin: 0 auto;
}

.tool_wrapper-viewport .tool_meet_us .holder::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgb(71,112,129), transparent);
    opacity: 0.1;
    z-index: -1;
    transform: rotate(45deg);
}

.tool_wrapper-viewport .tool_meet_us .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.tool_wrapper-viewport .tool_meet_us .photo {
    width: 350px;
    height: 350px;
    border-radius: 24px;
    margin-bottom: 40px;
    border: 3px solid rgb(71,112,129);
    box-shadow: 0 0 20px rgb(71,112,129);
}

.tool_wrapper-viewport .tool_meet_us .style_element {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(83,83,83);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.tool_wrapper-viewport .tool_meet_us h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tool_wrapper-viewport .tool_meet_us p {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 20px;
    text-align: justify;
}

@media only screen and (max-width: 1200px) {
    .tool_wrapper-viewport .tool_meet_us .photo {
        width: 300px;
        height: 300px;
    }

    .tool_wrapper-viewport .tool_meet_us .style_element {
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .tool_wrapper-viewport .tool_meet_us .photo {
        width: 250px;
        height: 250px;
    }

    .tool_wrapper-viewport .tool_meet_us .style_element {
        padding: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .tool_wrapper-viewport .tool_meet_us .style_element {
        padding: 15px;
    }

    .tool_wrapper-viewport .tool_meet_us .photo {
        width: 200px;
        height: 200px;
    }

    .tool_wrapper-viewport .tool_meet_us h2 {
        font-size: calc(32px - 5px);
    }

    .tool_wrapper-viewport .tool_meet_us p {
        font-size: calc(17px - 2px);
    }
}.tool_join_list {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.tool_join_list .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tool_join_list input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(83,83,83,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.tool_join_list h2 {
    margin-bottom: 20px;
    text-align: center;
}

.tool_join_list .button {
    background: rgb(83,83,83);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.tool_join_list .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .tool_join_list .holder {
        flex-direction: column;
    }

    .tool_join_list {
        padding: 30px 20px;
    }

    .tool_join_list input {
        min-width: unset;
    }

    .tool_join_list .button {
        flex-shrink: unset;
    }

    .tool_join_list .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .tool_join_list input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .tool_wrapper-viewport .tool_join_list .holder h2 {
        font-size: 20px;
    }
}

.tool_wrapper-viewport .tool_join_list .holder {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 50%;
    width: 80%;
    border-radius: 100px;
    background: rgb(166,166,166);
    margin: auto;
    padding: 40px 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool_wrapper-viewport .tool_join_list .holder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tool_wrapper-viewport .tool_join_list h2 {
    grid-column: span 2;
    color: rgb(71,112,129);
    margin: 0 0 20px;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tool_wrapper-viewport .tool_join_list .input_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 50%;
}

.tool_wrapper-viewport .tool_join_list input {
    border-radius: 23px;
    background: #ffffff;
    color: #000000;
    margin-bottom: 15px;
    border: 2px solid rgb(71,112,129);
    padding: 15px 20px;
    font-size: 13px;
    width: 100%;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.tool_wrapper-viewport .tool_join_list input:focus {
    border: 2px solid rgb(83,83,83);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tool_wrapper-viewport .tool_join_list .button {
    background: rgb(71,112,129);
    border-radius: 23px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tool_wrapper-viewport .tool_join_list .button:hover {
    background: rgb(83,83,83);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tool_wrapper-viewport .tool_join_list::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(71,112,129,0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.9;
}

@media only screen and (max-width: 800px) {
    .tool_wrapper-viewport .tool_join_list {
        padding: 30px 20px;
    }

    .tool_wrapper-viewport .tool_join_list .holder {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 30px;
    }

    .tool_wrapper-viewport .tool_join_list h2 {
        margin-bottom: 20px;
    }

    .tool_wrapper-viewport .tool_join_list .input_holder {
        width: 100%;
    }

    .tool_wrapper-viewport .tool_join_list input {
        width: 100%;
    }

    .tool_wrapper-viewport .tool_join_list .button {
        width: 100%;
        padding: 15px 0;
    }
}.tool_instructor_history {
    padding: 60px 0;
    background: linear-gradient(180deg, rgb(166,166,166) 0%, rgb(83,83,83,0.5) 100%);
    font-family: Roboto, sans-serif;
}
.tool_instructor_history .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(71,112,129);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.tool_instructor_history .review .photo {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgb(71,112,129);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.tool_instructor_history .review .photo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.tool_instructor_history .worker_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}
.tool_instructor_history .worker_description p.name {
    margin-bottom: 5px;
    font-size: 43px;
    font-weight: 700;
    color: rgb(71,112,129);
}
.tool_instructor_history .worker_description p.job {
    font-size: 19px;
    font-weight: 300;
    color: #ffffff;
}
.tool_instructor_history .worker_info {
    width: 100%;
}
.tool_instructor_history .worker_info p {
    margin: 20px 0;
    padding: 20px;
    background: rgb(71,112,129,0.5);
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease-in-out;
}
.tool_instructor_history .worker_info p:hover {
    transform: translateY(-5px);
}
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.tool_instructor_history .review {
    animation: fadeIn 0.8s ease-in-out;
}
@media only screen and (max-width: 800px) {
    .tool_instructor_history .review {
        padding: 20px;
    }
    .tool_instructor_history .review .photo {
        width: 150px;
        height: 150px;
    }
    .tool_instructor_history .worker_description {
        margin-bottom: 10px;
    }
    .tool_instructor_history .worker_info p {
        padding: 15px;
    }
}
.main_header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}
.main_header .header_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(71,112,129);
    font-weight: 700;
    font-size: 23px;
    transition: color 0.3s ease;
}
.main_header .header_logo:hover {
    color: rgb(83,83,83);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(71,112,129);
    transition: fill 0.3s ease;
}
.main_header .header_logo:hover svg,
.main_header .header_logo:hover img {
    fill: rgb(83,83,83);
}
.main_header .header_description {
    font-size: 16px;
    color: #000000;
    margin-left: 20px;
    position: relative;
    padding-left: 15px;
}
.main_header .header_description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: rgb(71,112,129);
}
.main_header .header_menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease;
}
.main_header .header_menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(71,112,129);
    transition: width 0.3s ease;
}
.main_header .header_menu a:hover,
.main_header .header_menu a:focus {
    color: rgb(71,112,129);
}
.main_header .header_menu a:hover::after,
.main_header .header_menu a:focus::after {
    width: 100%;
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 0;
        padding-top: 15px;
    }
    .main_header .header_description::before {
        left: 0;
        top: 0;
        transform: none;
        width: 50px;
        height: 3px;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgb(83,83,83,0.5);
    }
    .main_header .header_menu a:last-child {
        border-bottom: none;
    }
    .main_header .header_menu a::after {
        display: none;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgb(71,112,129);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        transition: none !important;
    }
}.tool_course_demographic {
    position: relative;
    width: 100%;
}

.tool_course_demographic .who_needs_background {
    position: relative;
    padding: 140px 0;
    isolation: isolate;
}

.tool_course_demographic .who_needs_background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgb(71,112,129,0.5) 0%,
        rgba(0, 0, 0, 0.5) 70%
    );
    z-index: 1;
}

.tool_course_demographic .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.tool_course_demographic .who_needs_text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool_course_demographic .who_needs_text h3 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin-bottom: 80px;
    line-height: 1.3;
    position: relative;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000,
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.tool_course_demographic .who_needs_text h3::before,
.tool_course_demographic .who_needs_text h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: rgb(71,112,129);
    bottom: -20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tool_course_demographic .who_needs_text h3::before {
    left: 50%;
    transform: translateX(-70px);
}

.tool_course_demographic .who_needs_text h3::after {
    left: 50%;
    transform: translateX(10px);
}

.tool_course_demographic .who_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    perspective: 1000px;
}

.tool_course_demographic .who_needs_item {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.tool_course_demographic .who_needs_item * {
    color: #ffffff !important;
}

.tool_course_demographic .who_needs_item:nth-child(3n-1) {
    transform: translateY(40px);
}

.tool_course_demographic .who_needs_item:nth-child(3n) {
    transform: translateY(80px);
}

.tool_course_demographic .who_needs_item svg {
    width: 32px;
    height: 32px;
    fill: rgb(71,112,129);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: translateZ(20px);
}

.tool_course_demographic .who_needs_item span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    transform: translateZ(10px);
    text-shadow: 
        -1px -1px 1px rgba(0, 0, 0, 0.8),
        1px -1px 1px rgba(0, 0, 0, 0.8),
        -1px 1px 1px rgba(0, 0, 0, 0.8),
        1px 1px 1px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.tool_course_demographic .who_needs_item:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(10px);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

.tool_course_demographic .who_needs_item:nth-child(3n-1):hover {
    transform: translateY(40px) rotateX(5deg) rotateY(-5deg) translateZ(10px);
}

.tool_course_demographic .who_needs_item:nth-child(3n):hover {
    transform: translateY(80px) rotateX(5deg) rotateY(-5deg) translateZ(10px);
}

@media (max-width: 1400px) {
    .tool_course_demographic .container {
        padding: 0 40px;
    }

    .tool_course_demographic .who_items {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .tool_course_demographic .who_needs_text h3 {
        font-size: calc(42px * 0.9);
        margin-bottom: 70px;
    }

    .tool_course_demographic .who_needs_item {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .tool_course_demographic .who_items {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool_course_demographic .who_needs_item:nth-child(3n-1),
    .tool_course_demographic .who_needs_item:nth-child(3n) {
        transform: none;
    }

    .tool_course_demographic .who_needs_item:nth-child(even) {
        transform: translateY(40px);
    }

    .tool_course_demographic .who_needs_text h3 {
        font-size: calc(42px * 0.8);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .tool_course_demographic .who_needs_background {
        padding: 100px 0;
    }

    .tool_course_demographic .who_needs_text h3 {
        font-size: calc(42px * 0.7);
        margin-bottom: 50px;
    }

    .tool_course_demographic .who_items {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tool_course_demographic .who_needs_item,
    .tool_course_demographic .who_needs_item:nth-child(even) {
        transform: none;
    }

    .tool_course_demographic .who_needs_item span {
        font-size: calc(24px * 0.9);
    }
}

@media (max-width: 576px) {
    .tool_course_demographic .who_needs_background {
        padding: 80px 0;
    }

    .tool_course_demographic .container {
        padding: 0 20px;
    }

    .tool_course_demographic .who_needs_text h3 {
        font-size: calc(42px * 0.6);
        margin-bottom: 40px;
    }

    .tool_course_demographic .who_needs_text h3::before,
    .tool_course_demographic .who_needs_text h3::after {
        width: 40px;
        bottom: -15px;
    }

    .tool_course_demographic .who_needs_text h3::before {
        transform: translateX(-50px);
    }

    .tool_course_demographic .who_needs_text h3::after {
        transform: translateX(10px);
    }

    .tool_course_demographic .who_needs_item {
        padding: 25px;
    }

    .tool_course_demographic .who_needs_item svg {
        width: 28px;
        height: 28px;
    }
}.tool_contact_information {
    padding: 80px 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: Roboto, sans-serif;
}

.tool_contact_information h3 {
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.tool_contact_information .form {
    background: rgb(166,166,166);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.tool_contact_information .form:hover {
    transform: scale(1.02);
}

.tool_contact_information form input {
    color: #000000;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgb(83,83,83,0.5);
    padding: 15px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    width: 100%;
}

.tool_contact_information form input:focus {
    border-color: rgb(71,112,129);
    box-shadow: 0 0 8px rgb(71,112,129,0.5);
    transform: scale(1.01);
}

.tool_contact_information form .button {
    background: rgb(71,112,129);
    color: #ffffff;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    align-self: center;
}

.tool_contact_information form .button:hover {
    background: rgb(83,83,83);
    transform: scale(1.05);
}

.tool_contact_information .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool_contact_information .holder>div {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.tool_contact_information .form_text {
    margin-bottom: 15px;
    font-size: 12px;
    color: #000000;
    text-align: center;
    line-height: 1.5;
}

.tool_contact_information .name_holder {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.tool_contact_information .name_holder input {
    flex: 1;
}

.tool_contact_information .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tool_contact_information .agree input[type=checkbox] {
    width: auto;
    margin: 0 10px 0 0;
    cursor: pointer;
}

.tool_contact_information .agree label {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #000000;
}

.tool_contact_information .agree a {
    margin-left: 5px;
    color: rgb(71,112,129);
    text-decoration: none;
    transition: color 0.3s;
}

.tool_contact_information .agree a:hover {
    color: rgb(83,83,83);
}

@media only screen and (max-width: 600px) {
    .tool_contact_information {
        padding: 50px 10px;
    }
    .tool_contact_information .holder {
        flex-direction: column;
    }
    .tool_contact_information .holder>div {
        width: 100%;
        padding: 0;
    }
    .tool_contact_information h3 {
        font-size: 47px;
    }
    .tool_contact_information form input {
        padding: 10px;
    }
    .tool_contact_information form .button {
        width: 100%;
    }
    .tool_contact_information .name_holder {
        flex-direction: column;
        gap: 0;
    }
    .tool_contact_information .holder .form {
        padding: 20px;
    }
}.tool_welcome_board .title_page_holder {
    background-size: cover;
    background-position: center !important;
}

.tool_welcome_board .style_element h1 {
    color: rgb(83,83,83);
}

.tool_welcome_board .style_element h3 {
    color: rgb(83,83,83);
    text-align: right;
    font-size: 20px;
    margin-bottom: 8px;
}

.tool_welcome_board .style_element p {
    color: #000000;
    text-align: right;
}

.tool_welcome_board {
    width: 100%;
}

.tool_welcome_board .title_page_holder {
    width: 100%;
    min-height: 680px;
    height: auto;
    position: relative;
}

.tool_welcome_board .style_element {
    position: absolute;
    right: 0px;
    bottom: -1px;
    background: #ffffff;
    width: 65%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    padding: 50px 50px 50px 30%;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 680px;
    border-radius: 0;
}

.tool_welcome_board .style_element h1 {
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
}

.tool_welcome_board .style_element p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 16px;
}

@media only screen and (max-width: 800px) {
    .tool_welcome_board .title_page_holder {
        min-height: 320px;
        height: auto;
    }

    .tool_welcome_board .style_element {
        min-width: unset;
        width: 100%;
        clip-path: polygon(100% 100%, 100% -175%, 0 100%);
        padding: 100px 30px 30px 35%;
        text-align: right;
        min-width: unset;
    }

    .tool_welcome_board .style_element h1 {
        font-size: 18px;
    }

    .tool_welcome_board .style_element h3 {
        font-size: 16px;
    }

    .tool_welcome_board .style_element p {
        font-size: 14px;
    }


}

.tool_wrapper-viewport .tool_welcome_board .style_element {
    clip-path: none;
    height: auto;
    width: 800px;
    max-width: 50%;
    min-height: 260px;
    border-top-right-radius: 50px;
    padding: 50px 110px 30px;
    left: calc(50% - 600px);
    align-items: flex-start;
    justify-content: center;
}

.tool_wrapper-viewport .tool_welcome_board .style_element h1 {
    font-size: 40px;
    text-align: left;
}

.tool_wrapper-viewport .tool_welcome_board .style_element h3 {
    text-align: left;
}

.tool_wrapper-viewport .tool_welcome_board .style_element p {
    text-align: left;
}

.tool_wrapper-viewport .tool_wrapper-viewport .tool_welcome_board .title_page_holder {
    height: auto;
}

@media only screen and (max-width: 1200px) {
    .tool_wrapper-viewport .tool_welcome_board .style_element {
        left: 0;
        max-width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .tool_wrapper-viewport .tool_welcome_board .style_element {
        border-radius: 0;
        width: 100%;
        padding: 20px;
        position: static;

    }

    .tool_wrapper-viewport .tool_welcome_board .style_element h1 {
        font-size: 30px;
    }

    .tool_wrapper-viewport .tool_welcome_board .title_page_holder {
        min-height: 480px;
    }
}.tool_program_details {
    padding-top: 90px;
    padding-bottom: 90px;
    font-family: Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tool_program_details h2 {
    color: rgb(71,112,129);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.tool_program_details .content {
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #ffffff;
}
.tool_program_details .content:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}
.tool_program_details h3 {
    color: rgb(83,83,83);
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}
.tool_program_details p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}
.tool_program_details .button {
    background: rgb(71,112,129);
    color: #ffffff;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}
.tool_program_details .button:hover {
    background: rgb(83,83,83);
    transform: translateY(-5px);
}
.tool_program_details .holder {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.tool_program_details .items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.tool_program_details .course {
    padding: 20px;
    margin-bottom: 40px;
}
.tool_program_details .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
}
.tool_program_details .text_holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}
.tool_program_details .photo {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .tool_program_details .items {
        flex-direction: column;
    }
    .tool_program_details h2 {
        font-size: 20px;
    }
    .tool_program_details h3 {
        font-size: 17px;
    }
    .tool_program_details .course {
        max-width: 100%;
        flex-basis: 100%;
        padding: 0;
    }
    .tool_program_details {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .tool_wrapper-viewport .tool_program_details .content {
        padding: 10px;
    }
}
.tool_wrapper-viewport .tool_program_details {
    position: relative;
    overflow: hidden;
    background: rgb(166,166,166);
}
.tool_wrapper-viewport .tool_program_details .items {
    width: 100%;
}
.tool_wrapper-viewport .tool_program_details .content {
    border-radius: 10px;
    box-shadow: none;
}
.tool_wrapper-viewport .tool_program_details .text_holder {
    position: relative;
    z-index: 3;
    background: none;
    width: 100%;
    min-height: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: #000000;
    border: none;
}
.tool_wrapper-viewport .tool_program_details h3 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(83,83,83);
    margin: 0;
}
.tool_wrapper-viewport .tool_program_details p {
    padding: 0 40px 0 0;
    margin-top: 20px;
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}
.tool_wrapper-viewport .tool_program_details .button {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background: rgb(71,112,129);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.tool_wrapper-viewport .tool_program_details .button:hover {
    background: rgb(83,83,83);
    transform: translateY(-5px);
}
@media only screen and (max-width: 800px) {
    .tool_wrapper-viewport .tool_program_details .text_holder {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .tool_wrapper-viewport .tool_program_details p {
        padding: 0;
        font-size: 18px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .tool_wrapper-viewport .tool_program_details h3 {
        font-size: 17px;
    }
    .tool_wrapper-viewport .tool_program_details .button {
        margin-top: 20px;
    }
}.tool_advantages_outline {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(166,166,166), rgb(83,83,83,0.5));
    color: #000000;
    font-family: Roboto, sans-serif;
}
.tool_advantages_outline .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tool_advantages_outline .advantages_content {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}
.tool_advantages_outline .advantages_content h2 {
    font-size: 31px;
    color: rgb(71,112,129);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}
.tool_advantages_outline .advantages_content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(71,112,129);
    margin: 10px auto 0;
}
.tool_advantages_outline .advantages_photo_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.tool_advantages_outline .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);
}
.tool_advantages_outline .advantages_holder {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tool_advantages_outline .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;
}
.tool_advantages_outline .advantage_item:last-child {
    margin-bottom: 0;
}
.tool_advantages_outline .advantage_image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgb(71,112,129,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.tool_advantages_outline .advantage_image svg, .tool_advantages_outline .advantage_image svg path {
    width: 40px;
    height: 40px;
    fill: #000000;
}
.tool_advantages_outline .advantage_item h4 {
    font-size: 19px;
    color: #000000;
    margin: 0;
}
@media (max-width: 900px) {
    .tool_advantages_outline .advantages_photo_holder {
        flex-direction: column;
        align-items: center;
    }
    .tool_advantages_outline .photo {
        width: 100%;
        flex: auto;
        height: 300px;
    }
    .tool_advantages_outline .advantages_holder {
        width: 100%;
        align-items: center;
    }
    .tool_advantages_outline .advantage_item {
        width: 100%;
    }
}
.tool_thanksFrame {
    background-color: rgb(166,166,166);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.tool_thanksFrame .container {
    background: linear-gradient(135deg, rgb(71,112,129,0.5), rgb(83,83,83,0.5));
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tool_thanksFrame .container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}
.tool_thanksFrame h2 {
    font-family: Roboto, sans-serif;
    font-size: 48px;
    color: rgb(71,112,129);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.tool_thanksFrame h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgb(83,83,83);
}
.tool_thanksFrame p {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .tool_thanksFrame {
        padding: 40px 0;
    }
    .tool_thanksFrame .container {
        padding: 30px;
    }
    .tool_thanksFrame h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .tool_thanksFrame p {
        font-size: calc(14px - 2px);
        padding: 10px;
    }
}
footer {
  background-color: #f0f0f0;
  padding: 40px 0;
  color: #333;
  font-family: Roboto, sans-serif;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .logo_holder {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .logo_holder svg{
  width: 80px;
  height: 80px;
}
footer .logo_holder img {
  width: 80px;
  height: auto;
  margin-right: 10px;
}
footer .logo_holder h3 {
  font-size: 24px;
  margin: 0;
  color: #555;
}
footer .menu {
  margin-bottom: 30px;
}
footer .menu h5 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .menu li {
  margin-bottom: 10px;
}
footer .menu a {
  color: #777;
  text-decoration: none;
  font-size: 16px;
}
footer .menu a:hover {
  text-decoration: underline;
}
footer .contact_info {
  margin-bottom: 30px;
}
footer .contact_info h5 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .contact_info p {
  margin: 0;
  font-size: 16px;
}
footer .contact_info svg {
  width: 20px;
  height: 20px;
  fill: #888;
  margin-right: 10px;
}
footer .footer_agreement {
  color: #555;
  font-size: 14px;
}
footer .footer_agreement a {
  color: #777;
  text-decoration: none;
}
footer .footer_agreement a:hover {
  text-decoration: underline;
}
footer .copyright_info {
  color: #777;
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  
  footer .logo_holder {
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
  }
  footer .menu ul {
    text-align: center;
  }
  footer .menu li {
    display: inline-block;
    margin-right: 20px;
  }
}
.tool_privacy_wrapper {
    background-color: rgb(71,112,129);
    color: #ffffff;
    font-family: Roboto, sans-serif;
    padding: 2rem;
    box-shadow: 0 0 10px rgb(71,112,129,0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.tool_privacy_wrapper h1, .tool_privacy_wrapper h2 {
    margin-bottom: 0.75rem;
    color: rgb(71,112,129);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tool_privacy_wrapper h1 {
    font-size: 45px;
    font-weight: 700;
    border-left: 4px solid rgb(71,112,129);
    padding-left: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 0.5rem 1rem;
}
.tool_privacy_wrapper h2 {
    font-size: 35px;
    font-weight: 600;
    border-left: 4px solid rgb(83,83,83);
    padding-left: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 0.5rem 1rem;
}
.tool_privacy_wrapper h3, .tool_privacy_wrapper h4, .tool_privacy_wrapper h5, .tool_privacy_wrapper h6 {
    margin: 10px 0;
}
.tool_privacy_wrapper ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.tool_privacy_wrapper ul li {
    font-size: 16px;
    font-weight: 400;
    padding: 0.5rem;
    background-color: rgb(83,83,83,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tool_privacy_wrapper ul li::before {
    content: '⭑';
    color: rgb(71,112,129);
    font-size: 1.2rem;
}
.tool_privacy_wrapper p, .tool_privacy_wrapper span {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1rem;
}
.tool_privacy_wrapper div {
    margin-bottom: 1rem;
}
.tool_privacy_wrapper section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media only screen and (max-width: 800px) {
    .tool_privacy_wrapper {
        padding: 1.5rem;
        border-radius: 10px;
        gap: 1rem;
    }
    .tool_privacy_wrapper h1 {
        font-size: calc(20px * 0.9);
    }
    .tool_privacy_wrapper h2 {
        font-size: calc(20px * 0.9);
    }
    .tool_privacy_wrapper ul {
        gap: 0.5rem;
    }
    .tool_privacy_wrapper ul li {
        padding: 0.75rem;
    }
    .tool_privacy_wrapper ul li::before {
        font-size: 1rem;
    }
}