* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-area {
    display: flex;
    justify-content: space-between;
    background-color: #2d3436;
}

.logo {
    width: 30%;
}

.logo img {
    width: 20%;
}

.nav {
    width: 70%;
}

.nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding: 30px 20px 0px 0px;
}

.nav ul li {
    list-style: none;
}
.nav ul li a { 
    text-decoration: none;
    color: white;
    padding: 30px 20px 0px 30px;
}

.hero-area {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.hero-left {
    width: 20%;
    padding-left: 80px;
}

.hero-right {
    width: 70%;
}

.hero-right img {
    width: 800px;
}

.footer-area {
    margin-top: 210px;
    padding: 25px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: silver;
}

.footer-left {
    width: 30%;
}

.footer-left img {
    width: 10%;
    padding-left: 10px;
}

.footer-mid {
    width: 30%;
}

.footer-mid p {
    padding-top: 10px;
    font-size: 20px;
}

.footer-right {
    width: 40%;
    padding-top: 10px;
}

.footer-right ul {
    display: flex;
    justify-content: flex-end;
}

.footer-right ul li {
    list-style: none;
}

.footer-right ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    padding: 100px 30px 0px 10px;

}