.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-f43e8cd *//* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #ffffff;
}


/* =========================================
   MAIN SECTION
========================================= */

.coming-soon {
    min-height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(20, 120, 255, 0.13),
            transparent 45%
        ),
        #050505;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.coming-soon::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: rgba(0, 105, 255, 0.08);

    filter: blur(110px);

    top: -280px;
    left: -180px;
}

.coming-soon::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(0, 105, 255, 0.07);

    filter: blur(110px);

    right: -200px;
    bottom: -280px;
}


/* =========================================
   CONTENT
========================================= */

.content {
    width: 100%;
    max-width: 1050px;

    padding: 40px 25px;

    text-align: center;

    position: relative;
    z-index: 2;
}


/* =========================================
   LOGOS
========================================= */

.logos {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 30px;

    margin-bottom: 45px;

    animation: fadeDown 1s ease forwards;
}


/* Logo Box */

.logo-box {
    width: 150px;
    height: 110px;

    padding: 12px;

    background: #ffffff;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.40);
}


/* Logo Image */

.logo-box img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* Logo Divider */

.divider {
    width: 1px;
    height: 65px;

    background: rgba(255, 255, 255, 0.25);
}


/* =========================================
   COMPANY NAME
========================================= */

.company-name {
    font-size: clamp(40px, 6vw, 72px);

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: 2px;

    text-transform: uppercase;

    animation: fadeUp 1s ease 0.2s both;
}

.company-name span {
    color: #168cff;
}


/* =========================================
   LOCATION
========================================= */

.location {
    margin-top: 15px;

    font-size: 17px;

    font-weight: 500;

    letter-spacing: 5px;

    color: #a9a9a9;

    text-transform: uppercase;

    animation: fadeUp 1s ease 0.3s both;
}


/* =========================================
   BLUE LINE
========================================= */

.line {
    width: 90px;
    height: 3px;

    margin: 35px auto;

    background: #168cff;

    border-radius: 20px;

    box-shadow:
        0 0 18px rgba(22, 140, 255, 0.75);

    animation: fadeUp 1s ease 0.4s both;
}


/* =========================================
   COMING SOON
========================================= */

.coming-title {
    font-size: clamp(42px, 7vw, 82px);

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: 3px;

    text-transform: uppercase;

    animation: fadeUp 1s ease 0.5s both;
}

.coming-title span {
    display: block;

    margin-top: 8px;

    color: #168cff;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .content {
        padding: 35px 20px;
    }

    .logos {
        gap: 20px;
        margin-bottom: 35px;
    }

    .logo-box {
        width: 125px;
        height: 95px;
    }

    .divider {
        height: 55px;
    }

    .location {
        letter-spacing: 3px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .coming-soon {
        min-height: 100svh;
    }

    .content {
        padding: 25px 15px;
    }


    /* Logos */

    .logos {
        gap: 13px;

        margin-bottom: 30px;
    }

    .logo-box {
        width: 105px;
        height: 78px;

        padding: 7px;

        border-radius: 13px;
    }

    .divider {
        height: 45px;
    }


    /* Company */

    .company-name {
        font-size: 36px;

        letter-spacing: 1px;
    }


    /* Location */

    .location {
        margin-top: 11px;

        font-size: 11px;

        letter-spacing: 2.5px;
    }


    /* Line */

    .line {
        width: 65px;
        height: 2px;

        margin: 27px auto;
    }


    /* Coming Soon */

    .coming-title {
        font-size: 43px;

        letter-spacing: 1px;

        line-height: 1.08;
    }

    .coming-title span {
        margin-top: 6px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .logo-box {
        width: 90px;
        height: 68px;
    }

    .company-name {
        font-size: 31px;
    }

    .location {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .coming-title {
        font-size: 37px;
    }

}/* End custom CSS */