html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	overflow-x: hidden;
	position: relative;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration-line: none;
	color: var(--typography-black);
}
section {
	position: relative;
}
button {
	border: none;
	border-radius: 30px;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	cursor: pointer;
	height: 58px;
}
p {
	opacity: 0.9;
}

/*colors*/
:root {
	--peach: rgba(228, 142, 93, 1);
	--bg-base: rgba(248, 244, 240, 1);
	--bg-other: rgba(225, 189, 150, 1);
	--typography-brown: rgba(77, 67, 58, 1);
	--typography-white: rgba(255, 255, 255, 1);
	--typography-black: rgba(46, 46, 46, 1);
	--gradient-btn: linear-gradient(140deg, #E38D5C 0%, #EAAA78 100%);
}
/*header*/
header {
	position: fixed;
	z-index: 15;
	width: 100%;
}
.header_body {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 6px 20px;
	max-width: 1280px;
	background: #FEFEFE;
	border-radius: 0px 0px 40px 40px;
	margin: 0 auto;
}
.header_mobile {
	display: none;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
	background: #FEFEFE;
}
.header_mobile_first {
	display: flex;
	gap: 30px;
	align-items: center;
}
.menu_btn div {
	width: 35px;
	height: 3px;
	background-color: black;
	margin: 8px 0;
}
.header_first {
	display: flex;
	align-items: center;
	gap: 30px;
}
.header_mobile img,
.header_first img {
	width: 140px;
}
#menu-header-menu {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin: 0;
	padding: 0;
	position: relative;
}
#menu-header-menu > li:first-child {
	cursor: default;
}
#menu-header-menu li:hover .sub-menu {
	display: block;
}
.header_sec_mail {
	display: flex;
	gap: 4px;
	align-items: center;
	color: var(--typography-black, #2E2E2E);
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration-line: underline;
}
.sub-menu {
	padding: 0;
	display: none;
	position: absolute;
	left: -10px;
	background-color: #FEFEFE;
	border-radius: 0 0 5px 5px;
}
.sub-menu li {
	padding: 5px 10px;
}
.header_first ul li {
	list-style: none;
}
.header_first ul li a {
	color: var(--typography-black);
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
}
.header_first ul li:hover > a {
	color: var(--peach);
}
.header_btn {
	background-color: var(--peach);
	color: var(--typography-white);
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	padding: 10px 20px;
	gap: 10px;
	border: none;
	border-radius: 20px;
	height: 42px;
/*	max-width: 177px;*/
}
.header_btn:hover {
	background-color: var(--typography-black);
	color: var(--typography-white);
}
.header_second {
	display: flex;
	align-items: center;
	gap: 15px;
}
/*animation ми працюємо*/
.animation_work {
	display: flex;
	align-items: center;
	gap: 8px;
}
.animation_work div {
	width: 9px;
	height: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.animation_work div span {
	display: block;
	width: 6px;
	height: 6px;
	background-color: #A2C587;
	border-radius: 50%;
	animation: pulse 1s ease infinite;
	animation-direction: alternate-reverse;
}
@keyframes pulse {
  from {transform: scale(1);}
  to {transform: scale(2);}
}
/*end animation*/
.header_third {
	display: none;
	/*align-items: center;
	gap: 30px;*/
}
.lang_btn {
	padding: 10px;
	border: 1px solid #2E2E2E;
	border-radius: 100%;
	font-weight: 500;
	font-size: 16px;
	line-height: 22px;
	color: var(--typography-black);
}
.lang_btn:hover {
	background-color: var(--peach);
	color: var(--typography-white);
	border: 1px solid var(--peach);
}
/*.header_third div {
	display: flex;
	align-items: center;
	gap: 8px;
}*/
.header_third img,
.header_third div img {
	width: 40px;
}
.header_third div img:hover {
/*	filter: brightness(1.05);*/
	opacity: 0.85;
}
#phone_icon,
.header_third div a {
	height: 40px;
}

/*mobile menu*/
.mobile_menu {
	position: fixed;
	color: var(--typography-black);
	/*top: -100%;
	left: -100%;*/
	width: 100vw;
	height: 100vh;
	z-index: 20;
	background: var(--bg-base);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.7s ease;
}
.mobile_menu.shown {
/*	display: block;*/
	opacity: 1;
	/*top: 0;
	left: 0;*/
}
.mobile_menu ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}
.mobile_menu ul li {
	line-height: 47px;
	font-weight: 500;
	font-size: 20px;	
	list-style: none;
}
.mobile_menu ul li a {
	color: var(--typography-black);
}
.menu_tel_btn {
	border: 1px solid var(--typography-black);
	color: var(--typography-black) !important;
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 700;
	background: transparent;
	width: 230px;
}
.mobile_menu .lang_btn {
	display: none;
	margin-top: 30px;
}
.close {
	border: 1px solid var(--typography-black);
	border-radius: 50%;
	padding: 5px;
	position: absolute;
	right: 60px;
	top: 40px;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.close div {
	background: url(../images/icons/close.svg);
	background-size: cover;
	width: 80%;
	height: 80%;
}
/*end menu*/
.container {
	width: 1280px;
	margin: 0 auto;
	position: relative;
}
.first_section {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url(../images/bg/calc-bg.jpeg);
	height: 735px;
	width: 100%;
	background-size: cover;
	background-position: center top;
	padding: 146px 0 0;
	z-index: 12;
	position: relative;
	box-sizing: border-box;
}
.head_section_container {
/*	width: 922px;*/
}
.head_section_container h1 {
/*	max-width: 829px;*/
	font-weight: 600;
	font-size: 70px;
	line-height: 130%;
	color: var(--typography-white);
	text-align: left;
	margin: 0 0 40px 0;
}
.head_section_container h2 {
	margin: 0 0 40px;
	max-width: 918px;
	color: var(--typography-white, #FFF);
	font-size: 55px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.head_section_container h2 span,
.head_section_container h1 span {
	color: var(--peach);
}
/*.head_section_container .first {
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--typography-white);
	width: 644px;
}*/
.head_section_container .small-p {
	max-width: 754px;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	color: var(--typography-white);
	margin: 0 0 30px;
}
.head_section_container .small-p.main_about_us {
	max-width: 586px;
}
.head_section_container .first .second {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 30px;
}
.head_section_container .first .second img {
	width: 22px;
}
.head_section_container .big-p {
	margin: 0;
	max-width: 712px;
	color: var(--typography-white);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
}
.head_section_container .btn_field.main_about_us_btn button,
.head_section_container .btn_field button {
	padding: 18px 48px;
	color: var(--typography-white);
	font-size: 18px;
/*	font-family: Inter;*/
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.head_section_container .btn_field {
	display: flex;
	gap: 30px;
}
.head_section_container .btn_field a:last-of-type button {
	background: transparent;
	border-radius: 30px;
	border: 1px solid #FFF;
}
.head_section_container .btn_field.main_about_us_btn button:hover,
.head_section_container .btn_field a:first-of-type button:hover {
	color: var(--typography-black);
	background: var(--bg-base);
}
.head_section_container .btn_field.main_about_us_btn button,
.head_section_container .btn_field a:first-of-type button {
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
}
.head_section_container .btn_field.main_about_us_btn button {
	border: none;
	max-width: 326px;
	width: 100%;
	padding: 0;
}
.sec_bg_base {
	background: var(--bg-base);
	position: relative;
}
.terms_card_field {
	display: flex;
	gap: 15px;
	position: relative;
}
.terms_card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
	gap: 15px;
	width: 238px;
	background: #FEFEFE;
	border-radius: 20px;
	z-index: 10;
}
.terms_card h3 {
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	color: var(--typography-black);
	margin: 0;
}
.terms_card p {
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--typography-black);
	margin: 0;
}
.terms_card p span {
	color: var(--peach);
}
#line1 {
	position: absolute;
	transform: rotate(354deg);
	right: -17px;
	top: 237px;
	z-index: 1;
}
#line2 {
	position: absolute;
	z-index: 1;
	width: 815px;
	right: 224px;
	bottom: -83px;
}
.for_who {
	display: flex;
	gap: 30px;
	position: relative;
}
.for_who.for_who-de {
	align-items: flex-end;
	gap: 59px;
}
#for_who_img {
	max-height: 824px;
	z-index: 10;
}
.for_who img {
	border-radius: 30px;
}
.for_who svg {
	position: absolute;
	z-index: 9;
	top: -192px;
	right: 70px;
}
.for_who_info {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 50px;
	width: 100%;
}
.for_who_info.for_who_info_second {
	gap: 20px;
}
.for_who_info.for_who_info_second h2 {
	margin-bottom: 10px;
}
.for_who_title {
	width: 100%;
}
.for_who_title h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 55px;
	color: var(--typography-black);
	margin: -5px 0px;
	width: fit-content;
	z-index: 5;
	position: relative;
}
/*.for_who_title h2:nth-of-type(2) {
	margin: -5px 0 0 auto;
}*/
.for_who_title h2 span {
	color: var(--peach);
}
.for_who_title h2:nth-of-type(3) {
/*	display: none;*/
}
.for_who_card {
	padding: 30px 51px 30px 30px;
	background: #F8F4F0;
	border-radius: 20px;
	z-index: 5;
	position: relative;
}
#first_for_who_card {
	background: var(--typography-white);
}
.for_who_card.for_who_card-de {
	padding: 30px;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	z-index: 5;
}
.for_who_card p {
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--typography-black);
}
.for_who_card.for_who_card-de p {
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
}
.for_who_card p span {
	font-weight: 700;
	color: var(--peach);
}
.for_who_info button {
	width: 100%;
	padding: 18px 26px;
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	color: var(--typography-white);
}
.for_who_info button:hover {
	background: var(--typography-black);
}
.sec_end_color {
	padding-bottom: 100px;
}
.sec_other_bg {
	background: var(--bg-other);
}
.work_terms_container {
	position: relative;
}
.work_terms_title h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 55px;
	color: var(--typography-white);
	margin: 0 auto;
	max-width: 1061px;
	text-align: center;
}
.work_terms_title p {
	max-width: 650px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	color: #FFFFFF;
	margin: 25px auto 60px;
}
.work_terms_field {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.work_terms_field.work_terms_field-de .work_terms_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 406px;
	padding: 30px 0;
	gap: 30px;
	background: #FFFFFF;
	border-radius: 20px;
	overflow: hidden;
	z-index: 5;
}
.work_terms_field.work_terms_field-de {
	margin-top: 60px;
}
.work_terms_field.work_terms_field-de .work_terms_card p {
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: var(--typography-black);
	padding: 0;
	max-width: 397px;
}
.work_terms_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 297px;
	padding: 0 0 35px;
	background: #FFFFFF;
	border-radius: 20px;
	overflow: hidden;
	z-index: 5;
}
.work_terms_card h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	color: var(--typography-black);
	padding: 0 30px;
	margin: 31px 0 15px;
	text-align: left;
}
.work_terms_card p {
	padding: 0 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	color: var(--typography-black);
	margin: 0;
}
#line3 {
	position: absolute;
	left: -148px;
	top: 3px;
}
#line4 {
	position: absolute;
	right: -80px;
	bottom: -43px;
}
.duties {
	position: relative;
}
.duties > svg {
	position: absolute;
	top: -50px;
	right: -80px;
}
.duties h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	text-align: center;
	margin: 0 auto 50px;
}
.duties h2 span {
	color: var(--peach);
	font-size: 36px;
}
.duties.duties-de h2 {
	max-width: 1039px;
}
/*.duties.duties-de h2 span {
	font-size: 40px;
}*/
.duties.duties-de .job_duties {
	align-items: stretch;
}
.duties.duties-de .job_duties_info {
	background: #FFF;
	padding: 80px 35px 88px 30px;
}
.duties.duties-de .job_duties_info p {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin: 0;
}
.duties.duties-de .job_duties_info p span {
	color: var(--peach);
}
.job_duties {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}
.job_duties_info {
	z-index: 5;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px;
/*	gap: 40px;*/
	width: 456px;
	height: auto;
	background: var(--bg-base);
	border-radius: 20px;
}
.job_duties_info p {
	margin: 0 0 30px;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}
