@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;700;800&display=swap');

@font-face {
    font-family: 'Gilroy';
    font-weight: 300;
    src: url('../fonts/gilroy-light.ttf');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 200;
    src: url('../fonts/gilroy-thin.ttf');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 400;
    src: url('../fonts/gilroy-regular.ttf');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    src: url('../fonts/gilroy-bold.ttf');
}

@font-face {
    font-family: 'Gilroy';
    font-weight: 800;
    src: url('../fonts/gilroy-heavy.ttf');
}

*
{
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body
{
	line-height: 1;
    font-family: 'Gilroy', sans-serif;
    background-color: #FAFCFE;
    font-weight: 400;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.suspended
{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}


.suspended .bg
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.suspended .bg img
{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

    .suspended .wrapper
    {
        width: 95%;
        max-width: 1270px;
        display: flex;
        align-items: center;
        position: relative;
        margin: 0 auto;
    }

    .suspended .content
    {
        display: flex; 
        flex-direction: column;
    }

        .suspended .content h2
        {
            font-size: 147px;
            font-weight: 800;
            color: #2D51E2;
            text-transform: uppercase;
        }

        .suspended .content h1
        {
            font-size: 31px;
            font-weight: 600;
            color: #1B1A48;
            margin-bottom: 30px;
        }

        .suspended .content p
        {
            font-size: 16px;
            font-weight: 400;
            color: #43426C;
            line-height: 24px;
            margin-top: 20px;
            max-width: 410px;
        }

        .suspended .content a
        {
            font-weight: 600;
            color: #0086E9;
            text-decoration: none;
        }

        .suspended .content .powered
        {
            font-size: 12px;
            color: #000;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-top: 80px;
        }

            .suspended .content .powered svg
            {
                margin-left: 5px;
            }


        .suspended .illustration
        {
            position: absolute;
            left: 0;
            z-index: -1;
            width: 100%;
        }

            .suspended .illustration img
            {
                width: 100%;
            }


/* Responsive */
.desktop
{
    display: block;
}
.mobile
{
    display: none;
}

.whmcs-template 
{
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

    .whmcs-template a
    {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 65px;
        padding: 10px 10px 10px 0;
        outline: none;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
    }

    .whmcs-template svg
    {
        color: #fff;
    }

    .whmcs-template .info
    {
        position: relative;
    }

    .whmcs-template .info:hover::after
    {
        content: "Upload the downloaded file with WHM's Web Template Editor in suspended page tab";
        position: absolute;
        text-align: center;
        width: 180px;
        background-color: #fff;
        border-radius: 10px;
        padding: 10px 15px;
        top: 50px;
        left: 50%;
        font-size: 12px;
        line-height: 120%;
        transform: translateX(-50%);
    }

.landing 
{
    box-shadow: 0 10px 25px rgb(0, 0, 0, .3);
}

footer 
{
    padding: 25px 0;
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
}

    footer svg
    {
        height: 45px;
    }

@media only screen and (max-width: 1200px)
{
    .suspended .illustration img
    {
        width: 115%;
    }
}
@media only screen and (max-width: 800px)
{
    .desktop
    {
        display: none;
    }
    .mobile
    {
        display: block;
    }
    .suspended
    {
        flex-direction: column;
    }

    .suspended .illustration
    {
        position: relative;
        max-width: 100%;
    }

    .suspended .illustration img
    {
        position: relative;
        width: 100%;
        margin-bottom: 40px;
    }

    .suspended .wrapper
    {
        flex-direction: column-reverse;
        padding: 40px 0;
    }

    .suspended
    {
        height: auto;
    }

    .suspended .content
    {
        margin-top: 50px;
        text-align: center;
    }

    .suspended .content h2
    {
        font-size: 70px;
    }

    .suspended .content h1
    {
        font-size: 24px;
        margin-top: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .suspended .content .powered
    {
        justify-content: center;
        margin-top: 60px;
    }
    
}


.landing
{
    position: relative;
    background-color: #233B7E;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 0 120px;
}

.landing .bg
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.landing .bg img
{
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    filter: brightness(1.2);
}

    .landing .logo
    {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 120px;
    }

    .landing .wrapper
    {
        width: 95%;
        max-width: 1270px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
        position: relative;
    }

        .landing .content
        {
            width: 100%;
            display: flex;
            align-items: center;
        }

        .landing .content .text
        {
            max-width: 460px;
            width: 100%;
            z-index: 10;
        }

            .landing .content .text h1
            {
                font-size: 100px;
                font-weight: 200;
                color: #fff;
                line-height: 90px;
            }

            .landing .content .text > p
            {
                width: 100%;
                font-size: 16px;
                color: #fff;
                margin-top: 50px;
                font-weight: 400;
                line-height: 30px;
                margin-bottom: 50px;
            }


            .landing .content .illustration
            {
                position: relative;
                height: 100%;
                position: absolute;
                left: 460px;
                top: 0;
            }

            .landing .content .illustration:hover img
            {
                transform: translateY(-10px);
            }

                .landing .content .illustration img
                {
                    height: calc(100% + 260px);
                    position: relative;
                    left: -50px;
                    transition: 0.3s ease;
                    cursor: pointer;
                }

            .landing .content .inputs
            {
                display: flex;
                flex-direction: column;
            }
            
                .landing .content .inputs input
                {
                    height: 65px;
                    padding: 0 55px;
                    width: 100%;
                    outline: none;
                    border: none;
                    background-color: #fff;
                    border-radius: 10px;
                    font-family: 'Gilroy';
                    font-weight: 400;
                    font-size: 16px;
                    color: #000;
                }

                .landing .content .inputs > div 
                {
                    position: relative;
                    margin-top: 20px;;
                }

                .landing .content .inputs .dns,
                .landing .content .inputs .copy
                {
                    position: absolute;
                    top: 0;
                    left: 20px;
                    z-index: 100;
                    display: flex;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .landing .content .inputs .copy
                {
                    right: 20px;
                    left: unset;
                    opacity: 1;
                    visibility: visible;
                    transition: 0.3s ease;
                }

                .landing .content .inputs .copy:hover
                {
                    cursor: pointer;
                }

                .landing .content .inputs .copied
                {
                    position: absolute;
                    top: 0;
                    right: 20px;
                    z-index: 100;
                    display: flex;
                    font-size: 12px;
                    font-weight: 600;
                    top: 50%;
                    transform: translateY(-50%);
                    opacity: 0;
                    visibility: hidden;
                    transition: 0.3s ease;
                }

                .landing .content .inputs .clicked .copy
                {
                    opacity: 0;
                    visibility: hidden;
                }

                .landing .content .inputs .clicked .copied
                {
                    opacity: 1;
                    visibility: visible;
                }
                

@media only screen and (max-width: 1450px)
{
    .landing .content .text h1
    {
        font-size: 80px;
        line-height: 70px;
    }

    .landing .content .text > p
    {
        margin: 30px 0;
    }
    .landing .content .illustration img
    {
        height: calc(100% + 190px);    
    }

    .landing .content .inputs input
    {
        height: 60px;
    }
}

@media only screen and (max-width: 1150px)
{
    .landing .content .illustration img
    {
        top: 60px;
        left: 20px;
        height: 100%;
    }
}

@media only screen and (max-width: 1000px)
{
    .landing .content .text
    {
        max-width: 400px;
    }

    .landing .content .illustration
    {
        left: 400px;
    }
}

@media only screen and (max-width: 800px)
{
    .landing .content
    {
        flex-direction: column-reverse;
    }

    .landing .content .illustration
    {
        left: 0;
        position: relative;
    }

    .landing .content .text
    {
        max-width: 100%;
        width: 100%;
    }
    .landing .content .illustration img
    {
        top: 0;
        left: unset;
        position: relative;
        width: 100%;
        height: 100%;
    }
}


.supporters
{
    position: relative;
    /* bottom: 40px; */
    width: 100%;
    text-align: left;
    z-index: 10;
    top: 50px;
}

    .supporters h2
    {
        color: #fff;
        font-size: 16px;
        font-weight: 300;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .supporters ul
    {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .supporters ul li
        {
            display: inline-flex;
        }
        
            .supporters ul li img
            {
                max-width: 160px;
                max-height: 40px;
            }


