*{
    margin: 0; padding:0; box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
	
}

.site-header {
    width: 100%;
	height: 100%;
    /*height: 100vh;*/
    background: #0f8a9d;
    background-image: linear-gradient(57deg, #d38312 , #a83279 ); 
   /* clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);*/

}


nav{
    width: 100%; height: 100px;
    /*background-color:  red;*/
    display: flex; color: white;
    
}

.logo{
	text-decoration: none;
	color:#fff;
    width: 60%;
    height: 200px;
}
/*.logo img{
	text-decoration: none;
	color:#fff;
   line-height: 50px;
    height: 60px;
}*/

.logo h1{
	text-decoration: none;
	color:#fff;
    line-height: 50px;
    padding-left: 40px;
}

.menu{
    width: 60%; height: 200px;
}

.menu ul{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:  center;
}

.menu ul li{
    list-style: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
	border: 2px solid white;
	border-radius: 50px 20px;
	border-spacing:5px;
	padding: 6px;
}
.link{
	text-decoration: none;
	color:#fff;
    list-style: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.linkk{
	text-decoration: none;
	color:#fff;
    list-style: none;
    font-size: 12px;
    font-weight: bold;
}
section{ display: flex; height:100% }

.leftside { width: 25%; height: auto; overflow: visible; margin-top: 60px;}

.leftside img{  margin-left:20px;width: 300px;  height: 400px; }

.rightside{ width: 75%; height: 100%; color: white; text-align: center; overflow: visible;margin-top: 40px; padding: 40px;}

.rightside h1{ text-align: center;
    color: #ffffff;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase; } 

.rightside p {  
    font-size: 1.1rem; padding: 20px 0; }

.rightside button{   font-size: 17px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(57deg, #00C6A7 , #1E4D92 ); 
    border-radius: 4px 4px 4px 4px;
    padding: 10px 20px ; 
}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 15px;
}



.rightside button:hover{
      background: linear-gradient(57deg, #1E4D92, #00C6A7 );   
}