*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.header{
    width: 100%;
    height: 100vh;
    background: linear-gradient(57deg,#00c6a7,#1e4d92);
    clip-path: polygon(0% 0%,100% 0%,100% 78%, 0% 100%);
}
nav{
    width: 100%;
    height: 100px;
  color: white  ;
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
}
.logo{
    width: 50%;
    

}
.logo h1{
    padding: 50px;
}
.menu{
    width: 50%;

}
.menu ul{
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}
.menu ul li{
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;

}
section{
    display: flex;

}
.leftside{
    width: 38%;
    height: auto;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
}
.leftside img{
    width: 430px;
    
}
.rightside{

    width: 62%;
    color: white;
    text-align: center;
  
    margin-top: 120px;
    text-transform: uppercase;
    padding: 1rem;
}
.rightside h1{
    font-size: 40px;
    font-weight: bold;
    

}
.rightside p{
    font-size: 1.1rem;
    margin: 1.2rem 0;
}
.rightside button{
    font-size: 17px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(57deg,#00c6a7,#1e4d92);
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 20px 35px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.rightside button:hover{
    background: linear-gradient(57deg,#1e4d92,#00c6a7);

}