/* =========================
   ZEEKR HEADLINE
========================= */

@font-face {
    font-family: "Zeekr Headline";
    src: url("../font/ZeekrHeadline-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Headline";
    src: url("../font/ZeekrHeadline-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Headline";
    src: url("../font/ZeekrHeadline-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Headline";
    src: url("../font/ZeekrHeadline-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Headline";
    src: url("../font/ZeekrHeadline-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Headline";
    src: url("../font/ZeekrHeadline-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

/* =========================
   ZEEKR TEXT
========================= */

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-RegularItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Zeekr Text";
    src: url("../font/ZeekrText-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

/* =========================
   GLOBAL TYPOGRAPHY
========================= */

:root {
    --font-heading: "Zeekr Headline", sans-serif;
    --font-body: "Zeekr Text", sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: #111;
    background: url("../image/background.png");
    background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
}

.header-section {
    background-color: white;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* =========================
   UTILITY CLASSES
========================= */

.text-thin {
    font-weight: 100;
}

.text-light {
    font-weight: 300;
}

.text-regular {
    font-weight: 400;
}

.text-medium {
    font-weight: 500;
}

.text-bold {
    font-weight: 700;
}

.text-extrabold {
    font-weight: 800;
}

.italic {
    font-style: italic;
}

.top-section {
    height: 100vh;
}

.bottom-section {
    height: 100vh;
    background-color: #111;
}

/* 
==============================================
                Thank You Page
==============================================
*/
.thank-you-bg {
    background-image: url("../image/thank-you.png");
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

.thank-you-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@media screen and (min-width: 769px) {
    .thank-you-bg {
        height: 100vh;
        overflow: hidden;
    }

    .thank-you-page {
        height: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .thank-you-bg {
        background-position: center;
        height: auto;
        overflow-y: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

.orange-follow-button {
    font-family: "Zeekr Text";
    text-align: center;
    background-color: #ff5841;
    line-height: 48px;
    font-size: 28px;
    border: none;
    color: white;
    padding: 0 10px;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .orange-follow-button {
        font-size: 18px;
        line-height: 40px;
        padding: 0 20px;
        width: 90%;
        max-width: 320px;
    }
}

.thank-you-headline {
    color: white;
    font-size: 50px;
    font-family: "Zeekr Headline";
    text-align: center;
}

@media screen and (max-width: 768px) {
    .thank-you-headline {
        font-size: 24px;
        padding: 0 15px;
    }
}

.thank-you-description {
    color: #ffffff;
    font-weight: 300;
    font-family: "Zeekr Text";
    text-align: center;
    font-size: 24px;
    max-width: 840px;
    margin-top: 10px;
    line-height: 1.2;
    margin: 10px;
}

@media screen and (max-width: 768px) {
    .thank-you-description {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.4;
    }
}

.thank-you-svg {
    padding: 30px 180px 0 0;
}

@media screen and (max-width: 768px) {
    .thank-you-svg {
        padding: 20px 0 0 0;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
}

.thank-you-description-bold {
    font-weight: 600;
}

.thank-you-social-link {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.thank-you-social-link-button {
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank-you-social-link-button svg {
    width: 20px;
    height: 20px;
}

/* 
========================================
            Email Design
========================================
*/

.email-car-design {
    height: 100vh;
    background-image: url("../image/email/email-card.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;

}

.email-card-heading {
    font-size: 115px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Zeekr Headline";
    padding-left: 250px;
}

.time-countdown-section {
    height: 80vh;
    background: url("../image/email/orange-line.jpg");
    background-size: cover;
    /* display: flex; */
    /* align-items: center; */
    width: 100%;
}

.time-online-exclusive {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Zeekr Headline";

}

.time-countdown-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.time-countdown-duration {
    color: #ffffff;
    font-size: 35px;
    font-weight: 300;
}

.time-countdown-line {}



/* 
======================================================
    Code Redeem Header
======================================================
*/

.code-redeem-header {
    background: url("../image/code-redeem-header.jpg");
    background-size: cover;
    width: 100%;
    height: 100vh;
}

/* 
======================================================
Responsive Design
======================================================
*/

@media screen and (max-width: 1200px) {
    .email-card-heading {
        font-size: 85px;
        padding-left: 120px;
        line-height: 1.1;
    }
}

@media screen and (max-width: 992px) {
    .email-car-design {
        background-position: center;
    }

    .email-card-heading {
        font-size: 65px;
        padding-left: 50px;
        line-height: 1.1;
    }

    .code-redeem-header {
        background-position: center;
    }
}

@media screen and (max-width: 768px) {
    .email-car-design {
        height: auto;
        padding: 80px 20px;
        /*min-height: 80vh;*/
        min-height: 50vh;
        margin-top: 75px;
    }

    .svg-stroke {
        font-size: 500px !important;
        padding-left: 150px;
    }

    .thank-you-svg svg {
        font-size: 500px !important;
        padding-left: 50px;
    }

    .email-card-heading {
        font-size: 55px;
        padding-left: 20px;
        line-height: 1.1;
    }

    .time-countdown-section {
        min-height: auto;
        height: auto;
        padding: 60px 20px;
    }

    .code-redeem-header {
        height: 60vh;
        background-position: center;
    }
}

@media screen and (max-width: 480px) {
    .email-card-heading {
        font-size: 42px;
        padding-left: 15px;
        line-height: 1.1;
    }

    .code-redeem-header {
        background: url("../image/zeekr-66sale-live-mobile.jpg");
        background-size: cover;
        margin-top: 75px;
        height: 50vh;
        /*background-position-x: -170px;
        background-position-y: 20px;*/
    }
}