.job_duties_info h4 {
	margin: 0 45px 20px;
	color: var(--typography-black);
	font-size: 20px;
}
.job_duties_card_field {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.job_duties_card {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.job_duties_card p {
	margin: 0;
}
.job_duties_info button {
	margin-top: 32px;
	padding: 18px 40px;
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	color: #FFFFFF;
}
.job_duties_info button:hover {
	background: var(--typography-black);
}
.terms_card_field_second {
	margin-top: 60px;
}
/*.duties_img {
	background: url(../images/pics/pic-de-2.png);
	background-size: cover;
	height: auto;
	width: 734px;
	border-radius: 30px;
}*/
#line5 {
	position: absolute;
	top: -143px;
	left: -338px;
}
.steps_title {
	width: 592px;
	margin: 0 auto;
	position: relative;
}
.steps_title h2 {
	width: fit-content;
	font-weight: 600;
	font-size: 40px;
	line-height: 55px;
	color: var(--typography-white);
	margin: 0;
}
.steps_title h2 span {
	color: rgba(77, 67, 58, 1);
}
.steps_title h2:nth-of-type(2) {
	margin-left: 208px;
}
.steps_mobile_h2 {
	display: none;
}
.steps_field {
	display: flex;
	gap: 30px;
	margin-top: 50px;
}
.steps_card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 347px;
	padding: 30px;
	gap: 15px;
	background: #FEFEFE;
	border-radius: 20px;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 0;
}
.steps_card div {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: var(--typography-black);
	padding: 12px 30px;
	border: 1px solid var(--peach);
	border-radius: 30px;
	margin-bottom: 35px;
}
.steps_card p,
.steps_card h4 {
	margin: 0;
}
.steps_card h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 27px;
	color: var(--typography-black);
}
.steps_card p {
	font-size: 16px;
	font-weight: 500;
	color: var(--typography-black);
}
#line6 {
	position: absolute;
	top: -180px;
	right: -108px;
}
#line7 {
	position: absolute;
	right: -409px;
	top: -37px;
}
.p_with_a a {
	color: var(--peach);
	font-weight: 700;
}
.map_img {
	margin-left: 116px;
	z-index: 5;
}
#LineDe {
	position: absolute;
	width: 391px;
	top: -77px;
	left: 8px;
}
.intrested {
	position: relative;
	display: flex;
	justify-content: center;
}
.intrested_field {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 60px;
	gap: 20px;
	isolation: isolate;
	width: 556px;
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	border-radius: 20px;
	bottom: -87px;
	overflow: hidden;
}
.intrested_field h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	color: var(--typography-white);
	margin: 0;
}
.intrested_field p {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: var(--typography-white);
	margin: 0;
	text-align: center;
}
.intrested_field button {
	margin-top: 30px;
	background: var(--typography-white);
	color: var(--typography-black);
	padding: 18px 40px;
}
.intrested_field button:hover {
	background: var(--typography-black);
	color: var(--typography-white);
}
#line8 {
	position: absolute;
	right: 24px;
	bottom: 0;
}
.intrested_sec {
	margin-bottom: 237px;
}
.feedback {
	position: relative;
}
.feedback h2 {
	text-align: center;
	margin: 0;
	font-weight: 600;
	font-size: 40px;
	line-height: 55px;
	color: var(--typography-black);
}
.feedback h2 span {
	color: var(--peach);
}
.feedback_field {
	display: flex;
	gap: 30px;
	margin-top: 50px;
}
.feedback_card {
	position: relative;
	padding: 30px 30px 30px 80px;
	background: #F8F4F0;
	border-radius: 20px;
	height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}
