body {
    background-color: rgb(248, 248, 248);
    background-size: 100%;
    background-position: center;
    font-family:'Courier New', Courier, monospace;   
    margin: 0%;    
    min-height: 10vh;
    padding: 0;
}

.primary-logo {
    height: 100px;
} 
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .6s;
    padding: 40px 100px;
    z-index: 100000;
  }
  header.sticky {
    padding: 20px 100px;
    background: #fff;
  }
  header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header ul li {
    position: relative;
    list-style: none;
  }
  header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: rgb(2, 3, 92);
    letter-spacing: 2px;
    font-weight: 500px;
    transition: .6s;
    font-size: 24px;
  }
  header.sticky .logo,
  header.sticky ul li a {
    color: rgb(2, 3, 92);
  }

@media all and (max-width: 800px) {
.navbar {
    flex-direction: column;
    position: relative;
}
.menu {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
}
.nav-list {
    list-style-type: none;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    display: none;
}
.nav-list .list-items{
    display: block;
    border-top: 1px solid white;
}
.primary-logo {
    margin-top: 10px;
    margin-left: 10px;
}
.active {
    display: block;
}
}
                                                                    /*  Main Body    */

/*   Hero Container   */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero {
    background: url('/Images/StickEngineering.PNG') center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    height: 500px;
    opacity: .5;
    margin-bottom: 100px;
}
.hero-container {
    width: 100%;
}
.project-wrapper {
    width: 60%;
    margin: 0 auto; /* Center the wrapper */
}
.ProjectContainer {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.ProjectImage {
    width: 65%; /* Adjust the width of the image as needed */
    margin-right: 40px; /* Add some space between the image and project info */
}
.ProjectInfo {
    width: 70%; /* Take up the remaining space */
    margin-left: 3%;
}
.ProjectTitle {
    color: rgb(1, 2, 56);
    margin-bottom: 20px; /* Add some space between the title and location */

}
.LocationTitle {
    color: rgb(1, 2, 56);
    margin-bottom: 20px; /* Add more space between the location and paragraph */
    font-size: 20px;
}
.paragraph-large {
    color: rgb(2, 3, 92);
    margin-top: 20px;
    font-size: 26px;
    width: 100%;
    text-align: justify;
    opacity: .9;
    line-height: 1.5;
    /* Width is automatically set to 70% by .ProjectInfo */
}


.about, .contact {
    padding: 50px 0;
}

/*    Picture and title for project      */



/*  For footer   */ 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.container{
    max-width: 1170px;
    margin: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
ul {
    list-style: none;
}
.footer{
    background-color: rgb(1, 2, 56);
    color: white;
    padding: 70px 0;
}
.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}
.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fdfdfd;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
}
.footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #646161;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
}

.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
}

@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .footer-col{
        width: 100%;
    }
}

