/*================================================*/
/*                    MAIN STYLES                 */
/*================================================*/
html {
	color: #363636;
	font-family: "Open Sans Hebrew", sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .025em;
	height: 100%;
}

body {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	background-color: #fff;
	width: 100%;
	min-width: 320px;
	max-width: 100vw;
	min-height: 100%;
}

.main-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

.main-grow {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-flex: 1;
	flex-grow: 1;
	width: 100%;
	min-height: 1px;
	margin: 0 auto;
}

.main {
	width: 100%;
}

.section__wrapper {
	width: 100%;
	max-width: 1380px;
	padding: 0 30px;
	margin: 0 auto;
}

.text-left {
	text-align: left;
}

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

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.text-justify-center {
	text-align: justify;
	text-align-last: center;
}

.text-underline {
	text-decoration: underline;
}

.d-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-grow-1 {
	-webkit-box-flex: 1;
	flex-grow: 1;
}

.align-items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.align-items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.align-items-baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.justify-content-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-content-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: none;
}

.relative {
	position: relative;
}

.img-wrap {
	display: block;
}

.img-wrap img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	flex-shrink: 0;
}

.img-center img {
	margin: 0 auto;
}

.img-cover {
	display: block;
}

.img-cover > img {
	position: absolute;
	display: block;
	object-fit: cover;
	object-position: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img-fit {
	position: relative;
	display: block;
}

.img-fit:before {
	display: block;
	pointer-events: none;
	content: '';
	padding-top: 100%;
}

.img-fit img {
	position: absolute;
	display: block;
	object-fit: cover;
	object-position: center center;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.cover {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.colored {
	color: #ff6d01;
}

.clear:before,
.clear:after {
	content: "";
	display: table;
	table-layout: fixed;
}

b,
strong {
	font-weight: 700;
}

a {
	font-family: inherit;
	color: inherit;
}

a:hover {
	text-decoration: underline;
}

.hover-colored:hover {
	text-decoration: none;
	color: #ff6d01;
}

.link {
	color: #ff6d01;
	font-weight: 700;
}

.btn {
	cursor: pointer;
	display: block;
	text-align: center;
	color: #fefefe;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
	text-transform: uppercase;
	background-color: #ff6d01;
	border: none;
	border-radius: 5px;
	outline: none;
	width: auto;
	min-width: 0;
	max-width: none;
	height: 53px;
	padding: 0 2em;
	margin: 0;
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	transform-origin: center center;
}

.btn:not([type='submit']) {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.btn:hover {
	color: #fff;
	text-decoration: none;
	background-color: #ff8302;
}

.btn:active {
	background-color: #f56c01;
}

.input,
.textarea {
	display: block;
	font-size: 1rem;
	font-family: inherit;
	color: #373737;
	background-color: #d8d2cd;
	border: 1px solid transparent;
	border-radius: 0;
	outline: none;
	width: 100%;
	min-width: 0;
	max-width: none;
	height: 53px;
	padding: 0 1em;
	margin: 0;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

.textarea {
	min-height: 100px;
	padding: 0.5em 1em;
	resize: none;
	overflow: auto;
}

.input::-ms-clear,
.textarea::-ms-clear {
	display: none;
}

.input:focus,
.textarea:focus {
	border-color: #ff6d01;
}

.input::-webkit-search-decoration,
.textarea::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.textarea::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.textarea::-webkit-search-results-button,
.input::-webkit-search-results-decoration,
.textarea::-webkit-search-results-decoration {
	display: none;
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
	opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
	opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
	opacity: 0;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
	color: #373737;
	font-weight: 300;
	opacity: 1;
	-webkit-transition: 0.4s ease-in-out 0.4s;
	-o-transition: 0.4s ease-in-out 0.4s;
	transition: 0.4s ease-in-out 0.4s;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
	color: #373737;
	font-weight: 300;
	opacity: 1;
	-webkit-transition: 0.4s ease-in-out 0.4s;
	-o-transition: 0.4s ease-in-out 0.4s;
	transition: 0.4s ease-in-out 0.4s;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
	color: #373737;
	font-weight: 300;
	opacity: 1;
	-webkit-transition: 0.4s ease-in-out 0.4s;
	-o-transition: 0.4s ease-in-out 0.4s;
	transition: 0.4s ease-in-out 0.4s;
}

.form__input__wrap {
	position: relative;
	margin-bottom: 18px;
}

.form__btn__wrap .btn {
	text-align: center;
	width: 100%;
}

.h2 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 1em;
}

.breadcrumbs {
	font-size: 14px;
	padding: 20px 0;
}

.breadcrumbs li {
	display: inline-block;
}

.breadcrumbs li:not(:last-child):after {
	content: ' / ';
}


.photobox {
	position: relative;
	display: block;
	background-color: #febd8d;
	max-width: 400px;
	transition: .2s;
}

.photobox:before {
	display: block;
	content: '';
	padding-top: 103%;
}

a.photobox:hover {
	background-color: #ff8302;
}

.photobox img {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	max-height: none;
}

/*================================================*/
/*                    HEADER	                  */
/*================================================*/
.header {
}

.header__top {
	text-align: center;
	background-color: #373737;
	color: #fff;
	font-size: 23px;
	line-height: 1;
	padding: 20px 0;
}

.header__top__inner {
	max-width: 1700px;
	padding: 0 70px;
}

.header.fixed .header__bot {
	position: fixed;
	border-bottom: 1px solid #000;
}

.header__bot {
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	padding: 22px 0 15px;
	transition: .2s;
	z-index: 30;
}

body.header-with-border .header__bot {
	border-bottom: 1px solid #000;
}

.header__bot__inner {
	display: flex;
	align-items: center;
	max-width: 1700px;
}

.header nav {
	font-family: "Heebo", "Open Sans Hebrew", sans-serif;
	margin: 0 75px;
}

.header__logo {
	position: relative;
	align-self: flex-end;
	width: 76px;
	min-width: 76px;
	z-index: 2;
}

.header__logo .custom-logo-link img {
	position: absolute;
	right: 0;
	left: 0;
	bottom: -6px;
	display: block;
	width: auto;
	height: 90px;
	transition: .2s;
}

.header__search {
	margin: 0 auto 0 0;
}

.header__search__form {
	position: relative;
	height: 23px;
	width: 240px;
}

.header__search__form.expanded .input {
	display: block;
}

.header__search__form .input {
	position: absolute;
	display: none;
	background: none;
	border: 1px solid #333;
	width: 248px;
	height: auto;
	top: -5px;
	bottom: -5px;
	right: 0;
	padding-right: .75em;
	padding-left: 35px;
}

.btn-search {
	position: absolute;
	display: block;
	cursor: pointer;
	color: transparent;
	background: none;
	border: none;
	outline: none;
	border-radius: 0;
	width: 22px;
	height: 23px;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
}

.header nav > ul {
	display: flex;
	flex-wrap: wrap;
}

.header nav > ul > li > a {
	font-size: 20px;
	padding: 0 1em;
}

.header nav a:hover {
	text-decoration: none;
	color: #ff6d01;
}

.header nav ul ul a:hover:before {
	background-color: #ff6d01 !important;
}

.header nav ul ul a:hover:after {
	border-top-color: #ff6d01 !important;
}

.header nav > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition: 0.4s 0s;
}

.header nav > ul > li > ul {
	position: absolute;
	display: block;
	background-color: #febd8d;
	border-radius: 0 0 10px 10px;
	white-space: nowrap;
	top: 100%;
	right: -30px;
	padding: 25px 20px 25px 55px;
	margin-top: 15px;
	opacity: 0;
	visibility: hidden;
	transform-origin: top center;
	transition: 0.2s 0.2s;
	will-change: opacity;
	z-index: 10;
}

.header nav > ul > li > ul:before {
	position: absolute;
	display: block;
	content: '';
	left: 0;
	right: 0;
	bottom: 100%;
	height: 15px;
}

.header nav > ul > li > ul:after {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%;
	right: 32px;
	border-style: solid;
	border-width: 0 13px 13px 13px;
	border-color: transparent transparent #febd8d transparent;
	transform: translateY(50%);
	transition: transform 0.2s 0.2s;
}

.header nav > ul > li:hover > ul:after {
	transform: none;
	transition: transform 0.4s 0s;
}

.header nav > ul > li > ul > li {
	border-bottom: 1px solid #737171;
}

.header nav > ul > li > ul > li.menu-item-has-children > a {
	position: relative;
}

.header nav > ul > li > ul > li.menu-item-has-children > a:after {
	position: relative;
	display: inline-block;
	content: '';
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #737171 transparent transparent transparent;
	margin-right: .25em;
	top: -2px;
	transition: .2s;
}

.header nav ul ul ul {
	display: none;
	border-top: 1px solid #737171;
	padding-top: .5em;
	margin-top: .5em;
}

.header nav ul ul ul li {
	padding: .2em 0;
}

.header nav ul ul ul a:before {
	position: relative;
	display: inline-block;
	content: '';
	background-color: #737171;
	width: 8px;
	height: 8px;
	margin-left: .5em;
	top: -1px;
	transition: .2s;
}

.header nav li {
	position: relative;
	display: block;
}

.header nav .current-menu-item > a {
	color: #ff6d01;
	font-weight: 700;
}

.header nav li li {
	padding: .4em 0;
}

.header .nm-menu-expand {
	position: relative;
	display: none;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
	width: 27px;
	min-width: 27px;
	max-width: 27px;
	height: 16px;
	z-index: 3;
}

.header .nm-menu-expand span {
	display: block;
	position: absolute;
	background-color: #363636;
	border-radius: 0;
	left: 0;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
	height: 2px;
}

.header .nm-menu-expand span:nth-child(1) {
	top: 0;
}

.header .nm-menu-expand span:nth-child(2),
.header .nm-menu-expand span:nth-child(3) {
	top: 7px;
	will-change: transform;
}

.header .nm-menu-expand span:nth-child(4) {
	top: 14px;
}

.header .nm-menu-expand.nm-active {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.header .nm-menu-expand.nm-active span:nth-child(1) {
	top: 5px;
	width: 0;
	left: 50%;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.header .nm-menu-expand.nm-active span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header .nm-menu-expand.nm-active span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header .nm-menu-expand.nm-active span:nth-child(4) {
	top: 10px;
	width: 0;
	left: 50%;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

/*================================================*/
/*                    FOOTER	                  */
/*================================================*/
.footer {
	background-color: #373737;
	color: #fff;
	font-size: 20px;
	line-height: 33px;
	padding: 55px 0 50px;
}

.footer__title {
	color: #ff6d01;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: .75em;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	margin: 0 -50px;
}

.footer__col {
	flex-grow: 4;
	padding: 0 30px;
	margin-bottom: 50px;
}

.footer__col:first-child {
	flex-grow: 1;
	border-left: 1px solid #737171;
}

.footer__col:last-child {
	flex-grow: 1;
	border-right: 1px solid #737171;
}

.footer__widget--middle > div > ul {
	column-count: 2;
	column-gap: 20px;
}

.footer__widget--middle ul a {
	display: inline-block;
	margin: 3px 0;
}

.footer__widget--middle > div > ul > li > a {
	color: #ff6d01;
}

.footer__widget--middle > div > ul > li > ul {
	margin-bottom: 1.5em;
}

.footer__widget form {
	border-bottom: 1px solid #737171;
	max-width: 330px;
	padding: 25px 0 50px;
}

.social__item {
	display: inline-flex;
	align-items: center;
	margin: 12px 0;
}

.social__item img {
	width: 47px;
	min-width: 47px;
	margin: 0 5px;
}


/*================================================*/
/*                    SECTIONS 	                  */
/*================================================*/
.section {
	padding: 80px 0;
}

.section--breadcrumbs + .section {
	padding-top: 50px;
}

.section--greeting {
	background-color: #e9e9e9;
	padding-top: 100px;
	overflow: hidden;
}

.section--greeting .section__wrapper {
	max-width: 1720px;
}

.section--greeting__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-left: 400px;
	max-width: 1490px;
	margin: 0 auto 0 0;
}

.section--greeting__main {
	position: relative;
	width: calc(100% - 540px);
	max-width: 512px;
	padding-bottom: 100px;
	z-index: 4;
}

.section--greeting__title {
	font-size: 84px;
	font-weight: 300;
	line-height: .9;
	border-bottom: 1px solid rgba(255, 109, 1, 0.37);
	padding-bottom: .3em;
}

.section--greeting__text {
	font-size: 22px;
	font-weight: 300;
	line-height: 1.5;
	border-bottom: 1px solid rgba(255, 109, 1, 0.37);
	padding: 1.2em 0;
}

.section--greeting__list {
	column-count: 2;
	column-gap: 20px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 1.25em;
}

.section--greeting__list li {
	display: block;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
}

.section--greeting__list li:before {
	position: relative;
	display: inline-block;
	content: '';
	background-color: #ff6d01;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	margin-left: .75em;
	top: -.1em;
}

.section--greeting__img {
	position: relative;
	align-self: flex-end;
	font-size: 0;
	width: 525px;
	margin: 0 auto 0 0;
	z-index: 3;
}

.section--greeting__img__circle {
	position: absolute;
	background: #fff;
	border-radius: 50%;
	left: 325px;
	bottom: -40px;
	width: 582px;
	z-index: 1;
}

.section--greeting__img__circle:before {
	display: block;
	content: '';
	padding-top: 100%;
}

.section--greeting__info {
	position: absolute;
	background-color: rgba(255, 109, 1, 0.57);
	font-size: 20px;
	color: #fff;
	padding: 35px 55px 40px;
	left: 0;
	bottom: 100px;
	width: 100%;
	max-width: 430px;
	z-index: 2;
}


.section--top_contact {
	position: relative;
	text-align: center;
	margin-top: -90px;
	z-index: 4;
}

.section--top_contact__inner {
	display: inline-flex;
	background-color: #ff6d01;
	border-radius: 30px;
	box-shadow: -2px -2px 33px 2px rgba(0, 0, 0, 0.14);
	color: #fff;
	padding: 40px 0 25px;
	margin-right: -80px;
}

.section--top_contact__text {
	align-self: center;
	text-align: right;
	font-weight: 700;
	padding: 0 40px 0 45px;
}

.section--top_contact__phone {
	color: #373737;
	font-family: "Heebo", "Open Sans Hebrew", sans-serif;
	font-size: 27px;
	font-weight: 700;
}

.section--top_contact__text + .section--top_contact__form {
	border-right: 1px solid #373737;
}

.section--top_contact__form {
	padding: 0 75px;
}

.section--top_contact__form .form__input__wrap {
	margin-bottom: 12px;
}

.section--top_contact__form form {
	width: 275px;
}

.section--top_contact__form span.wpcf7-not-valid-tip {
	color: #fff;
}

.section--top_contact__form .input {
	background: #fff;
	border: none;
	height: 44px;
}

.section--top_contact__form .btn {
	background-color: #737171;
}

.section--top_contact__form .btn:hover {
	background-color: #878585;
}

.section--top_contact__form .btn:active {
	background-color: #696767;
}

.form__btn__wrap {
	position: relative;
}

.ajax-loader {
	position: absolute;
	left: 50%;
	bottom: -20px;
	margin: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}


.section--icons {
	text-align: center;
	padding: 75px 0;
}

.section--icons__title {
	font-weight: 700;
	margin-bottom: .5em;
}

.section--icons__inner {
	max-width: 1010px;
	margin: 0 auto;
	overflow: hidden;
}

.icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -7%;
}

.icons__item {
	position: relative;
	width: 33.33%;
	max-width: 200px;
	padding: 50px 0;
	margin: 0 7%;
}

.icons__item:after {
	position: absolute;
	display: block;
	content: '';
	background: #e5e5e5;
	right: 0;
	bottom: 0;
	width: 1000px;
	height: 1px;
}

.icons__item__img {
	width: 187px;
	height: 187px;
	margin-bottom: 30px;
}

.icons__item__img img {
	transition: .2s;
}

.icons__item__img:hover img {
	opacity: .75;
}

.icons__item__title {
	font-size: 20px;
	font-weight: 800;
}


.section--numbers {
	padding: 75px 0 0;
}

.numbers {
	display: flex;
	flex-wrap: wrap;
}

.numbers__item {
	position: relative;
	text-align: center;
	border-right: 1px solid transparent;
	border-left: 1px solid transparent;
	width: 10%;
	flex-grow: 1;
	padding: 0 15px;
	margin-bottom: 35px;
}

.numbers__item:not(:nth-child(3n+3)):after {
	position: absolute;
	display: block;
	content: '';
	background: #ff6d01;
	left: 0;
	width: 1px;
	top: 30px;
	bottom: 20px;
}

.numbers__item__counter {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #febd8d;
	font-family: "BalboaPlus", "Heebo", "Open Sans Hebrew", sans-serif;
	font-size: 93px;
	font-weight: 900;
	letter-spacing: -.1em;
	line-height: 1;
	min-width: 170px;
	height: 216px;
	padding: 20px;
}

.numbers__item__counter__visible {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.numbers__item__counter__invisible {
	visibility: hidden;
}

.numbers__item__title {
	font-size: 26px;
	line-height: 1.27;
	max-width: 230px;
	margin: .33em auto 0;
}


.section--text_strip {
	position: relative;
	background-color: #e8c7b0;
	text-align: center;
	font-size: 25px;
	font-weight: 800;
	padding: 22px 0;
}

.section--text_strip:before {
	position: absolute;
	display: block;
	content: '';
	background-image: linear-gradient(to top, rgba(250, 243, 238, 1) 0%, rgba(250, 243, 238, 0) 100%);
	left: 0;
	right: 0;
	bottom: 100%;
	height: 750px;
	z-index: -1;
}


.section--home_article {
	background-position: bottom center;
	padding: 85px 0 70px;
}

.section--home_article__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section--home_article__image {
	align-self: flex-start;
	width: 37%;
}

.section--home_article__image img {
	border-radius: 50%;
}

.section--home_article__main {
	width: 58%;
}

.section--home_article__title {
	font-weight: 700;
}

.section--home_article__content {
	line-height: 1.83;
}

.section--home_article__link {
	font-size: 20px;
	margin-top: .75em;
}

.section--home_article__link a {
	font-weight: 800;
}


.section--slider_contact {
	position: relative;
	min-height: 900px;
	padding-bottom: 200px;
}

.fullwidth_slider {
	box-shadow: -8px -10px 33px 2px rgba(0, 0, 0, 0.14);
}

.fullwidth_slide__inner {
	width: 100%;
}

.fullwidth_slide__inner img {
	display: block;
	width: 100%;
}

.section__wrapper--contact {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.section--slider_contact__inner {
	position: relative;
}

.section--slider_contact__contact {
	position: absolute;
	text-align: center;
	border-radius: 30px;
	box-shadow: -2px -2px 33px 2px rgba(0, 0, 0, 0.14);
	background: #fff;
	top: 120px;
	right: 0;
	padding: 0 65px 50px;
	z-index: 11;
}

.contactbox__image {
	border-radius: 50%;
	overflow: hidden;
	width: 192px;
	margin: 0 auto -55px;
	transform: translateY(-45%);
}

.contactbox__image:before {
	display: block;
	content: '';
	padding-top: 100%;
}

.contactbox__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 3px;
}

.contactbox__form {
	width: 100%;
	max-width: 330px;
	padding: 30px;
}

.contactbox__footer {
	border-top: 1px solid rgba(55, 55, 55, 0.2);
	padding-top: 20px;
}

.contactbox__footer__text {
	font-size: 20px;
	font-weight: 700;
}

.contactbox__footer__phone {
	font-size: 33px;
	font-weight: 700;
	font-family: "Heebo", "Open Sans Hebrew", sans-serif;
}


.section--testimonials {
	padding: 0 0 80px;
}

.testimonials__slide {
	padding: 25px 0;
}

.testimonials__slide__inner {
	position: relative;
	border: 1px solid #373737;
	font-size: 20px;
	line-height: 1.65;
	width: 100%;
	max-width: 666px;
	padding: 45px 100px;
	margin: 0 auto;
}

.testimonials__slide__quote {
	position: absolute;
	display: block;
	top: -23px;
	right: 50px;
	width: 58px;
	height: 58px;
}

.testimonials__slide__content {
	max-width: 390px;
}

.testimonials__slide__author {
	font-weight: 700;
}

.testimonials__slider__container .slick-dots {
	position: static;
	font-size: 0;
}

.testimonials__slider__container .slick-dots li {
	cursor: default;
	border-radius: 50%;
	width: auto;
	height: auto;
	margin: 15px 60px;
}

.testimonials__slider__container .slick-dots li button {
	background: none !important;
	border-radius: 50%;
	overflow: hidden;
	width: 128px;
}

.testimonials__slider__container .slick-dots li:not(.slick-active) button img {
	filter: grayscale(100%) contrast(110%);
}

.testimonials__slider__container .slick-dots li button img {
	border-radius: 50%;
	transition: .2s;
}

.section--testimonials__link {
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	margin-top: 60px;
}


.section--topbanner.imaged {
	position: relative;
}

.section--topbanner.imaged .section__wrapper {
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.section--topbanner img {
	width: 100%;
}

.topbanner__inner {
	width: 100%;
	max-width: 1060px;
	margin: 0 auto;
}

.topbanner__title {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.1;
}


.entry-content {
	line-height: 1.5;
}

.entry-content h1 {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: .25em;
}


.entry-content h2 {
	color: #ff6d01;
	font-size: 22px;
	font-weight: 800;
	margin: 2.15em 0 .9em;
}

.entry-content h3 {
	color: #ff6d01;
	font-size: 18px;
	font-weight: 800;
	margin: 2.15em 0 .9em;
}

.entry-content h4 {
	font-size: 1em;
	font-weight: 800;
	margin: 1.15em 0 0;
}

.entry-content h1 + h2,
.entry-content h1 + h3,
.entry-content h1 + h4,
.entry-content h2 + h3,
.entry-content h2 + h4,
.entry-content h3 + h4 {
	margin-top: 0;
}

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

.entry-content hr {
	margin: 1.5em 0;
}

.entry-content p {
	margin-bottom: .5em;
}

.entry-content ul,
.entry-content ol {
	list-style-position: outside;
	margin-right: 0;
	margin-bottom: .5em;
}

.entry-content ul,
.entry-content ul[style="list-style-type: square;"],
.entry-content ul[style="list-style-type: circle;"],
.entry-content ul[style="list-style-type: disc;"] {
	list-style-type: none !important;
	margin-right: 0 !important;
}

.entry-content ul li,
.entry-content ul[style="list-style-type: square;"] li,
.entry-content ul[style="list-style-type: disc;"] li,
.entry-content ul[style="list-style-type: circle;"] li {
	padding-right: 12px;
	margin-bottom: .33em;
}

.entry-content ul li:before,
.entry-content ul[style="list-style-type: square;"] li:before,
.entry-content ul[style="list-style-type: disc;"] li:before,
.entry-content ul[style="list-style-type: circle;"] li:before {
	position: relative;
	display: inline-block;
	content: "";
	background-color: #ff6d01;
	border-radius: 0;
	top: -.2em;
	right: -12px;
	width: 5px;
	height: 5px;
	margin-left: -5px;
}

.entry-content ul li:before,
.entry-content ul[style="list-style-type: disc;"] li:before,
.entry-content ul[style="list-style-type: circle;"] li:before {
	border-radius: 50%;
}

.entry-content ol {
	list-style-type: decimal;
}

.entry-content ul ul,
.entry-content ol ul {
	list-style-type: circle;
	list-style-position: inside;
}

.entry-content ol ol,
.entry-content ul ol {
	list-style-type: lower-latin;
	list-style-position: inside;
}


.contactbox {
	text-align: center;
	border-radius: 30px;
	box-shadow: -2px -2px 33px 2px rgba(0, 0, 0, 0.14);
	background: #fff;
	max-width: 360px;
	padding: 0 15px 50px;
	margin: 0 auto;
}

.contactbox--imaged {
	margin-top: 87px;
}


.section--treatment {
	padding-top: 50px;
}


.section--blog {
	padding-bottom: 120px;
}

.blog__item {
	padding: 90px 0;
}

.blog__item:nth-child(even) {
	background-color: #f8f8f8;
}

.blog__item__inner {
	display: flex;
	justify-content: space-between;
	max-width: 1220px;
}

.blog__item__img {
	width: 31%;
	min-height: 200px;
}

.blog__item__img:before {
	padding-top: 0;
	
}

.blog__item__main {
	width: 100%;
}

.blog__item__img + .blog__item__main {
	width: calc(69% - 40px);
}

.blog__item__header {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 7px;
}

.blog__item__title {
	font-size: 30px;
	font-weight: 700;
}

.blog__item__info {
	display: flex;
	flex-wrap: wrap;
}

.blog__item__info__divider {
	margin: 0 .33em;
}

.blog__item__exceprt {
	line-height: 1.6;
	padding: 1em 0;
}

.blog__item__readmore {
	font-weight: 700;
	white-space: nowrap;
}


.section--post__header {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 7px;
	margin-bottom: 1em;
}

.section--post__img {
	margin-bottom: 10px;
}

.section--post__title {
	font-size: 35px;
	font-weight: 800;
}

.section--post__nav {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #dfdfdf;
	padding: 30px 0;
	margin-top: 40px;
}

.section--post__nav__block {
	display: flex;
	flex-direction: column;
	max-width: calc(50% - 5px);
}

.section--post__next {
	align-items: flex-end;
	text-align: left;
}

.section--post__nav__link {
	color: #ff6d01;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.1;
}

.section--post__relative {
	margin-top: 85px;
}


.lined_title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	margin-bottom: 55px;
}

.lined_title:before,
.lined_title:after {
	display: block;
	content: '';
	background-color: #dfdfdf;
	width: 1px;
	min-width: 30px;
	height: 1px;
	flex-grow: 1;
}

.lined_title__text {
	display: block;
	margin: 0 .33em;
}


.relative_posts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.relative_posts__item {
	width: 48%;
	margin-bottom: 70px;
}

.relative_posts__item_img {
	margin-bottom: 10px;
}

.relative_posts__item_img:before {
	padding-top: 55%;
}

.relative_posts__item__title {
	font-size: 25px;
	font-weight: 800;
}

.aesthetics {
	border-top: 1px solid #c5c5c5;
	padding-top: 40px;
	margin-top: 1em;
}

.aesthetics__row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 45px;
}

.aesthetics__row:before,
.aesthetics__row:after {
	content: '';
	display: block;
	width: 5%;
}

.aesthetics__item {
	text-align: center;
	width: 42%;
	margin: 0 3%;
}

.aesthetics__item__img img {
	margin: 0 auto;
}

.aesthetics__item__text {
	font-weight: 800;
	margin-top: 20px;
}


.faq {
	margin-bottom: 40px;
}

.faq__block {
	position: relative;
	border-top: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
	margin-bottom: -1px;
	transition: .2s;
	z-index: 1;
}

.faq__block.active .faq__question {
	padding-bottom: 15px;
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	line-height: 23px;
	cursor: pointer;
	padding: 35px 0;
	transition: .2s;
}

.faq__question__text {
	font-weight: 800;
	padding-left: 10px;
}

.faq__expander {
	display: block;
	color: #373737;
	font-size: 27px;
	font-weight: 300;
	transition: .2s;
}

.faq__block.active .faq__expander {
	transform: rotate(-45deg);
}

.faq__answer {
	display: none;
}

.faq__answer__text {
	padding-bottom: 1.33em;
}

.faq__answer__text img.alignleft {
	margin-left: 60px;
	margin-right: 60px;
}


.section--profile__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: 1px solid #c5c5c5;
	padding-bottom: 23px;
	margin-bottom: 30px;
}

.section--profile__img {
	width: 37.5%;
}

.section--profile__img + .section--profile__info {
	width: calc(63% - 20px);
}

.section--profile__name {
	margin-bottom: 0;
}

.section--profile__job {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: -.2em;
}


.testimonials {
	margin-bottom: 110px;
}

.testimonials__item {
	padding: 90px 0;
}

.testimonials__item:nth-child(even) {
	background-color: #f8f8f8;
}

.testimonials__item__inner {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
}

.testimonials__item__img {
	align-self: flex-start;
	border-radius: 50%;
	width: 20%;
}

.testimonials__item__img img {
	border-radius: 50%;
}

.testimonials__item__main {
	width: 100%;
	line-height: 1.9;
}

.testimonials__item__img + .testimonials__item__main {
	width: calc(80% - 80px);
}

.testimonials__item__content {
	font-size: 20px;
	line-height: 1.9;
	margin-top: -.6em;
}

.testimonials__item__content > :last-child {
	margin-bottom: 0;
}


.section--lectures__inner {
	overflow: hidden;
}

.lectures {
	display: flex;
	flex-wrap: wrap;
	margin: -30px -3% 0;
}

.lectures__item {
	position: relative;
	width: 27.33%;
	padding: 60px 0 100px;
	margin: 0 3%;
}

.lectures__item:after {
	position: absolute;
	display: block;
	content: '';
	background: #dfdfdf;
	right: 0;
	bottom: 0;
	width: 1400px;
	height: 1px;
}

.lectures__item__header {
	margin-bottom: 15px;
}

.lectures__item__title {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: .15em;
}

.lectures__item__info {
	font-weight: 700;
	margin-bottom: 22px;
}

.lectures__item__info > * {
	margin-bottom: 5px;
}

.lectures__item__info__title {
	display: inline-block;
	font-weight: 400;
	min-width: 55px;
}

.lectures__item__img {
	margin-bottom: -40px;
}

.lectures__item__img img {
	width: 100%;
}


.section--lectures_slider {
	padding: 0;
}

.section--lectures_slider__title {
	text-align: center;
	font-weight: 700;
}

.lectures__slider__container {
	position: relative;
	margin: 55px 0 120px;
}

.lectures__slider {
	position: static;
	max-width: 1050px;
	margin: 0 auto;
}

.lectures__slide__inner {
	width: 100%;
	padding: 0 24px;
}

.lectures__slide img {
	margin: 0 auto;
}


.proffesionals__block {
	border-top: 1px solid #c5c5c5;
	padding-top: 25px;
	margin-top: 50px;
}

.proffesionals__title {
	font-size: 18px;
	font-weight: 800;
}

.proffesionals {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -18px 60px;
}

.proffesionals__item {
	width: calc(33.33% - 36px);
	margin: 95px 18px 0;
}

.proffesionals__item__content {
	border-top: 1px solid #373737;
	padding-top: 10px;
	margin-top: 15px;
}

.proffesionals__item__title {
	font-weight: 700;
}


.about_main_title {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 1.5em;
}

.about {
	background-color: #f8f8f8;
	max-width: 1670px;
	padding-top: 100px;
	margin: 0 auto 85px;
}

.about__section {
	padding-bottom: 1px;
}

.about__section__title {
	background-color: #e1dfdf;
	text-align: center;
	color: #737171;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: .07em;
	line-height: 1.27;
	padding: 13px 0;
	margin: 0 0 70px;
}

.about .photobox {
	max-width: 100%;
}

.about .proffesionals {
	margin-bottom: 40px;
}

.about .proffesionals__item {
	margin-bottom: 30px;
}

.about .proffesionals__item__content {
	padding-top: 15px;
	margin-top: 25px;
}

.about .proffesionals__item__title {
	display: inline-block;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: .3em;
}

.about .proffesionals__item__info {
	font-weight: 700;
}

.proffesionals__item__divider {
	margin: 0 .5em;
}

.proffesionals__item__excerpt {
	font-size: 16px;
	margin-top: 2em;
}

.proffesionals__item__excerpt .entry-content h4 {
	color: #ff6d01;
	font-weight: 700;
	margin-top: .5em;
}

.proffesionals__item__readmore {
	font-size: 16px;
	font-weight: 800;
	margin-top: .33em;
}

.proffesionals__item.horizontal {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: calc(66.66% - 36px);
}

.proffesionals__item.horizontal > * {
	width: calc(50% - 18px);
}

.proffesionals__item.horizontal .proffesionals__item__content {
	margin-top: 0;
}


.section--contact {
	padding-bottom: 170px;
}

.section--contact__inner {
	background-color: #f8f8f8;
	max-width: 1670px;
	padding: 115px 0 300px;
	margin: 0 auto;
}

.section--contact__row {
	display: flex;
	justify-content: space-between;
}

.section--contact__formbox,
.section--contact__addressbox {
	border-radius: 30px;
	box-shadow: 0 3px 33px 2px rgba(0, 0, 0, .14);
	padding: 50px 45px;
}

.section--contact__formbox {
	background: #fff;
	width: calc(100% - 526px);
	padding-right: 155px;
}

.section--contact__formbox__title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 1em;
}

.section--contact__formbox__form {
	position: relative;
	width: 100%;
	max-width: 467px;
}

.section--contact__formbox__image {
	position: absolute;
	border-radius: 50%;
	width: 216px;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 30px;
}

.section--contact__formbox__image img {
	border-radius: 50%;
}

.section--contact__addressbox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background-color: #fff4eb;
	width: 100%;
	max-width: 490px;
}

.section--contact__addressbox > * {
	max-width: 100%;
}

.section--contact__addressbox__title {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.6;
}

.section--contact__addressbox__content {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 1em;
}

.section--contact__addressbox__info {
	border-top: 1px solid #d7cec7;
}

.section--contact__addressbox__info__title {
	font-size: 22px;
	margin-top: .35em;
}

.section--contact__addressbox__info__content {
	font-size: 25px;
	font-weight: 800;
}

.section--contact__addressbox__info__content > :last-child {
	margin-bottom: 0;
}

.section--contact__map {
	height: 440px;
	margin-top: -220px;
}


.search__result {
	padding: 20px 0;
}

.search__result__title {
	font-size: 24px;
	margin-bottom: .25em;
}

.search__result__excerpt {
	margin-bottom: .5em;
}

.pagination {
	margin-top: 20px;
}

.pagination .current {
	font-weight: 700;
}

.pagination a:hover {
	color: #ff6d01;
	text-decoration: none;
}

/*================================================*/
/*                    MEDIA		                  */
/*================================================*/
@media screen and (max-width: 1500px) {
	.header nav {
		margin-left: 40px;
	}
	
	.section--greeting__main {
		width: calc(56% - 15px);
	}
	
	.section--greeting__img {
		width: 44%;
	}
	
	.section--greeting__img__circle {
		width: 36%;
	}
	
	
	.section--contact__formbox__image {
		width: 160px;
		margin-left: 15px;
	}
}

@media screen and (max-width: 1320px) {
	.footer__inner {
		margin: 0 -30px;
	}
	
	.footer__col {
		padding: 0 30px;
	}
	
	.section--greeting__inner {
		flex-wrap: wrap;
		padding: 0;
	}
	
	.section--greeting__main {
		width: 100%;
		max-width: 100%;
	}
	
	.section--greeting__list {
		max-width: 600px;
	}
	
	.section--greeting__img {
		width: calc(100% - 400px);
		margin: 0 0 0 auto;
	}
	
	.section--greeting__img__circle {
		width: calc(100% - 350px);
		max-width: 600px;
		left: auto;
		right: 0;
	}
	
	.section--top_contact__inner {
		margin-right: 0;
	}
	
	.section--contact__row {
		display: block;
	}
	
	.section--contact__formbox {
		width: 100%;
		max-width: 600px;
		margin: 0 auto 60px;
	}
	
	.section--contact__addressbox {
		max-width: 600px;
		margin: 0 auto;
	}
	
}

@media screen and (min-width: 992px) {
	.header nav > ul > li > ul {
		display: block !important;
	}
	
	.section--with-sidebar__inner {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		width: 100%;
	}
	
	.section--with-sidebar__content {
		width: calc(100% - 440px);
		align-self: flex-start;
	}
	
	.aside {
		position: relative;
		width: 360px;
		min-width: 360px;
		margin-bottom: 0;
	}
	
	.aside__wrapper {
		width: 360px;
		min-width: 360px;
	}
	
	.section--post__inner {
		max-width: 800px;
	}
}

@media screen and (max-width: 991px) {
	.header__top__inner {
		padding: 0;
	}
	
	.header:not(.fixed) .header__bot {
		top: auto !important;
	}
	
	.header__bot {
		position: relative;
		padding: 5px 0;
	}
	
	.header__bot__inner {
		position: relative;
	}
	
	.header__logo {
		position: relative;
		align-self: auto;
		width: auto;
		min-width: 0;
		margin-right: 15px;
		order: 3;
		z-index: 3;
	}
	
	.header__logo .custom-logo-link img {
		position: static;
		height: 50px;
	}
	
	.header nav {
		position: absolute;
		display: block;
		background-color: #fff;
		border-radius: 0;
		top: 0;
		right: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		padding: 60px 30px 15px;
		margin: 0 !important;
		will-change: transform, opacity;
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
		-webkit-transition: 0.4s ease;
		-o-transition: 0.4s ease;
		transition: 0.4s ease;
	}
	
	.header nav.nm-show {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	
	.header nav > ul {
		position: relative;
		display: block;
		max-height: calc(100vh - 80px);
		overflow: auto;
	}
	
	.header nav > ul li {
		display: block;
		padding: .25em 0;
		margin: 0 !important;
	}
	
	.header nav > ul > li ul {
		position: static;
		display: none;
		top: auto;
		right: auto;
		left: auto;
		padding: 0;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		-webkit-box-shadow: none;
		box-shadow: none;
		background: none !important;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
		-webkit-transition: none !important;
		-o-transition: none !important;
		transition: none !important;
		will-change: height;
	}
	
	.header nav > ul > li ul:before,
	.header nav > ul > li > ul:after {
		content: none;
	}
	
	.header nav > ul > li > ul {
		margin-top: 10px;
	}
	
	.header nav ul ul ul,
	.header nav > ul > li > ul > li {
		border: none;
	}
	
	.header nav > ul > li > a {
		padding: 0;
	}
	
	.header li.menu-item-has-children > a:after {
		position: relative;
		display: inline-block;
		content: '';
		border-style: solid;
		border-width: 7px 7px 0 7px;
		border-color: #737171 transparent transparent transparent;
		margin-right: .25em;
		top: -2px;
		transition: .2s;
	}
	
	.header nav a {
		display: block;
		color: #333;
	}
	
	.header .nm-menu-expand {
		display: block;
	}
	
	
	.footer__inner {
		display: block;
		margin: 0;
	}
	
	.footer__col {
		width: 100%;
		padding: 0;
	}
	
	.footer__col:first-child {
		border-left: none;
	}
	
	.footer__col:last-child {
		border-right: none;
	}
	
	
	.aside {
		padding-top: 60px;
	}
	
	
	.icons {
		margin: 0 -3%;
	}
	
	.icons__item {
		margin: 0 3%;
	}
	
	.numbers__item {
		width: 50%;
	}
	
	.numbers__item:not(:nth-child(2n+1)):after {
		content: none;
	}
	
	.testimonials__slider__container .slick-dots li {
		margin: 15px;
	}
	
	
	.lectures {
		justify-content: space-between;
		margin: -30px 0 0;
	}
	
	.lectures__item {
		width: 48%;
		margin: 0;
	}
	
}

@media screen and (min-width: 768px) {
	.mobile-only {
		display: none !important;
	}
	
	.contactbox__form span.wpcf7-form-control-wrap {
		display: block;
	}
	
	.contactbox__form span.wpcf7-not-valid-tip {
		position: absolute;
		display: block;
		text-align: right;
		font-size: 14px;
		line-height: 1.1;
		right: 0;
		left: 0;
		top: 100%;
		margin-top: -1px;
	}
	
	.contactbox__form div.wpcf7-response-output {
		font-size: 14px;
		padding: .2em;
		margin: 15px 0 -15px;
	}
	
}

@media screen and (max-width: 767px) {
	.desktop-only,
	.mobile-hide {
		display: none !important;
	}
	
	html {
		font-size: 16px;
	}
	
	.h2 {
		font-size: 24px;
	}
	
	.section {
		padding: 50px 0;
	}
	
	.section__wrapper {
		padding: 0 15px;
	}
	
	.input,
	.btn {
		height: 44px;
	}
	
	.btn {
		font-size: 18px;
	}
	
	.form__input__wrap {
		margin-bottom: 12px;
	}
	
	.header__top {
		font-size: 18px;
		line-height: 1.1;
		padding: 12px 0;
	}
	
	.header__logo .custom-logo-link img {
		/*height: 50px;*/
	}
	
	.header nav {
		font-size: 18px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	
	.footer {
		font-size: 18px;
		padding: 50px 0 20px;
	}
	
	.footer__title {
		font-size: 24px;
	}
	
	.footer__widget--middle > div > ul {
		column-count: 1;
	}
	
	
	.aside {
		padding-top: 40px;
	}
	
	.section--greeting {
		padding-top: 50px;
	}
	
	.section--greeting__title {
		font-size: 46px;
	}
	
	.section--greeting__text {
		font-size: 20px;
	}
	
	.section--greeting__list {
		font-size: 18px;
		column-count: 1;
	}
	
	
	.section--greeting__img {
		width: 32%;
	}
	
	.section--greeting__img__circle {
		width: 35%;
		bottom: 0;
	}
	
	.section--greeting__info {
		font-size: 15px;
		padding: 15px;
		bottom: 50px;
		width: 70%;
	}
	
	.section--top_contact {
		margin-top: -30px;
	}
	
	
	.section--top_contact__inner {
		display: block;
		border-radius: 15px;
		box-shadow: -1px -1px 15px 1px rgba(0, 0, 0, 0.14);
		padding: 20px 0 30px;
		max-width: 360px;
		margin: 0 auto;
	}
	
	.section--top_contact__text {
		text-align: center;
		padding: 0 15px 20px;
	}
	
	.section--top_contact__phone {
		font-size: 22px;
	}
	
	.section--top_contact__text + .section--top_contact__form {
		border-right: none;
	}
	
	.section--top_contact__form {
		padding: 0 15px;
	}
	
	.section--top_contact__form .form__input__wrap {
		margin-bottom: 8px;
	}
	
	.section--top_contact__form form {
		width: 100%;
		max-width: 275px;
		margin: 0 auto;
	}
	
	.section--top_contact__form .input {
		height: 38px;
	}
	
	
	.icons {
		justify-content: space-between;
		margin: 0;
	}
	
	.icons__item {
		width: 46%;
		max-width: none;
		padding: 30px 0;
		margin: 0;
	}
	
	.icons__item__img {
		width: 80px;
		height: 80px;
		margin: 0 auto 10px;
	}
	
	.icons__item__title {
		font-size: 16px;
	}
	
	
	.section--numbers {
		padding-top: 25px;
	}
	
	.numbers {
		margin: 0 -15px;
	}
	
	.numbers__item__counter {
		font-size: 48px;
		min-width: 100px;
		height: 100px;
		padding: 10px;
	}
	
	.numbers__item__title {
		font-size: 18px;
	}
	
	
	.section--text_strip {
		font-size: 23px;
	}
	
	
	.section--home_article__inner {
		display: block;
	}
	
	.section--home_article__image {
		width: 60%;
		margin: 0 0 20px;
	}
	
	.section--home_article__main {
		width: 100%;
		padding-bottom: 20px;
	}
	
	
	.section--slider_contact {
		position: static;
		min-height: 0;
		padding-bottom: 50px;
	}
	
	.fullwidth_slider {
		box-shadow: -4px -5px 15px 1px rgba(0, 0, 0, 0.14);
	}
	
	
	.section__wrapper--contact {
		position: static;
	}
	
	.section--slider_contact__inner {
		position: static;
	}
	
	.section--slider_contact__contact {
		position: static;
		border-radius: 15px;
		box-shadow: -1px -1px 15px 1px rgba(0, 0, 0, 0.14);
		padding: 0 15px 20px;
		max-width: 360px;
		margin: 60px auto 0;
	}
	
	
	.contactbox {
		border-radius: 15px;
		box-shadow: -1px -1px 15px 1px rgba(0, 0, 0, 0.14);
		padding: 0 15px 20px;
		width: 100%;
		max-width: 360px;
		margin: 0 auto 0;
	}
	
	.contactbox--imaged {
		margin-top: 42px;
	}
	
	
	.contactbox__image {
		width: 90px;
		margin: 0 auto -20px;
	}
	
	.contactbox__form {
		padding: 25px 0;
		max-width: 270px;
		margin: 0 auto;
	}
	
	.contactbox__footer {
		padding-top: 15px;
	}
	
	.contactbox__footer__text {
		font-size: 18px;
	}
	
	.contactbox__footer__phone {
		font-size: 28px;
	}
	
	.testimonials__slider {
		margin: 0 -15px;
	}
	
	.testimonials__slide {
		padding: 15px 30px;
	}
	
	.testimonials__slider .slick-next {
		left: 5px;
	}
	
	.testimonials__slider .slick-prev {
		right: 5px;
	}
	
	.testimonials__slide__inner {
		font-size: 16px;
		max-width: 100%;
		padding: 15px;
	}
	
	.testimonials__slide__quote {
		top: -15px;
		right: 15px;
		width: 32px;
		height: 32px;
	}
	
	.testimonials__slide__content {
		max-width: 100%;
	}
	
	.testimonials__slider__container .slick-dots li {
		margin: 5px;
	}
	
	.testimonials__slider__container .slick-dots li button {
		width: 60px;
	}
	
	.section--testimonials__link {
		font-size: 20px;
		margin-top: 40px;
	}
	
	
	.topbanner__title {
		font-size: 32px;
	}
	
	.entry-content h1,
	.entry-content h2 {
		font-size: 24px;
	}
	
	.section--breadcrumbs + .section {
		padding-top: 20px;
	}
	
	
	.section--blog {
		padding-bottom: 60px;
	}
	
	.section--breadcrumbs + .section--blog .blog__item:first-child {
		padding-top: 30px;
	}
	
	.blog__item {
		padding: 50px 0;
	}
	
	.blog__item__inner {
		display: block;
	}
	
	.blog__item__img {
		width: 100%;
		max-width: 390px;
		min-height: 0;
		margin-bottom: 15px;
	}
	
	.blog__item__img:before {
		padding-top: 55%;
	}
	
	.blog__item__img + .blog__item__main {
		width: 100%;
	}
	
	.blog__item__title {
		font-size: 24px;
	}
	
	.blog__item__exceprt {
		padding-bottom: 0;
	}
	
	
	.section--post__title {
		font-size: 30px;
	}
	
	.section--post__nav__link {
		font-size: 20px;
	}
	
	.relative_posts__item__title {
		font-size: 22px;
	}
	
	.aesthetics__row {
		margin-bottom: 30px;
	}
	
	.aesthetics__row:before,
	.aesthetics__row:after {
		content: none;
	}
	
	.aesthetics__item {
		width: 48%;
		margin: 0;
	}
	
	.aesthetics__item__text {
		margin-top: 10px;
	}
	
	
	.faq {
		margin-bottom: 20px;
	}
	
	.faq__question {
		padding: 15px 0;
	}
	
	.faq__answer__text img.alignleft {
		margin-left: 10px;
		margin-right: 1em;
	}
	
	
	.section--profile__header {
		display: block;
	}
	
	.section--profile__img {
		width: 60%;
		max-width: 300px;
	}
	
	.section--profile__img + .section--profile__info {
		width: 100%;
		margin-top: 10px;
	}
	
	.section--profile__job {
		font-size: 19px;
	}
	
	
	.testimonials {
		margin-bottom: 60px;
	}
	
	.section--breadcrumbs + .testimonials .testimonials__item:first-child {
		padding-top: 30px;
	}
	
	.testimonials__item {
		padding: 50px 0;
	}
	
	.testimonials__item__inner {
		display: block;
	}
	
	.testimonials__item__img {
		width: 35%;
		max-width: 200px;
		margin: 0 auto;
	}
	
	.testimonials__item__img + .testimonials__item__main {
		width: 100%;
	}
	
	.testimonials__item__content {
		font-size: 18px;
		line-height: 1.6;
		margin-top: 15px;
	}
	
	.lectures {
		display: block;
	}
	
	.lectures__item {
		width: 100%;
		padding: 50px 0;
	}
	
	.lectures__item__title {
		font-size: 20px;
	}
	
	.lectures__item__info {
		margin-bottom: 0;
	}
	
	.lectures__item__img {
		margin-top: 20px;
		margin-bottom: 0;
	}
	
	.lectures__slider__container {
		margin: 30px 0 50px;
	}
	
	.lectures__slider {
		margin: 0 -15px;
	}
	
	.lectures__slider .slick-next {
		left: -10px;
	}
	
	.lectures__slider .slick-prev {
		right: -10px;
	}
	
	.lectures__slide__inner {
		padding: 0 30px;
	}
	
	
	.proffesionals__item.horizontal {
		width: 100%;
	}
	
	.about {
		padding-top: 0;
		margin-bottom: 50px;
	}
	
	.about__section__title {
		margin-bottom: 0;
	}
	
	.proffesionals__item.horizontal > .proffesionals__item__img {
		width: calc(33.33% - 18px);
	}
	
	.proffesionals__item.horizontal > .proffesionals__item__content {
		width: calc(66.66% - 18px);
	}
	
	
	.section--contact {
		padding-top: 0 !important;
		padding-bottom: 50px;
	}
	
	.section--contact__inner {
		padding: 80px 0 130px;
	}
	
	.section--contact__formbox,
	.section--contact__addressbox {
		border-radius: 15px;
		box-shadow: 0 1px 15px 1px rgba(0, 0, 0, .14);
		padding: 20px 15px;
	}
	
	.section--contact__formbox {
		position: relative;
		text-align: center;
		padding-top: 75px;
		margin-bottom: 40px;
	}
	
	.section--contact__formbox__form {
		position: static;
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	.section--contact__formbox__image {
		width: 120px;
		left: 50%;
		top: 0;
		transform: translate(-50%, -50%);
		margin-left: 0;
	}
	
	.section--contact__addressbox__title {
		font-size: 20px;
	}
	
	.section--contact__addressbox__content {
		font-size: 18px;
	}
	
	.section--contact__addressbox__info__title {
		font-size: 20px;
	}
	
	.section--contact__addressbox__info__content {
		font-size: 22px;
	}
	
	.section--contact__map {
		height: 60vw;
		max-height: 60vh;
		margin-top: -80px;
	}
}

@media screen and (max-width: 640px) {
	.proffesionals {
		justify-content: space-between;
		margin: 0 0 30px;
	}
	
	.proffesionals__item {
		width: calc(50% - 5px);
		margin: 18vw 0 0;
	}
}

@media screen and (max-width: 600px) {
	#wpadminbar {
		top: -46px;
	}
}

@media screen and (max-width: 480px) {
	.section--post__relative {
		margin-top: 50px;
	}
	
	.lined_title {
		margin-bottom: 35px;
	}
	
	.relative_posts {
		display: block;
	}
	
	.relative_posts__item {
		width: 100%;
		margin-bottom: 40px;
	}
	
	.about .proffesionals__item {
		width: 100%;
		margin-top: 30vw;
		margin-bottom: 0;
	}
	
	.proffesionals__item.horizontal {
		display: block;
	}
	
	.proffesionals__item.horizontal > .proffesionals__item__img,
	.proffesionals__item.horizontal > .proffesionals__item__content {
		width: 100%;
	}
	
	.proffesionals__item.horizontal .proffesionals__item__content {
		margin-top: 25px;
	}
}

@media screen and (max-width: 360px) {
	.header__search__form {
		width: calc(100vw - 125px);
	}
	
	.header__search__form .input {
		width: calc(100vw - 117px);
	}
}

.elementor-text-editor a {
	color:blue !important;
}


/* Publications
-------------------------------------------------- */
.section.section--publications-heading,
.section.section--publications {
	padding: 25px 0;
}

.section--publications__title {
	font-size: 32px;
	color: #000;
}

.section--publications__inner {
	overflow: hidden;
}

.publications {
	display: flex;
	flex-wrap: wrap;
	direction: rtl;
	margin: -30px -3% 0;
}

.publications__item {
	display: block;
	width: 27.33%;
	padding: 60px 0;
	margin: 0 3%;
	color: inherit;
	text-decoration: none;
}

.publications__item__logo {
	margin-bottom: 20px;
}

.publications__item__logo img {
	width: 100%;
	height: auto;
}

.publications__item__header {
	margin-bottom: 15px;
}

.publications__item__title {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: .15em;
}

.publications__item__desc {
	font-weight: 400;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.publications__item {
		width: 44%;
	}
}

@media screen and (max-width: 480px) {
	.publications__item {
		width: 94%;
	}
}