/* CSS reset */
html * {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    
}

body {
    font-family: sans-serif; 
}

h1 {
    color: white;
    font-size: 5rem;
    margin: 10rem;
}

h2 {
    color: black;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 40px;

}

h3 {
    color: black;
    font-size: 22px;
    padding-top: 1rem;
}

h4 {
    color: black;
    font-size: 20px;
    padding: 10px;
    text-align: center;
}

nav {
    background-color: rgb(242 229 213 / 70%);
    margin: 0%;
    padding: 0%;
    width: 100vw;
    height: 100px;
    justify-content: space-between;
    overflow: hidden;
    position: fixed;
}

.logo {
    float: left;
    padding-left: 2rem;
}

.menu {
    float: right;
    align-items: center;
    padding-right: 2rem;
}

li {
    float: left;
    padding: 25px;
    margin: 10px;
    text-align: center;
    list-style: none;
}

a {
    text-decoration: none;
    color: 223440;
}

a:hover {
   font-weight: 600;
}

.hero{
    height: 100vh;
    width: 100%;
    background-image: url('../Images/1 bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;

    /* flexbox */
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: left;

}

.intro {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center; 
    padding: 2rem 0;
    margin: 0;
}

.intro img {
    margin: 1rem;
}

#introtx {
    font-size: 40px;
    padding: 2rem 16rem;
}

hr {
    margin: 30px;
    color: #223440;
    opacity: 80%;
}

.projectsHP {
    width: 100%;
    height: auto;
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 2rem;
}

#viewproject {
    color: D94814;
    font-size: 18px;
}

.viewallprojects {
    width: 100%;
    height: auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline; 
    text-decoration-color: rgb(217,71,20);
    font-size: 28px;
    color: black;
}

.viewallprojects a:hover {
    color: D94814;
}

.ourservices {
    justify-content: space-around;
    padding: 15px;
    display: flex;
    flex-direction: row;
}

.ctaHP {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    width: 100%;
}

.getintouchbt {
    height: 70px;
    width: 300px;
    background-color: F27127;
    align-content: center;
    justify-content: center;
    display: flex;
}

#getintouchbt {
    color: white;
}


/* footer */
footer {
    width: 100%;
    height: auto;
    background-color: #223440;
    
    display: flex;
    justify-content: space-between;
}

.footerlogo {
    padding: 2rem;
}


.footertext {
    width: 60%;
    padding: 1rem;

}
.fcolumn {
    float: left; 
    width: 40%;
    /* margin: 10px; 
    padding: 1rem; */
}


footer ul li {
    text-align: left;
    width: 40%;
    color: white;
}

footer ul li a {
    color: white;
}



