* {
    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;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.navbar ul .logo {
    padding-top: 5%;
    padding-left: 5%;
}

.navbar li.navbar_items {
    display: none;
}

.navbar li.icon {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 19px;

}

.navbar.responsive {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--back);
    background-image: url(../img/curves.svg);
    background-size: 2000px;
    background-position: -1000px 400px;
    transition: background-color .6s;
}

.navbar.responsive li .logo {
    float: left;
    display: block;
}

.navbar.responsive .div_navbar_items {
    float: none;
    padding-right: 0;
    padding-top: 50px;
}

.navbar.responsive li.navbar_items {
    display: block;
    padding: 50px;
    padding-bottom: 0px;
    font-size: 25px;
}

.navbar.responsive li.navbar_items a {
    display: block;
    text-align: center;
    color: var(--textc);
    ;
}

.navbar.responsive li.navbar_items a:hover {
    color: var(--textc);
    border-bottom-color: transparent;

}

.navbar ul .logo {
    padding-top: 0%;
    padding-left: 0%;
}

/*----------------------------
------- nav ends ----------
------------------------------*/

/*----------------------------
------- contact start ----------
------------------------------*/


.contactus .ico img {
    width: 350px;
    margin-left: 30px;
    margin-bottom: 50px;
}

.contactus .title {
    color: white;
    margin-left: 10%;
}

.contactus form {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 10px;
}

.contactus .box {
    height: 50px;
    font-size: 17px;
    padding-left: 20px;
    margin-top: 5px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
}

option {
    height: 50px;
    color: var(--back);
}

.contactus textarea {
    padding-left: 20px;
    border: 1px solid white;
    background-color: transparent;
    font-size: 17px;
    color: white;
    margin-top: 5px;
    padding-top: 20px;
}

.contactus .btn-sbt {
    height: 50px;
    border: 1px solid white;
    background-color: white;
    color: black;
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
}

.contactus .btn-sbt:hover {
    background-color: black;
    color: white;
}

/*----------------------------
------- contact ends ----------
------------------------------*/

/*----------------------------
------- details starts ----------
------------------------------*/

.details {
    width: 100vw;
    margin-bottom: 100px;
}

.detail {
    width: 100vw;
    display: block;
}

.details .detail .d {
    width: 90vw;
    height: 200px;
    border: 1px solid var(--purple);
    background: transparent;
    border-radius: 15px;
    padding-top: 35px;
    padding-left: 25px;
    color: white;
    margin-left: 8%;
    margin-top: 15px;
    transition: all 0.5s;
}

.details .detail .d:hover {
    background: linear-gradient(to right, var(--purple), var(--pink));
}

.details .detail .d a {
    text-decoration: none;
    color: white;
    font-size: 19px;
    margin-top: 100px;
}

.details .detail .d .pt {
    margin-bottom: 15px;
}

.details .detail .d #add {
    font-weight: 400;
    font-size: 17px;
}



/*----------------------------
------- details ends ----------
------------------------------*/



@media only screen and (min-width: 768px) {


    .navbar {
        position: fixed;
        z-index: 100;
        overflow: hidden;
        margin: auto;
        /* background-color: rgba(235, 223, 223, 0.2); */
        padding-top: 25px;
        width: 100%;
        height: 100px;
        left: 0;
        top: 0;
        transition: 0.5s;

    }

    .hide {
        transform-origin: top;
        transform: scale(0);
    }

    .navbar li.logo {
        padding-left: 30px;
    }

    .navbar li.logo,
    .navbar li.navbar_items {
        list-style-type: none;
        display: inline-block;
    }

    .navbar li a {
        font-size: 17px;
        font-weight: 700;
        color: var(--textc);
        display: inline-block;
        text-align: center;
        padding: 10px 16px;
        text-decoration: none;
    }

    .navbar li.icon {
        display: none;
    }

    .div_navbar_items {
        float: right;
        padding-right: 1%;
    }



    /*----------------------------
    ------- contact start ----------
    ------------------------------*/

    .contactus {
        display: flex;
        width: 100%;
        margin-left: 10%;
    }

    .contactus .fields {
        width: 50%;
    }



    /*----------------------------
    ------- contact ends ----------
    ------------------------------*/


    .details .detail {
        display: flex;
        margin-left: 15%;
    }

    .details .detail .d {
        width: 300px;
        margin-left: 3%;
    }

}

/*----------------------------
    ------- footer ends ----------
    ------------------------------*/