@font-face{
    font-family: 'OpenSansHebrew';
    src: url('OpenSansHebrew-Regular.ttf')  format('truetype');
}
@font-face{
    font-family: 'OpenSansHebrew';
    src: url('OpenSansHebrew-Bold.ttf')  format('truetype');
    font-weight: bold;
}

@font-face{
    font-family: 'FbReformaNarrow';
    src: url('FbReformaNarrow-Bold.otf')  format('truetype');
	font-weight: bold;
}
@font-face{
    font-family: 'FbReformaNarrow';
    src: url('FbReformaNarrow-Light.otf')  format('truetype');
    font-weight: lighter;
}
@font-face{
    font-family: 'FbReformaNarrow';
    src: url('FbReformaNarrow-Regular.otf')  format('truetype');
}


html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
body{
    font-family: 'FbReformaNarrow', 'OpenSansHebrew', sans-serif;
    color: #1c2131;
    direction: ltr;
    margin: 0;
    padding: 0;
    /*padding-top: 50px;  reserved for sticky header*/
    line-height: 1;
}
img{
    display: block;
    max-width: 100%;
}
.footer, footer{
    background-color: #18223d;
    color: #fff;
}
.content{
    scroll-snap-type: initial;
	/* scroll-snap-type: y proximity; */
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    color: #1c2131;
}
.content > section {
    min-height: 100vh;
    min-height: 100vh;/*minus header height*/  
    position: relative;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.whatwho{
    margin: auto;
    text-align: left;
    width: 55%;
    line-height: 1.3;
}
/*# header*/
header{
    position: fixed;
    height: 50px;
    top: 0px;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    pointer-events: none;
}
header nav{
    pointer-events: all;
}
.logo{
	position: fixed;
	z-index: 1;
	left: 6%;
	top: 2%;
    width: 100%;
    max-width: 310px;
	    z-index: 99;
}
.logo_b{
    position: absolute;
    z-index: 1;
    left: 6%;
    top: 2%;
    width: 100%;
    max-width: 314px;	
}
/*# nav*/
#hamburger{
    display: none;
}
nav ul{
    display: block;
    text-align: center;
    padding: 0;
    list-style: none;
	font-size: 5.5rem;
    font-weight: bold;	
}
nav .menu ul li{
    margin: 0;
    position: relative;
    z-index: 2;
}
.menu {
  background-color: rgba(239, 239, 239, 0.99);
  max-height: 0;
  min-height: 0;
  width: 100vw;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.menu ul li a {
  white-space: nowrap;
  text-decoration: none;
  color: #1c2131;
  position: relative;
  z-index: 1;
}
.menu ul li:hover a,.menu ul li:focus a,.menu ul li:active a{
    color: #131621;
}
.menu ul li::after{
    content: '';
    background-color: #00c3e8;
    height: 0.3em;
    position: absolute;
    top: 36px;
    right: 0;
    width: 100vw;
    z-index: -1;
        transform: scaleY(0);
        transition: transform .5s 0s cubic-bezier(.645,.045,.355,1),-webkit-transform .5s 0s cubic-bezier(.645,.045,.355,1);
}
.menu ul li:hover::after, .menu ul li:focus::after{
    -webkit-transform:  scaleY(1);
    -ms-transform:  scaleY(1);
     transform: scaleY(1); 
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}
.menuicon {
  display: block;
  cursor: pointer;
  height: 21px;
  width: 25px;
  position: relative;
  z-index: 2;
}
.menuicon span {
  display: block;
  top: 8px;
  width: 25px;
  height: 2px;
  background-color: #989898;
  position: relative;
  -webkit-transition-duration: 0;
  -moz-transition-duration: 0;
  -ms-transition-duration: 0;
  -o-transition-duration: 0;
  transition-duration: 0;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.menuicon span::after, .menuicon span::before {
  display: block;
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #989898;
  -webkit-transition-property: margin, -webkit-transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0;
  -moz-transition-delay: 0.2s, 0;
  -ms-transition-delay: 0.2s, 0;
  -o-transition-delay: 0.2s, 0;
  transition-delay: 0.2s, 0;
}
.menuicon span::before {
  margin-top: -8px;
}
.menuicon span::after {
  margin-top: 8px;
}

#hamburger:checked ~ .menu {
  min-height: 100vh;
}
.menu > ul >li > a:hover + .menu {
  /* //min-height: 0vh; */
  background:red;
}

#hamburger:checked ~ .menuicon span {
  background-color: rgba(0, 0, 0, 0);
}
#hamburger:checked ~ .menuicon span::before, #hamburger:checked ~ .menuicon span::after {
  margin-top: 0px;
  -webkit-transition-delay: 0, 0.2s;
  -moz-transition-delay: 0, 0.2s;
  -ms-transition-delay: 0, 0.2s;
  -o-transition-delay: 0, 0.2s;
  transition-delay: 0, 0.2s;
}
#hamburger:checked ~ .menuicon span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hamburger:checked ~ .menuicon span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*color variations*/
.blue{
    background-color: #18223d;
    color: #fff;
}
.blue h2{
    color: #00c3e8;
	margin-bottom: 25px;
}
.yellow{
    background-color: #ffcc33;
    color: #1c2131;
}
.yellow h1::after{
    background-color: #1c2131;
}
/*flex aligments- 2 boxes: content+img*/
.flexThis{
    display: flex;
    align-items: center;
}
.flexContent{
        max-width: 400px;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1.2;
}
.flexImg{
        max-width: 800px;
}
/*# intro*/
.intro{
    position: relative;
    width: 100%;
    overflow: hidden;

}
.gif{display:none;}
.intro video{
    /* Make video to at least 100% wide and tall */
    min-width: 100%;
    min-height: 100%;
    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;
    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.6;
}
.intro.blue{
    background-color: unset !important;
    color: #fff;
}
.intro .overlay{
    position: absolute;
    top: 20%;
    right: 25%;
    box-sizing: border-box;
}
h2{
    font-size: 40px;
    margin: 0;
	font-weight: 500;
}
h1{
    font-size: 60px;
    line-height: 1.2;
	margin: 0 0 0;
	margin-bottom: 60px;
	position: relative;
	font-weight: 500;
}
h1::after{
    content:'';
    position: absolute;
    top: 105%;
    height: 10px;
    width: 160px;
    background-color: #00c3e8;
    left: 0;
}

