* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

html, body {
    scroll-behavior: smooth;
}
p {
    font-family: 'Poppins';
}

:root {
    --primary-color: #0f1b4c;
}

/* Common */
.content {
    width: 1110px;
    max-width: calc(100% - 48px);
    margin: auto;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    min-width: 98px;
    padding: 18px 16px;
    background-color: var(--primary-color);
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: center;
    color: #ffffff;
}

.btn:hover {
    opacity: 0.9;
    transition: box-shadow 0.2s, transform 0.2s, opacity 0.2s;
}

/* Header */
.hero-wrap {
    background: #e6f0ff;
    height: calc(100vh - 90px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.navbar ul {
    display: flex;
    margin-left: 50px;
}

.navbar ul a {
    font-weight: 500;
    font-size: 1.4rem;
    color: #4f5361;
    padding: 8px 14px;
}

.navbar ul a:hover {
    text-decoration: underline;
}

.navbar .action {
    margin-left: auto;
}

.navbar .action-link {
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.navbar .action-btn {
    padding: 13px 16px;
    margin-left: 18px;
}

/* Hero */
.hero {
    /* margin-top: 130px; */
}

.hero .info {
    width: 51%;

}

.hero .sub-title {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #687690;
}

.hero .title {
    font-weight: 700;
    margin-top: 8px;
    font-size: 6.2rem;
    line-height: 1.19;
    color: #000336;
}

.hero .desc {
    margin-top: 30px;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.78;
    color: #5a6473;
}

.btn.hero-cta {
    min-width: 170px;
    margin-top: 40px;
}

.hero img {
    position: absolute;
    bottom: 0rem;
    right: calc((100vw - 1260px)/2);
}

/* Client */

.client {
    margin-top: 79px;
    padding-top: 43px;
    padding-bottom: 64px;
}

.client .row {
    display: flex;
    justify-content: space-between;
}

.client .row.desc {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.25;
    color: #7d8589;
    margin-top: 23px;
}

.client .img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
}

.client .img a {
    display: flex;
    align-items: center;
    padding: 0 42px;
    height: 91px;
    border-radius: 12px;
}

.client .img a:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* guide */
.guide {
    margin-top: 40px;
    padding: 93px 0 79px;
}

.guide .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guide .sub-title {
    position: relative;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1;
    text-align: center;
    color: #000339;
}

.guide .sub-title::before {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 41px;
    height: 4px;
    background: #000339;
    border-radius: 12px;
}

.guide .desc {
    width: 459px;
    max-width: 100%;
    margin: 20px auto 0;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.88;
    text-align: center;
    color: #5a6473;
}

.guide .list-guide {
    display: flex;
    margin-top: 70px;
    justify-content: center;

}

.guide .guide-item {
    margin: 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide .title {
    margin-top: 26px;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.1;
    color: #3b3c45;
}

.guide .link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 1.4rem;
    color: #0689ff;
}

.guide .btn {
    margin-top: 50px;
    min-width: 170px;
}


/* Feature */
.feature {
    margin-top: 41px;
    padding: 110px 0;
    background: #f5fafe;
}


.feature .sub-title {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1;
    color: #000339;
}

.feature .row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.feature .row a {
    display: flex;
    align-items: center;
}

.feature .row img {
    margin-left: 8px;
}

.feature .row p {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.88;
    color: #5a6473;
}

.feature .row span {
    font-weight: 600;
    font-size: 1.8rem;
    color: #0689ff;
}

/* Feature List */
.feature .list {
    gap: 30px;
    margin-top: 70px;
    display: flex;
}

.feature .list .item {
    flex: 1;
}

.feature .item .thumb {
    width: 100%;
    height: 227px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.feature .body {
    padding: 17px 20px 24px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    width: 350px;
}

.feature .body .title {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5;
    color: #000339;
}

.feature .body .desc {
    margin-top: 11px;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #a3a6ab;
    word-break: break-all;
}

.feature .body .info {
    display: flex;
    align-items: center;
    margin-top: 21px;
}

.feature .body .icon:not(.icon:first-child) {
    margin-left: 10px;
}

.feature .body .info span {
    margin-left: 8px;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    color: #4d4d52;
    width: 100%;
}

/* Stats */

/* Dieu chinh the stat */
.stats {
    margin-top: 75px;
    padding: 50px 0;
}

/* Dieu chinh ca row */
.stats .row {
    display: flex;

}

/* Lam cho no cach deu  */
.stats .img-block,
.stats .info {
    width: 50%;
}

/* Chinh h2 */
.stats .row .sub-title {
    position: relative;
    width: 269px;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1.29;
    color: #000339;
}

/* Chinh h2 before */
.stats .row .sub-title::before {
    position: absolute;
    top: -10px;
    left: 0;
    content: "";
    display: block;
    width: 41px;
    height: 4px;
    background: #000339;
    border-radius: 12px;
}

/* Chinh doan mo ta desc cua h2 */
.stats .row .desc {
    width: 309px;
    margin-top: 20px;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.88;
    color: #5a6473;
}

/* Dieu chinh padding va margin cua content-block */
.stats .info {
    padding: 79px 0 0 165px;
}

/* Dieu chinh img cho no vua voi kich thuoc */
.stats .img-block .image {
    display: block;
    margin-left: auto;
    width: 400px;
    height: 460px;
    border-radius: 12px;
    object-fit: cover;
}

/* Chinh img-block de no la relative */
.stats .img-block {
    position: relative;
}

/* Dieu chinh the trend cua image */
.stats-trend {
    position: absolute;
    top: 20px;
    left: 0;
    width: 239px;
    padding: 45px 22px 40px;
    border-radius: 12px;
    background-color: #fff;

    border: 2px solid #e0e3eb;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.15);
}

/* Dieu chinh the trong */
.stats-trend .value {
    font-weight: 700;
    font-size: 2.6rem;
    letter-spacing: 0.01em;
    color: #000339;
}

/* Dieu chinh icon tren the strong */
.stats-trend .icon {
    margin-left: auto;
}

/* Dieu chinh desc trong up trend */
.stats .stats-trend .desc {
    margin-top: 8px;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #a7a7a7;
    width: 100%;
}

.stats-trend .separate {
    height: 1.2px;
    margin-top: 25px;
    background: #e9e9e9;
}

.avatar-group {
    display: flex;
}

.stats .avatar-block {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 14px;
    margin-top: 26px;
    margin-left: 8px;
}

.stats .avatar {
    width: 16px;
    height: 16px;
    margin-left: -3px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-color, #fff);
    font-weight: 450;
    font-size: 0.7rem;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.row-qty {
    justify-content: space-between;
    margin-top: 110px;
    padding: 0 32px;
}

.qty-title {
    font-weight: 600;
    font-size: 6.4rem;
    color: #000000;
}

.qty-desc {
    margin-top: 24px;
    font-weight: 500;
    font-size: 1.8rem;
    color: #7b8087;
}

/* Contact */
.subscription {
    margin-top: 90px;
}

.subscription .body {
    position: relative;
    display: flex;
    align-items: center;
    height: 370px;
    background: #063183;
    border-radius: 20px;
}

.subscription .info {
    width: 671px;
    padding: 0 80px;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 2);
    line-clamp: var(--line-clamp, 2);
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subscription .sub-title {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1.5;
    color: #ffffff;
}

.subscription .desc {
    margin-top: 15px;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.88;
    color: #ffffff;
    opacity: 0.75;
}

.subscription .btn {
    margin-top: 20px;
    min-width: 151px;
    background: #fff;
    color: #002366;
}

.subscription .image {
    position: absolute;
    bottom: 0;
    right: 221px;
}

/* Footer */
.footer {
    margin-top: 55px;
    padding: 50px 0 58px;
}

.footer .row {
    display: flex;
}

.footer .row-top {
    column-gap: 185px;
}

.footer .heading {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1c1c1d;
}

.footer .item a,
.footer .desc {
    font-weight: 400;
    font-size: 1.6rem;
    color: #7a7a7e;
    white-space: nowrap;
}

.footer .item {
    margin-top: 18px;
}

.footer .desc {
    white-space: normal;
    line-height: 1.75;
}

.footer .list,
.footer .desc {
    margin-top: 42px;
}

.footer .social {
    display: flex;
    margin-top: 40px;
}

.footer .social-link+.social-link {
    margin-left: 16px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background: #f9f9f9;
}

.footer .row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 81px;
}

.footer .copyright {
    font-weight: 400;
    font-size: 1.4rem;
    color: #c2c2c2;
}

.fixed-header{
    background-color: #e6f0ff;
    padding-top: 26px;
    position: sticky;
    top: -26px;
    z-index: 1;
}