*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: #000;

    color: #fff;
}
.logo{
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding-top: 50px;
    padding-left: 10%;
}
.navigation{
    text-align: right;
    background: red;
    padding: 10px 10px;
    border-bottom-left-radius: 18px;
}
.navigation ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 25px;
}
.navigation ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.leftside-bar{
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: red;
}
.row{
    padding:0 5%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    margin-top: 0%;
}
.left-col{
    flex-basis:40%;
}
.right-col{
    flex-basis: 55%;
}
.left-col img{
    width: 60%;
    cursor: pointer;
    border-radius: 50px;
    filter: grayscale(0);
    transition:1s;
    border: 1px solid white;
}
.left-col img:hover{
    filter: grayscale(1);
}
.right-col h1{
    font-size: 25px;
    font-weight: 600;
}
.right-col p{
    color: #777;
    margin:10px 0px 50px;
}
.socialmedia{
    display: flex;
    margin-top: 30px;
}
.icon{
    width: 70px;
    height: 70px;
    background: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s;
}
.icon img{
    width: 28px;
}
.icon a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}
.icon a:hover{
    opacity: 1;
}
.icon:hover{
    transform: translateY(-5px);
}
