:root {
    /*color*/
    --text-color-blue: #0764BC;
    --text-color-gray: #323232;
    --text-color-gray-500: #848484;
    --text-black-900: #323232E5;
    --bg-color-blue: #0764BC;
    --bg-color-blue-500: #F7F8FB;
    --bg-color-footer: #0764BC;
    --bg-color-gray: #F7F8FB;
    /*height*/
    --height-header-menu: 73px;
    --height-header-menu-aboutus: 70px;
    --max-width-page: 1440px;
    /*text size*/
    --text-size-medium: 13px;
}

html {
    font-size: var(--text-size-medium) !important;
    letter-spacing: 0.5px;
}

body {
    font-family: "Plus_Jakarta_Sans", "sans-serif";
    box-sizing: border-box;
}

/*Reset Css*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

img {
    max-width: 100%;
    height: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
}

/*Custom Text Color*/
.text-color-gray {
    color: var(--text-color-gray);
}

.text-color-gray-500 {
    color: var(--text-color-gray-500);
}

.text-color-blue {
    color: var(--text-color-blue);
}

.text-black-900 {
    color: var(--text-black-900);
}

/*Text Hover*/
.text-hover-primary:hover {
    color: var(--text-color-blue);
}

/*Custom Background Color*/
.bg-color-footer {
    background-color: var(--bg-color-footer);
}

.bg-color-blue {
    background-color: var(--bg-color-blue);
}

.bg-color-gray {
    background-color: var(--bg-color-gray);
}

.bg-color-blue-500 {
    background-color: var(--bg-color-blue-500);
}

/*Custom Bootstrap*/
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: pointer;
}

.container-page {
    padding-left: 3rem;
    padding-right: 3rem;
}

.fw-extrabold {
    font-family: "Plus_Jakarta_Sans-ExtraBold";
}

.fw-semibold {
    font-family: "Plus_Jakarta_Sans-SemiBold";
}

/*Custom button*/
.custom-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--text-color-blue);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #FFFFFF;
}

.custom-button-text {
    color: var(--text-color-blue);
    font-size: 1.25rem;
    white-space: nowrap;
}

.custom-button-icon {
    width: 30px;
    height: 30px;
    background-color: var(--bg-color-blue);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-button:hover {
    background-color: var(--bg-color-blue);
    transition: all linear 200ms;
}

.custom-button:hover .custom-button-text {
    color: #FFFFFF;
    transition: all linear 200ms;
}

.custom-button:hover .custom-button-icon {
    background-color: #FFFFFF;
    color: var(--text-color-blue);
    transition: all linear 200ms;
}

/*Button Revese*/
.custom-button-revese {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--text-color-blue);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--bg-color-blue);
}

.custom-button-revese-text {
    color: #FFFFFF;
    font-size: 1.25rem;
    white-space: nowrap;
}

.custom-button-revese-icon {
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    color: var(--text-color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-button-revese:hover {
    background-color: #FFFFFF;
    transition: all linear 200ms;
}

.custom-button-revese:hover .custom-button-revese-text {
    color: var(--bg-color-blue);
    transition: all linear 200ms;
}

.custom-button-revese:hover .custom-button-revese-icon {
    background-color: var(--bg-color-blue);
    color: #FFFFFF;
    transition: all linear 200ms;
}

.custom-button-back-top {
    position: fixed;
    bottom: 1%;
    right: 4%;
    width: 60px;
    height: 60px;
}

/*Custom Badge*/
.custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    border-radius: 10px;
    padding: 20px 20px 20px 25px;
    cursor: pointer;
    background-color: #FFFFFF;
    min-height: 115px;
}

.custom-badge-text {
    color: var(--text-color-gray);
    font-weight: 600;
}

.custom-badge-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-color-blue);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-badge:hover {
    background-color: var(--bg-color-blue);
    transition: all linear 200ms;
}

.custom-badge:hover .custom-badge-text {
    color: #FFFFFF;
    transition: all linear 200ms;
}

.custom-badge:hover .custom-badge-icon {
    background-color: #FFFFFF;
    color: var(--text-color-blue);
    transition: all linear 200ms;
}


/*Custom Card*/
.custom-card {
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    cursor: pointer;
    transition: all linear 200ms;
    height: 450px;
    display: block;
}

.custom-card-image {
    height: 50%;
    overflow: hidden;
}

.custom-card-image img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.2s linear;
}