.feedback_card p {
	margin: 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}
.feedback_text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.feedback_autor {
	display: flex;
	align-items: center;
	gap: 15px;
}
.feedback_autor p {
	font-weight: 700;
}
.feedback_autor img {
	width: 40px;
}
.quotes {
	position: absolute;
	top: 30px;
	left: 30px;
}
#lineheart1 {
	position: absolute;
	top: -67px;
	left: -67px;
	transform: scaleX(-1);
}
#line9 {
	position: absolute;
	top: -26px;
	left: -17px;
	width: 480px;
	transform: rotate(0deg);
}
.sec_white {
	background: #FEFEFE;
}
.our_mission {
	position: relative;
}
.our_mission_headline {
	display: flex;
	position: relative;
	z-index: 5;
}
.our_mission_headline h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	color: var(--typography-black);
	margin: 0;
}
.our_mission_headline h2 span {
	color: var(--peach);
}
.our_mission_headline p {
	color: var(--typography-black);
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	width: 367px;
	margin: 0 40px 0 auto;
}
.our_mission_img {
	height: 550px;
	width: 100%;
	background: url(../images/pics/Pic4.png);
	border-radius: 20px;
	background-position: top;
	background-size: cover;
	margin-top: 50px;
	z-index: 5;
	position: relative;
}
.our_mission_field {
	display: flex;
	gap: 30px;
/*	margin-top: 150px;*/
	justify-content: space-between;
}
.our_mission_img2 {
	border-radius: 20px;
	width: 625px;
	height: 690px;
	background: url(../images/pics/Pic5.jpg);
	background-position: top;
	background-size: cover;
	z-index: 5;
	position: relative;
}
.our_mission_img2.img_in_info {
	display: none;
}
.our_mission_info {
	width: 625px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.our_mission_info h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	color: var(--typography-black);
	margin: 0;
}
.our_mission_info h2 span {
	color: var(--peach);
}
.our_mission_info_container {
	padding: 30px 60px;
	background: #F8F4F0;
	border-radius: 20px;
	z-index: 5;
}
.our_mission_info div p {
	color: var(--typography-black);
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	width: 505px;
	margin: 0 0 20px;
}
.our_mission_info div button {
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	padding: 18px 40px;
	color: var(--typography-white);
	margin-top: 30px;
}
#lineheart2 {
	position: absolute;
	top: -66px;
	left: 0px;
	z-index: 1;
}
#line9_2 {
	position: absolute;
	left: 28px;
	top: 542px;
	z-index: 1;
}
#line10 {
	position: absolute;
	z-index: 1;
	top: -169px;
	left: 125px;
	width: 500px;
}
.faq h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	color: var(--typography-black);
	margin: 0;
	text-align: center;
}
.faq h2 span {
	color: var(--peach);
}
.faq_field {
	margin-top: 50px;
	display: flex;
	gap: 30px;
}
.faq_img {
	background: url(../images/pics/Pic6_new.png);
	background-position: 0 -3px;
	background-size: cover;
	border-radius: 20px;
	width: 625px;
	height: 648px;
	z-index: 5;
	position: relative;
}
.faq_info {
	width: 625px;
}

.ask_question {
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	border: none;
	border-radius: 30px;
	width: 270px;
	padding: 18px 26px;
	margin-top: 50px;
	font-size: 18px;
	font-weight: 500;
	color: var(--typography-white);
}
.ask_question:hover {
	background: var(--typography-black);
}
.contacts_field {
	position: relative;
	display: flex;
	align-items: center;
}
.contact_first {
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	border-radius: 20px;
	padding: 90px 0;
	width: 840px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	position: relative;
}
.contact_first h2 {
	max-width: 652px;
	font-weight: 600;
	font-size: 40px;
	color: var(--typography-white);
	margin: 0 0 20px;
	text-align: center;
}
.contact_first p {
	margin: 0 auto;
	max-width: 555px;
	color: var(--typography-white);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}