.overlay > h1{
    font-size: 110px;
    margin: 0 0 0;
    margin-bottom: 60px;
    position: relative;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -6px;
}

.overlay > a{
	font-size: 40px;
    color: #00c3e8;
    direction: rtl;
	    text-decoration: none;
}
.overlay > a::after{
    content: '';
    position: absolute;
    top: 105%;
    height: 4px;
    width: 154px;
    background-color: #d8d8d8;
    left: 0;
}
.indexwhatnew{
    text-align: center;
    font-size: 97px;
    font-weight: normal;
    margin: 0 auto 50px;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -6px;
    line-height: 0.77;
    padding-right: 2vh;
}

.indexhr{
    background-color: #00c3e8;
    height: 9px;
    width: 180px;
    border: none;
}


/*# portfolio*/
.portfolio{
    display: flex;
	min-height: auto !important;
	pointer-events: none;
}
.portfolio > div{
   /* // width: calc(100% / 3); */
}
.portfolio >div{
    background: #d8d8d8;
}
.portfolio > div:nth-child(2){
    background-color: #9b9b9b;
}
.morePortfolioItems{
    border: none;
    background-color: #00c3e8;
    color: #1c2131;
    font-size: 34px;
    padding: 5px 40px;
    font-weight: bold;
    position: absolute;
    bottom: 30px;
    left: 50%;
    left: calc(50% - 63px);
    border-radius: 27px;
    cursor: cell;
    transition: all 100ms;
}
.morePortfolioItems:hover, .morePortfolioItems:focus, .morePortfolioItems:active{
    background-color: #daae31;
}
.morePortfolioItems:active{
    transform: scale(0.95);
    transform-origin: top;
}

.portfolio a{
	cursor:pointer;
}
/*# services*/
.services{
    background-color: #fff;
    /* background-image: url('../img/bulbs.png'); */
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 465px;
    color: #1c2131;
    font-size: 30px;
}
.services h2{
    font-size: 97px;
    font-weight: normal;
    margin: 0 auto 50px;
    text-align: center;
    padding-top: 50px;
    margin-bottom: 20px;
    letter-spacing: unset;
    line-height: 0.77;
    text-align: center;
}
.services hr{
    background-color: #00c3e8;
    height: 9px;
    width: 180px;
    border: none;
}
.services h6{ 
	text-align: center;
    font-weight: 500;
	margin-top: 0px;
	font-size: 30px;	
}

