
body{
    margin:0;
    padding:0;
}
root {
    --color-1: #0f1016;
    --text-color: #f0f0f0;
    --accent-color: #006aff;
}

* {
    margin: 0;
    padding: 0;
}

.ImageHomeBannar {
    background: url(/images/homeimage.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh-80px);
    background-position: center;
    height: 600px;
    position:relative;
}



.Mainmenu {
    height: 60px;
    /*background-color: #0f1016;*/
    background-color: black;
    display: flex;
    justify-items: flex-end;
    align-items: center;
    
    
}

.links-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color:black;
    
}

.Mainmenu a {
    height: 100%;
    padding: 0 20px;
    padding-top:10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f0f0f0;
    font-size:18px;
    /*font-weight:bold;*/
    
}

    nav a:hover {
        background-color: #006aff;
        color: white;
        /*padding-bottom: 10px;*/
    }




.Mainmenu .home-link {
    margin-right: auto;
}

.Mainmenu svg {
    fill: #f0f0f0;
}

#sidebar-active {
    display: none;
}

.open-sidebar-button, .close-sidebar-button {
    display: none;
}

.btn-Form {
    width: 120px;
    height: 33px;
    color: white;
    background-color: red;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(208, 210, 213, 0.25);
    border-radius: 5px;
    box-shadow: gray 5px 5px 20px;
    font-size: 18px;
    display: inline-block;
}

.btn-Edit {
    width: 35px;
    height: 25px;
    text-align:center;
    text-decoration:none;
    color: white;
    background-color: #07a819;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(208, 210, 213, 0.25);
    border-radius: 4px;
    /*box-shadow: gray 5px 5px 20px;*/
    font-size: 14px;
    display: inline-block;
}

.btn-Delete {
    width: 45px;
    height: 25px;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: red;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(208, 210, 213, 0.25);
    border-radius: 4px;
    /*box-shadow: gray 5px 5px 20px;*/
    font-size: 14px;
    display: inline-block;
}

@media(max-width:652px) {
    .links-container {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 350px;
        background-color: black;
        box-shadow: -5px 0 5px rgb(0,0,0,0.25);
        transition: 0.6s ease-out;
    }

    .Residential, .Sale{
        display:none;
    }
    .Development {
        display: none;
    }

    .Mainmenu a {
        box-sizing: border-box;
        height: auto;
        /*width: 100px;*/
        padding: 15px 20px;
        justify-content: flex-start;
    }

    .open-sidebar-button, .close-sidebar-button {
        padding: 0 20px;
        display: block;
    }

    #sidebar-active:checked ~ .links-container {
        right: 0;
    }

    #sidebar-active:checked ~ #overlay {
        /*background-color:white;*/
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }


    .btn-Form {
        width: 120px;
        height: 33px;
        font-size: 18px;
        display: inline-block;
    }


    /* this is for footer in Mainlayout page*/
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .companyProfile-Container {
        width: 100% !important;
    }
}

@media(min-width:653px) {

    .SpecialRequest-Paragraph {
        display: inline-block;
        margin: 0;
        padding: 0;
        font-size: 35px;
    }

    .Portfolio-gap {
        display: inline-block;
        margin: 0;
        padding: 0;
        font-size: 35px;
    }

    .btn-Form {
        width: 220px;
        height: 50px;
        font-size: 22px;
        display: inline-block;
    }



 
}