.contact_first button {
	background: var(--typography-white);
	color: var(--typography-black);
	font-size: 18px;
	padding: 18px 40px;
}
.contact_first button:hover {
	color: var(--typography-white);
	background: var(--typography-black);
}
#line11 {
	position: absolute;
	top: 105px;
	left: -2px;
}
.contact_second {
	position: absolute;
	width: 520px;
	height: 326px;
	right: 0;
	background: #FEFEFE;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	align-items: center;
}
.contact_second h4 {
	margin: 0;
	color: var(--typography-black);
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.contact_second button {
	color: var(--typography-white);
	background: var(--peach);
	font-weight: 600;
	font-size: 18px;
}
.contact_second button:hover {
	background: var(--typography-black);
}
.contact_second div {
	display: flex;
	gap: 10px;
}
.contact_second div img {
	width: 40px;
}
.mailto_link {
	line-height: 33px;
	font-weight: 700;
	font-size: 22px;
	color: var(--typography-black);
	text-underline-offset: 3px;
	display: flex;
  align-items: center;
  gap: 10px;
}
.mailto_link:hover {
	text-decoration-line: underline;
}
#line12 {
	width: 604px;
	position: absolute;
	right: -123px;
	top: -204px;
}
.last_sec {
	padding-bottom: 200px;
}
.footer_main {
	background: var(--bg-base);
}
.footer_container {
	display: flex;
	justify-content: space-between;
	padding: 0 0 50px;
}
.footer_container a {
	color: var(--typography-black);
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	margin: 0;
	text-underline-offset: 3px;
}
.footer_container a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--typography-black);
}
/*404*/
.section_404 {
	background: var(--bg-base);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px 0;
}
.nobor {
	border: none !important;
}
.pad {
	padding: 0 15px;
}
.content_404 {
	max-width: 1005px;
	width: 100%;
	max-height: 690px;
	padding: 12px 0 80px;
	background: #FFFFFF;
	border-radius: 27px;
  margin: 80px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.title_404 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.title_404 span {
	font-style: normal;
	font-weight: 700;
	font-size: 300px;
	line-height: 410px;
	color: var(--peach);
}
.title_404 img {
	width: 243px;
}
.content_404 p {
	margin: 0;
	color: var(--typography-black);
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	max-width: 557px;
}
.content_404 button {
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	font-weight: 700;
	padding: 18px 30px;
	color: var(--typography-white);
	width: 221px;
	margin: 50px 0 0;
}
.content_404 button:hover {
	background: var(--typography-black);
}
/*контактна форма*/
.contact_form_overlay {
	background-color: rgba(77, 67, 58, 0.48);
	z-index: 20;
	top: 0;
	left: 0;
	min-width: 100vw;
	min-height: 100vh;
	position: fixed;
/*	display: flex;*/
	align-items: center;
	justify-content: center;
	opacity: 0;
	display: none;
	transition: opacity 0.7s ease;
}
.contact_form_overlay.shown {
	opacity: 1;
}
.contact_form {
	padding: 40px 20px;
	background-color: rgb(255, 255, 255);
	border-radius: 20px;
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	position: relative;
	opacity: 0;
	transition: opacity 0.7s ease;
}
.contact_form_overlay.shown .contact_form {
	opacity: 1;
}
.contact_form .close {
	right: 10px;
	top: 10px;
	cursor: pointer;
}
.contact_form .close:hover {
	border-color: var(--peach);
}
.contact_form .close:hover div {
	background: url(../images/icons/close_h.svg);
	background-size: cover;
}
.contact_form h3 {
	line-height: 50px;
	font-weight: 600;
	font-size: 36px;
	color: var(--typography-black);
	width: 776px;
	text-align: center;
	margin: 0;
}
.contact_form p {
	font-weight: 500;
	font-size: 18px;
	color: var(--typography-black);
	margin: 0;
	width: 528px;
	text-align: center;
}
.accept {
	color: rgba(149, 149, 149, 1) !important;
}
.accept a {
	color: var(--typography-black);
}
.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 530px;
}
.wpcf7-form input {
	width: calc(100% - 40px);
}
.qmn_quiz_container input[type="text"],
input[type="text" i],
input[type="email" i],
input[type="tel" i] {
	font-family: Manrope;
	font-style: normal;
	font-weight: 400;
	color: var(--typography-black);
	font-size: 18px;
	letter-spacing: 0px;
	margin-bottom: 0px;
	background-color: rgb(247, 247, 247);
	border-radius: 30px;
	border: 1px solid var(--typography-black);
	padding: 0 20px;
	height: 44px;
}
.qmn_quiz_container input[type="text"] {
	font-family: Manrope !important;
	font-style: normal !important;
	font-weight: 400 !important;
	color: var(--typography-black) !important;
	font-size: 16px !important;
	letter-spacing: 0px !important;
	background-color: rgb(247, 247, 247) !important;
	border-radius: 30px !important;
	border: 1px solid var(--typography-black) !important;
	padding: 0 20px !important;
	height: 44px !important;
}
input[type="submit" i] {
	background-color: rgb(228, 142, 93);
	border-radius: 30px;
	font-weight: 400;
	color: var(--typography-white);
	font-size: 18px;
	border: none;
	padding: 10px 20px;
	width: 100%;
}
.wpcf7 form .wpcf7-response-output {
	margin: -20px 0 0!important;
/*	width: 320px;*/
}
/*privacy policy*/
.privacy_policy_page_title {
	font-weight: 600;
	font-size: 70px;
	line-height: 95px;
	margin-top: 0
}
.privacy_policy {
	color: var(--typography-black);
}
.privacy_policy p {
	line-height: 30px;
	font-weight: 500;
	font-size: 18px;
}
.privacy_policy h2 {
	font-size: 26px;
	margin-top: 40px;
}
.privacy_policy a {
	color: var(--typography-black);
	text-underline-offset: 3px;
}
.privacy_policy a:hover {
	text-decoration-line: underline;
	text-decoration-color: var(--typography-black);
}
.link_go_back {
	display: flex;
	align-items: center;
	margin-top: 20px;
	gap: 8px;
}
.link_go_back div {
	background: url(../images/icons/back.png);
	background-size: contain;
	width: 18px;
	height: 18px;
}
.link_go_back:hover div {
	background: url(../images/icons/back_h.png);
	background-size: contain;
}
.link_go_back p {
	font-size: 18px;
/*	line-height: 50px;*/
	color: var(--typography-black);
}
.go_up {
	position: absolute;
	right: 20px;
	bottom: 150px;
	background-color: var(--typography-white);
	width: 47px;
	height: 95px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}
