#response_form {
	margin: 124px 0 75px 0;
}

.a_header {
    display: grid;
	grid-template-columns: 350px 1fr 200px;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 20px;
    justify-items: stretch;
    align-items: center;
    justify-content: space-around;
	width: 100%;
    max-width: 970px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	
	#response_form {
		margin: 50px 0;
	}
	
	.a_header {
		display: grid;
		grid-template-columns: 1fr 80px;
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 20px;
	}
	
	.header_logo { grid-area: 1 / 1 / 2 / 2; }
	.header_phone { grid-area: 1 / 2 / 2 / 3; }
	.header__nav { grid-area: 2 / 1 / 3 / 3; }
}

.header_logo svg {
	max-width: 100%;
	height: 80px;
}

.header_phone {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.header_phone a {
    display: block;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 15px;
    border: 1px solid #000;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    max-width: 190px;
    white-space: nowrap;
    padding-left: 32px;
    position: relative;
}

.header_phone a:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(../images/phone.png) no-repeat;
    background-size: 80%;
    background-position: 50% 50%;
    top: 50%;
    left: 20px;
    margin-top: -8px;
    margin-left: -8px;
}

@media screen and (max-width: 1200px) {
	
	.header_phone a {
		border-radius: 50%;
		width: 40px;
		height: 40px;
		padding: 0;
		text-indent: 100px;
	}
}

.use__section,
.title_section {
	display: grid;
	margin: 20px;
}

.title_section {
	margin: 20px;
	border: 1px solid #000;
	border-radius: 15px;
	background: #f5f1e9;
}

.title_top_text {
	font-family: 'FuturaBookC', sans-serif;
	font-size: 60px;
	line-height: 130%;
	letter-spacing: 0.07em;
	color: #000;
}

.title_name {
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
}

.title_preview img {
	width: 100%;
}

.title_section {
	justify-items: center;
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 38% 1fr;
    grid-template-rows: auto auto 124px;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
	grid-template-areas: 
		"a d"
		"b d"
		"c d";
}

.title_header  { grid-area: a; }
.title_content { grid-area: b; }
.title_btn     { grid-area: c; }
.title_preview { grid-area: d; }

@media screen and (max-width: 1200px) {
	
	.title_section {
		padding: 20px;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		grid-template-areas: 
			"a" "d" "c" "b";
	}
	
	.title_content h1 {
		text-align: center;
	}
}

@media screen and (min-width: 1200px) {
	
	.title_header,
	.title_content {
		padding-left: 100px;
	}
	
	.title_section {
		grid-template-areas: 
			"a d"
			"b d"
			"c d";
	}

	.title_preview {
		padding: 20px;
	}
}

.title_btn {
    max-width: 420px;
    color: #fff;
    background: linear-gradient(206deg, #03131c 0%, #07293d 58.5%, #0e5882 100%);
    width: 100%;
    text-align: center;
    border-radius: 15px;
    font-size: 33px;
}

.title_btn a {
	display: block;
    padding: 15px;
}

.use__section {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(2, 1fr) 133px;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.use_list_title { grid-area: a; }
.use_wfm_btn { grid-area: b; }
.use_list { grid-area: c; }

.use_wfm_btn {
    font-size: 30px;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(208deg, #0aa0ed 0%, #0088ce 20.36%, #0075c3 62.69%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	font-family: "Montserrat", sans-serif;
    font-weight: bold;
	cursor: pointer;
}

.use_list_title {
	font-size: 60px;
    padding: 30px;
    border: 1px solid #000;
    border-radius: 15px;
	display: flex;
    align-items: center;
    justify-content: flex-start;
}

.use_list {
	font-size: 27px;
	width: 100%;
	list-style: disc;
    border-radius: 15px;
    border: 1px solid #000;
    padding: 10px 10px 10px 40px;
	height: 100%;
}

.use_list li {
	padding: 10px;
}

.use_list li::marker {
}

.delimetr-block {
	padding: 30px;
}

.delimetr {
	padding: 75px 0;
	position: relative;
}

.delimetr:before {
	content: "";
	position: absolute;
	height: 1px;
	width: 95%;
	top: 50%;
	background: #000;
}

.delimetr:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000;
    left: 95%;
    top: 50%;
    margin-top: -3px;
    border-radius: 50%;
}

.delimetr.delimetr-right:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000;
    left: 5%;
    top: 50%;
    margin-top: -3px;
    border-radius: 50%;
}

.delimetr.delimetr-right:before {
	left: 5%;
}

.page_section {
    display: flex;
    align-items: center;
}

.page_section_text_block {
	width: 50%;
}

.page_section_text_block h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
}

.page_section_text_block ul {
	margin: auto;
    padding-right: 10px;
    padding-left: 28px;
    list-style: disc;
}

.page_section_text_block li {
	line-height: 150%;
}

.page_section_image_block {
	width: 50%;
}

.page_section_picture__wrap {
	display: block;
    width: 100%;
	overflow: hidden;
}

.page_section_image_block img {
    width: 100%;
}

.page_section_image_block:first-child {
	overflow: hidden;
}

.page_section_image_block:first-child .page_section_picture__wrap {
	overflow: visible;
}

@media screen and (max-width: 1200px) {
	
	.use__section {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 133px;
		grid-template-areas: 
			"a" "c" "b";
	}
	
	.page_section {
		flex-direction: column;
	}
	
	.page_section.mb-revers {
		flex-direction: column-reverse;
	}
	
	.page_section_text_block {
		width: 100%;
	}
	
	.page_section_text_block {
		padding-left: 20px;
		padding-bottom: 20px;
	}
	
	.page_section_image_block {
		width: 95%;
		margin: 2.5%;
	}
}

@media screen and (max-width: 800px) {
	
	.use_list_title {
		font-size: 30px;
	}
	
	.page_section_text_block {
		font-size: 22px;
	}
	
	.page_section_text_block h3 {
		font-size: 32px;
	}
}

@media screen and (min-width: 1200px) {
	
	.use__section {
		grid-template-columns: 28% 1fr;
		grid-template-rows: 1fr 133px;
		grid-template-areas: 
			"a c"
			"b c";
	}
	
	.use_list {
		padding: 4% 0 4% 10%;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		align-items: center;
	}
	
	.use_list li {
		width: 50%;
		padding: 2% 16% 2% 0;
	}
	
	.page_section_text_block {
		padding-left: 74px;
		padding-bottom: 60px;
	}
	
	/** */

	.schedule_possibilities .page_section_text_block {
		padding-left: 74px;
	}

	.schedule_possibilities .page_section_text_block ul {
		padding-right: 138px;
	}

	/** */

	.kpi_possibilities .page_section_text_block ul {
		padding-right: 226px;
	}

	/** */

	.leaves_possibilities .page_section_text_block {
		padding-left: 74px;
	}

	.leaves_possibilities .page_section_text_block ul {
		padding-right: 138px;
	}

	/** */

	.shifts_possibilities .page_section_text_block ul {
		padding-right: 226px;
	}

	/** */

	.portal_possibilities .page_section_text_block {
		padding-left: 74px;
	}

	.portal_possibilities .page_section_text_block ul {
		padding-right: 134px;
	}

	/** */
}

.steps_content {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    padding: 20px;
}

.steps_content h1 {
	font-size: 40px;
}

@media screen and (max-width: 576px) {
	
    .a_header {
		padding: 10px;
    }
		
	.use__section,
	.title_section {
		margin: 10px;
	}
}

@media screen and (min-width: 1200px) {
	
}

.steps_content ul {
    list-style: disc;
    padding: 0 0 0 56px;
}

.steps_content .step {
    padding: 20px 0;
}