* {
    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;
}
.warp-container-eUm {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(226,232,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;
    }
}.training-results-OIt {
    position: relative;
    background: rgb(226,232,240);
    padding: 140px 0;
    overflow: hidden;
}

.training-results-OIt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(1px, rgb(148,163,184) 1px, transparent 0) 0 0 / 40px 40px,
        radial-gradient(1px, rgb(30,41,59) 1px, transparent 0) 20px 20px / 40px 40px;
    opacity: 0.1;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.training-results-OIt .container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.training-results-OIt .holder {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.training-results-OIt .photo {
    grid-column: 7 / -1;
    grid-row: 1;
    height: 600px;
    position: relative;
    border-radius: 16px 0 0 16px;
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

.training-results-OIt .photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgb(148,163,184,0.5), transparent 60%);
    mix-blend-mode: multiply;
}

.training-results-OIt .photo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(148,163,184),
        transparent
    );
    transform: translateY(-50%);
    opacity: 0;
    filter: blur(2px);
    animation: scanEffect 4s ease-in-out infinite;
}

@keyframes scanEffect {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
}

.training-results-OIt .text_holder {
    grid-column: 1 / 8;
    grid-row: 1;
    background: #ffffff;
    padding: 60px;
    border-radius: 0 16px 16px 0;
    position: relative;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.5);
}

.training-results-OIt .text_holder::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 48%, rgb(148,163,184) 50%, transparent 52%);
    opacity: 0.2;
}

.training-results-OIt .text_holder h2 {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}
@keyframes lineGrow {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0);
        opacity: 0;
        left: 100%;
    }
}

.training-results-OIt .text_holder ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 25px;
    counter-reset: experience-counter;
}

.training-results-OIt .text_holder li {
    position: relative;
    padding: 25px 25px 25px 80px;
    background: rgb(226,232,240);
    border-radius: 16px;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    counter-increment: experience-counter;
}

.training-results-OIt .text_holder li::before {
    content: counter(experience-counter, decimal-leading-zero);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: rgb(148,163,184);
    opacity: 0.5;
}

.training-results-OIt .text_holder li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.training-results-OIt .text_holder li svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    fill: currentColor;
    opacity: 0.1;
    transform: scale(2);
}

.training-results-OIt .text_holder li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg,
        rgb(148,163,184,0.5),
        transparent
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.training-results-OIt .text_holder li:hover::after {
    transform: scaleX(1);
}

@media (max-width: 1200px) {
    .training-results-OIt .photo {
        grid-column: 6 / -1;
    }

    .training-results-OIt .text_holder {
        grid-column: 1 / 7;
        padding: 40px;
    }

    .training-results-OIt .text_holder li {
        padding: 20px 20px 20px 70px;
    }

    .training-results-OIt .text_holder li::before {
        left: 20px;
    }
}

@media (max-width: 991px) {
    .training-results-OIt {
        padding: 100px 0;
    }

    .training-results-OIt .holder {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .training-results-OIt .photo {
        grid-column: 1 / -1;
        height: 400px;
        border-radius: 16px;
    }

    .training-results-OIt .text_holder {
        grid-column: 1 / -1;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .training-results-OIt {
        padding: 80px 0;
    }

    .training-results-OIt .container {
        padding: 0 20px;
    }

    .training-results-OIt .photo {
        height: 350px;
    }

    .training-results-OIt .text_holder {
        padding: 30px;
    }

    .training-results-OIt .text_holder h2 {
        font-size: calc(35px * 0.9);
        margin-bottom: 40px;
    }

    .training-results-OIt .text_holder li {
        padding: 20px 20px 20px 60px;
        font-size: calc(18px * 0.95);
    }
}

@media (max-width: 480px) {
    .training-results-OIt {
        padding: 60px 0;
    }

    .training-results-OIt .photo {
        height: 250px;
    }

    .training-results-OIt .text_holder {
        padding: 25px;
    }

    .training-results-OIt .text_holder h2 {
        font-size: calc(35px * 0.8);
        margin-bottom: 30px;
    }

    .training-results-OIt .text_holder li {
        padding: 15px 15px 15px 50px;
    }

    .training-results-OIt .text_holder li::before {
        left: 15px;
        font-size: calc(16px * 1.1);
    }
}header .main_header {
    min-height: 100px;
    background: rgb(30,41,59);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 2px solid rgb(148,163,184);
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main_header .header_holder {
    display: flex;
    align-items: center;
}
.main_header .header_holder .logo_holder {
    margin-right: 30px;
    border-right: 2px solid rgb(148,163,184);
    padding-right: 30px;
}
.main_header .header_holder .logo_holder svg, 
.main_header .header_holder .logo_holder img {
    height: 50px;
    width: auto;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-size: 16px;
    font-weight: 600;
    margin-right: auto;
    position: relative;
}
.main_header .header_menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main_header .header_menu a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

@media only screen and (max-width: 1200px) {
    header .main_header {
        flex-direction: column;
        align-items: flex-start;
        min-height: 80px;
        padding: 20px;
    }
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main_header .header_holder .logo_holder {
        margin-right: 0;
        border-right: none;
        padding-right: 0;
        margin-bottom: 10px;
    }
    .main_header .header_holder .logo_holder svg, 
    .main_header .header_holder .logo_holder img {
        height: 40px;
    }
    .main_header .header_description {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .main_header .header_description::before {
        width: 8px;
        height: 8px;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main_header .header_menu a {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgb(148,163,184);
        padding: 10px 15px;
    }
    .main_header .header_menu a:last-child {
        border-bottom: none;
    }
}.title-portal-Ufx {
    position: relative;
    overflow: hidden;
    background: rgb(226,232,240);
    padding: 100px 0;
}

.title-portal-Ufx .holder {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 600px;
    background: #000000;
    border-radius: 29px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgb(148,163,184);
    padding: 20px 0;
}

.title-portal-Ufx .photo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 29px;
    border-bottom-left-radius: 29px;
    filter: grayscale(100%) contrast(120%);
}

.title-portal-Ufx .text_holder {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgb(30,41,59), rgba(0, 0, 0, 0.5));
    padding: 60px 40px;
    color: #ffffff;
    width: 45%;
    flex-shrink: 0;
    border-top-right-radius: 29px;
    border-bottom-right-radius: 29px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgb(148,163,184);
}

.title-portal-Ufx .text_info {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.title-portal-Ufx .text_info svg {
    width: 60px;
    height: 60px;
    fill: rgb(148,163,184);
    margin-bottom: 20px;
}

.title-portal-Ufx .text_info h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(148,163,184);
    position: relative;
}

.title-portal-Ufx .text_info h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(148,163,184);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.title-portal-Ufx .text_info h2:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.title-portal-Ufx .text_info span {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
}

.title-portal-Ufx .text_holder .button {
    padding: 15px 30px;
    background: rgb(148,163,184);
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid rgb(148,163,184);
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.title-portal-Ufx .text_holder .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(30,41,59);
    transition: left 0.5s ease;
}

.title-portal-Ufx .text_holder .button:hover {
    background: transparent;
    color: rgb(148,163,184);
}

.title-portal-Ufx .text_holder .button:hover::before {
    left: 100%;
}

@media only screen and (max-width: 1200px) {
    .title-portal-Ufx .text_holder {
        width: 50%;
    }
}

@media only screen and (max-width: 800px) {
    .title-portal-Ufx .text_holder {
        width: 100%;
        border-top-left-radius: 29px;
        border-bottom-left-radius: 29px;
        border-top-right-radius: 29px;
    }
    .title-portal-Ufx .holder {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
        overflow: hidden;
    }
    .title-portal-Ufx .photo {
        width: 100%;
        height: 100%;
        border-bottom-left-radius: 0;
    }
}.stay-updated-zOy {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.stay-updated-zOy .holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stay-updated-zOy input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(30,41,59,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.stay-updated-zOy h2 {
    margin-bottom: 20px;
    text-align: center;
}

.stay-updated-zOy .button {
    background: rgb(30,41,59);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.stay-updated-zOy .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .stay-updated-zOy .holder {
        flex-direction: column;
    }

    .stay-updated-zOy {
        padding: 30px 20px;
    }

    .stay-updated-zOy input {
        min-width: unset;
    }

    .stay-updated-zOy .button {
        flex-shrink: unset;
    }

    .stay-updated-zOy .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .stay-updated-zOy input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .warp-container-eUm .stay-updated-zOy .holder h2 {
        font-size: 20px;
    }
}

.warp-container-eUm .stay-updated-zOy {
    background: rgb(148,163,184);
    padding: 20px 0;
}

.warp-container-eUm .stay-updated-zOy .holder {
    flex-direction: row;
    width: 80%;
    margin: auto;
}

.warp-container-eUm .stay-updated-zOy h2 {
    text-align: left;
    margin: 0;
    margin-right: 30px;
    color: #ffffff;
    font-size: 18px;
    line-height: 27px;
}

.warp-container-eUm .stay-updated-zOy input {
    margin: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    color: #ffffff;
    background: rgb(148,163,184);
    border: 2px solid #ffffff;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    padding: 6px 12px;
    line-height: 24px;
    height: 50px;
}

.warp-container-eUm .stay-updated-zOy input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.warp-container-eUm .stay-updated-zOy input::-ms-input-placeholder {
    color: #ffffff;
}

.warp-container-eUm .stay-updated-zOy .button {
    border-radius: 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 2px solid #ffffff;
    font-weight: 300;
    font-size: 16px;
    padding: 6px 12px;
    background: #ffffff;
    color: rgb(148,163,184);
    line-height: 24px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .warp-container-eUm .stay-updated-zOy .holder {
        flex-direction: column;
        width: 100%;
    }

    .warp-container-eUm .stay-updated-zOy .input_holder {
        flex-direction: row;
    }

    .warp-container-eUm .stay-updated-zOy h2 {
        margin: 0;
        margin-bottom: 16px;
        text-align: center;
    }

    .warp-container-eUm .stay-updated-zOy .button {
        padding-right: 24px;
    }
}
.advantages-outline-zrh .advantages_content h2 {
    color: rgb(30,41,59);
}

.advantages-outline-zrh .advantage_item svg, .advantages-outline-zrh .advantage_item svg path {
    fill: rgb(148,163,184);
}

.advantages-outline-zrh .advantage_item p {
    color: #000000;
}

.advantages-outline-zrh .advantage_item b {
    color: rgb(148,163,184);
}

.advantages-outline-zrh {
    padding-top: 80px;
    padding-bottom: 80px;
}

.advantages-outline-zrh .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.advantages-outline-zrh .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.advantages-outline-zrh .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 30px;
    font-weight: 600;
}

.advantages-outline-zrh .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.advantages-outline-zrh .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.advantages-outline-zrh .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.advantages-outline-zrh .advantage_item svg, .advantages-outline-zrh .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .warp-container-eUm .advantages-outline-zrh .advantages_holder {
        justify-content: center;
    }
    .warp-container-eUm .advantages-outline-zrh .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .advantages-outline-zrh .advantages_content h2 {
        font-size: 30px;
    }

    .advantages-outline-zrh .advantages_holder {
        flex-direction: column;
    }

    .advantages-outline-zrh {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .warp-container-eUm .advantages-outline-zrh .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.warp-container-eUm .advantages-outline-zrh {
    background-color: rgb(226,232,240);
    padding: 80px 20px;
}

.warp-container-eUm .advantages-outline-zrh .advantages_content h2 {
    color: rgb(148,163,184);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.warp-container-eUm .advantages-outline-zrh .advantages_description {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.warp-container-eUm .advantages-outline-zrh .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1%;
}

.warp-container-eUm .advantages-outline-zrh .advantage_item {
    background: #ffffff;
    padding: 24px;
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warp-container-eUm .advantages-outline-zrh .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.warp-container-eUm .advantages-outline-zrh .advantage_item:first-child {
    background: rgb(148,163,184);
    color: #ffffff;
}

.warp-container-eUm .advantages-outline-zrh .advantage_item:nth-child(2) {
    background: rgb(148,163,184,0.5);
}

.warp-container-eUm .advantages-outline-zrh .advantage_item:nth-child(3) {
    background: rgb(30,41,59,0.5);
}

.warp-container-eUm .advantages-outline-zrh .advantage_item:nth-child(4) {
    background: rgb(30,41,59);
    color: #ffffff;
}

.warp-container-eUm .advantages-outline-zrh .advantage_item svg, .warp-container-eUm .advantages-outline-zrh .advantage_item svg path {
    fill: rgba(0, 0, 0, 0.5);
    height: 120px;
    width: 120px;
}

.warp-container-eUm .advantages-outline-zrh .advantage_item .advantage_image {
    opacity: 0.8;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 0;
}

.warp-container-eUm .advantages-outline-zrh .advantage_item h4 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
    .warp-container-eUm .advantages-outline-zrh .advantage_item {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .warp-container-eUm .advantages-outline-zrh {
        padding: 50px 20px;
    }

    .warp-container-eUm .advantages-outline-zrh .advantages_content h2 {
        font-size: 30px;
    }

    .warp-container-eUm .advantages-outline-zrh .advantages_holder {
        flex-direction: column;
    }

    .warp-container-eUm .advantages-outline-zrh .advantage_item {
        width: 100%;
        margin-bottom: 20px;
    }
}.tySpace-OSI {
    background-color: rgb(148,163,184,0.5);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.tySpace-OSI .container {
    background-color: rgb(148,163,184,0.5);
    border: 1px solid rgb(148,163,184);
    border-radius: 14px;
    padding: 40px 30px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 10px rgb(30,41,59,0.5);
}
.tySpace-OSI .container h2 {
    font-family: Roboto, sans-serif;
    font-size: 29px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.tySpace-OSI .container p {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: rgb(30,41,59);
    line-height: 1.8;
    margin-bottom: 20px;
    border-top: 1px solid rgb(30,41,59,0.5);
    border-bottom: 1px solid rgb(30,41,59,0.5);
    padding: 10px 0;
}
@media only screen and (max-width: 800px) {
    .tySpace-OSI {
        padding: 30px 10px;
    }
    .tySpace-OSI .container {
        padding: 30px 20px;
    }
    .tySpace-OSI .container h2 {
        font-size: calc(29px - 6px);
    }
    .tySpace-OSI .container p {
        font-size: calc(18px - 2px);
    }
}
.company-overview-zgF {
    padding: 80px 0;
    background-image: linear-gradient(135deg, rgb(148,163,184) 0%, rgb(30,41,59) 100%);
}

.warp-container-eUm .company-overview-zgF .holder {
    position: relative;
    overflow: hidden;
}

.warp-container-eUm .company-overview-zgF .holder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgb(148,163,184,0.5);
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 21px;
    z-index: 1;
}

.warp-container-eUm .company-overview-zgF .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.warp-container-eUm .company-overview-zgF .photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}
.warp-container-eUm .company-overview-zgF .style_element {
    background: #ffffff;
    border-radius: 21px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -150px;
    text-align: center;
    width: 80%;
}

.warp-container-eUm .company-overview-zgF h2 {
    color: #000000;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.warp-container-eUm .company-overview-zgF p {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
    .warp-container-eUm .company-overview-zgF .photo {
        width: 250px;
        height: 250px;
    }

    .warp-container-eUm .company-overview-zgF .style_element {
        margin-top: -120px;
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .warp-container-eUm .company-overview-zgF .caption_holder {
        align-items: center;
    }

    .warp-container-eUm .company-overview-zgF .photo {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .warp-container-eUm .company-overview-zgF .style_element {
        margin-top: 0;
        width: 100%;
        padding: 20px;
    }
}.course-details-rXj {
    padding: 80px 0;
    background: rgb(226,232,240);
    position: relative;
    overflow: hidden;
}

.course-details-rXj::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(30,41,59,0.5) 25%, transparent 25%, transparent 50%, rgb(148,163,184,0.5) 50%, rgb(30,41,59,0.5) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

.course-details-rXj h2 {
    color: rgb(148,163,184);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.course-details-rXj .content {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.course-details-rXj h3 {
    color: rgb(30,41,59);
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.course-details-rXj p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.course-details-rXj .button {
    background: rgb(30,41,59);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.course-details-rXj .button:hover {
    background: rgb(148,163,184);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgb(148,163,184);
}

.course-details-rXj .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.course-details-rXj .items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.course-details-rXj .course {
    padding: 20px;
    max-width: 100%;
    flex: 1;
    margin: 0 10px;
}

.course-details-rXj .photo {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.course-details-rXj .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

@media only screen and (max-width: 600px) {
    .course-details-rXj {
        padding: 60px 0;
    }
    .course-details-rXj h2 {
        font-size: 29px;
    }
    .course-details-rXj h3 {
        font-size: 22px;
    }
    .course-details-rXj .course {
        max-width: 100%;
        width: 100%;
        padding: 10px;
    }
    .course-details-rXj .items {
        flex-direction: column;
        padding: 0;
    }
    .course-details-rXj .photo {
        height: 250px;
    }
}

.warp-container-eUm .course-details-rXj .container {
    width: 100%;
    padding: 0;
}

.warp-container-eUm .course-details-rXj .items {
    width: 100%;
}

.warp-container-eUm .course-details-rXj .items .course {
    padding: 0;
    width: 100%;
}

.warp-container-eUm .course-details-rXj .photo {
    height: 300px;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-position: 50% 50% !important;
}

.warp-container-eUm .course-details-rXj .course .content {
    border-radius: 0 !important;
    box-shadow: none;
    background: rgb(148,163,184);
}

.warp-container-eUm .course-details-rXj .text_holder {
    max-width: 1200px;
    margin: auto;
    justify-content: flex-start;
    align-items: center;
    min-height: unset;
    background: none;
    padding: 20px;
}

.warp-container-eUm .course-details-rXj p {
    margin-top: 20px;
    text-align: center;
}

.warp-container-eUm .course-details-rXj .button {
    margin-top: 30px;
    width: fit-content;
}

.warp-container-eUm .course-details-rXj h3 {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    .course-details-rXj h2 {
        font-size: 22px;
    }
    .course-details-rXj h3 {
        font-size: 16px;
    }
    .course-details-rXj .photo {
        height: 200px;
    }
    .warp-container-eUm .course-details-rXj .course .content {
        padding: 10px;
    }
}
.pricing-table-cGq {
    position: relative;
    overflow: hidden;
    background: rgb(226,232,240);
    padding: 120px 0;
}

.pricing-table-cGq .photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-15deg);
    opacity: 0.5;
    filter: blur(5px);
    z-index: 1;
}

.pricing-table-cGq .price_holder {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(148,163,184,0.5) 100%);
    border-radius: 50px;
    padding: 40px 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-table-cGq .price_holder::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgb(148,163,184) 0%, rgb(30,41,59) 100%);
    border-radius: 60px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.pricing-table-cGq .price_holder h2 {
    font-size: calc(35px * 1.2);
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-table-cGq .price_section_description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 60px;
    text-align: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-table-cGq .price_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-table-cGq .price_card {
    flex: 1 1 250px;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-table-cGq .price_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgb(30,41,59,0.5), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    z-index: 1;
    opacity: 0;
}

.pricing-table-cGq .price_card:hover::before {
    top: -100%;
    left: -100%;
    opacity: 1;
}

.pricing-table-cGq .price_card > * {
    position: relative;
    z-index: 2;
}

.pricing-table-cGq .price_card h3 {
    font-size: 19px;
    color: rgb(148,163,184);
    margin-bottom: 30px;
    position: relative;
}

.pricing-table-cGq .price_card h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgb(30,41,59);
    border-radius: 3px;
}

.pricing-table-cGq .price_amount {
    font-size: calc(46px * 1.2);
    color: #000000;
    font-weight: 700;
    margin: 30px 0;
    position: relative;
    display: inline-block;
}

.pricing-table-cGq .price_amount::before,.pricing-table-cGq  .price_amount::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: rgb(30,41,59);
    top: 50%;
    transform: translateY(-50%);
}

.pricing-table-cGq .price_amount::before {
    left: -30px;
}

.pricing-table-cGq .price_amount::after {
    right: -30px;
}

.pricing-table-cGq .price_card p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    min-height: 100px;
    line-height: 1.6;
}

.pricing-table-cGq .price_card .button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, rgb(148,163,184) 0%, rgb(30,41,59) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-table-cGq .price_card .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.4s ease;
}

.pricing-table-cGq .price_card .button:hover::before {
    left: 100%;
}

.pricing-table-cGq .price_card .button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .pricing-table-cGq {
        padding: 80px 0;
    }

    .pricing-table-cGq .price_holder {
        padding: 60px 40px;
    }

    .pricing-table-cGq .price_cards {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-table-cGq {
        padding: 60px 0;
    }

    .pricing-table-cGq .price_holder {
        padding: 50px 30px;
        border-radius: 30px;
    }

    .pricing-table-cGq .price_holder::before {
        border-radius: 40px;
    }

    .pricing-table-cGq .price_section_description {
        max-width: 100%;
    }

    .pricing-table-cGq .price_card {
        flex: 1 1 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .pricing-table-cGq {
        padding: 40px 0;
    }

    .pricing-table-cGq .price_holder {
        padding: 40px 20px;
    }

    .pricing-table-cGq .price_holder h2 {
        font-size: calc(35px * 0.9);
    }

    .pricing-table-cGq .price_section_description {
        font-size: calc(18px * 0.9);
    }

    .pricing-table-cGq .price_card {
        padding: 40px 20px;
    }

    .pricing-table-cGq .price_amount {
        font-size: calc(46px * 1.1);
    }
}.aspiring-learners-FHL {
    padding-bottom: 80px;
    padding-top: 80px;
}

.aspiring-learners-FHL .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aspiring-learners-FHL ul {
    list-style: none;
}

.aspiring-learners-FHL ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.aspiring-learners-FHL ul svg, .aspiring-learners-FHL ul svg path {
    fill: rgb(148,163,184);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.aspiring-learners-FHL h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .aspiring-learners-FHL {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.warp-container-eUm .aspiring-learners-FHL {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(148,163,184), rgb(30,41,59));
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.warp-container-eUm .aspiring-learners-FHL::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.6;
    z-index: 1;
}

.warp-container-eUm .aspiring-learners-FHL .holder {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 80px 40px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.warp-container-eUm .aspiring-learners-FHL ul svg, .warp-container-eUm .aspiring-learners-FHL ul svg path {
    margin-right: 15px;
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: transform 0.3s ease, fill 0.3s ease;
    position: static;
}

.warp-container-eUm .aspiring-learners-FHL ul li {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ffffff;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.warp-container-eUm .aspiring-learners-FHL ul li:hover {
    background: rgb(148,163,184,0.5);
    transform: scale(1.05);
}

.warp-container-eUm .aspiring-learners-FHL h2 {
    width: 40%;
    padding: 20px;
    font-size: 37px;
    font-weight: 700;
    text-align: left;
    color: #ffffff;
    border-left: 4px solid rgb(30,41,59);
    margin-bottom: 30px;
}

.warp-container-eUm .aspiring-learners-FHL ul {
    width: 55%;
    padding: 10px;
}

.warp-container-eUm .aspiring-learners-FHL ul li:hover svg, .warp-container-eUm .aspiring-learners-FHL ul li:hover svg path {
    fill: rgb(148,163,184);
    transform: rotate(20deg);
}

@media only screen and (max-width: 1200px) {
    .warp-container-eUm .aspiring-learners-FHL .holder {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
    }

    .warp-container-eUm .aspiring-learners-FHL h2 {
        width: 100%;
        font-size: 46px;
        text-align: center;
        border-left: none;
        border-bottom: 4px solid rgb(30,41,59);
    }

    .warp-container-eUm .aspiring-learners-FHL ul {
        width: 100%;
    }

    .warp-container-eUm .aspiring-learners-FHL ul li {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    .warp-container-eUm .aspiring-learners-FHL {
        padding: 40px 0;
    }

    .warp-container-eUm .aspiring-learners-FHL .holder {
        padding: 40px 10px;
    }

    .warp-container-eUm .aspiring-learners-FHL h2 {
        font-size: 18px;
        padding: 10px;
    }

    .warp-container-eUm .aspiring-learners-FHL ul li {
        font-size: 18px;
        padding: 10px 15px;
    }
}.secure-pantry-ubR {
    padding: 30px;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.secure-pantry-ubR h1 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.secure-pantry-ubR h2 {
    margin-top: 25px;
    margin-bottom: 15px;
}
.secure-pantry-ubR h3, .secure-pantry-ubR h4, .secure-pantry-ubR h5, .secure-pantry-ubR h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}
.secure-pantry-ubR ul, .secure-pantry-ubR ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 10px 0;
}
.secure-pantry-ubR li {
    margin-bottom: 10px;
}
.secure-pantry-ubR section {
    background: none;
}
.secure-pantry-ubR p, .secure-pantry-ubR span, .secure-pantry-ubR div {
    line-height: 20px;
    margin-bottom: 5px;
}
@media only screen and (max-width: 800px) {
    .secure-pantry-ubR {
        padding: 20px 0;
    }
}.leadership-experience-Ggs {
    padding-top: 80px;
    padding-bottom: 80px;
}

.leadership-experience-Ggs .review .name {
    color: rgb(30,41,59);
}

.leadership-experience-Ggs .review span {
    color: rgb(148,163,184);
}

.leadership-experience-Ggs .holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leadership-experience-Ggs .review {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33%;
}

.leadership-experience-Ggs .photo {
    width: 350px;
    height: 400px;
    max-width: 100%;
    margin-bottom: 8px;
    background-position: center;
}

.leadership-experience-Ggs .review .name {
    font-size: 18px;
    margin-bottom: 8px;
}

.leadership-experience-Ggs .review span {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 14px;
}

.leadership-experience-Ggs .review .quote {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .leadership-experience-Ggs .review {
        max-width: unset;
    }
}

@media only screen and (max-width: 800px) {
    .leadership-experience-Ggs .holder {
        flex-direction: column;
    }

    .leadership-experience-Ggs .review {
        max-width: unset;
        width: 100%;
    }

    .leadership-experience-Ggs {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.warp-container-eUm .leadership-experience-Ggs {
    position: relative;
}

.warp-container-eUm .leadership-experience-Ggs::after {
    content: "";
    width: 100%;
    height: 260px;
    background: rgb(148,163,184);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.warp-container-eUm .leadership-experience-Ggs .holder {
    position: relative;
    z-index: 1;
    justify-content: center;
}

.warp-container-eUm .leadership-experience-Ggs .review {
    max-width: unset;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

}

.warp-container-eUm .leadership-experience-Ggs .photo {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 10px solid #ffffff;
}

.warp-container-eUm .worker_description {
    display: flex;
    flex-direction: column;
}

.warp-container-eUm .leadership-experience-Ggs .review .name {
    width: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
    color: #000000;
}

.warp-container-eUm .leadership-experience-Ggs .review span {
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    color: #000000;
}

.warp-container-eUm .leadership-experience-Ggs .review .quote {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
}

@media only screen and (max-width: 800px) {
    .warp-container-eUm .leadership-experience-Ggs .review {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .warp-container-eUm .worker_description {
        width: 100%;
    }

    .warp-container-eUm .leadership-experience-Ggs .photo {
        width: 300px;
        height: 300px;
        margin: 20px;
    }

    .warp-container-eUm .leadership-experience-Ggs::after {
        height: 230px;
    }

}.get-in-touch-RjF {
    padding: 80px 0;
    background: rgb(226,232,240);
    font-family: Roboto, sans-serif;
    color: #000000;
    position: relative;
    overflow: hidden;
}
.get-in-touch-RjF::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(148,163,184,0.5), transparent);
    z-index: 0;
    transition: transform 1s ease-in-out;
}
.get-in-touch-RjF:hover::before {
    transform: scale(1.1);
}
.get-in-touch-RjF h3 {
    color: rgb(30,41,59);
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    z-index: 1;
    position: relative;
}
.get-in-touch-RjF .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
    position: relative;
}
.get-in-touch-RjF .holder {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    z-index: 1;
    position: relative;
}
.get-in-touch-RjF .info,
.get-in-touch-RjF .form {
    background: #ffffff;
    padding: 40px;
    border-radius: 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(50% - 20px);
}
.get-in-touch-RjF .info:hover,
.get-in-touch-RjF .form:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.get-in-touch-RjF .info {
    background: linear-gradient(135deg, rgb(148,163,184,0.5) 30%, #ffffff 100%);
}
.get-in-touch-RjF .info h5 {
    color: rgb(148,163,184);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.get-in-touch-RjF .info svg,
.get-in-touch-RjF .info svg path {
    fill: rgb(148,163,184);
}
.get-in-touch-RjF .info span {
    color: #000000;
    font-size: 14px;
}
.get-in-touch-RjF .info .contact_info > div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.get-in-touch-RjF .info .contact_info svg {
    margin-right: 12px;
    width: 24px;
    height: 24px;
}
.get-in-touch-RjF .logo_holder {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}
.get-in-touch-RjF .logo_holder svg,
.get-in-touch-RjF .logo_holder img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    fill: rgb(148,163,184);
}
.get-in-touch-RjF .form {
    background: #ffffff;
    border-radius: 26px;
}
.get-in-touch-RjF .form h3 {
    color: #000000;
    font-size: 29px;
    text-align: center;
    margin-bottom: 30px;
}
.get-in-touch-RjF .form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.get-in-touch-RjF form input,
.get-in-touch-RjF form .button {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgb(30,41,59);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.get-in-touch-RjF form input:focus,
.get-in-touch-RjF form input:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgb(148,163,184);
}
.get-in-touch-RjF form input {
    color: #000000;
    outline: none;
    width: 100%;
}
.get-in-touch-RjF form .button {
    background: rgb(30,41,59);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.get-in-touch-RjF form .button:hover {
    background: rgb(148,163,184);
}
.get-in-touch-RjF .name_holder {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.get-in-touch-RjF .agree {
    display: flex;
    align-items: center;
    gap: 10px;
}
.get-in-touch-RjF .agree input[type="checkbox"] {
    width: auto;
    margin: 0;
}
.get-in-touch-RjF .agree label {
    font-size: 14px;
}
.get-in-touch-RjF .agree a {
    color: rgb(148,163,184);
    text-decoration: underline;
}
@media (max-width: 992px) {
    .get-in-touch-RjF .holder {
        flex-direction: column;
        align-items: stretch;
    }
    .get-in-touch-RjF {
        padding: 50px 0;
    }
    .get-in-touch-RjF h3 {
        font-size: 30px;
    }
    .get-in-touch-RjF .info,
    .get-in-touch-RjF .form {
        width: 100%;
    }
    .get-in-touch-RjF .name_holder {
        gap: 20px;
        flex-wrap: wrap;
    }
    .get-in-touch-RjF form input {
        width: 100%;
    }
}
footer {
    background: rgb(30,41,59);
    color: #ffffff;
}

footer .copyright {
    background: rgb(148,163,184);
}

footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(148,163,184);
}

footer h5 {
    color: rgb(148,163,184);
}

footer .menu a {
    color: #ffffff;
}

footer .copyright_info {
    color: #ffffff;
}

footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}

footer .contact_info div svg, footer .contact_info div svg path {
    fill: #ffffff;
}

footer .contact_info div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 23px;
    margin-bottom: 16px;

}

footer .contact_info {
    display: flex;
    flex-direction: column;
}

footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .contact_info div img, footer .contact_info div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .menu_holder {
    display: flex;
    flex-direction: column;
}

footer .menu a {
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .copyright {
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
    }

    footer .contact_info {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.warp-container-eUm footer .footer {
    padding: 0;
}

.warp-container-eUm footer .footer_info {
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    justify-content: center;
    padding: 20px;
}

.warp-container-eUm footer .menu_holder {
    flex-direction: row;
    justify-content: center;
}

.warp-container-eUm footer .menu a {
    margin: 0;
    padding: 5px 20px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}

.warp-container-eUm footer .copyright {
    background: rgb(148,163,184,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

.warp-container-eUm footer .copyright_info {
    text-align: center;
}

.warp-container-eUm footer .logo_holder {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(148,163,184);
    margin-bottom: 20px;
}

.warp-container-eUm footer .logo_holder svg, .warp-container-eUm footer .logo_holder svg path, .warp-container-eUm footer .logo_holder img {
    margin: 0;
    fill: #ffffff;
}

@media only screen and (max-width: 1200px) {
    .warp-container-eUm footer .logo_holder {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {
    .warp-container-eUm footer .menu_holder {
        flex-direction: column;
        text-align: left;
        align-items: center;
        justify-content: center;
    }

    .warp-container-eUm footer .menu a {
        margin-bottom: 5px;
        font-size: 18px
    }

    .warp-container-eUm footer .footer_info {
        padding: 10px;
    }

    .warp-container-eUm footer .copyright_info {
        text-align: center;
    }

    .warp-container-eUm footer .copyright_info a {
        display: block;
        margin-top: 5px;
    }
}
