/*
Theme Name: Shlavim

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/

/*
body {
	direction: rtl;
	unicode-bidi: embed;
}
*/

@import url('https://fonts.googleapis.com/css?family=Assistant:400,700&display=swap&subset=hebrew');
@import url('https://fonts.googleapis.com/css?family=Amatic+SC&display=swap&subset=hebrew');

body {
	font-family: 'Assistant', Arial;
	font-size: 18px;
	color: #666666;
}

.float {
	float: right;
	width: 100%;
}

.wrap {
	width: 1100px;
	margin: auto;
	position: relative;
}

.top {
	background-color: #5A2D91;
	color: white;
	height: 60px;
	box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.45);
}

.top a {
	color: white;
}

.menu {
	float: right;
}

.menu {
	float: right;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	font-size: 20px;
}

.menu li {
	float: right;
	position: relative;
}

.menu li a {
	float: right;
	padding: 14px;
	text-decoration: none;
}

.menu li:hover ul {
	display: block;
}

.top a:hover {
	color: #10BAAD;
}

.menu ul {
	position: absolute;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	z-index: 190;
	top: 100%;
	background-color: #5A2D91;
	width: 200px;
	display: none;
	box-shadow: -5px 5px 0px rgba(0, 0, 0, 0.45);
}

#logo {
	position: absolute;
	right: 0px;
	top: 60px;
	z-index: 150;
	width: 245px;
}

.top-left {
	float: left;
	margin-top: 10px;
}

.top-left a {
	float:left;
}

.phone {
	border: 1px solid white;
	padding: 3px 12px;
	font-size: 22px;
	text-decoration: none;
}

.top-left a img {
	float: right;
	margin: 8px 0px 0px 8px;
}

.facebook img {
margin: 12px 20px !important;
}

.cover {
	position: relative;
	z-index: -1;
}

.welcome {
	position: absolute;
	bottom: 27%;
	top: 27%;
	padding: 20px;
	color: #5A2D91;
	text-align: center;
	width: 720px;
	right: calc(50% - 360px);
	font-size: 22px;
	border-radius: 10px;
	z-index: 92;
	background-color: rgba(255, 255, 255, 0.7);
}

.welcome h1 {
	font-family: 'Amatic SC';
	color: #F37442;
	font-size: 70px;
	margin: 0px;
	line-height: 1;
}

.welcome p:nth-child(1) {
	margin-top: 5px;
}

.dark-cover {
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	right: 0px;
	left: 0px;
	top: 0px;
	z-index: 50;
	pointer-events: none;
	bottom: 0px;
}

.contacty {
	background-color: #10BAAD;
	padding: 30px 0px;
	color: white;
	position: relative;
}

.contacty-title {
	font-size: 45px;
}

.flex-container {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}

.flex {
    display: inline-block;
}

.flex5 {
    width: calc(20% - 25px);
}

.flex4 {
    width: calc(25% - 25px);
}

.flex3 {
    width: calc(33.33% - 50px);
}

.flex2 {
    width: calc(50% - 25px);
}

.flex80 {
	width: calc(80% - 25px);
}

.flex33 {
	width: calc(33% - 25px);
}

.flex40 {
	width: calc(38% - 25px);
}

.flex60 {
	width: calc(62% - 25px);
}

.flex66 {
    width: calc(66% - 25px);
}

.flex75 {
	width: calc(75% - 25px);
}

label {
	line-height: 1;
}

input, select, textarea {
	border: 0px !important;
	font-family: 'Assistant';
	border-radius: 10px !important;
	width: 100%;
	margin-top: 10px;
	padding: 8px !important;
	background-color: white;
	box-shadow: inset 0px 5px 5px #C9C9C9;
}

.wpcf7-submit {
	box-shadow: none !important;
	background-color: #F37442 !important;
	color: white !important;
	font-size: 20px !important;
	padding: 10px !important;
	margin-top: 28px !important;
	cursor: pointer !important;
	transition:0.2s !important;
	height: 40px;
}

.wpcf7-submit:hover {
	filter: brightness(1.2);
}

.wpcf7-response-output {
	float: right;
	width: 100%;
	margin: 10px 0px 0px 0px !important;
}

.wpcf7-not-valid-tip {
	color: yellow !important;
}

.arrowbg {
	width: 188px;
	height: 49px;
	position: absolute;
	top: -49px;
	z-index: 100;
	right: calc(50% - 94px);
	text-align: center;
	padding-top: 13px;
	background-image: url('/img/cover-line.png');
}

.arrow-bottom {
	animation: new_icon 0.5s linear 0s infinite alternate;
    -webkit-animation: new_icon 0.5s linear 0s infinite alternate;
}

@-webkit-keyframes new_icon {
    0% { -webkit-transform: translate(0px, 5px) ; }
    100% { -webkit-transform: translate(0px, -5px);  }
  }
  
