/* Custom Palmore Fonts */
@font-face {
    font-family: 'Palmore';
    src: url(' /assets/fonts/PALMORE/PalmoreLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Palmore';
    src: url(' /assets/fonts/PALMORE/PalmoreRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Palmore';
    src: url(' /assets/fonts/PALMORE/PalmoreSemibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Palmore';
    src: url(' /assets/fonts/PALMORE/PalmoreBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Custom poppins Fonts */
@font-face {
    font-family: 'poppins';
    src: url(' /assets/fonts/POPPINS/Poppins-Bold.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url(' /assets/fonts/POPPINS/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url(' /assets/fonts/POPPINS/Poppins-Light.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'poppins';
    src: url(' /assets/fonts/POPPINS/Poppins-Medium.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

.bg-light-red {
    background-color: #74070d;
    font-family: Palmore;
    overflow: hidden;
}

.section-com {
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.twm-bnr-title-large-bold {
    margin: 0;
    font-family: Palmore;
    font-size: 89px;
    line-height: 72px;
    font-weight: 700;
    color: #ffeca8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.section-com .container {
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

.coming-soon-wrapper p {
    font-family: Poppins;
    font-size: 15px;
    line-height: 28px;
    color: #ffeca8;
    margin-bottom: 0;
}

.section-com .container .row {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
}

.coming-soon-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    text-align: center;
    border-radius: 5px;
}

.logo-c {
    width: 520px;
    margin-bottom: 20px;
}

.notify-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
}

.email-input {
    background-color: rgb(242 239 225);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 10px;
    border-radius: 0px;
    color: #74070d;
    flex: 1;
    height: 28px;
    border-radius: 0px;
    width: 80%;
}

    .email-input::placeholder {
        color: rgba(84, 82, 82, 0.944);
    }

    .email-input:focus {
        background-color: rgb(239, 239, 239);
        border-color: rgba(255, 255, 255, 0.4);
        color: #3c3c3c;
        box-shadow: none;
        outline: none;
    }

.btn-notify {
    background-color: #ffeca8;
    color: #74070d;
    padding: 8px 10px;
    border-radius: 0px;
    border: none;
    font-weight: 600;
    white-space: nowrap;
    width: 20%;
    height: 47px;
}
    .btn-notify:not(:disabled) {
        cursor: pointer;
    }

        .btn-notify:not(:disabled):hover {
            background-color: #a199cf;
            color: #5e090e;
        }

    .btn-notify:disabled {
        cursor: default;
        opacity: 0.5;
        background-color: #ffeca8;
        color: #74070d;
    }


.notify-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.max-w-t {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.icons {
    background-color: #ffeca8;
    color: #74070d;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    gap: 10px;
    transition: all 0.3s ease;
}

    .icons:hover {
        background-color: #ffeca8;
        color: #5e090e;
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.coming-soon {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    color: #9FB5F7;
}


@keyframes gradientMove {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

@media only screen and (max-width: 991px) {
    .notify-form {
        max-width: 338px;
        margin: 0 auto;
        display: flex;
        margin-top: 10px;
    }

    .max-w-t {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .email-input {
        width: 70%;
    }

    .btn-notify {
        width: 30%;
    }

    .twm-bnr-title-large-bold {
        font-size: 37px;
        line-height: 72px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 4px;
    }

    .logo-c {
        width: 358px;
        margin-bottom: 3px;
    }

    .coming-soon {
        font-size: 37px;
    }
}
