* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

:root {
	--red: #ed1c24;
	--blue: #43b6e8;
}
/* Regular */
@font-face {
    font-family: "Sukar Regular";
    src: url('./fonts/SukarRegular/font/Sukar-Regular.eot');
    src: url('./fonts/SukarRegular/font/Sukar-Regular.eot?#iefix') format('embedded-opentype'),
    url('./fonts/SukarRegular/font/Sukar-Regular.svg#Sukar-Regular') format('svg'),
    url('./fonts/SukarRegular/font/Sukar-Regular.woff') format('woff'),
    url('./fonts/SukarRegular/font/Sukar-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: fbSpacer;
	src: url("./fonts/FbSpacer-Bold.otf");
	font-weight: bold;
}

@font-face {
	font-family: fbSpacerBlack;
	src: url("./fonts/FbSpacer-Black.otf");
	font-weight: bolder;
}

@font-face {
	font-family: FbLiddar;
	src: url("./fonts/FbLiddar-Bold.otf");
	font-weight: 600;
}

@font-face {
	font-family: fbLiddarRegular;
	src: url("./fonts/FbLiddar-Regular.otf");
	font-weight: 400;
}

@font-face {
	font-family: FbAbsolutiHeb-Black;
	src: url("./fonts/FbAbsolutiHeb-Black.otf");
	font-weight: 400;
}

body {
	font-family: Sukar Regular;
}

h3 {
	font-size: 3rem;
	color: var(--red);
}

h4 {
	font-family: Sukar Regular;
	font-size: 3rem;
	line-height: 4rem;
	margin-bottom: 0.5rem;
	color: #fff;
}
h5 {
	font-family: Sukar Regular;
	font-size: 2.5rem;
	line-height: 3rem;
	margin-bottom: 0.3rem;
	color: #fff;
}
hr{
	color: #fff;
}
.short {
	font-size: 1.5rem;
	color: #fff;
	margin: 10px 0;
	font-family: Sukar Regular;
	font-weight: 700;
}

h1 {
	font-size: 4rem;
	color: var(--red);
}

p {
	color: var(--blue);
}

.wrapper {
	background: var(--blue);
	background: url(assets/baby.jpg) no-repeat left top;
	background-size: 100%;
	padding: 0;
	float: left;
	width: 100%;
}

.content {
	text-align: center;
	/* background: #fff; */
	position: relative;
	float: left;
	width: 100%;
}
.descreption{
	font-family: sukar regular;
}
.content .logo {
	width: 20%;
	display: block;
	margin: 60px auto;
}

.main .photo-large {
	display: none;
}

.content .photo-small {
	width: 100%;
	/* height: 50%; */
	position: absolute;
	bottom: -20px;
	display: block;
	margin: 50px auto 0 auto;
}

/** Loader **/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

#loader-img {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	z-index: 1001;
	background-image: url('https://mybaby.co.il/home/deskimgs/desklogo.jpg');
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	z-index: 1020;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	width: 200px;
	height: 200px;
	margin: -200px 0 0 -100px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 1001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #e52528;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #63c1e8;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}

/** Custom Loader **/
.item-button {
	color: #fff;
}

.custom_loader #custom_loader-img {
	display: block;
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0;
	background-image: url(https://mybaby.co.il/home/deskimgs/desklogo.jpg);
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	z-index: 1020;
}

.custom_loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.custom_loader .loading_circle {
	display: block;
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 1001;
}

.custom_loader .loading_circle:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #e52528;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

.custom_loader .loading_circle:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #63c1e8;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #fff;
	z-index: 1000;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}

.loader-section.section-left {
	left: 0
}

.loader-section.section-right {
	right: 0
}

.panel_left {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.panel_right {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.loaded-circle {
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out
}

.loaded-img {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all .3s 1s ease-out;
	transition: all .3s 1s ease-out
}

/** **/
.d-none {
	display: none;
}

.title-wings .title-wings-text:before,
.title-wings .title-wings-text:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: 46.67px;
	height: 40px;
	transform: translate(0, -50%);
	background-position: center center;
	background-size: 90% auto;
	background-repeat: no-repeat;
}

.title-wings:before,
.title-wings:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: 46.67px;
	height: 40px;
	transform: translate(0, -50%);
	background-position: center center;
	background-size: 90% auto;
	background-repeat: no-repeat;
}

