* {
    box-sizing: border-box;
}

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

html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
}

html,
body {
    scroll-behavior: smooth;
}

/* ==== Common ==== */
a {
    text-decoration: none;
}

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

.btn {
    display: inline-block;
    padding: 18px 10px;
    min-width: 98px;
    border-radius: 12px;
    background: var(--primary-color);

    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
}

.content {
    width: 1110px;
    max-width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
}

/* ==== Header === */
.fixed-header {
    position: sticky;
    top: -24px;
    z-index: 1;
    padding-top: 24px;
    background-color: #e6f0ff;
}

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

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

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

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

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

.fixed-header .navbar .action-link {
    margin-right: 18px;
    color: var(--primary-color);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
}

.fixed-header .navbar .action-btn {
    padding: 13px 10px;
    border-radius: 8px;
}

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


.wrap-hero .info {
    width: 51%;
    height: 371px;
}

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

.wrap-hero .title {
    margin-top: 8px;
    margin-bottom: 30px;
    font-family: Poppins;
    font-size: 6.2rem;
    font-weight: 700;
    line-height: 1.1875;
    color: #000336;
}

.wrap-hero .desc {
    margin-bottom: 40px;
    color: #5a6473;
    font-family: Poppins;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.77778;
    text-transform: lowercase;
}

.wrap-hero .desc::first-letter {
    color: #5a6473;

    font-family: Poppins;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 3.2rem; /* 177.778% */
    text-transform: capitalize;
}

.wrap-hero .hero-cta {
    min-width: 170px;
}

.wrap-hero .hero-img {
    position: absolute;
    right: calc((100vw - 1110px) / 2 - 100px);
    bottom: 0;
    width: 41%;
    height: 84%;
}

/* ==== Clients === */
.clients {
    margin-top: 79px;
    padding-top: 43px;
}

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

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

.clients .row + .row {
    margin-top: 18px;
}

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

.clients .images a {
    display: flex;
    align-items: center;
    padding: 0 41px;
    height: 90px;
    border-radius: 12px;
    background: #fff;
}

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

/* ==== Guides === */
.guides {
    margin-top: 40px;
    padding-top: 93px;
    padding-bottom: 79px;
    scroll-margin-top: 40px;

}

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

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

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

.list-guides {
    display: flex;
    justify-content: center;
}

.guides-item {
    text-align: center;
    width: 141px;
    height: 129px;
}

.guides-item:nth-child(2) {
    margin: 0 140px;
}

.guides-item .icon {
    width: 48px;
    height: 48px;
}

.guides-item .title {
    margin: 26px 0 10px;
    color: #3b3c45;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
}

.guides-item .link {
    color: #0689ff;
    font-size: 1.4rem;
    font-weight: 600;
}

.guides-item .arrow {
    margin-left: 6px;
}

.guides-btn {
    margin-top: 50px;
}

.guides .guide-cta {
    display: flex;
}
.guides .btn {
    margin: 50px auto 0;
    min-width: 170px;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
}

/* ==== Futures === */
.futures {
    margin-top: 41px;
    padding-top: 110px;
    padding-bottom: 110px;
    background: #f5fafe;
    scroll-margin-top: -40px;
}

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

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

.futures .sub-title {
    color: #5a6473;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
    word-break: break-all;
}

.futures .link {
    color: #0689ff;
    font-size: 1.8rem;
    font-weight: 600;
}

.futures .arrow {
    margin-left: 6px;
}

.futures .list-content {
    display: flex;
    gap: 30px;
}

.futures .content-item {
    flex: 1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 65px 80px -46px rgba(226, 238, 249, 0.6);
}

.futures-image {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
    height: 227px;
    object-fit: cover;
}

.futures .wrap {
    padding: 17px 36px 38px 22px;
}

.futures .content-item .title a {
    color: #000339;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
}

.futures .content-item .sub-title {
    margin-top: 11px;
    color: #a3a6ab;
    font-size: 1.4rem;
    font-weight: 500;
}

.futures .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    margin-right: 2px;
}

.futures .item {
    display: flex;
    align-items: center;
}

.futures .content-item .sub-icon {
    margin-left: 8px;
    color: #4d4d52;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.014rem;
}