.custom-card-icon {
    width: 65px;
    height: 65px;
    background-color: var(--bg-color-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #FFFFFF;
    color: var(--text-color-blue);
    transition: all linear 200ms;
}

.custom-card-text {
    text-align: center;
    color: var(--text-color-gray);
}

.custom-card-text-title {
    color: var(--text-color-blue);
}

.custom-card:hover .custom-card-image img {
    transform: scale(1.1);
}

.custom-card:hover {
    background-color: var(--bg-color-blue);
}

.custom-card:hover .custom-card-text,
.custom-card:hover .custom-card-text-title {
    color: #FFFFFF;
}

.custom-card:hover .custom-card-icon {
    border: 6px solid var(--bg-color-blue);
}

/*Custom Font Size*/
.fs-5c {
    font-size: 1.2rem !important;
}

/*Custom Border Radius*/
.custom-border-radius {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.custom-border-radius2 {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.custom-border-radius-15 {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
}

.custom-border-radius-lg {
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.custom-border-radius-small {
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}

/*Custom owl carousel*/
.owl-carousel .owl-dots {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    padding: 4px 1px
}

.carousel-control-next .carousel-control-next-icon,
.carousel-control-prev .carousel-control-prev-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    opacity: 0.9;
    border-radius: 50%;
}

.custom-carousel-control-prev,
.custom-carousel-control-next {
    width: 5%;
}

.custom-item-carousel-solution {
    height: 450px;
}

.custom-item-carousel-history {
    height: 450px;
}

.custom-sticky-top {
    position: sticky;
    top: var(--height-header-menu);
    z-index: 1020;
}

.custom-detail-sticky-top {
    position: sticky;
    top: calc(var(--height-header-menu) + var(--height-header-menu-aboutus));
}

.height-header-menu {
    height: var(--height-header-menu);
}

.height-header-menu-aboutus {
    height: var(--height-header-menu-aboutus);
}

.custom-border-bottom-gray {
    border-bottom: 2px solid #27272733;
}

.custom-icon-commit-aboutus {
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    font-weight: 600;
    background-color: var(--bg-color-blue);
}

.custom-scroll-margin-top {
    scroll-margin-top: calc(var(--height-header-menu) + var(--height-header-menu-aboutus));
}

.custom-leader-card {
    background-color: #FFFFFF;
    width: 100%;
    transition: all linear 200ms;
}

.custom-leader-card-image {
    height: 75%;
    overflow: hidden;
}

.custom-leader-card-image img {
    height: 100%;
    object-fit: cover;
}

/*Custom Box Contact*/
.custom-box-contact-icon {
    color: var(--bg-color-blue);
}

.custom-box-contact:hover {
    background-color: var(--bg-color-blue);
}

.custom-box-contact:hover .custom-box-contact-text {
    color: #FFFFFF;
    transition: all linear 200ms;
}

.custom-box-contact:hover .custom-box-contact-icon {
    background-color: var(--text-color-blue);
    color: #FFFFFF;
    transition: all linear 200ms;
}

/*Custom card carousel*/
.custom-carousel-card {
    background-color: #FFFFFF;
    width: 100%;
    transition: all linear 200ms;
    height: 425px;
}

.custom-carousel-card-image {
    height: 70%;
    overflow: hidden;
}

.custom-carousel-card-image img {
    height: 100%;
    object-fit: cover;
}

.custom-carousel-card-text {
    color: var(--text-color-gray);
}

.custom-carousel-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(20%, -20%);
}

.custom-carousel-card:hover .custom-carousel-card-text {
    color: var(--text-color-blue);
}

/*Custom card activity*/
.custom-activity-card {
    background-color: #FFFFFF;
    transition: all linear 200ms;
    height: 425px;
}

.custom-activity-card-image {
    height: 70%;
    overflow: hidden;
}

.custom-activity-card-image img {
    height: 100%;
    object-fit: cover;
}

.custom-activity-card-text {
    color: var(--text-color-gray);
}

.custom-activity-card:hover .custom-activity-card-text {
    color: var(--text-color-blue);
}

/*Custom card detail*/
.custom-detail-card {
    border-bottom: 1px solid #32323233;
}

.custom-detail-card:last-child {
    border-bottom: none;
}

.custom-detail-card-image {
    height: 125px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.custom-decoration-text-blue {
    padding-bottom: 5px;
    position: relative;
    display: inline-block;
}

.custom-decoration-text-blue::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--bg-color-blue);
}

.custom-input-contact {
    padding: 12px 20px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    outline: none;
    width: 100%;
    border: 1px solid var(--text-color-gray-500);
    font-size: 1.25rem;
}

.custom-recruitment-card {}

.custom-recruitment-card-image {
    height: 205px;
    border-radius: 10px;
    overflow: hidden;
}

.custom-input-recruitment {
    outline: none;
    border: 1px solid #27272733;
    border-radius: 5px;
    padding: 10px 14px;
}

/*Custom shadow*/
.custom-shadow-sm {
    box-shadow: 0px 0px 15px 2px rgba(7, 100, 188, 0.15);
}

.custom-pagination-item {
    width: 45px;
    height: 45px;
}

.custom-text-two-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-text-three-line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-text-four-line {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*Custom max width page*/
.custom-max-width-page {
    max-width: var(--max-width-page, "1440px");
}

/*Custom height banner*/
.custom-height-banner {
    height: 700px;
}

.custom-height-activity {
    height: 600px;
}

/*Custom dot owl history*/
.custom-dots-history .custom-dot {
    cursor: pointer;
    white-space: nowrap;
}

.custom-dots-history .custom-dot:hover {
    transition: all .1s linear;
    color: var(--text-color-blue);
}

.custom-dots-history .custom-dot.active {
    color: var(--text-color-blue);
}

.custom-height-history-item-image {
    height: 165px;
    display: block;
}

.custom-height-history-text {
    max-height: 200px;
    overflow: auto;
}

.custom-height-history-text::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.custom-height-history-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
.custom-height-history-text::-webkit-scrollbar-thumb {
    background: var(--text-color-gray-500);
    border-radius: 10px;
}

/* Handle on hover */
.custom-height-history-text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.custom-icon-footer {
    height: 60px;
    width: 50px;
}

.custom-text-hover-bold:hover {
    font-weight: 600;
    transition: all linear 0.1s;
}

.custom-input-search-general {
    border: 0;
    outline: none;
}

.active.custom-nav-search-item {
    font-weight: 600;
    position: relative;
}

.active.custom-nav-search-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--text-color-blue);
    left: 0;
    bottom: 0;
}