.go_up:hover {
	background-color: var(--peach);
}
#go_up_h,
#go_up_d {
	width: 20px;
}
#go_up_h {
	display: none;
}
.go_up:hover #go_up_d {
	display: none;
}
.go_up:hover #go_up_h {
	display: block;
}
/*зафіксована кнопка пульсуюча*/
.floating_pulse {
	position: fixed;
	bottom: 50px;
	right: 50px;
	width: 120px;
	height: 120px;
	z-index: 15;
}
.floating_img img {
	cursor: pointer;
	width: 120px;
	height: 120px;
	animation: pulse_img 1s ease infinite;
	animation-direction: alternate-reverse;
}
@keyframes pulse_img {
	from {transform: scale(1);}
	to {transform: scale(0.8);}
}
.floating_pulse span {
	position: absolute;
	top: 0;
	right: 5px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	background-color: #ff5757;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse_img 1s ease infinite;
	animation-direction: alternate-reverse;
}
/*@keyframes pulse_span {
	from {transform: scale(1);}
	to {transform: scale(0.8);}
}*/
.floating_pulse span p {
	text-align: center;
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	color: var(--typography-white);
}
.floating_field {
	position: absolute;
	bottom: 0;
	right: -20px;
	background: var(--typography-white);
	border-radius: 20px;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 205px;
	gap: 15px;
	padding-top: 20px;
}
.floating_field.shown {
	display: flex;
}
#floating_close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	background: url(../images/icons/close_icon.png);
	background-size: cover;
	width: 14px;
	height: 14px;
}
#floating_field_menager {
	max-width: 100px;
	position: absolute;
	top: -60px;
}
.floating_field p {
/*	line-height: 20px;*/
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	color: var(--typography-black);
}
.floating_field div {
	display: flex;
	align-items: center;
	gap: 10px;
}
.floating_field div img {
	width: 40px;
}
.float_tel_btn {
	background-color: var(--peach);
	color: var(--typography-white);
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	padding: 10px 20px;
	gap: 10px;
	border: none;
	border-radius: 20px;
	height: 42px;
}
.float_tel_btn:hover {
	background-color: var(--typography-black);
	color: var(--typography-white);
}
.work_terms_card_img {
	width: 100%;
}
.peach_section {
	padding: 144px 0 0;
	background: #F4EDE6;
}
.blog_second_sec {
	background: #F4EDE6;
	padding: 78px 0 83px;
}
.page_title {
	color: var(--typography-black, #2E2E2E);
	text-align: center;
	font-size: 40px;
	font-family: Manrope;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	margin: 0 auto 50px;
	min-height: 56px;
}
.blog_cont {
	display: flex;
	flex-wrap: wrap;
	gap: 62px;
}
.blog_card {
	display: flex;
	flex-direction: column;
	max-width: 384px;
	width: 100%;
}
.blog_card img {
	max-width: 388px;
	width: 100%;
	height: 192px;
	flex-shrink: 0;
	object-fit: cover;
	border-radius: 20px;
}
.blog_card h4 {
	color: var(--typography-black);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	margin: 30px 0 20px;
}
.blog_card p {
	color: var(--typography-black);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	margin: 0;
}
.blog_overlay {
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100vw;
	min-height: 100vh;
	z-index: 9999;
	display: none;
	overflow-y: scroll;
	background: rgba(0, 0, 0, .8);
}
.blog_overlay.blog_shown {
	display: block
}
/*body.blog_shown,*/
html.blog_shown,
body.blog_shown {
  overflow-y: hidden;
}
.blog_post {
	cursor: default;
	position: relative;
	max-width: 1153px;
	width: 100%;
	margin: 50px auto;
	border-radius: 20px;
	background: var(--background-base, #F8F4F0);
	box-sizing: border-box;
	padding: 28px 64px 80px;
}
.blog_close {
	display: flex;
	gap: 10px;
	margin-bottom: 27px;
	cursor: pointer;
	width: fit-content;
}
.blog_close svg {
	width: 26px;
}
.blog_close span {
	color: var(--peach);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
}
.post-thumbnail img {
	border-radius: 20px;
  width: 100%;
  height: auto;
}
.test_section {
	padding-top: 60px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), url(../images/bg/calc-bg.jpeg);
  height: 745px;
	background-size: cover;
	background-position: center top;
}
.duties_icon {
	position: relative;
	top: 4px;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	border: 1px solid #E48E5D;
	flex-shrink: 0;
}
.sec_pd_bt_120 {
	padding-bottom: 120px;
}
.sec_pd_bt_100 {
	padding-bottom: 100px;
}
.sec_pd_top_80 {
	padding-top: 80px;
}
.sec_pd_top_20 {
	padding-top: 20px;
}
.sec_pd_top_60 {
	padding-top: 60px;
}
.sec_pd_bt_80 {
	padding-bottom: 80px;
}
.sec_pd_top_144 {
	padding-top: 144px;
}
.sec_pd_top_50 {
	padding-top: 50px;
}
.sec_pd_bt_50 {
	padding-bottom: 50px;
}
.section_title {
	color: var(--typography-black, #2E2E2E);
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0;
}
.section_title span {
	color: var(--peach);
}
.reviews {
	padding-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.rev_thumb {
	border-radius: 100000px;
	width: 36px;
	height: 36px;
}
#revsvg1 {
	position: absolute;
	top: -137px;
	left: -29px;
}
#revsvg2 {
	position: absolute;
	top: -233px;
	right: -113px;
}
.leave_review {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 623px;
/*	height: 428px;*/
	flex-shrink: 0;
	box-sizing: border-box;
	padding: 50px;
	border-radius: 20px;
	background: var(--background-base, #F8F4F0);
}
.leave_review h4 {
	color: var(--typography-black, #2E2E2E);
	text-align: center;
	font-family: Manrope;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	margin: 0 0 4px;
}
.leave_review input {
	background: #FFF;
	font-family: Manrope;
}
.leave_review textarea {
	height: 118px;
	flex-shrink: 0;
	border-radius: 30px;
	border: 1px solid #2E2E2E;
	background: #FFF;
	padding: 15px 24px;
	color: var(--typography-black, #2E2E2E);
	font-family: Manrope;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	max-width: calc(100% - 50px);
}
.leave_review button {
	background: var(--gradient-btn);
	color: var(--typography-white);
}
/*slider-reviews*/
.reviews_field {
	position: relative;
	width: 519px;
	padding: 0 30px;
}
.reviews_field .swiper-slide {
	max-width: 519px;
	border-radius: 20px;
	background: var(--background-base, #F8F4F0);
	padding: 30px;
	margin: 0;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
.reviews_field .swiper-slide svg {
	flex-shrink: 0;
}
.reviews_field .swiper-slide > div {
	display: flex;
	flex-direction: column;
	gap: 29px;
}
.reviews_field .swiper-slide div > div {
	display: flex;
	align-items: center;
	gap: 10px;
}
.reviews_field .swiper-slide p {
	margin: 0;
}
.reviews_field .slider_btns_field {
	max-width: 579px;
	width: 100%;
}
.reviews_field .swiper-button-prev, 
.reviews_field .swiper-rtl .swiper-button-next {
	left: 0;
}
.reviews_field .swiper-button-next, 
.reviews_field .swiper-rtl .swiper-button-prev {
	right: 0;
}
.reviews_field .swiper-button-next:after, 
.reviews_field .swiper-button-prev:after {
	font-size: 22px;
	font-weight: bolder;
}
.reviews_field .swiper-button-next, 
.reviews_field .swiper-button-prev {
	color: #E48E5D;
	width: fit-content;
}
.contacth2 span {
	color: #4D433A;
	text-decoration-line: underline;
	text-decoration-thickness: from-font;
}
.block_with_hearth {
	max-width: 1153px;
	padding: 60px 0;
	border-radius: 20px;
	background: linear-gradient(140deg, #E38D5C 0%, #EAAA78 100%);
	display: flex;
	flex-direction: column;
  align-items: center;
	gap: 30px;
	position: relative;
	z-index: 5;
	margin: 0 auto;
}
.block_with_hearth svg {
	position: absolute;
	bottom: 0;
	right: 50%;
  transform: translateX(190%);
}
.block_with_hearth h4 {
	color: var(--typography-white, #FFF);
	text-align: center;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	margin: 0;
}
.block_with_hearth p {
	color: var(--typography-white, #FFF);
	text-align: center;
	font-family: Manrope;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 22.4px */
	margin: 0;
}
.block_with_hearth button {
	padding: 18px 40px;
	border-radius: 30px;
	background: #FFF;
	color: var(--typography-black, #2E2E2E);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 22.4px */
}
.mail_icon_first {
	display: none;
}
.header_facebook_link_mob {
    display: none;
}
@media screen and (max-width: 1280px) {
	.head_section_container h2 {
		max-width: 768px;
    font-size: 50px;
	}
	.for_who_card.for_who_card-de p {
		font-size: 18px;
	}
	.for_who_card.for_who_card-de {
		padding: 16px;
		gap: 20px;
	}
	.duties.duties-de .job_duties {
		align-items: flex-start;
	}
	.work_terms_field {
		justify-content: center;
	}
	.duties.duties-de .job_duties img {
		width: 580px;
	}
	#line3 {
		left: -270px;
	}
	#pic-de-2 {
		width: 530px;
	}
	.header_first {
		gap: 10px;
	}
	.header_first ul {
		gap: 10px;
	}
	.header_third {
		gap: 10px;
	}
	.header_second {
		gap: 10px;
	}
	.container {
		width: 1000px;
	}
	.for_who svg {
    position: absolute;
    z-index: 9;
    top: -212px;
    right: 70px;
	}
	.terms_card {
		padding: 20px;
	}
	.terms_card h3 {
		font-size: 18px;
	}
	.for_who {
		align-items: flex-start;
	}
	#for_who_img {
		width: 485px;
	}
	/*.for_who_title {
		margin-top: 11px;
	}*/
	.for_who_info.for_who_info_second h2 {
    margin-bottom: 0px;
	}
	.for_who.for_who-de {
    gap: 35px;
    align-items: center;
	}
	#line6 {
		top: -168px;
		right: -245px;
	}
	.for_who_card p {
		width: fit-content;
/*		font-size: 18px;*/
	}
	.for_who_card {
		padding: 10px;
		gap: 20px;
	}
	.work_terms_field.work_terms_field-de .work_terms_card,
	.work_terms_card {
		width: 313px;
	}
	.map_img {
		margin-left: 0;
	}
	.job_duties_info p {
		font-size: 16px;
		margin: 0 0 15px;
	}
	.reviews_field .swiper-slide {
		max-width: 480px;
	}
	.reviews_field {
    position: relative;
    width: 480px;
    padding: 0 20px;
	}
	.slider_btns_field {
    max-width: 520px;
    width: 100%;
	}
	.leave_review {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 460px;
    /* height: 428px; */
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--background-base, #F8F4F0);
	}
	#line11 {
    position: absolute;
    top: 105px;
    left: -45px;
	}
	.duties.duties-de .job_duties_info {
    padding: 30px 30px;
	}
	.steps_card {
		width: 253px;
	}
	#intrested_img {
		width: 1000px;
	}
	.feedback_card p {
		font-size: 16px;
	}
	.feedback_card {
		height: 450px;
		padding: 30px 20px 30px 72px;
		flex: 1;
	}
	#LineDe {
		top: 27px;
		left: -61px;
	}
	#line9 {
		top: 26px;
		left: 14px;
	}
	#line9_2 {
		left: -79px;
	}
	.our_mission_field {
		align-items: center;
	}
	#line10 {
		top: -81px;
		left: 21px;
		width: 420px;
	}
	.our_mission_info {
		width: 530px;
		gap: 30px;
	}
	.our_mission_info h2 {
		font-size: 38px;
	}
	.our_mission_info div p {
		font-size: 16px;
		width: auto;
		margin: 0;
	}
	.faq_img {
		background-position: center;
		width: 485px;
	}
	.contact_first {
		width: 760px;
	}
	.contact_second {
		width: 310px;
	}
	#lineheart1 {
		left: -141px;
	}
	.header_btn {
		padding: 10px 10px;
	}
	#menu-header-menu {
    gap: 15px;
	}
	.blog_post {
		padding: 20px 40px 60px;
	}
}
@media screen and (max-width: 1230px) {
	.header_sec_mail {
		display: none;
	}
	.mail_icon_first {
		display: block;
	}
	.mail_icon_first img {
		width: 42px;
	}
}
@media screen and (max-width: 1180px) {
	/*.header_body {
		padding: 20px 20px;
	}*/
	.header_first {
		gap: 20px;
	}
	.header_first ul {
		gap: 10px;
	}
	.contact_second .header_btn {
		display: block;
	}
    .header_facebook_link,
	.header_btn {
		display: none;
	}
	.header_facebook_link_mob,
	.header_third {
		display: flex;
		align-items: flex-start;
	}
	.mail_icon_first {
		display: none;
	}
}
@media screen and (max-width: 1100px) {
	.header_mobile {
		display: flex;
	}
	.header_body {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
	.section_title {
		font-size: 35px;
	}
	.duties.duties-de .job_duties img {
		width: 100%;
		margin: 0 auto;
		z-index: 5;
	}
	.for_who_title h2 {
		text-align: center;
		width: 100%;
	}
	.duties.duties-de .job_duties_info {
		padding: 30px 40px;
		width: auto;
	}
	.our_mission_field {
		margin-top: 0px;
	}
	.our_mission_info_container {
		width: fit-content;
		margin: 0 auto;
	}
	#line9_2 {
		left: 802px;
	}
	.for_who_title {
		margin-bottom: 20px;
	}
	.for_who_info button {
		margin-top: 20px;
	}
	.contact_form h3 {
		width: 580px;
		font-size: 32px;
		line-height: inherit;
	}
	.contact_form p {
		font-size: 16px;
	}
	.accept {
		margin-top: -20px !important;
	}
	/*.container {
		width: 620px;
	}*/
	.first_section {
    padding: 120px 0 40px;
    height: fit-content;
	}
	.head_section_container .btn_field {
    display: flex;
    gap: 20px;
    flex-direction: column;
	}
	#revsvg2 {
    top: -233px;
    right: -250px;
	}
	.for_who svg {
    top: 207px;
    right: -519px;
	}
	.reviews {
    gap: 30px;
    flex-direction: column;
	}
	#line11 {
    position: absolute;
    top: 105px;
    left: -2px;
	}