/* .title-wings::before {
    right: 100%;
    background-image: url(assets/wing-left.png);
}
.title-wings::after {
    left: 100%;
    background-image: url(assets/wing-right.png);
} */
.title-wings .title-shadow {
	display: inline-block;
	font-size: 1.7em;
	/* -webkit-text-stroke: 9px #000; */
	font-family: "sukar regular";
	padding-right: 10px;
	padding-left: 10px;
	letter-spacing: 0.7px;
}

.main {
	max-width: 991px;
	margin: 0 auto;
	align-items: center;
	display: grid;
	height: 100%;
}

.content .photo-small {
	width: 100%;
	position: absolute;
	display: block;
	margin: 50px auto 0 auto;
	left: 0;
	bottom: 0px;
	max-width: 50%;
}


.text_area {
	width: 45%;
	float: right;
	padding: 25px 0;
	background: rgba(1, 1, 1, 0.7);
}

.title-shadow {
	color: #43b6e8;
}

.red_bg {
	/* background: #ed1c24; */
	width: 100%;
	padding: 0;
	position: relative;
	float: left;
}

.title-wings {
	position: relative;
	margin: 5vh 2.8rem 0;
}

.title-wings .title-shadow {
	text-decoration: none;
}

/** Form Page **/
.title-shadow {
	color: #43b6e8;
}

.title-wings {
	position: relative;
	margin: 20px 2.8rem 0;
}

.title-wings .title-shadow {
	text-decoration: none;
	font-family: sukar regular;
	border: 2px solid #fff;
	border-radius: 8px;
	color: #fff;
	padding: 3px 15px 7px;
}

.form_page #formToDlt {
	margin: 15px 0 30px;
	float: left;
	width: 100%;
}

.form_page #formToDlt input,
.form_page #formToDlt select {
	font-size: 16px;
	font-family: sukar regular;
	color: #000;
	line-height: 1.2;
	text-align: right;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #ced4da;
	padding: 0.375rem 0.75rem;
	max-width: 320px;
	width: 100%;
}

.form_page #formToDlt input.btn {
	border: 0px !important;
	color: #Ed1c24;
	font-size: 27px;
	font-weight: 900;
	text-align: center;
}

.form_page form#formToDlt p {
	float: left;
	width: 100%;
	margin: 5px 0;
	padding: 0 15px;
}

h3 {
	font-size: 4rem;
	color: #fff;
	font-family: Sukar Regular;
	font-weight: 900;
}

.form-content {
	background: rgba(1, 1, 1, 0.7);
}

p {
	font-size: 2.5rem;
}

.content .logo {
	margin: 60px auto 3vh auto;
}

.card.job-card {
	padding-top: 20px;
}

@media screen and (max-width: 860px) {
	.text_area {
		padding: 10px;
	}

	.title-wings .title-shadow {
		text-decoration: none;
		font-size: 30px;
		line-height: 30px;
		padding: 0 15px;
	}

	.title-wings {
		margin: 2vw;
		margin-top: 50px;
	}
}

@media screen and (max-width: 680px) {
	h3 {
		font-size: 2.2rem;
	}

	p {
		font-size: 2rem;
	}

	.content .logo {
		margin: 60px auto 3vh auto;
	}

	.form_page h1 {
		font-size: 2.5rem;
	}

	.text_area {
		width: 100%;
		float: left;
		padding: 15px 40px;
	}

	.content .photo-small {
		position: initial;
		margin-bottom: 0px;
		max-width: 60%;
		left: 18%;
	}

	.wrapper {
		background: none;
	}

	.main {
		background: url(assets/baby.jpg) no-repeat center center;
		background-size: cover;
		padding: 5%;
	}

	h4 {
		font-size: 2rem;
	}

	.short {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 680px) and (max-height: 680px) {
	h3 {
		font-size: 2rem;
	}

	p {
		font-size: 1rem;
	}

	.content .logo {
		margin: 1vh auto 3vh auto;
	}

	.form_page h1 {
		font-size: 2.5rem;
	}

	.title-wings .title-shadow {
		text-decoration: none;
		font-size: 20px;
		line-height: 22px;
	}

	.text_area {
		width: 100%;
		float: left;
		padding: 15px 40px;
	}

	.content .photo-small {
		position: initial;
		margin-bottom: 0px;
		max-width: 60%;
		left: 18%;
	}
}