@-moz-keyframes new_icon {
	0% { background-position: 0 0; }
	100% { background-position: 0 600%; }
}

.centered {
	text-align: center;
}

.centered-button {
	width: 300px;
	margin-right: calc(50% - 150px) !important;
	margin-left: calc(50% - 150px);;
}

.centered img {
	display: inline-block;
}

.padding {
	padding: 50px 0px;
}

.index-h2 {
	font-size: 45px;
	padding:0px;
	margin: 0px;
	font-weight: normal;
}

.card {
	background-color: #F4F4F4;
	border-radius: 10px;
	padding: 15px;
	text-align: right;
	margin-bottom: 15px;
}

.card-image {
	height: 150px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.card-image img {
	position: absolute;
	left: 50%;
	top: 50%;
	min-height: 100%;
	width: 100%;
	-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
  }

  .shadow {
	  box-shadow: 0 3px 4px rgba(0,0,0,0.05), 0 3px 4px rgba(0,0,0,0.05);
	  transition: 0.2s;
  }

  .shadow2 {
	box-shadow: 0 3px 4px rgba(0,0,0,0.2), 0 3px 4px rgba(0,0,0,0.2);
	transition: 0.2s;
}

  .shadow:hover {
	box-shadow: 0 3px 7px rgba(0,0,0,0.15), 0 3px 7px rgba(0,0,0,0.15);
  }

  .card-title {
	  font-size: 28px;
	  margin: 10px 0px;
	  text-decoration: none;
  }

  .card-desc {
	  margin-bottom: 25px;
	  height: 90px;
  }

  .card-link {
	  float: left;
	  text-decoration: none;
  }

  .card:nth-child(2n+1) a {
	  color: #5A2D91;
  }

  .card:nth-child(2n+2) a {
	color: #F37442;
}

.card:nth-child(2n+3) a {
	color: #10BAAD;
}

.card-arrow {
	float: left;
	margin-top: 2px;
	margin-right: 10px;
	font-size: 16px;
}

.graybg {
	background: #F4F4F4;
	background: -webkit-linear-gradient(top, #F4F4F4, #FFFFFF);
	background: -moz-linear-gradient(top, #F4F4F4, #FFFFFF);
	background: linear-gradient(to bottom, #F4F4F4, #FFFFFF);
}

.circle-wrap {
	text-align: center;
}

.circle {
	width: 130px;
	height: 130px;
	font-weight: bold;
	padding-top: 35px;
	background-color: white;
	margin-top: 70px;
	border-radius: 50%;
	font-size: 40px;
	display: inline-block;
}

.circle-wrap:nth-child(1) .circle {
	color: #5A2D91;
	box-shadow: 0 6px 12px #5A2D91;
}

.circle-wrap:nth-child(2) .circle {
	color: #F37442;
	box-shadow: 0 6px 12px #F37442;
}

.circle-wrap:nth-child(3) .circle {
	color: #10BAAD;
	box-shadow: 0 6px 12px #10BAAD;
}

.under-circle {
	width: 150px;
	margin-top: 15px;
	display: inline-block;
}

.over-circle {
	width: 150px;
	display: inline-block;
	padding-bottom: 15px;
}

.relative {
	position: relative;
}

.map-wrap {
	text-align: center;
}

.map {
	display: inline-block;
}

.greenbg {
	background: #FFFFFF;
	background: -webkit-linear-gradient(top, #D4F2F0, #FFFFFF);
	background: -moz-linear-gradient(top, #D4F2F0, #FFFFFF);
	background: linear-gradient(to bottom, #D4F2F0, #FFFFFF);
}

.wrap-small {
	width: 600px;
	margin: auto;
}

.wrap-small2 {
	width: 800px;
	float: right;
	margin-right: calc(50% - 400px);
}

.rc {
	margin: 30px 0px;
}

.rc-single {
	color: white;
	padding: 10px 20px 14px 20px;
	background-color: #40C6BC;
	border-radius: 10px;
	margin: 0px 25px;
}

.rc-single .rc-name {
	font-style: italic;
	float: left;
	clear:both;
}

.rc-right {
	right: -30px;
	background-image:url('/img/rc-right.png');
}

.rc-left {
	left: -30px;
	background-image:url('/img/rc-left.png');
}

.slick-slide img {
	width: 100%;
}

.slick-arrow {
	position: absolute;
	height: 18px;
	top: 45%;
	width: 10px;
	padding: 0px;
	background-color: transparent;
	border: 0px;
}

.footer {
	background-color: #F37442;
	padding-top: 60px;
}

.footer:before {
	position: absolute;
	content: "";
	top: 0px;
	background-image: url('/img/bottom.png');
	width: 100%;
	height: 63px;
	background-position: center;
	background-repeat: no-repeat;
}

.footer-top {
	padding: 20px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-top a {
	color: white;
}

.footer-top ul ul {
	display: none !important;
}

.footer-bottom {
	padding: 30px;
	color: white;
}

.footer-bottom a {
	color: white;
}

.ajax-loader {
	display: none !important;
}

.pin {
	position: absolute;
}

.pin:nth-child(1) {
	top: 13px;
    right: 34px;
}

.pin:nth-child(2) {
	top: 36px;
    right: 41px;
}

.pin:nth-child(3) {
	top: 45px;
    right: 21px;
}

.pin:nth-child(4) {
	top: 60px;
    right: 49px;
}

.pin:nth-child(5) {
	top: 87px;
    right: 55px;
}

.pin:nth-child(6) {
	top: 79px;
    right: 35px;
}

.pin:nth-child(7) {
	top: 114px;
    right: 70px;
}

.pin:nth-child(8) {
	top: 109px;
    right: 55px;
}

.pin:nth-child(9) {
	top: 133px;
    right: 56px;
}

.pin:nth-child(10) {
	top: 151px;
    right: 69px;
}

.pin:nth-child(11) {
	top: 176px;
    right: 75px;
}

.pin:nth-child(12) {
	top: 190px;
    right: 57px;
}

.pin:nth-child(13) {
	top: 123px;
    right: 42px;
}

.pin:nth-child(14) {
	top: 319px;
    right: 59px;
}

.cover-inside img {
	display: block;
}

.main-title {
	background-color: #F4F4F4;
	text-align: center;
	margin: 0px;
	font-weight: normal;
	padding: 15px;
}

.page-wrapper {
	padding: 40px 0px;
}

.wp-post-image {
	width: 100%;
	height: auto;
	margin-bottom: 25px;
	border-radius: 10px;
}

.contact-inside {
	background-color: #10BAAD;
	border-radius: 10px;
	padding: 30px;
	color: white;
	margin-bottom: 15px;
}

.contact-inside .flex {
	width: 100%;
	margin-bottom: 20px;
}

.contact-inside .flex-submit {
	width: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
}

.contact-inside .wpcf7-submit {
	width: 150px;
	float: left;
}

.contact-inside .contacty-title {
	font-size: 30px;
	margin-bottom: 15px;
}

.the-content a {
	color: #10BAAD;
}

.the-content img {
	max-width: 100%;
	height: auto;
}

.the-content h2 {
	font-weight: normal;
	font-size: 28px;
}

.the-content p:nth-child(1) {
	margin-top: 0px;
}

.ours h2 {
	color: #F37442;
	margin-top: 0px;
}

.ours {
	line-height: 1.2;
	padding: 20px;
	margin-bottom: 30px;
}

.ours strong {
	font-size: 20px;
}

.team {
	border-bottom: 1px solid #E3E3E3;
	margin-bottom: 25px;
}

.team-title {
	color: #5A2D91;
	font-size: 22px;
	font-weight: bold;
}

.team-job {
	font-size: 20px;
	color: #F37442;
}

.team-content p {
	margin: 0px;
}

.team-content {
	padding-bottom: 25px;
}

.peilut {
	float: right;
	font-size: 20px;
	width: 100%;
	margin: 10px 0px;
}

.peilut img {
	float: right;
	margin-left: 15px;
}

.page-id-40 h2 {
	font-weight: normal;
}

.advi {
	margin-bottom: 15px;
}

.advi1 {
	float: right;
	padding-top: 5px;
	width: 45px;
}

.advi2 {
	float: right;
	padding-right: 25px;
	width: calc(100% - 45px);
}

.full-contact {
	background-color: #5A2D91;
	padding: 20px;
	color: white;
	border-radius: 10px;
}

.full-contact label {
	margin-bottom: 15px;
}

.full-contact textarea {
	height: 120px;
}

.full-contact .flex-submit {
	float: left;
	width: 100%;
}

.full-contact .wpcf7-submit {
	float: left;
	width: 170px;
}

#the-content h2 {
	font-size: 28px;
	font-weight: normal !important;
}

.str-1 {
	float: right;
	width: 400px;
	margin-left: 25px;
	height: 275px;
	overflow: hidden;
	position: relative;
}

.str-1 img {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	width: auto;
	min-width: 100%;
	-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
}

.str-2 {
	float: left;
	width: calc(100% - 425px);
	min-height: 275px;
	padding-bottom: 70px;
	position: relative;
}

.str-item {
	margin-bottom: 15px;
}

.str-item:nth-child(2n) .str-1 {
	float: left;
	margin-left: 0px;
	margin-right: 25px;
}

.str-item:nth-child(2n) .str-2 {
	float: right;
}

.str-title {
	color: #F37442;
	font-weight: normal;
	margin: 0px;
	font-size: 32px;
}

.str-slogan {
	color: #5A2D91;
	font-size: 22px;
	margin-bottom: 5px;
}

.str-details {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 20px;
}

.str-details > * {
	border-radius: 10px;
}

.str-video {
	float: right;
}

.str-video img {
	float: right;
}

.str-video span {
	float: right;
	text-decoration: none;
	color: #666666;
	padding: 4px 10px;
}

.str-video2 {
	float: right;
	margin-top: 10px;
}

.str-video2 img {
	float: right;
}

.str-video2 span {
	float: right;
	text-decoration: none;
	color: #666666;
	padding: 4px 10px;
}

.str-buy {
	background-color: #F37442;
	padding: 6px 15px;
	float: left;
	text-decoration: none;
	margin-right: 15px;
	color: white !important;
}

.str-price {
	float: left;
	padding: 6px 15px;
	color: white !important;
	background-color: #10BAAD;
}

.lighter {
	transition: 0.2s;
}

.lighter:hover {
	filter: brightness(1.2);
}

.grid {
    width: 100%;
    float: right;
    list-style-type: none;
    margin: 0px 0px;
    padding: 0px;
}

.grid-item {
    float: right;
    width: 33.33%;
    padding: 5px 5px 0px 5px;
}

.grid-item img {
    width: 100%;
    height: auto;
	transition:0.2s;
	border-radius: 10px;
}

.grid-item img:hover {
    opacity: 0.8;
}

.card-desc p {
	margin: 0px;
}

.whatsapp-icon-fixed {
    position: fixed;
    left: 35px;
    bottom: 35px;
}
    
.whatsapp-icon-fixed img {
    width: 82px;
    height: auto;
}

.mobile-header-contact {
	display: none;
}

.mobile {
	display: none;
}

.mobile-open {
	display: none;
}

.slider2 {
	display: none;
}

.togallery {
	border-radius: 10px;
	text-align: center;
	margin-bottom: 30px;
}

.entry-content {
	margin: 0px;
	text-align: justify;
}

.entry-content p:nth-child(1) {
	margin-top: 0px;
}

.wpcf7-mail-sent-ok {
	border: 2px solid #673AB7 !important;
}

/* screen */

@media screen and (max-width: 1600px) {


	.welcome {
		bottom: 14%;
		top: 14%;
	}

}

@media screen and (max-width: 1100px) {

    .wrap {
        width: 100%;
        padding: 0px 10px;
	}
    
}

@media screen and (max-width: 1000px) {

	.contacty-title {
		display: none;
	}

	#contacty {
		width: 100%;
	}

	.card-image {
		height: 100px;
	}
	
	.top {
		display: none;
	}
		
	.wrap-small2 {
		width: 100%;
		margin-right: 0px;
	}

	.str-1 , .str-2{
		width: 100%;
		min-height: auto;
		margin-bottom: 15px;
	}

}

@media screen and (max-width: 700px) {

	.wrap-small, .wrap-small2 {
		width: 100%;
	}

	.flex {
		width: 100%;
	}

	.card-image {
		height: 150px;
	}

	.str-video span {
		display: none;
	}

	.contact-inside {
		display: none;
	}
	
	.header-contact {
		display: none;
		padding-top: 15px;
	}

	.mobile-header-contact {
		display: block;
		text-align: center;
		font-size: 30px;
	}

	label {
		padding-bottom: 15px;
	}

	.mobile {
		position: fixed;
		top: 0px;
		right: 0px;
		left: 0px;
		z-index: 999;
		height: 60px;
		display: block;
		background-color: #5A2D91;
	}

	.mobile-link  {
		float: left;
		padding: 14px;
    	border-right: 1px solid rgba(255, 255, 255, 0.5);
	}

	.mobile-link > img {
		display: block;
	}

	.mobile-open {
		top: 60px;
		height: calc(100% - 60px);
		right: 0px;
		left: 0px;
		background-color: #5A2D91;
		position: fixed;
		overflow: auto;
		z-index: 999;
	}

	.menu2 {
		list-style-type: none;
		padding: 0px;
		margin: 0px;
	}

	.menu2 li {
		float: right;
		border-top: 1px solid rgba(255, 255, 255, 0.5);
		width: 100%;
	}

	.menu2 a {
		padding: 10px;
		font-size: 20px;
		float: right;
		width: 100%;
		color: white;
		text-decoration: none;
	}

	.welcome {
		right: 20px;
		left: 20px;
		width: auto;
		font-size: 18px;
	}

	.cover {
		margin-top: 60px;
	}
	
	#logo {
		transition: 0.2s;
		width: 170px !important;
	}
	
	.slick-arrow {
		display: none !important;
	}

	.slider2 {
		display: block;
	}

	.slider1 {
		display: none;
	}

	.over-circle {
		width: 100%;
	}

	.map {
		margin-top: 25px;
	}

}