/*	.first_section .container*/
	.container {
		width: auto;
		padding: 0 20px;
	}
	.head_section_container {
		width: 100%;
	}
	.head_section_container h1 {
		font-size: 60px;
		line-height: 90px;
		text-align: left;
	}
	.head_section_container div {
		max-width: 568px;
		margin: 0;
	}
	.head_section_container p {
		font-size: 18px;
	}
	.terms_card_field {
		flex-wrap: wrap;
	}
	.terms_card {
		padding: 28px;
	}
	.terms_card_field {
		justify-content: center;
	}
	#line1 {
		right: 48px;
		top: 558px;
	}
	#line2 {
		left: -104px;
		top: 368px;
	}
	#line6 {
		top: 274px;
		right: calc(50% - 266px);
	}
	#LineDe {
    top: 551px;
    left: 260px;
    z-index: 1;
	}
	#lineheart2 {
		display: none;
	}
	.for_who {
		flex-direction: column;
		width: 630px;
		margin: 0 auto;
	}
	#for_who_img {
		width: 578px;
		margin: 0 auto;
	}
	.work_terms_card {
		width: 295px;
		z-index: 5;
	}
	#line4 {
		right: -107px;
		bottom: -72px;
	}
	#line3 {
		left: -195px;
	}
	#line3.line3 {
		left: -246px;
	}
	.work_terms_title {
		width: 620px;
	}
	.job_duties {
		flex-direction: column-reverse;
		align-items: center;
	}
	.duties_img {
		height: 498px;
		width: 620px;
	}
	.job_duties_info {
		width: 379px;
	}
	#line5 {
		display: none;
	}
	#lineheart3 {
		display: none;
	}
	.steps_field {
		flex-wrap: wrap;
		justify-content: center;
	}
	.steps_card {
		width: 235px;
	}
	.feedback_field {
		flex-wrap: wrap;
		justify-content: center;
	}
	.feedback_card {
		height: 430px;
		flex: none;
		max-width: 210px;
		padding: 30px 30px 30px 70px;
	}
	#line9 {
		right: 204px;
		top: 522px;
		width: 399px;
	}
	#lineheart1 {
		display: none;
	}
	.work_terms_container {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.work_terms_field {
		justify-content: center;
	}
	#intrested_img {
		width: 100%;
	}
	.intrested_field {
		bottom: -207px;
	}
	.our_mission_headline p {
    max-width: 367px;
    margin: 0 0 0 auto;
	}
	.our_mission_field {
		align-items: center;
    flex-direction: column-reverse;
	}
	.our_mission_info {
		width: auto;
	}
	.our_mission_img2 {
		width: 620px;
		height: 630px;
	}
	#line10 {
		/*position: absolute;
		z-index: 1;
		bottom: -316px;
		left: 63px;
		width: 500px;*/
		display: none;
	}
	.contacts_field {
		align-items: center;
		flex-direction: column;
		gap: 30px;
	}
	.contact_first {
		width: 100%;
	}
	#line12 {
		display: none;
	}
	.contact_second {
		position: relative;
		width: 100%;
		padding: 0;
		display: flex;
		align-items: center;
	}
	.contact_second .header_btn {
		display: block;
	}
	.privacy_policy_page_title {
		line-height: 77px;
		font-weight: 600;
		font-size: 55px;
	}
	.privacy_policy h2 {
		margin-top: 30px;
	}  
}
@media screen and (max-width: 920px) {
	.blog_post h1 {
		font-size: 28px;
	}
	.blog_post h2 {
		font-size: 22px;
	}
	.work_terms_card h4 {
		margin: 20px 0 15px;
	}
}
@media screen and (max-width: 878px) {
	.head_section_container h2 {
    font-size: 40px;
	}
	#line3 {
		display: none;
	}
	#line11 {
    left: -36px;
	}
}
@media screen and (max-width: 770px) {
	.section_title {
		font-size: 30px;
	}
	.head_section_container h2 {
    font-size: 35px;
	}
	#line11 {
    left: -173px;
	}
	.for_who svg {
    top: 215px;
    right: -519px;
	}
	.intrested_field {
    width: 460px;
	}
