/* Webfont: LueezaMediumMFW */@font-face {
    font-family: 'LueezaMFW';
    src: url('fonts/Lueeza-Medium_MFW.eot'); /* IE9 Compat Modes */
    src: url('fonts/Lueeza-Medium_MFW.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/Lueeza-Medium_MFW.woff') format('woff'), /* Modern Browsers */
         url('fonts/Lueeza-Medium_MFW.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/Lueeza-Medium_MFW.svg#LueezaMediumMFW') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
             unicode-range: U+591-5F4;
}

* { box-sizing: border-box; }

body { 
  font-family: 'LueezaMFW', 'Calibri';
  color: #666;
  margin: 0;
}

/* STRUCTURE */

.wrapper {
  	min-height:100vh;
	background: url(images/desktop_bg.png) no-repeat top center;
    background-size:cover;
}
header {
	padding:35px 15px;
}
header h3 {
    text-align: center;
    font-size: 40px;
    color: #000;
    margin: 10px 0;
}
.columns {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 100%;
}

.column {
	flex: 1;
	width: 33%;
	text-align: center;
}

footer {
	padding: 0 15px;
}
.small_img {
    text-align: center;
    margin: 0 auto;
    display: block;
  	padding-top:20px;
 }
.large_img{width:70%;max-width:300px;
	border: 2px solid #fff;
    box-shadow: 0px 0px 10px 2px #b3adad;}
.large_img:hover{
	border: 10px solid #fff;
    border-radius: 10px;}
@media screen and (max-width: 768px) {
	span.desktop_double_colon {
		display: none;
	}
	header .desc_text {
		direction: rtl;
	}
}
@media screen and (min-width: 768px) {
	span.double_colon {
		display: none;
	}
}
@media screen and (max-width: 980px) {
  .columns .column {
		margin-bottom: 5px;
		flex-basis: 40%;
	}
}
@media screen and (max-width: 680px) {
	.columns .column {
		width: 100%;
		margin: 0 0 5px 0;
		display:block;
	}
	.columns{
		display: flex;
		flex-flow: column;
    }
	.small_img {
		width: 100%;
		max-width:auto;
	}
	header h3 {
    font-size: 23px;
}
	.small_img{
		padding-top: 0px; 
	}
	.large_img{display:none;}
	.third_col{order:1;}
	.second_col{order:2;}
	.first_col{order:3;}
}


