@import url(https://fonts.bunny.net/css?family=plus-jakarta-sans:400,500,600,700,800);
/*#region reset style*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

body {
    line-height: 1.5;
    background-color: #fff;
    color: #000;
}

ul, ol {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

button, input {
    font: inherit;
    border: none;
    background: none;
}
/*#endregion*/

/*#region Fonts*/
@font-face {
    font-family: 'SVN-Agency FB';
    src: url('/fonts/LandingPage/SVN-Agency%20FB.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Agency FB';
    src: url('/fonts/LandingPage/SVN-Agency%20FB%20Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/*#endregion*/

/*#region common style*/
:root {
    --font-heading: 'SVN-Agency FB', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fs-body-sm: 1rem;
    --fs-body-md: clamp(0.875rem, 1.2vw + 0.5rem, 1.125rem);
    --fs-body-lg: 1.25rem;
    --fs-title-sm: 1.5rem;
    --fs-title-md: clamp(1.125rem, 2vw + 0.5rem, 1.75rem);
    --fs-title-lg: 3rem;
    --fs-title-xl: clamp(1.5rem, 5vw, 3.5rem);
    --fs-title-xxl: clamp(5rem, 10vw, 6rem);
    --lh-list-sm: 1.4;
    --lh-list-md: 1.5;
    --lh-list-lg: 1.6;
    --white: white;
    --primary-gray: #909B9C;
    --primary-black: #323737;
    --primary-orange: #FF5528;
    --secondary-orange: #FF6B17;
    --primary-blue: #3471ED;
    --primary-green: #01943C;
    --primary-yellow: #FEA833;
    --text-sub-blue: #81DBEF;
    --text-sub-orange: #FEB0D7;
    --text-sub-green: #CED85B;
}

ul {
    list-style: disc;
    font-family: var(--font-body);
}

.list-sm {
    font-weight: var(--fw-regular);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-list-sm);
}

.list-md {
    font-weight: var(--fw-medium);
    font-size: var(--fs-body-md);
    line-height: var(--lh-list-md);
}

h1, h2, h3 {
    font-family: var(--font-heading);
}

.heading-sm {
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-sm);
    line-height: var(--lh-list-sm);
}

.heading-md {
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-md);
    line-height: var(--lh-list-sm);
}

.heading-lg {
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-lg);
    line-height: var(--lh-list-sm);
}

.heading-xl {
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-xl);
    line-height: var(--lh-list-sm);
}

.heading-xxl {
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-xxl);
    line-height: var(--lh-list-sm);
}

.text-md,
.text-sm {
    font-family: var(--font-body);
}

.text-sm {
    font-weight: var(--fw-medium);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-list-sm);
}

.text-md {
    font-weight: var(--fw-medium);
    font-size: var(--fs-body-md);
    line-height: var(--lh-list-md);
}

.primary-button-md {
    font-family: var(--font-body);
    background-color: var(--primary-orange);
    color: var(--white);
    cursor: pointer;
}

.secondary-button-md {
    font-family: var(--font-body);
    background-color: var(--primary-yellow);
    color: var(--white);
    cursor: pointer;
}

.outline-button-md {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    display: inline-block;
}

.primary-button-md:hover,
.secondary-button-md:hover,
.outline-button-md:hover {
    opacity: 0.7;
}

.primary-button-md,
.secondary-button-md,
.outline-button-md {
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body-md);
    line-height: var(--lh-list-md);
}
/*#endregion*/

/*#region section banner*/
#section-banner {
    background-image: url(/public/img/Internship2026/Internship-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 100%;
    aspect-ratio: 13 / 7;
    position: relative;
}

.section-banner__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/*#endregion*/

/*#region section benefit*/
#section-benefit {
    padding: 60px 0;
}

