* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}
.navbar {
    display: flex;
    align-items: center;
    background-color:black;
    position: fixed;
    width: 100%;
    height: 60px;
    padding-left: 100px;
    padding-right: 100px;
}
.navbar ul{
    flex: 1;
    text-align: right;
}
.navbar ul li{
    padding: 15px;
    display: inline-block;
}
a{
    text-decoration: none;
    color: white;
}
.navbar ul li a:hover{
    color: grey;
}
.sec{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 70px;
}
.btn{
    display: inline-block;
    background: #ff523b;
    color: white;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}
.btn:hover{
    background: #563434;
}
.sec2{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
}
.end{
    background-color: black;
    color: white;
    text-align: center;
}
.wrapper{
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.contact-box{
    padding-top: 70px;
}
.contact-box input{
    width: 20%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}