/*	.first_section {
		padding: 120px 0 0;
		height: 700px;
	}*/
	.contact_second h4 {
		font-size: 35px;
	}
	.duties h2 {
    font-size: 35px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 40px;
	}
	.duties h2 span {
		font-size: inherit;
	}
	.blog_post h1 {
		font-size: 26px;
	}
	.blog_post h2 {
		font-size: 20px;
	}
}
@media screen and (max-width: 670px) {
	.contact_second h4 {
		font-size: 30px;
	}
	#line9_2 {
		top: 659px;
	}
	#line10 {
		bottom: 12px;
		left: -54px;
	}
	.steps_card div {
		margin-bottom: 10px;
	}
	#first_for_who_card {
		align-items: center;
	}
	.contact_form h3 {
    width: 280px;
    line-height: 20px;
    font-weight: 600;
		font-size: 20px;
	}
	.contact_form p {
		font-size: 16px;
		width: 280px;
	}
	.close {
		width: 20px;
		height: 20px;
	}
	.contact_form .close:before, .contact_form .close:after {
		height: 22px;
	}
	.title_404 span {
		font-size: 139.756px;
		line-height: 191px;
	}
	.title_404 img {
		width: 113.2px;
	}
	.content_404 button {
		width: 176px;
	}
	.content_404 p {
		font-size: 14px;
		line-height: 19px;
		max-width: 313px;
	}
	.content_404 {
		padding: 62px 0 94px;
	}
	.for_who {
		width: auto;
	}
	#for_who_img {
		width: 550px;
	}
	.work_terms_title h2:nth-of-type(1),
	.work_terms_title h2:nth-of-type(2),
	.work_terms_title h2:nth-of-type(3) {
		margin: 0;
	}
	.work_terms_title {
		align-items: center;
	}
	#line3 {
		left: -252px;
	}
	.faq_info {
		width: 600px;
	}
}
@media screen and (max-width: 620px) {
	.contact_second h4 {
		font-size: 28px;
	}
	.duties h2 {
    font-size: 38px;
    margin: 0 auto 30px;
	}
	.section_title {
		font-size: 28px;
	}
	.block_with_hearth h4 {
      font-size: 26px;
  }
  .block_with_hearth {
      padding: 50px 20px;
  }
  .block_with_hearth button {
      width: 181px;
      padding: 14px 0px;
  }
	.work_terms_card h4 {
		margin: 0;
	}
  .block_with_hearth svg {
      display: none;
  }
	.sec_pd_bt_120 {
		padding-bottom: 90px;
	}
	.sec_pd_bt_100 {
		padding-bottom: 60px;
	}
	.sec_pd_top_80 {
		padding-top: 50px;
	}
	.sec_pd_top_60 {
		padding-top: 30px;
	}
	.sec_pd_bt_80 {
		padding-bottom: 50px;
	}
	.sec_pd_top_50 {
		padding-top: 15px;
	}
	.sec_pd_bt_50 {
		padding-bottom: 15px;
	}
	.sec_pd_top_144 {
    padding-top: 90px;
	}
	.head_section_container h2 {
    font-size: 28px;
	}
	.lang_btn {
		padding: 5px;
	}
	.contact_first a {
		width: 100%;
	}
	#pic-de-2 {
    width: 100%;
	}
	.contact_first button {
    font-size: 16px;
    width: 100%;
    padding: 18px 0px;
	}
	.header_mobile img {
    width: 80px;
	}
	.header_mobile_first {
		gap: 10px;
	}
	.menu_btn div {
		width: 22px;
		height: 2px;
		margin: 6px 0;
	}
	.header_mobile_first a {
		display: none;
	}
	.header_third {
		gap: 10px;
	}
	.mobile_menu .lang_btn {
		display: block;
	}
	#phone_icon, .header_third div a {
    height: 34px;
	}
	.header_third img, .header_third div img {
		width: 34px;
	}
	.head_section_container h1 {
		font-size: 28px;
		line-height: inherit;
	}
	.head_section_container .big-p {
    font-size: 18px;
	}
	.leave_review {
    width: 320px;
    padding: 30px 20px;
	}
	.reviews_field .swiper-slide {
    max-width: 320px;
	}
	.reviews_field {
    width: 320px;
	}
	#line2 {
		top: 1114px;
	}
	.head_section_container p {
		line-height: 22px;
		font-weight: 500;
		font-size: 14px;
	}
	.head_section_container div {
		width: auto;
	}
	.first_section {
		background-position: 87% 0px;
		padding: 112px 0 52px;
/*		height: 540px;*/
	}
	.head_section_container button {
		width: 244px;
	}
	.container {
		width: 320px;
	}
	.for_who_title h2:nth-of-type(1),
	.for_who_title h2:nth-of-type(2) {
/*		display: none;*/
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
		text-align: center;
	}
	.for_who_title h2:nth-of-type(3) {
		/*display: block;
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
		text-align: center;*/
	}
	.for_who_title {
		width: auto;
	}
	.for_who_card p {
		font-size: 14px;
	}
	.for_who_card {
		padding: 20px;
		gap: 20px;
		align-items: flex-start;
	}
	.for_who_info {
		gap: 20px;
	}
	#for_who_img {
		order: 1;
		width: 320px;
	}
	.work_terms_title h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
		text-align: center;
	}
	/*.work_terms_title h2:nth-of-type(1), .work_terms_title h2:nth-of-type(2), .work_terms_title h2:nth-of-type(3) {
		display: none;
	}*/
	.work_terms_h2 {
		display: block;
	}
	.work_terms_title {
		width: auto;
	}
	#line3 {
		left: -153px;
		top: -48px;
	}
	.work_terms_card {
		width: 100%;
		gap: 20px;
	}
	#line4 {
		right: -63px;
		bottom: -45px;
		width: 315px;
	}
	.for_who svg {
		display: none;
	}
	.head_section_container .btn_field.main_about_us_btn button,
	.head_section_container .btn_field button {
    padding: 14px 0; 
    width: 290px;
    font-size: 18px;
	}
	.duties h2 span,
	.duties h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
		width: 280px;
	}
	.duties_img {
		height: 255px;
		width: 315px;
		background-position: 0% 0;
		background-size: cover;
	}
	.job_duties_info {
		width: auto;
		height: auto;
	}
	.job_duties_info p {
		font-size: 14px;
		line-height: 20px;
		font-weight: 500;
	}
	.job_duties_info h4 {
		margin: 0 0 20px;
	}
	.job_duties_info button {
		width: 260px;
	}
	.steps_title {
		width: auto;
	}
	.steps_title h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
		text-align: center;
	}
	.steps_title h2:nth-of-type(1),
	.steps_title h2:nth-of-type(2) {
		display: none;
	}
	.steps_mobile_h2 {
		display: block;
	}
	#line6 {
		left: -396px;
	}
	#line7 {
		right: -352px;
		top: -99px;
	}
	.steps_card {
		width: 280px;
	}
	#intrested_img {
		display: none;
	}
	.intrested_field {
		width: auto;
		position: relative;
		bottom: 0;
		padding: 50px 20px;
	}
	.intrested_field h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 24px;
		text-align: center;
	}
	.intrested_field p {
		text-align: center;
		line-height: 20px;
		font-weight: 500;
		font-size: 14px;
	}
	.intrested_field button {
		margin-top: 10px; 
	}
	#line8 {
		right: -20px;
		width: 92px;
		bottom: 63px;
	}
	.intrested_sec {
		margin-bottom: 100px;
	}
	.feedback_card {
		max-width: 260px;
		padding: 80px 30px 30px 31px;
		gap: 30px;
		height: auto;
	}
	.feedback h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 26px;
	}
	.feedback_card p {
		line-height: 20px;
		font-size: 14px;
	}
	.feedback_autor p {
		line-height: 16px;
		font-size: 16px;
	}
	#lineheart1 {
		display: block;
		width: 158px;
		left: -85px;
		top: -92px;
	}
	#line9 {
		right: -67px;
		top: auto;
		width: 347px;
		bottom: -117px;
	}
	#lineheart2 {
		display: none;
	}
	.our_mission_headline {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.our_mission_headline h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
	}
	.our_mission_headline p {
		text-align: center;
		line-height: 20px;
		font-weight: 500;
		font-size: 16px;
		width: auto;
	}
	.our_mission_img {
		height: 150px;
  }
  .our_mission_info h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 22px;
		text-align: center;
	}
	.our_mission_field {
		margin-top: 80px;
	}
	.our_mission_info {
		width: 320px;
	}
	.our_mission_info_container {
		padding: 20px;
	}
	.our_mission_info div p {
		line-height: 20px;
		font-weight: 500;
		font-size: 14px;
		width: auto;
	}
	.our_mission_info div button {
		width: 100%;
	}
	.our_mission_img2 {
		width: 316px;
		height: 400px;
	}
	.our_mission_img2 {
		display: none;
	}
	.our_mission_img2.img_in_info {
		display: block;
	}
	.faq h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
	}
	.faq_img {
		width: 316px;
		height: 400px;
	}
	.faq_info {
		width: auto;
	}
	.accordion {
		font-size: 14px;
	}
	.panel p {
		font-size: 14px;
	}
	.ask_question {
		width: 100%;
	}
	.contact_first {
		padding: 50px 20px;
		width: auto;
	}
	.contact_first h2 {
		text-align: center;
		line-height: 35px;
		font-weight: 600;
		font-size: 26px;
	}
	.contact_first p {
		line-height: 20px;
		font-weight: 500;
		font-size: 14px;
	}
	#line11 {
    left: -232px;
    top: 97px;
	}
	#revsvg1, 
	#revsvg2 {
		display: none;
	}
	.duties > svg {
    display: none;
	}
	.contact_second {
		height: 255px;
		gap: 20px;
	}
	.last_sec {
		padding-bottom: 80px;
	}
	.footer_container {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.privacy_policy_page_title {
		line-height: 35px;
		font-size: 28px;
	}
	.privacy_policy p {
		line-height: 20px;
		font-size: 14px;
	}
	.privacy_policy h2 {
		font-size: 14px;
	}
	.go_up {
		right: 20px;
		bottom: 30px;
	}
	.floating_pulse {
		bottom: 10px;
		right: 40px;
		width: 100px;
		height: 100px;
	}
	.floating_img img {
		width: 100px;
		height: 100px;
	}
	.wpcf7 form .wpcf7-response-output {
		width: 244px; 
	}	
	.blog_post h1 {
		font-size: 20px;
	}
	.blog_post h2 {
		font-size: 18px;
	}
	.blog_post {
		margin: 40px auto;
		padding: 20px 15px 30px;
	}
	.blog_close {
		margin-bottom: 15px;
	}
	.blog_close svg {
		width: 20px;
	}
	.blog_close span {
		font-size: 16px;
	}
}
/*@media only screen and (max-device-width : 800px) and (orientation : landscape) {
	.floating_img img {
		animation: none;
	}
	.floating_pulse span {
		animation: none;
	}
}*/