*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';

}

.header{
    min-height: 100vh;
    width: 100%;
    background: rgb(0, 0, 0);
    position: relative;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: bolder;
    padding-top: 10px;
    padding-left: 10%;
}

.nav-links{
    text-align: right;
    background: #fbb034;
    padding: 10px 30px;
    border-bottom-left-radius: 18px;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 25px;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;

}

.left-bar{
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fbb034;
}

.row{
    padding: 0 10%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    margin-top: 5%;
}

.left{
    flex-basis: 40%;

}

.right{
    flex-basis: 55%;
    color: #fff;
}

.left img{
    width: 80%;
    cursor: pointer;
    border-radius: 18px;
    filter: grayscale(0);
    transition: filter 1s;
}
.left img:hover{
    filter: grayscale(1);
}
.right h1{
    font-size: 55px;
    font-weight: 600;
}
.right p{
    color: #777;
    margin: 20px 0 70px;
}
.social-media{
    display: flex;
    margin-top: 30px;
}
.icon{
    width: 100px;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.5s;
}
.icon img{
    width: 80px;
}
.icon a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fbb034;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}
.icon a:hover{
    opacity: 1;
}
.icon:hover{
    transform: translateY(-5px);
}