:root {
    --primary: #EF6C0B;
    --black: #000;
    --white: #fff;

    --font-regular: "Inter24pt-Regular";
    --font-medium: "Inter24pt-Medium";
    --font-semibold: : "Inter24pt-SemiBold";
    --font-bold: "Inter24pt-Bold";
    --font-extrabold: "Inter24pt-ExtraBold";
}

@font-face {
    font-family: 'Inter24pt-Black';
    src: url('../font/Inter24pt-Black.woff2') format('woff2'),
        url('../font/Inter24pt-Black.woff2') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter24pt-ExtraBold';
    src: url('../font/Inter24pt-ExtraBold.woff2') format('woff2'),
        url('../font/Inter24pt-ExtraBold.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter24pt-Medium';
    src: url('../font/Inter24pt-Medium.woff2') format('woff2'),
        url('../font/Inter24pt-Medium.woff2') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter24pt-Regular';
    src: url('../font/Inter24pt-Regular.woff2') format('woff2'),
        url('../font/Inter24pt-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter24pt-SemiBold';
    src: url('../font/Inter24pt-SemiBold.woff2') format('woff2'),
        url('../font/Inter24pt-SemiBold.woff2') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter24pt-Bold';
    src: url('../font/Inter24pt-Bold.woff2') format('woff2'),
        url('../font/Inter24pt-Bold.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth
}

.py-100 {
    padding-block: clamp(6rem, 8vw, 10rem)
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}



/* ====ComingSoon section=== */

.coming-soon {
    padding-top: 200px;
    height: 100dvh;
    background-image: url(../img/comingsoonbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}


.coming-soon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.coming-soon-content img {
    width: 100%;
    max-width: 1140px;
    margin: 0px auto;
    margin-bottom: clamp(4rem, 7vw, 9rem);
}

.coming-soon-content h4 {
    font-family: var(--font-regular);
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    line-height: 1.3;
    color: var(--black);
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.divider {
    width: clamp(12rem, 15vw, 18rem);
    height: 0.1rem;
    background: var(--primary);
    margin-block: clamp(2.5rem, 4vw, 4.5rem);
}

.coming-soon-content h2 {
    font-family: var(--font-regular);
    font-size: clamp(2.2rem, 2.5vw, 3rem);
    line-height: 1.3;
    letter-spacing: 0.2em;
    color: var(--black);
}

.coming-soon-content h2 span {
    color: var(--primary);
}


@media only screen and (max-width: 991px) {
    .coming-soon {
        padding: 0;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}