@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300italic,regular,italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Reem+Kufi:regular,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
    user-select: none;
}

nav ul {
    list-style: none;
    display: flex;
    width: 800px;
    height: 100%;
    justify-content: space-around;
}

nav ul li a {
    font-family: 'Roboto Condensed';
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 100;
    letter-spacing: 4px;
}

nav ul li a:hover {
    text-decoration: underline;
    text-decoration-color: orangered;
}

.our_company {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('assets/images/solar panels.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.our_company h1.title {
    margin-bottom: 30px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 10px;
    animation: fade-in 0.6s ease-in-out
}

.our_company p {
    font-family: 'Lato', sans-serif;
    width: 1200px;
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 3px;
    animation: fade-in 0.6s ease-in-out
}

@keyframes fade-in {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.our_company p:last-of-type {
    margin-bottom: none;
}

.company-name {
    color: #FF5349;
}


.project {
    padding: 40px;
    color: black;
}

.project h1.title {
    margin-bottom: 30px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
}

.project table tr td.td-ls, .project table tr td.td-rs {
    width: 50vw;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    padding: 8px 0;
}

.project table tr td.td-ls {
    font-weight: 700;
}

.project table tr td.td-rs {
    font-weight: 300;
}

.photos_and_videos {
    padding-bottom: 40px;
}

.photos_and_videos .title {
    margin-bottom: 30px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
}

.photos_and_videos .coming_soon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photos_and_videos .coming_soon h3 {
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
    font-weight: 300;
    letter-spacing: 10px;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.contact_us .title {
    margin-bottom: 30px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.contact_us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: url('assets/images/teamwork.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

.contact_us span.bold-orangered {
    color: #FF5349;
    font-weight: bold;
    text-transform: uppercase;
}

.contact_us table {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    font-weight: 200;
    font-size: 18px;
}

.contact_us table td {
    padding: 6px;
}