body{
	background-color: #fff;
	font-family: myriad-hebrew, sans-serif;
	font-style: normal;
	font-weight: 400;
	margin: 0;	
}
.main_content{
	max-width: 830px;
	margin: auto;
	padding: 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.main_content img{
	max-width: 100%;
	height: auto;
}
.content_top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 30px;
}
.lebre_logo{
	margin-bottom: 15px;
}
.top_right{
	padding-top: 50px;
}
.libre_title{
    font-size: 67px;
    line-height: 80px;
	color: #e85721;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	direction: rtl;	
}
.top_right p{
	font-size: 33px;
	line-height: 43px;
	text-align: center;
	color: #013360;
	margin-bottom: 30px;
	direction: rtl;	
}
.libre_link{
	color: #013360;
	font-weight: bold;
	transition: 0.3s;
}
.libre_link:hover{
	opacity: 0.8;
	transition: 0.3s;
}
.libre_btn{
	font-size: 41px;
    line-height: 30px;
	display: inline-block;
	margin: auto;
	padding: 15px 20px;
	background-color: #e96220;
	border: 1px solid #e96220;
	color: #fff;
	font-weight: bold;
	border-radius: 15px;
	transition: 0.3s;
	display: block;
    max-width: 275px;
}
.libre_btn:hover{
	background-color: transparent;
	transition: 0.3s;
	color: #e96220;
}
.content_bottom{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-left: 20px;
}
@media only screen and (max-width: 991px){
	.content_top{
		display: block;
	}
	.top_left{
		text-align: center;
	}
}
@media only screen and (max-width: 575px){
	.libre_title{
		font-size: 40px;
		line-height: 50px;
	}
	.top_right p{
		font-size: 20px;
		line-height: 30px;
	}
	.libre_btn{
		font-size: 30px;
		line-height: 40px;
		max-width: 215px;
		text-align: center;
	}
	.content_bottom{
		padding-left: 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.content_bottom img{
		margin-bottom: 15px;
	}
}