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;
}
/*акордеон*/
.faq_accordion_field div:last-of-type {
	border-bottom: 1px solid var(--peach);
}
.accordion {
	font-family: 'Manrope', sans-serif;
	background-color: transparent;
	color: var(--typography-black);
	cursor: pointer;
	padding: 15px 8px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 18px;
	font-weight: 500;
	transition: 0.4s;
	border-top: 1px solid var(--peach);
	border-radius: 0;
	height: auto;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.accordion img {
	width: 8px;
	transform: rotate(-45deg);
}
.accordion.active img {
	width: 8px;
	transform: rotate(0deg);
}
.panel {
	padding: 0 8px;
	max-height: 0;
	overflow: hidden;
}
.panel p {
	color: var(--typography-black);
	font-size: 18px;
}
/*end accordion*/
/*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);
}
/*header*/
header {
	position: fixed;
	z-index: 15;
	width: 100%;
}
.header_body {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 10px 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: 100px;
}
.header_mobile img,
.header_first img {
	width: 100px;
}
.header_first ul {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin: 0;
	padding: 0;
}
.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 a:hover {
	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;
}
.header_btn:hover {
	background-color: var(--typography-black);
	color: var(--typography-white);
}
.header_second {
	display: flex;
	align-items: center;
	gap: 20px;
}
/*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;
}
.first_section {
	background: linear-gradient(0deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.5)), url(../images/bg/calc-bg.jpeg);
	height: 567px; /* 800px with padding */
	width: 100%;
	background-size: cover;
	background-position: center top;
	padding: 186px 0 0;
	z-index: 12;
	position: relative;
}
.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 h1 span {
	color: var(--peach);
}
.head_section_container div {
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--typography-white);
	width: 644px;
/*	margin: 0 auto;*/
}
.head_section_container p {
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: var(--typography-white);
	margin: 0 0 40px;
}
.head_section_container button {
	padding: 18px 30px;
	background: linear-gradient(95.45deg, #E38D5C 9.8%, #EAAA78 94.98%);
	color: var(--typography-white);
}
.head_section_container button:hover {
	color: var(--typography-black);
	background: var(--bg-base);
}
.sec_bg_base {
	background: var(--bg-base);
	padding: 80px 0 70px;
	position: relative;
}
.terms_card_field {
	display: flex;
	gap: 30px;
	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: 5;
}
.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;
}
.for_who.for_who-de {
	align-items: flex-end;
	gap: 59px;
}
#for_who_img {
	max-height: 824px;
	z-index: 5;
}
.for_who img {
	border-radius: 30px;
}
.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: 60px 88px 35px 60px;
	background: #F8F4F0;
	border-radius: 20px;
	z-index: 5;
}
#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 {
	padding: 100px 0;
	background: var(--bg-other);
}
.work_terms_container {
	position: relative;
}
.work_terms_title {
/*	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px;
	width: 843px;
	height: 185px;
	margin-bottom: 30px;
	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: flex-start;
	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 {
/*	max-width: 261px;*/
/*	height: 56px;*/
	padding: 0 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	text-align: left;
	color: var(--typography-black);
	margin: 0;
}
#line3 {
	position: absolute;
	left: -148px;
	top: 3px;
}
#line4 {
	position: absolute;
	right: -80px;
	bottom: -43px;
}
.sec_color_start {
	padding-top: 100px;
}
.duties {
	position: relative;
}
#lineheart3 {
	display: none;
	position: absolute;
}
.duties h2 {
    z-index: 5;
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	text-align: center;
	margin: 0 auto 50px;
}
#pic-de-2 {
    z-index: 5;
}
.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 {
	padding: 51px 30px;
}
.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: #FEFEFE;
	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: center;
	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 {
	margin-bottom: 100px;
}
.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: 474px;
	color: var(--typography-white);
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}
.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: 150px;
	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 {
	line-height: 39px;
	font-weight: 500;
	font-size: 26px;
	margin: 0;
	color: var(--typography-black);
}
.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;
}
.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: 0 20px;
}
.content_404 {
	max-width: 1005px;
	width: 100%;
	max-height: 690px;
	padding: 12px 0 80px;
	background: #FFFFFF;
	border-radius: 27px;
	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="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%;
	border-radius: 20px;
}
@media screen and (max-width: 1280px) {
	.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: 100px;
	}
	.header_first ul {
		gap: 16px;
	}
	.header_third {
		gap: 10px;
	}
	.header_second {
		gap: 10px;
	}
	.container {
		width: 1000px;
	}
	.terms_card {
		padding: 20px;
	}
	.terms_card h3 {
		font-size: 18px;
	}
	.for_who {
		align-items: flex-start;
	}
	#for_who_img {
		width: 485px;
		z-index: 5;
	}
	/*.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;
	}
	.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;
	}
}
@media screen and (max-width: 1180px) {
	/*.header_body {
		padding: 20px 20px;
	}*/
	.header_first {
		gap: 40px;
	}
	.header_first ul {
		gap: 10px;
	}
	.contact_second .header_btn {
		display: block;
	}
}
@media screen and (max-width: 1100px) {
	.header_mobile {
		display: flex;
	}
	.header_body {
		display: none;
	}
	.header_btn {
		display: none;
	}
	.header_third {
		display: block;
	}
}
@media screen and (max-width: 1000px) {
	.duties.duties-de .job_duties img {
		max-width: 578px;
        margin: 0 auto;
		z-index: 5;
	}
	.duties.duties-de .job_duties_info {
		padding: 30px 40px;
		width: auto;
        max-width: 410px;
        margin: 0 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: 190px 0 0;
		height: 640px;
	}
/*	.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-reverse;
		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;
	}
	.faq_field {
		flex-direction: column;
		align-items: center;
	}
	.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: 770px) {
	#line11 {
		left: -82px;
	}
	.intrested_field {
    width: 460px;
	}
	.first_section {
		padding: 120px 0 0;
		height: 700px;
	}
}
@media screen and (max-width: 670px) {
	#line9_2 {
		top: 659px;
	}
	.sec_bg_base {
		padding: 50px 0 50px;
	}
	#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) {
    .job_duties_card.big_cart {
        align-items: flex-start;
    }
    .terms_card {
        width: 100%;
    }
    #pic-de-2 {
        width: 100%;
    }
    .duties.duties-de .job_duties img {
        max-width: 100%;
        z-index: 5;
    }
    .map_img {
        margin-left: 0;
        width: 100%;
    }
	.lang_btn {
		padding: 5px;
	}
	.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: 34px;
		line-height: inherit;
	}
	#line2 {
		top: 1193px;
	}
	.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: 130px 0 0;
		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 {
		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 {
		width: auto;
	}
	#line3 {
		left: -153px;
		top: -48px;
	}
	.work_terms_card {
		width: 100%;
		gap: 20px;
	}
	#line4 {
		right: -63px;
		bottom: -45px;
		width: 315px;
	}
	.duties h2 {
		line-height: 35px;
		font-weight: 600;
		font-size: 28px;
		width: 280px;
	}
	.duties h2 span,
	.duties.duties-de h2 span {
	    font-size: 28px;
	    line-height: 35px;
	}
	.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: 20px 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: -221px;
		top: 120px;;
	}
	.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; 
	}
}
/*@media only screen and (max-device-width : 800px) and (orientation : landscape) {
	.floating_img img {
		animation: none;
	}
	.floating_pulse span {
		animation: none;
	}
}*/