.section-benefit__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.section-benefit__content-container {
    padding-left: 60px;
    color: var(--primary-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-benefit__heading {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-xl);
    line-height: 1.2;
}

.section-benefit__heading .text-orange {
    color: var(--primary-orange);
}

.section-benefit__content {
    margin-top: 24px;
}

.section-benefit__content li {
    margin-bottom: 8px;
}

.section-benefit__content-list {
    margin-top: 20px;
}

.section-benefit__list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.section-benefit__list-item-icon {
    width: clamp(56px, 7vw, 80px);
    height: auto;
    object-fit: contain;
}

.section-benefit__list-item-text {
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    font-size: var(--fs-body-sm);
    color: var(--primary-black);
}
/*#endregion*/

/*#region section job positions*/
#section-job-positions {
    background-color: var(--primary-blue);
    background-image: url(/public/img/Internship2026/section-reason__card-item-background--first.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 56px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}

.section-job-positions__heading {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin: 0 0 40px;
    line-height: 1.1;
}

.section-job-positions__card {
    background: var(--white);
    border-radius: 16px;
    text-align: left;
    height: 100%;
    padding: 22px 26px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.section-job-positions__card-title {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.25;
    color: var(--primary-blue);
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid #C9D6F2;
    letter-spacing: 0.3px;
}

.section-job-positions__card-body {
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    font-size: var(--fs-body-sm);
    color: var(--primary-blue);
    line-height: 1.5;
}

.section-job-positions__cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    padding: 14px 80px;
    border-radius: 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.section-job-positions__cta:hover {
    opacity: 0.9;
    color: var(--primary-blue);
}

.section-job-positions__card--fourth .section-job-positions__card-header {
    background-color: #7B4FD6;
}

.section-job-positions__card-body {
    padding: 16px 20px;
}

.section-job-positions__card-body ul {
    list-style: disc;
    padding-left: 20px;
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    color: var(--primary-black);
    line-height: 2;
}

.section-job-positions__cta {
    margin-top: 40px;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: var(--fs-body-md);
}
/*#endregion*/

/*#region section reason*/
#section-reason {
    padding: 56px 0;
}

.section-reason__main-heading {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: var(--fs-title-xl);
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.2;
}

.section-reason__cards-row {
    align-items: stretch;
}

.section-reason__card-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 28px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.section-reason__card-item-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.section-reason__card-item-drop-cap {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(56px, 6vw, 84px);
    line-height: 1;
    color: var(--white);
    flex-shrink: 0;
}

.section-reason__card-item-labels {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.section-reason__card-item-label-top {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    color: var(--white);
}

.section-reason__card-item-label-bottom {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    color: var(--text-sub-orange);
}

.section-reason__card-item--third .section-reason__card-item-label-bottom {
    color: var(--text-sub-green);
}

.section-reason__card-item-date {
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: var(--fs-body-sm);
    color: var(--white);
    margin-bottom: 8px;
}

.section-reason__card-item-text {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 16px;
}

.section-reason__card-item-list {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 16px;
    padding-left: 20px;
}

.section-reason__card-item-list li {
    margin-bottom: 6px;
}

.section-reason__card-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 12px;
}

.section-reason__card-item-footer--left {
    height: clamp(32px, 4vw, 45px);
}

.section-reason__card-item-footer--right {
    height: clamp(66px, 9vw, 93px);
}

.section-reason__card-item--first {
    background-image: url("/public/img/Internship2026/section-reason__card-item-background--first.png");
    background-color: var(--primary-blue);
}

.section-reason__card-item--second {
    background-image: url("/public/img/Internship2026/section-reason__card-item-background--second.png");
    background-color: var(--secondary-orange);
}

.section-reason__card-item--third {
    background-image: url("/public/img/Internship2026/section-reason__card-item-background--third.png");
    background-color: var(--primary-green);
}

/*#endregion*/

/*#region section form submit*/
#section-form-submit {
    background: #F1F6F7;
}

.section-form-submit__background {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 1120px;
}

#survey-form {
    padding: 30px 70px 70px 70px;
}

#survey-form .form-control,
#survey-form .form-select {
    border-radius: 16px;
    background-color: #F1F6F7;
    padding: 8px 16px;
    font-family: var(--font-body);
    color: #777777;
}

