* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
    user-select: none;
}

:root {
    --textc: #FCF7F0;
    --blue: #7A4FF4;
    --red: #EC4E00;
    --back: #111119;
    --purple: #A58EFC;
    --pink: #F0AAF3;
    --white: #FFFFFF;
    --subhead: 70px;
    --card: #212126;
}

body {
    background-color: var(--back);
    overflow-x: hidden;
}

.hero {
    width: 100vw;
    height: 100vh;
    background-image: url('../img/appdev.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -400px 0px;
}

.hero .hero-title {
    width: 100vw;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    padding-left: 2vw;
    padding-right: 2vw;
    color: var(--white);
    padding-top: 60%;
}

.one {
    width: 100vw;
}

.one #one-title {
    color: var(--white);
    font-size: 19px;
    padding: 20px;
    margin-top: 10%;
}

.one #one-img {
    width: 90vw;
    margin-left: 5%;
}

.workprocess #one-title3 {
    color: var(--white);
    font-size: 19px;
    padding: 20px;
    margin-top: 0%;
}

.workprocess {
    width: 100vw;
    margin-top: 10%;
    margin-bottom: 100px;
}

.workprocess .work-title {
    font-size: 35px;
    font-weight: 700;
    color: white;
    padding-left: 6%;
}

.workprocess .workgrid {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
}


.workprocess .workgrid .points #point-title {
    color: var(--white);
    margin-left: 7%;
    margin-top: 2%;
}

.workprocess .workgrid .points #point-desc {
    width: 90vw;
    color: white;
    font-size: 19px;
    padding-left: 7%;
}

/*----------------------------
------- footer starts ----------
------------------------------*/

.footer {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url(../img/bg.png);
    background-position: -1000px 0px;
    color: white;
}

.footer .title {
    padding-top: 50px;
    padding-left: 20px;
}

.footer .links {
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    margin-top: 30px;
}

.footer .links .link {
    text-decoration: none;
    color: white;
    margin-top: 5px;
}

.footer .address {
    width: 80%;
    margin-top: 30px;
    margin-left: 5%;
}

.footer #goblin {
    position: absolute;
    width: 95vw;
    bottom: 0px;
}

.footer .copy {
    width: 100%;
    position: absolute;
    font-weight: 400;
    bottom: 10px;
    text-align: center;
}

/*----------------------------
------- footer ends ----------
------------------------------*/


@media only screen and (min-width: 768px) {

    .hero {
        background-position: 0px 0px;
    }

    .hero .hero-title {
        font-size: 100px;
        font-weight: 800;
        padding-top: 15%;
    }

    .one {
        padding-left: 10%;
        padding-right: 10%;
    }

    .one #one-img {
        width: 60vw;
        margin-left: 10%;
        margin-bottom: 60px;
    }

    .workprocess {
        margin-top: 5%;
        padding-left: 6%;
    }

    .workprocess #one-title3 {
        width: 87vw;
        margin-top: 5%;
    }

    .workprocess .workgrid .points #point-desc {
        width: 80%;
    }


    /*----------------------------
    ------- footer starts ----------
    ------------------------------*/

    .footer {
        display: flex;
        background-position: -450px 0px;
    }

    .footer .title {
        width: 900px;
        font-size: 45px;
        padding-left: 40px;
    }

    .footer .links {
        margin-top: 65px;
        width: 500px;
    }

    .footer .links .useful {
        font-size: 25px;
    }

    .footer #goblin {
        width: 40vw;
        margin-left: 30%;
    }

    .footer .address {
        margin-top: 65px;
        font-size: 20px;
    }


    /*----------------------------
    ------- footer ends ----------
    ------------------------------*/

}