/* ==== Stats === */
.stats {
    margin-top: 75px;
    padding-top: 50px;
    scroll-margin-top: 60px;
}

.stats .content {
    width: 1048px;
}

.stats .row {
    display: flex;
}

.stats .img-block,
.stats .info {
    width: 50%;
}

.stats .img-block {
    position: relative;
}

.stats .info {
    padding-top: 79px;
    padding-left: 165px;
}

.stats .info .sub-title {
    position: relative;
    margin-bottom: 20px;
    width: 269px;
    color: #000339;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.28571;
}

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

.stats .info .desc {
    width: 309px;
    color: #5a6473;

    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
}

.stats .img-block > img {
    display: block;
    margin-left: auto;
    height: 460px;
    width: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Trend */
.stats .stats-trend {
    position: absolute;
    top: 0;
    right: 281px;
    padding: 45px 22px 40px;
    width: 239px;
    border-radius: 0 0 12px 12px;
    background: #fff;
}

.stats .stats-trend .value {
    width: 159px;
    color: #000339;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.026rem;
}

.stats-trend .value span {
    color: #000339;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.026rem;
}

.stats .stats-trend .icon {
    margin-left: auto;
}

.stats .stats-trend .desc {
    margin-top: 8px;
    width: 194px;
    height: 31px;
    color: #a7a7a7;

    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
}

.stats .stats-trend .sep {
    margin: 26px 0;
    height: 1.2px;
    background: #e9e9e9;
}

/* Avatar */

.stats .avatar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 14px;
}

.stats .avatar-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f3bb1;

    color: #fff;
    font-family: "Circular Std";
    font-size: 0.7rem;
    font-weight: 450;
    letter-spacing: -0.0145rem;
}

.stats .avatar .avatar-group {
    display: flex;
}

.stats .avatar-group .image-avatar {
    margin-left: -3px;
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
}

.stats .avatar-group .image-avatar:first-child {
    margin-left: 0;
}

/* Row quantity */
.stats .row-qty {
    justify-content: space-between;
    margin-top: 110px;
    padding: 0 32px 0;
}

.stats .row-qty .qty .quantity {
    color: #000;
    font-size: 6.4rem;
    font-weight: 600;
}

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

/* ==== Stats === */
.subscription {
    margin-top: 51px;
    padding-top: 39px;
    border-radius: 20px;
}

.subscription .body {
    position: relative;
    padding: 110px 0 110px 0;
    height: 370px;
    border-radius: 20px;
    background-color: #063183;
}

.subscription .body .info {
    padding: 0 90px 0 80px;
    width: 671px;
    max-width: 100%;
}

.subscription .body .info .sub-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
}

.subscription .body .info .desc {
    margin: 15px 0 20px;
    color: #fff;
    font-family: Poppins;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.875;
    opacity: 0.75;
}

.subscription .body .btn {
    width: 151px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    color: #002366;
    font-size: 1.3rem;
}

.subscription .image {
    position: absolute;
    top: -38px;
    right: 210px;
}

/* ==== Footer === */
.footer {
    margin-top: 55px;
    padding-top: 50px;
}
.footer .row {
    display: flex;
}

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

.footer .column .heading {
    margin-bottom: 42px;
    color: #1c1c1d;
    font-family: Lato;
    font-size: 2rem;
    font-weight: 700;
}

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

.footer .column .item:first-child {
    margin-top: 0;
}

.footer .column .item a {
    line-height: normal;
    color: #7a7a7e;
    font-size: 1.6rem;
    font-weight: 400;
    white-space: nowrap;
}

.footer .column:last-child .desc {
    width: 257px;
    color: #7a7a7e;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75; /* 175% */
}

.footer .column:last-child .social {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    width: 117px;
}

.footer .column:last-child .social a {
    font-size: 11px;
    padding: 8px 8px;
    border-radius: 3px;
    color: #646464;
    background-color: #f9f9f9;
}

.footer .row:last-child {
    margin: 81px 0 51px;
}
.footer .row-bottom {
    justify-content: space-between;
}

.footer .row:last-child .logo {
    width: 107px;
    height: 24px;
    fill: #101010;
}

.footer .row:last-child .call {
    color: #c2c2c2;
    font-size: 1.4rem;
    font-weight: 400;
}
