*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.site-header{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(57deg,orange,red);
    clip-path: polygon(0 0,100% 0,100% 75%,0 100%);
}
nav{
    width: 100%;
    height: 100px;
    display: flex;
    color: white;
}
.logo{
    width: 50%;
    height: 100px;
    text-transform: uppercase;
}
.logo h1{
    line-height:100px;
    padding-left: 50px;
}
.menu{
    width: 50%;
    height: 100px;
}
.menu ul{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.menu li{
    list-style: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}
.menu li:before{
    content: "";
    position: absolute;
    top: 110%;
    left: 0;
    width: 0%;
    height: 2px;
    border-bottom:2px solid #ffffff;
    transition: 0.35s linear;
}
.menu li:hover:before{
    width: 100%;
}
section{
    display: flex;
    text-align: center;
}
.leftside{
    width: 45%;
    height: auto;
    overflow: hidden;
    margin-top: 20px;
}
.leftside img{
    width: 600px;
    height: 625px;
}
.rightside{
    width: 55%;
    height: 300px;
    color: white;
    margin-top: 80px;
    padding: 40px;
}
.rightside h1{
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
}
.rightside p{
    font-size: 1.1rem;
    padding: 30px 0;
}
.rightside button{
    font-size: 17px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    background-image: linear-gradient(57deg,orange,red);
    border-radius: 5px;
    border: none;
    padding: 15px 35px;
    background-color: orangered;
    transition:all 0.7s linear ;
    cursor: pointer;
}
.rightside button:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    background-image: none;
    background-color: orange;
}