#survey-form label,
#survey-form .uploadFile--fileName {
    color: #777777;
}

#survey-form .btn-submit,
#survey-form .btn-upload-file {
    border-radius: 69px;
    padding: 8px 16px;
}

.section-form__work-area-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 4px 0;
}

.section-form__work-area-group label {
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    color: #777777;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-form__work-area-group input[type="radio"] {
    accent-color: var(--primary-orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/*#endregion*/

/*#region footer*/
footer {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.card-grid-2.grid-bd-16 {
    background-color: #ffffff;
    border-radius: 16px;
}

.bg-fpt-element-contact {
    background-image: url(/public/imgs-version2/fox/3.png), url(/public/imgs-version2/general/fpt-right-element.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 15%, 30%;
    background-position: bottom 20px right 100px, bottom -110px right;
}

.card-grid-2 {
    border: 1px solid #e0e6f7;
    overflow: visible;
    margin-bottom: 24px;
    position: relative;
}

.card-grid-2 .card-grid-2-image-left {
    padding: 20px 20px 0px 20px;
    display: flex;
    position: relative;
}

.card-grid-2 .card-grid-2-image-left .image-box {
    min-width: 52px;
    padding-right: 15px;
}

.card-grid-2 .card-grid-2-image-left .right-info .name-job {
    font-size: 18px;
    line-height: 26px;
    color: #05264e;
    font-weight: bold;
    display: block;
}

.card-grid-2 .card-grid-2-image-left .right-info .name-job:hover {
    color: #3c65f5;
}

#ket-noi-voi-chung-toi h2 {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
}

footer .footer-bottom {
    border-top: 1px solid #e0e6f7;
    padding: 30px 0px;
    color: #4f5e64;
    font-size: 14px;
}

.color-text-paragraph {
    color: #4f5e64;
}

.font-xs {
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 18px !important;
}
/*#endregion*/

/* ===== Responsive ===== */
@media (max-width: 992px) {
    /*#region section reason*/
    #section-reason {
        padding: 32px 0;
    }
    /*#endregion*/

    /*#region section form submit*/
    #survey-form {
        padding: 70px 20px 70px 20px;
    }

    .section-form-submit__background {
        aspect-ratio: 1 / 1;
        border-radius: 16px;
        width: calc(100% - 40px);
        margin: 20px auto;
    }
    /*#endregion*/
}

@media (max-width: 768px) {
    /*#region section banner*/
    #section-banner {
        background-image: url(/public/img/Internship2026/Internship-banner-mobi.png);
        aspect-ratio: 9 / 12;
    }
    /*#endregion*/

    /*#region section benefit*/
    #section-benefit {
        padding: 50px 0;
    }

    .section-benefit__image {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .section-benefit__content-container {
        padding: 20px 12px 0;
    }

    .section-benefit__content {
        margin-top: 16px;
    }
    /*#endregion*/

    /*#region section reason*/
    .section-reason__card-item {
        padding: 20px 20px;
    }

    .section-reason__card-item-drop-cap {
        font-size: 56px;
    }

    .section-reason__card-item-header {
        margin-bottom: 12px;
    }

    .section-reason__card-item-footer--right {
        height: 60px;
    }
    /*#endregion*/

    /*#region section job positions*/
    #section-job-positions {
        padding: 40px 0;
    }

    .section-job-positions__heading {
        margin-bottom: 24px;
    }

    .section-job-positions__cta {
        padding: 12px 32px;
    }
    /*#endregion*/

    /*#region section reason*/
    .section-reason__main-heading {
        font-size: var(--fs-title-md);
        margin-bottom: 24px;
    }
    /*#endregion*/

    /*#region footer*/
    .bg-fpt-element-contact {
        background-image: none;
    }
    /*#endregion*/
}

@media (max-width: 540px) {
    /*#region section benefit*/
    #section-benefit .container {
        padding: 0;
    }

    .section-benefit__image {
        border-radius: 0;
    }

    .section-benefit__content-container {
        padding: 20px 20px 0 20px;
    }
    /*#endregion*/
}