.services h3{
    font-size: 53px;
    border-bottom: 4px solid #00c3e8;
    margin: 0;
	    font-weight: 500;
}
.services main{
    display: grid;
    grid-template-columns:260px 260px 260px;
    grid-column-gap: 50px;
    grid-template-rows:1fr 1fr;
    grid-row-gap: 25px;
    justify-content: center;
}
.services ul{
    list-style: none;
    padding: 0;
    margin-top: 20px;
    line-height: 1.2;
	    font-family: 'OpenSansHebrew', sans-serif;
}
/*# footer*/
.content > .footer{
    min-height: auto;
}
footer{
    display: flex;
    justify-content: space-around;
    line-height: 1.5;
    padding: 50px 0 18px;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
footer a{
    color: inherit;
    text-decoration: none;
	font-weight: 500;
}
footer .address{
  /* //  border-bottom: 4px solid #00c3e8; */
}
.social, .phone, .address{
    font-weight: bold;
    font-family: 'OpenSansHebrew', sans-serif;
    font-size: 25px;
    line-height: 1.33;	
}
.social p{
	margin-top: 0px;
    margin-bottom: 15px;
}
.social img{
    width: 45px;
    display: inline-block;
}
.instagram{
    margin-left: 10px;
}

.footer_links{
    font-size: 16px;
    color: #00c3ea;	
	font-weight: bold;
	position: relative;
	display: block;
    margin-top: 20px;	
}
#map_link{
	margin-top: 53px;
}
.footer_links::after{
    content: '';
    position: absolute;
    top: 105%;
    height: 2px;
    width: 75px;
    background-color: #d8d8d8;
    left: 0;
}

.address span{
	font-weight: 500;
}
/**************/
/* Jobs Page */
/************/
.jobs{
    color: #1c2131;
}
.jobs .intro{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.jobs h1{/*
    font-size: 90px;
    flex: 0 0 auto;
    padding-bottom: 50px;*/
    font-size: 120px;
    flex: 0 0 auto;
    padding-bottom: 20px;
    width: 100%;	
}
.jobs .intro img{
        align-self: flex-end;
    flex-shrink: 1;
    max-width: 100%;
    flex: 0 1 auto;
}

.jobs h1::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -200px;
    width: 200px;
    height: 18px;
}
.jobs-section{
    display: flex;
    align-items: flex-start;
    /*justify-content: space-around;*/
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 0;
}
.jobs-section > .job{
    padding: 10px 50px;
	padding-right: 0px;
    flex: 1 1 400px;
    max-width: 380px;	
}
.jobs-section h3{
    font-size: 67px;
    font-weight: 500;
    margin: 0 0 10px;
}
.jobs-section .job a{
    text-decoration: none;
    display: inline-block;
    color: inherit;
    margin-top: 20px;
    padding-bottom: 30px;
    border-bottom: 7px solid #00c3e8; 
    font-size: 26px;
    font-family: 'OpenSansHebrew', sans-serif;	
}
.description{
    font-size: 26px;
    font-family: 'OpenSansHebrew', sans-serif;
    line-height: 1.3;	
}
/*************/
/* Job Page */
/***********/

