* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1250px;
    padding-left: 25px;
    padding-right: 25px;
    margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* main style */
.site-header {
    background-color: #F9F9F9;
    border-bottom: 1px solid #33333333
}
.logo-title {
    font-size: 22px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 450;
}
.sth-wrap-header {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}

.sth-wrap-header .logo-header {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-header img {
    vertical-align: middle;
    max-width: 314px;
}

.sth-banner-page {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.wrap-banner-page {
    padding-top: 64px;
    padding-bottom: 45px;
}

.sth-banner-title {
    font-weight: 400;
    /* font-size: 140px; */
    font-size: 120px;
    line-height: 118px;
    letter-spacing: -4%;
    margin-bottom: 40px;
    color: #333333;
    max-width: 600px;
}

.sth-banner-title span.dot-title {
    background: linear-gradient(180deg, rgba(192, 159, 95, 0.6) 0%, #C09F5F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.sth-meta-content p {
    font-weight: 400;
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0.5px;
    color: #333333;
    margin-bottom: 0;
}

.sth-meta-content {
    margin-bottom: 40px;
    max-width: 588px;
}

.sth-meta-advanced p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: #333333B2;
}

.sth-meta-advanced {
    margin-bottom: 40px;
    max-width: 486px;
}

.sth-meta-connect {
    display: flex;
    padding: 8px 0;
    gap: 32px;
}

.btn-style {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.btn-yellow {
    background: linear-gradient(180deg, rgba(192, 159, 95, 0.6) 0%, #C09F5F 100%);
    color: #fff;
}

.btn-transparent {
    border: 1px solid #C09F5F80;
    color: #333333;
}

.site-footer {
    background: linear-gradient(180deg, rgba(249, 249, 249, 0.5) 0%, rgba(243, 237, 226, 0.5) 100%);
    padding: 19.58px 0;
}

.wrap-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-footer img {
    max-width: 50px;
    vertical-align: middle;
}

.footer-copyright p {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
}

.coming-soon-btn {
    position: relative;
}

.coming-soon-btn::after {
    content: "Coming Soon";
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);

    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;

    pointer-events: none;
    z-index: 10;
}

/* Hover desktop */
.coming-soon-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Active/click mobile */
.coming-soon-btn:active::after {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 767px) {
    .sth-banner-title {
        font-size: 80px;
        line-height: 75px;
    }

    .sth-meta-advanced,
    .sth-meta-content,
    .sth-banner-title {
        margin-bottom: 30px;
    }

    .wrap-banner-page {
        padding-top: 60px;
    }
}

@media screen and (max-width: 410px) {
    .sth-meta-connect {
        gap: 20px;
    }

    .btn-style {
        padding: 14px 18px;
    }

    .sth-banner-title {
        font-size: 75px;
        line-height: 70px;
    }
}