.min-height-500px {
    min-height: 500px;
}

.custom-height-search-item {
    height: 300px;
}

.custom-height-aboutus-home {
    height: 452px;
}

.custom-height-digital-future {
    height: 450px;
}

.container-wrapper {
    display: flex;
    flex-direction: column;
    /* Sắp xếp các phần tử theo chiều dọc */
    height: 100%;
    /* Chiều cao 100% cho div cha */
}

.bottom-fixed {
    margin-top: auto;
    /* Đẩy phần này xuống cuối */
}


/*Responsive*/
@media (max-width: 1280px) {
    :root {
        --text-size-medium: 12px;
        --height-header-menu: 85px;
        --height-header-menu-aboutus: 65px;
    }

    .custom-card {
        height: 400px;
    }

    .custom-leader-card-image {
        height: 70%;
    }

    .custom-carousel-card {
        height: 400px;
    }

    .custom-carousel-card-image {
        height: 65%;
    }

    .custom-activity-card {
        height: 400px;
    }

    .custom-item-carousel-solution {
        height: 350px;
    }

    .custom-height-aboutus-home {
        height: 425px;
    }

    .fs-5c {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 1024px) {
    :root {
        --text-size-medium: 11px;
        --height-header-menu: 80px;
        --height-header-menu-aboutus: 60px;
    }

    .container-page {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .custom-detail-card-image {
        height: 100px;
    }

    .custom-button,
    .custom-button-revese {
        gap: 5px;
        padding: 8px 10px;
    }

    .custom-button-icon,
    .custom-button-revese-icon {
        width: 24px;
        height: 24px;
    }

    .custom-height-activity {
        height: 500px;
    }

    .custom-item-carousel-solution {
        height: 300px;
    }

    .custom-height-aboutus-home {
        height: 335px;
    }

    .custom-height-banner {
        height: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --text-size-medium: 10px;
    }

    .container-page {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .custom-card {
        height: 300px;
    }

    .custom-height-activity {
        height: 400px;
    }

    .custom-height-history-text {
        max-height: unset;
    }

    .h-xs-auto {
        height: auto !important;
    }

    #sendMessageForm {
        padding-top: 10px;
        padding-left: 0px !important;
    }

    .custom-badge {
        min-height: unset;
    }

    .owl-carousel .owl-dots {
        overflow-x: auto;
        width: 150px;
    }
}

@media(max-width: 576px) {
    .h-xs-auto {
        height: auto !important;
    }
}