@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

@font-face {
    font-family: 'Alimama Agile VF';
    src: url('https://cdn.jsdelivr.net/npm/alimama-agile-vf@1.0.0/AlimamaAgileVF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    background-image: url('./img/ic_bg_have_phone.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Alimama Agile VF', 'Alimama Agile VF', sans-serif;
    position: relative;
}


.content {
    position: relative;
    left: 53%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 200px;
    width: fit-content;
}

.logo {
    width: 90px;
    height: 90px;
    display: block;
}

.title {
    margin-top: 30px;
    font-family: 'Alimama Agile VF', 'Alimama Agile VF';
    font-weight: 700;
    font-size: 94px;
    color: #FFFFFF;
    line-height: 96px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.subtitle {
    font-family: 'Alimama Agile VF', 'Alimama Agile VF';
    font-weight: 400;
    font-size: 36px;
    margin-top: 7px;
    color: #FFFFFF;
    line-height: 43px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.body-text {
    font-family: 'Alimama Agile VF', 'Alimama Agile VF';
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    margin-top: 14px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(90deg, #FB8A2D 0%, #AA2408 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-link {
    margin-top: 90px;
    display: block;
    text-decoration: none;
}

.btn-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
}


.footer {
    position: absolute;
    right: 94px;
    bottom: 70px;
    font-family: 'Lato', 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #F0F0F0;
    line-height: 19px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.footer a {
    color: #F0F0F0;
    text-decoration: none;
    cursor: pointer;
}

.footer a:hover {
    text-decoration: underline;
}

.footer span {
    color: #F0F0F0;
    margin-left: 13px;
    margin-right: 13px;
}


@media (max-width: 1200px) {
    .content {
        left: 50%;
    }

    .title {
        font-size: 72px;
        line-height: 74px;
    }

    .subtitle {
        font-size: 28px;
        line-height: 34px;
    }

    .body-text {
        font-size: 22px;
        line-height: 26px;
    }

    .btn-link {
        margin-top: 70px;
    }

    .btn-img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    body {
        background-position: 65% center;
    }

    .content {
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        padding-top: 60px;
    }

    .title {
        font-size: 48px;
        line-height: 50px;
        text-align: center;
    }

    .subtitle {
        font-size: 22px;
        line-height: 28px;
        text-align: center;
    }

    .body-text {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

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

    .btn-img {
        max-width: 240px;
    }

    .footer {
        right: 24px;
        bottom: 30px;
        font-size: 14px;
    }
}