.section_zero_info {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_zero_lin {
    top: 0;
    z-index: 1;
    position: absolute;
    height: 10vh;
    width: 100vw;
    background: linear-gradient(180deg, #0c41ff, rgb(12, 65, 255, 0.5), rgb(12, 65, 255, 0.0));
}

.section_zero_title_container {
    position: absolute;
    z-index: 1;
    width: 50vw;
    height: 25vw;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section_zero_title {
    color: white;
    font-size: 5vw;
    margin: 0;
}

.section_zero_subtitle {
    font-size: 2vw;
    font-weight: 300;
}

.section_zero_lin_2 {
    z-index: 1;
    position: absolute;
    height: 10vh;
    width: 100vw;
    bottom: 0;
    background: linear-gradient(0deg, #0c41ff, rgb(12, 65, 255, 0.5), rgb(12, 65, 255, 0.0));
}

.section_zero_image {
    height: 100%;
    width: 100%;
    object-position: 50% 50%;
    object-fit: cover;
    filter: brightness(100%);
}

.section_one_info {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.section_one_nav {
    z-index: 1;
    position: absolute;
    height: 10vh;
    width: 100vw;
    background: linear-gradient(180deg, #0c41ff, rgb(12, 65, 255, 0.5), rgb(12, 65, 255, 0.0));
}

.section_one_content_container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.section_one_img_container {
    height: 100%;
    width: 55vw;
    display: flex;
    flex-direction: column;
}

.section_one_img {
    height: 100%;
    width: 100%;
    object-position: 90% 50%;
    object-fit: cover;
    filter: brightness(100%);
}

.section_one_img_3 {
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    object-position: 50% 50%;
}

.section_one_img_3_ {
    height: 100%;
    flex: 1;
    object-position: 50% 50%;
    object-fit: cover;
    filter: brightness(100%);
}

.section_one_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color:#0c41ff;
    background-image: linear-gradient(white 2px, transparent 2px),
    linear-gradient(90deg, white 2px, transparent 2px),
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

.section_one_text {
    margin-top: 100px;
    padding: 40px;
    width: 80%;
    background-color: white;
    border-radius: 10px;
}

.section_one_content h2 {
    margin: 0;
    color: #0c41ff;
    text-decoration: underline;
}

.section_one_content h3 {
    color: #0c41ff;
    font-weight: 400;
    font-size: 1vw;
}

@media (max-width: 777px) {
    .section_zero_subtitle {
        font-size: 14px;
    }

    .section_one_content_container {
        flex-direction: column;
    }

    .section_one_img_container {
        flex-direction: row;
        width: 100%;
        height: 25%;
        overflow: hidden;
    }

    .section_one_text {
        margin: 0;
        height: 80%;
    }

    .section_one_content h3 {
        font-size: 2.3vw;
    }
}