.job-box{
	    max-width: 460px;
}
.job article{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
	    width: 100%;
}
.jobBack{
	width: 100%;
   /* // background-image: url(../img/job-1.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;	
}
.jobs .content{
	background-image: url(../img/covers.png);
    background-size: 100% auto;
}
.job-title{
    display: flex;
    align-items: center;
	width: 100%;
    max-width: 450px;
    justify-content: space-between;
}
.job-title h1 {
    line-height: 0.8;
    letter-spacing: -2px;
	    margin-bottom: 0px;
}
.job-title h1::after {
    display:none;
}

.job-title img{
    max-width: 100%;
    width: 400px;
    height: 100%;
    flex: 0 1 auto;
    object-fit: contain;
}
.job-details{
    flex: 1 1 100%;
    max-width: 1000px;
    padding: 0px 0px 0px 0em;
    font-size: 21px;
    font-family: 'OpenSansHebrew', sans-serif;
}
.job-details h3{
     margin-bottom: 0px;   
}
.job-details a{
	/* //text-decoration: none; */
    color: white;
    font-size: 21px;
}
#back{
	color: #00c3ea;
}
/***************/
/* about Page */
/*************/
.about-page h2{
    line-height: 1;
}
.about{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/circle.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;	
} 
.about h1, .about h2{
    font-weight: normal;
}
.about .intro-txt{    
    padding-top: 100px;
    /* padding: 2em */
}
.about .intro-txt h1 {
    font-size: 3.5vw;
}
.about .hero{
    flex: 0 1 auto;
    overflow: hidden;
    align-self: flex-end;
    margin-right: -200px;
}
.hero img{
    display: block;
}
/*what we do*/
.what-we-do{
    display: flex;
    align-items: center;
}
.how-we-do-it{
	background-image: url(../img/face.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;	
}
.how-we-do-it > .flexContent{
	max-width: 330px;
	margin-top: -100px;
}
.how-we-do-it > .flexContent > h2{
    color: white;
    font-size: 120px;
    letter-spacing: -6px;
    line-height: 116px;
    margin-right: -200px;
}
.how-we-do-it > .flexContent > main{
	max-width: 450px;
	margin-right: -200px;
}
.hammer{
    max-width: 600px;
    margin: 0 auto;	
	margin-left: 0px;
}
.we-do-content{
    max-width: 440px;
    margin: 0 auto;
    margin-right: 0px;	
    font-size: 32px;
    line-height: 1.2;
}
.we-do-content h2{
    font-size: 90px;
    line-height: 0.8;
	margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.we-do-content::after{
    content: '';
    width: 150px;
    height: 8px;
    background-color: #00c3e8;
    margin: 50px 0 25px;
    display: block;
}
.we-do-content .smaller{
    font-size: 0.45em;
    margin-bottom: 30px;
}
/*how to buy*/
.how-to-buy{
    color: #fff;
    background-image: url(../img/about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;	
}
.how-to-buy h2{
    font-size: 33px;
    line-height: 1.18;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    font-family: 'OpenSansHebrew', sans-serif;
}
/*.how-to-buy h2::after{
    content: '';
    width: 220px;
    height: 11px;
    background-color: #00c3e8;
    margin: 1em 0 70px;
}*/
.how-to-buy main .big{
    font-size: 140px;
    line-height: 0.77;
    letter-spacing: -6px;
}
.how-to-buy main .small{
    font-size: 31px;
    line-height: 1.45;
    margin-top: 20px;
    font-family: 'OpenSansHebrew', sans-serif;
}
.how-to-buy a{
    color: inherit;
}
.talkToUs{
	max-width:500px;
}
/***************/
/* contact Page */
/*************/
.contact article{
    min-height: calc(100vh - 151px);
    max-width: 1000px;
    margin: 0 auto;
    background-image: url(../img/heard.png);
    background-position: 30%;
    background-size: cover;	
}
.contact h1, .contact h2{
    font-weight: normal;
	font-size: 48px;
	    margin-bottom: 30px;
}
.contact h1{
    margin-bottom: 20px;
    font-size: 120px;
    line-height: 0.77;
    letter-spacing: -6px;
}
.contact h1::after{
    content: initial;
}
.contact .flexContent{
	margin: 0 0;
	margin-right: 40px;
}
/*
.contact h2::after{
    content: '';
    display: block;
    width: 200px;
    height: 10px;
    background-color: #1c2131;
    margin: 25px 0;
}*/
.contact-details{
    font-size: 25px;
    font-family: 'OpenSansHebrew', sans-serif;
    line-height: 1.33;
}
.contact-details a{
    color: inherit;
    text-decoration: none;
}

.slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 22;
    pointer-events: none;
	direction: ltr;
	overflow: hidden;	  
}
.slick-slide{
    position: relative;
    pointer-events: all;
    -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
            transform: scale(.8);
    -webkit-transition: -webkit-transform 250ms;
    transition: -webkit-transform 250ms;
    -o-transition: transform 250ms;
    transition: transform 250ms;
    transition: transform 250ms, -webkit-transform 250ms;
}
.slick-next, .slick-prev{
    transform: scale(2);
    z-index: 1;
	top: 60%;
	pointer-events: all;
	width: 27px !important;
    height: 100px !important;
}
.slick-prev{
    left: 27vw !important;
	background-image:url(../slick/prev.png) !important;
	    background-repeat: no-repeat !important;
}
.slick-next{
    right: 27vw !important;
	background-image:url(../slick/next.png) !important;
	background-repeat: no-repeat !important;
}
.slick-prev:before {
    display:none;
}
.slick-next:before {
    display:none;
}

.video-wrapper{
    position: relative;
    /* padding-bottom: 58.41%; */
    padding-bottom: 2.41%;
}
.video{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
}

	/*****************************************/
				  /* mobile */
	/*****************************************/
@media (max-width: 670px) {
    .about .intro-txt h1 {
        font-size: 9vw;
    }
    .indexwhatnew{
        font-size: 13vw;
        letter-spacing: -2px;
        line-height: 0.77;
        margin-bottom: 7px;
        padding-top: 25px;
    }
    .indexhr{
        height: 5px;
        width: 26%;
    }
.content{
    scroll-snap-type: initial;
}
.gif{
    /* background-image: url(../videos/SMALL.gif);
    background-size: cover; */
    display: block;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    opacity: 0.1;
}
/* .intro video{display:none;} */
	.logo, .logo_b{
		width: 45%;
	}

	.slick-next, .slick-prev{
		background-size: 100% auto;
	}
	.slick-prev{
        left: 0 !important;
        opacity: 0;
	}
	.slick-next{
        right: 0 !important;
        opacity: 0;
	}
	.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
		 background-size: 100% auto  !important;
	}	
	nav ul {
		font-size: 15vw;
        margin-top: 50%;
    }
	.intro .overlay {
		top: 20%;
		right: 0;
	}
	.overlay > h1 {
		font-size: 16vw;
		line-height: 0.9;
		letter-spacing: -2px;
    }
    .whatwho {
        font-size: 22px;
        width: 100%;
       
    }
    .services h2{
        font-size: 8vw !important;
        letter-spacing: unset !important;
    }
    .services h2 br{
display: none;
    }
	h1::after {
		width: 85%;
	}
	.overlay > a {
		font-size: 10vw;
	}
	.overlay > a::after {
		top: 102%;
		width: 55%;
	}

	.slider {
		position: relative;
		overflow: visible;
		    pointer-events: auto;
	}	
	
	.services{
			min-height: auto !important;
	}
	.services h2 {
		font-size: 13vw;
		/* text-align: right; */
		letter-spacing: -2px;
		line-height: 0.77;
		width: 50%;
		margin-right: 25%;
	}
	.services h6 {
		font-size: 6vw;
		/* margin-right: 10%; */
		text-align: center;
		margin-bottom: 0;
	}
	.services hr {
		height: 5px;
		width: 26%;
		margin-right: 37%;
		margin-bottom: 2%;
	}

	.slider_services{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 22;
		  pointer-events: none;
		direction: ltr;
		overflow: hidden;	  
	}
	.services main {
		display: block;
	}
	.service{
		direction: rtl;
		margin: 1.8%;
	}
	.services h3{
        font-size: 10vw;
        border-bottom: 4px solid #00c3e8;
        padding-bottom: 4px;
        margin: 0;
        width: 40%;
        font-weight: 500;
        line-height: 0.7;
        text-align: center;
        margin-right: 30%;
	}
	.services ul{
        font-size: 5vw;
        text-align: center;
	}

	.slider_services{
		position:relative;
	}

	.slick-dots {
		bottom: -10% !important;
			pointer-events: auto;
	}

	.slick-dots li button{
		color: #d8d8d8 !important;
	}
	.slick-dots li button:before {
		font-size: 12px !important;
	}
	.slick-dots li.slick-active button:before {
		opacity: .75;
		color: #00c3e8 !important;
	}
	.slick-dotted.slick-slider {
		margin-bottom: 0px !important;
	}
    .video-wrapper {
        
        padding-bottom: 2.41%;
    }
    
	.social, .phone, .address {
		font-size: 5vw;
		margin-bottom: 10%;
	}
	footer {
        display: block;
        /* padding-right: 10%; */
        width: 90%;
        text-align: center;
	}
	.footer_links {
		display: block;
		margin-top: 5%;
    }
    .footer_links::after {
        
        right: 121px;
    }
	#map_link{
		margin-top: 5%;
	}
	/***************/
	/* about Page */
	/*************/

	h1 {
		font-size: 13vw;
	}
	.blue h2 {
		margin-bottom: 0px;
		font-size: 7vw;
	}
	h1::after {
		width: 30%;
		height: 6px;
	}
	.about {
		background-size: 200% auto;
		background-position: center bottom;
	}
	.hammer {
		display: none;
	}
	.what-we-do{
		background-image: url(../img/rectangle.png);
		background-size: 65% auto;
		background-repeat: no-repeat;
		background-position: -50% 0%;
	}
	.we-do-content {
		font-size: 5vw;
		padding: 0 8%;
		font-family: 'OpenSansHebrew', sans-serif;
		    line-height: 1.3;
	}
	.we-do-content h2 {
		font-size: 14vw;
		margin-bottom: 20px;
		color: #313d65;
		font-family: 'FbReformaNarrow', 'OpenSansHebrew', sans-serif;
	}
	.we-do-content .smaller {
		font-size: 7vw;
		margin-bottom: 10px;
	}
	.how-we-do-it > .flexContent > h2 {
		color: white;
		font-size: 15vw;
		letter-spacing: -2px;
		line-height: 0.78;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.how-we-do-it > .flexContent > main {
		margin-right: 0px;
		font-family: 'OpenSansHebrew', sans-serif;
		    line-height: 1.3;
	}	
	.how-we-do-it > .flexContent {
		font-size: 5vw;
		max-width: 70%;
		margin-right: 10%;
	}
	.how-we-do-it {
		background-image: url(../img/face.png);
		background-size: 260% auto;
		background-repeat: no-repeat;
		background-position: 50% 150%;
	}
	.talkToUs {
		margin-right: 10%;
	}
	.talkToUs h2 {
    margin-bottom: 0px;
    font-size: 5vw;
    font-family: 'FbReformaNarrow', 'OpenSansHebrew', sans-serif;
    font-weight: 500;
	}
	.how-to-buy main .big {
		font-size: 14vw;
		line-height: 0.77;
		letter-spacing: -2px;
		margin-top: 2%;
	}
	.how-to-buy main .small {
		font-size: 5vw;
		line-height: 1.45;
		margin-top: 20px;
		font-family: 'OpenSansHebrew', sans-serif;
	}	

	/***************/
	/* jobs Page */
	/*************/
	.jobs .content {
		background-size: 200% auto;
		background-position: 50%;
	}
	.jobs-section {
		padding: 100px 10%;
	}
	.jobs h1 {
		font-size: 15vw;
		flex: 0 0 auto;
		padding-bottom: 20px;
		width: 100%;
	}	
	.jobs h1::after{
		display:none;
	}	
	.jobs-section > .job {
		padding-bottom: 40px;
	}	
	.jobs-section h3 {
		font-size: 11vw;
	}	
	.description {
		font-size: 4vw;
	}	
	.jobs-section .job a {
		border-bottom: 4px solid #00c3e8;
		font-size: 4vw;
		padding-bottom: 5px;
	}	
/*************/
/* Job Page */
/***********/
.job article {
    height: 100%;
}
.jobBack {
    background-size: 250% auto;
    background-position: 37% 100%;	
	display: block;
}
.job-box{
	    padding: 0% 10%;
		    margin-top: 30%;
}
.job-title h1 {
    font-size: 13vw;
}
.job-details {
	font-size: 5vw;
}	
.job-details a {
    font-size: 5vw;
}	
	/***************/
	/* contact Page */
	/*************/	
	.contact article {
		background-position: 60%;
		background-size: 250% auto;
		background-repeat: no-repeat;
	}	
	.contact h1 {
		margin-bottom: 20px;
		font-size: 18vw;
		line-height: 0.77;
		letter-spacing: -2px;
	}
	.contact-details {
		font-size: 5vw;
	}
}