
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
/* 600px, 601px, 768px, 992px, 1200px */

.wrapper {
    max-width: 100%;
	margin: 0 auto;
}

header{
	background-color: white;
}

.contact_us{
    height: 30px;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
}

img{
    width: 100%;
    height: auto;
}

.home{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1; 
}

.Building{
    width: 100%;
    height: 100px;
    background-color: orange;
    transform: translate(0%,-98%);
}

nav {
    width: 50%;
    background-color: black;
    box-shadow: 3px 3px 5px rgb(0,0,0,0.1);   
    
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav li{
    height: 50px;

}

nav a{
    height: 100%;
    padding: 0 35px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

nav a:hover{
    background-color: orange;
}

nav li:first-child{
    margin-right: auto;

}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 25%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.377);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgb(0,0,0,0.1);  
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.menu-button{
    display: none;
}

@media(max-width: 800px) and (orientation:Landscape){
    .hideonMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}

@media(max-width: 400px) and (orientation:Landscape){
    .sidebar{
        width: 100%;
    }
}

@media(max-width: 1200px) and (orientation:Landscape){
    .sidebar{
        width: 100%;
    }
}


