/* CSS Reset */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

body {
    background: url(/images/body-bg.webp) 0 0 no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

*,
::after,
::before {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    outline: 0;
}

img {
    max-width: 100%;
}

/* Main CSS */
.container {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 80px;
}

.logo {
    width: 216px;
    display: flex;
    flex-shrink: 0;
}

.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__item {
    display: flex;
    align-items: center;
}

.nav__item a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__item span:first-child {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bodyContent__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 80px;
    display: flex;
}

.bodyContent__left {
    flex: 1;
}

.bodyContent__right {
    width: 615px;
    flex-shrink: 0;
    padding-top: 50px;
}

.comingSoon {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #021A56;
    margin-bottom: 35px;
    position: relative;
    padding-left: 40px;
}

.comingSoon::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #021A56;
    position: absolute;
    left: 0;
    top: 50%;
}

.heading {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    color: #021A56;
}

.subHeading {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #021A56;
    margin-top: 35px;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
    gap: 80px;
    padding: 20px 80px;
    margin-top: 100px;
}

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

.counter__itemCount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    height: 138px;
    background: url(/images/counter-bg.webp) center center no-repeat;
    background-color: #fff;
    font-size: 58px;
    font-weight: 900;
    color: #021A56;
}

.counter__itemText {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #021A56;
    margin-top: 10px;
}

.footer {
    background-color: #fff;
    border-top: 1px #021A56 solid;
    border-bottom: 1px #021A56 solid;
    padding: 10px 0;
    margin-top: auto;
    margin-bottom: 20px;
}

.footer__marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.footer__list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    min-width: 100%;
    animation: marquee 40s linear infinite;
    padding-right: 20px;
}

.footer__list li {
    flex-shrink: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #021A56;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.footer__list li::after {
    content: "";
    width: 2px;
    height: 20px;
    background-color: #021A56;
    margin-left: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* Mobile */
@media screen and (max-width: 767px) {
    .header__inner {
        padding: 20px 20px;
    }

    .logo {
        width: 100px;
    }

    .nav__item span:last-child {
        display: none;
    }

    .bodyContent {
        backdrop-filter: blur(2px);
    }

    .bodyContent__inner {
        padding: 20px 40px;
        flex-direction: column;
    }

    .bodyContent__left,
    .bodyContent__right {
        width: 100%;
    }

    .comingSoon {
        margin-bottom: 20px;
    }

    .heading {
        font-size: 32px;
        line-height: 38px;
    }

    .subHeading {
        margin-top: 20px;
    }

    .counter {
        gap: 20px;
        padding: 20px;
        margin-top: 0;
    }

    .counter__itemCount {
        width: 70px;
        height: 70px;
        font-size: 24px;
        background-size: 70px 70px;
    }

    .counter__itemText {
        font-size: 14px;
        margin-top: 6px;
    }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        background-position: center center;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .header__inner {
        padding: 20px 30px;
    }

    .logo {
        width: 150px;
    }

    .bodyContent {
        backdrop-filter: blur(2px);
    }

    .bodyContent__inner {
        flex-direction: column;
        padding: 20px 60px;
    }

    .bodyContent__left {
        width: 100%;
        flex: 1;
    }

    .bodyContent__right {
        width: 100%;
    }

    .counter {
        gap: 40px;
    }

    .counter__itemCount {
        width: 100px;
        height: 100px;
        background-size: 100px 100px;
        font-size: 48px;
        margin-top: 100px;
    }

    .footer {}
}

/* Tablet landscape */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {}