@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary-color: #0068ff;
  --primary-hover-color: #0066ffac;
  --text-white-color: #fff;
}

* {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.btn-primary:hover {
    opacity: 60%;
}

.content-container, section {
    padding: 32px 80px;
}

.title-section {
    display: flex;
    gap: 4px;
    align-items: center;
}

.title-paragraph {
    font-weight: 700;
    font-size: 24px;
}
/* ---------------------------------------- */

.nav-main {
    height: 72px;
    border-bottom: 1px solid #e6e8ec;
    padding: 16px 24px;
    top: 0;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.nav-main .menu-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-main .menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-main .menu li {
    padding: 4px 8px;
}

.nav-main .menu li:hover {
    background-color: var(--primary-hover-color);
    border-radius: 16px;
    color: var(--text-white-color);
}

.btn-primary {
    color: var(--text-white-color);
    background-color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 16px;
}

/* ------------------------------Intro Section---------------------------- */

.intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 16px 24px;
    margin-top: 32px; */
}

.intro-section-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    
    padding: 80px 0;
}

.intro-section .welcome-mini-box {
    display: flex;
    justify-content: center;
}

.intro-section .welcome-mini {
    color: var(--primary-color);
    border: 1px solid var(--primary-hover-color);
    border-radius: 16px;
    padding: 4px 16px;
    font-weight: 600;
    width: fit-content;
}

.intro-section .welcome-explore {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}


.intro-section .welcome-description {
    text-align: center;
}

.btn-contact-we {
    margin-top: 32px;
    width: fit-content;
}

/* ------------------------------Core Section---------------------------- */

.core-section {
    background-color: #f7f9fc;
}

.core-section .title-paragraph {
    margin-top: 16px;
}

.core-section .description-paragraph {
    margin-top: 8px;
}

