.header_space {
    padding-top: 92px;
}

.container {
    max-width: 1920px;
    position: relative;
    margin: auto;
}

.head {
    font-size: 32px;
    font-weight: 700;
}

.text_xl {
    font-size: 24px;
    font-weight: 600;
}

.text_lg {
    font-size: 18px;
    font-weight: 400;
}

/* selected project */
.project {
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.project .project_header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #00356B;
}

.project .content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.project .content .menu {
    display: flex;
    gap: 16px;
    overflow: auto;
}

.project .content .menu .menu_item {
    border: 1px solid #98A2B3;
    border-radius: 80px;
    padding: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.project .content .menu .menu_item.active {
    border: 1px solid #2B71B8;
    border-radius: 80px;
    padding: 10px;
    background-color: #DBEDFFB2;
    color: #2B71B8;
    font-weight: 700;
}

.project .content .display {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.project .content .display .card_wrapper {
    padding: 12px;
    width: 33.33%;
    box-sizing: border-box;
}

.project .content .display .card {
    box-sizing: border-box;
    padding: 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    min-width: 0;
    height: 100%;
}

.project .content .display .card img {
    border-radius: 16px;
    object-fit: cover;
    object-position: 10% 85%;
    width: 100%;
    height: 14.81vw;
}

.project .content .display .card .title {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.project .content .display .card .card_content {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: center;
}

.project .content .display .card .button {
    padding: 8px 16px;
    border-radius: 80px;
    background-color: #DBEDFF;
    color: #2B71B8;
    font-size: 16px;
    font-weight: 700;
    margin: auto;
    cursor: pointer;
    width: -webkit-fill-available;
    text-align: center;
    text-decoration: none;
}

.project .content .display .card .button:hover {
    background-color: #5A95D1;
    color: #FCFCFD;
}

/* proven */
.proven {
    padding: 80px;
    background-color: #DBEDFF;
    display: flex;
    gap: 24px;
    color: #00356B;
}

.proven_header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proven .description {
    font-size: 18px;
}

.proven .image {
    width: 100%;
    height: 23.125vw;
    border-radius: 16px;
    object-fit: cover;
    object-position: 10% 75%;
}

.proven .content {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.proven .content .items {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.proven .content .items .subitem {
    display: flex;
    padding: 16px;
    gap: 8px;
    flex-direction: column;
}

.proven .content .items .subitem .title {
    font-size: 32px;
    font-weight: 700;
    color: #2B71B8;
}

.proven .content .items .subitem .text {
    font-size: 18px;
    font-weight: 400;
    color: #2B71B8;
}

.proven .content .items .break {
    border: 1px solid #5A95D1;
}

/* contact */
.contact {
    padding: 80px 32px;
}

.contact .content {
    border-radius: 24px;
    width: 100%;
    background: url('../assets/images/home/past/our_past_3.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 280px;
    background-position-y: center;
    position: relative;
    height: 399px;
}

.contact .content .clip_path svg {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.contact .content .text_wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    display: flex;
    justify-content: center;
    color: #FCFCFD;
    width: 418px;
    gap: 16px;
    flex-direction: column;
}

.contact .content .text_wrapper .button {
    padding: 15px 24px;
    border-radius: 80px;
    background-color: #DBEDFF;
    color: #2B71B8;
    font-size: 24px;
    font-weight: 700;
    width: fit-content;
    text-decoration: none;
    cursor: pointer;
}

.contact .content .text_wrapper .button:hover {
    background-color: #5A95D1;
    color: #FCFCFD;
}

/* tablet style */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .head {
        font-size: 24px;
    }

    .text_xl {
        font-size: 16px;
    }

    .text_lg {
        font-size: 16px;
    }

    /* selected project */
    .project {
        padding: 52px 32px;
        gap: 24px;
    }

    .project .content .display {
        justify-content: center;
    }

    .project .content .display .card_wrapper {
        padding-left: 12px;
        padding-right: 12px;
        width: 50%;
        box-sizing: border-box;
    }

    .project .content .display .card {
        padding: 16px;
    }

    .project .content .display .card .button {
        text-align: center;
    }

    .project .content .display .card img {
        height: 22.39vw;
    }

    /* proven */
    .proven {
        padding: 52px 32px;
        flex-direction: column;
    }

    .proven .image {
        width: 100%;
        height: 51.56vw;
    }

    .proven .content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* contact */
    .contact {
        padding: 52px 32px;
    }

    .contact .content .clip_path svg {
        display: none;
    }

    .contact .content {
        background-image: linear-gradient(to top right, #00356B, #4E5BA1);
        padding: 52px 32px;
        box-sizing: border-box;
        background-position-x: unset;
        height: auto;
    }

    .contact .content .text_wrapper {
        position: unset;
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 16px;
        flex-direction: column;
    }


    .contact .content .text_wrapper .head_contact {
        font-size: 32px;
    }
}

/* mobile style */
@media only screen and (max-width: 768px) {
    .head {
        font-size: 24px;
    }

    .text_xl {
        font-size: 16px;
    }

    .text_lg {
        font-size: 16px;
    }

    /* selected project */
    .project {
        padding: 32px 16px;
        gap: 24px;
    }

    .project .content .display {
        justify-content: center;
    }

    .project .content .display .card_wrapper {
        width: 100%;
    }

    .project .content .display .card {
        padding: 16px;
    }

    .project .content .display .card .button {
        text-align: center;
    }

    .project .content .display .card img {
        height: 46.68vw;
    }

    /* proven */
    .proven {
        padding: 32px 16px;
        flex-direction: column;
    }

    .proven .image {
        width: 100%;
        height: 51.46vw;
    }

    .proven .content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .proven .content .items {
        flex-direction: column;
        text-align: center;
    }

    /* contact */
    .contact {
        padding: 32px 16px;
    }

    .contact .content .clip_path svg {
        display: none;
    }

    .contact .content {
        background-image: linear-gradient(to top right, #00356B, #4E5BA1);
        padding: 16px;
        box-sizing: border-box;
        background-position-x: unset;
        height: auto;
    }

    .contact .content .text_wrapper {
        position: unset;
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 16px;
        flex-direction: column;
    }


    .contact .content .text_wrapper .head_contact {
        font-size: 20px;
    }

    .contact .content .text_wrapper .button {
        width: auto;
        text-align: center;
        padding: 9px 24px;
        font-size: 16px;
    }
}