* {
    box-sizing: border-box;
}

@font-face {
    font-family: "SF Pro Display";
    src:
        url("../../assets/Font/SF/SFProDisplay-Medium.woff2") format("woff2"),
        url("../../assets/Font/SF/SFProDisplay-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src:
        url("../../assets/Font/SF/SFProDisplay-Bold.woff2") format("woff2"),
        url("../../assets/Font/SF/SFProDisplay-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src:
        url("../../assets/Font/SF/SFProDisplay-Regular.woff2") format("woff2"),
        url("../../assets/Font/SF/SFProDisplay-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display";
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.coming-soon-wrapper {
    background-image: url("../images/comming-soon-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.coming-soon-content-wrapper {
    max-width: 751px;
    margin: 0 auto;
    text-align: center;
    padding: 0 8px;
}
.cs-logo {
    margin-bottom: 72px;
}
.coming-soon-content-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    color: #ffffff;
}

.coming-soon-content-wrapper h2 {
    color: #42b6f6;
    font-weight: 700;
    line-height: 100%;
    font-size: 70px;
}

.coming-soon-content-wrapper h4 {
    font-weight: 700;
    line-height: 100%;
    font-size: 48px;
}
.coming-soon-content-wrapper h5 {
    font-weight: 700;
    line-height: 100%;
    font-size: 36px;
}

.cs-email {
    font-weight: 500;
    line-height: 100%;
    font-size: 24px;
    margin-top: 71px;
}

.cs-email a {
    color: #42b6f6;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.cs-email a:hover {
    color: #f6f6f6;
}

@media (max-width: 991px) {
    .coming-soon-content-wrapper h2 {
        font-size: 48px;
    }

    .coming-soon-content-wrapper h4 {
        font-size: 36px;
    }
    .coming-soon-content-wrapper h5 {
        font-size: 24px;
    }

    .cs-email {
        font-size: 18px;
        margin-top: 50px;
    }
    .coming-soon-content-wrapper {
        max-width: 570px;
    }
    .cs-logo img {
        max-width: 220px;
    }
}

@media (max-width: 450px) {
    .coming-soon-content-wrapper h2 {
        font-size: 36px;
    }

    .coming-soon-content-wrapper h4 {
        font-size: 24px;
    }
    .coming-soon-content-wrapper h5 {
        font-size: 20px;
    }
    .coming-soon-content-inner {
        gap: 28px;
    }
    .coming-soon-content-wrapper {
        padding: 0 16px;
    }
    .cs-logo img {
        max-width: 170px;
    }
}
