/*
Theme Name: Fresh
Author: Fresh
Requires PHP: 5.6
Version: 10.0
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Lato';
	text-decoration: none;
	box-sizing: border-box;
	color: rgba(61, 61, 61, 1);
}

a {
	color: #303d4d;
	transition: color .3s linear;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: "";
	content: none;
}

i {
	font-style: italic;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	max-width: 100%;
}

body:after {
	background-color: rgb(0 0 0 / 42%);
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

body.overlay:after {
	opacity: 1;
	visibility: visible;
}

b.loading_screen {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-color: #fff;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

b.loading_screen.active {
	visibility: visible;
	opacity: 1;
}

b, strong {
	font-weight: 700;
}

input,
select,
textarea {
	font-family: 'Lato';
	outline: transparent;
	display: inline-flex;
	min-height: 60px;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-size: 18px;
	color: #666666;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

::-webkit-input-placeholder {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	line-height: 24px;
	font-size: 18px;
	color: #888888;
	transition: color .3s ease;
}

::-moz-placeholder {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	line-height: 24px;
	font-size: 18px;
	color: #888888;
	transition: color .3s ease;
}

:-ms-input-placeholder {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	line-height: 24px;
	font-size: 18px;
	color: #888888;
	transition: color .3s ease;
}

:-moz-placeholder {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	line-height: 24px;
	font-size: 18px;
	color: #888888;
	transition: color .3s ease;
}

*:hover::-webkit-input-placeholder {
	color: #a7a7a7;
}

*:hover::-moz-placeholder {
	color: #a7a7a7;
}

*:hover:-ms-input-placeholder {
	color: #a7a7a7;
}

*:hover:-moz-placeholder {
	color: #a7a7a7;
}

ul:not([class]) {
	margin: 14px 0 25px;
}

ul:not([class]) li {
	position: relative;
	padding-left: 19px;
}

ul:not([class]) li:before {
	content: "";
	width: 5px;
	height: 5px;
	background-color: #666666;
	display: block;
	position: absolute;
	top: 11px;
	left: 0;
	border-radius: 50%;
	box-sizing: border-box;
}

ul:not([class]) li:not(:last-child) {
	margin-bottom: 5px;
}

ol:not([class]) {
	margin: 15px 0;
	counter-reset: item;
}

ol:not([class]) li {
	position: relative;
}

ol:not([class]) li:before {
	content: counter(item) ") ";
	counter-increment: item;
	font-weight: 500;
	color: #a5352d;
}

ol:not([class]) li:not(:last-child) {
	margin-bottom: 16px;
}

.container {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
}

@media (max-width: 1360px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

svg {
	fill: inherit;
	stroke: inherit;
	width: inherit;
	height: inherit;
	display: block;
}

path {
	fill: inherit;
	stroke: inherit;
	transition: fill 0.3s ease, stroke 0.3s ease;
}

.modal-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.modal-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-block {
    width: 100%;
    max-width: 500px;
    top: -100px;
    opacity: 0;
    z-index: 1;
    position: relative;
    background-color: #192433;
    border-radius: 10px;
    padding: 48px 40px 40px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 34, 43, 0.3);
    backdrop-filter: blur(38px);
    opacity: 0;
    transition: opacity .3s ease;
}

.modal-window--open .modal-overlay {
    opacity: 1;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.modal-close--icon {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.modal-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -20px;
    right: 20px;
    cursor: pointer;
    padding: 8px;
    background-color: #fafafa;
    border-radius: 6px;
    box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 14%);
}

.modal-close--icon:before, .modal-close--icon:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 50%;
    position: absolute;
    background-color: #313131;
    transition: all .3s ease;
}

.modal-close--icon:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close--icon:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:hover .modal-close--icon:before,
.modal-close:hover .modal-close--icon:after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.wrapper {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
header {
    position: relative;
    background-position: center;
    display: flex;
    flex-direction: column;
}

header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(13 18 26 / 30%);
}
.header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.header-logo a {
    display: block;
    max-height: 30px;
    width: 100%;
}
.header-menu ul.menu li a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    display: inline-flex;
    padding: 20px 20px;
    min-height: 100px;
    align-items: center;
    position: relative;
}

.header-menu ul.menu {
    display: flex;
    align-items: center;
    column-gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header-logo {max-width: 80px;max-height: 30px;width: 100%;}

.header-menu {width: 100%;max-width: 700px;}

.header-contact {display: flex;flex-direction: column;align-items: flex-end;row-gap: 8px;}

.header-menu ul.menu li a:after {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #ff5252;
    transition: width .3s linear;
}

.header-menu ul.menu li a:hover:after, .header-menu ul.menu li a.active:after {
    width: 100%;
}
.header-wrap {
    border-bottom: solid 1px rgb(255 255 255 / 10%);
    position: sticky;
    top: 0;
    transition: all .3s ease;
}

.header-contact a.phone-link {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

.header-contact a.callback-link {
    color: #ff5252;
    font-weight: 300;
    border-bottom: dashed 1px;
    transition: border-color .3s linear;
}

.header-contact a.callback-link:hover {
    border-bottom-color: transparent;
}

.header-contact a.phone-link:hover {
    color: #ff5252;
}
.banner-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 700px;
}
.button, button, input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff5252;
    padding: 10px 42px;
    border-radius: 6px;
    transition: background-color .3s linear, border-color .3s linear;
    border: solid 1px #ff5252;
    outline: transparent;
    cursor: pointer;
}

.button:hover, button:hover, input[type="submit"]:hover {
    background-color: #192433;
    border-color: #192433;
}

.banner-block {
    width: 100%;
    max-width: 600px;
}

.banner-title {
    font-size: 52px;
    font-weight: bold;
    color: #ffffff;
    line-height: 64px;
}

.banner-description {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    color: #fff;
    margin-top: 16px;
}

.banner-button {
    margin-top: 52px;
}
.block-contact-form--title, .block-contact-form--title p {
    font-size: 26px;
    color: #ffffff;
    text-align: center;
}

.wpcf7-form label {
    color: #fff;
    line-height: 30px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 300;
}

.block-contact-form--title-wrap {
    margin-bottom: 36px;
}

.wpcf7-form input[type="submit"] {
    margin-top: 18px;
    min-height: 58px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    display: none;
}
#messages .block-contact-form--title, #messages .block-contact-form--title p {
    font-size: 17px;
    line-height: 22px;
    text-align: left;
    font-weight: 300;
}

.block-contact-form--tagline.block-tagline {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 14px;
}

#messages .block-contact-form--title-wrap {
    margin-bottom: 0;
}
.wpcf7-spinner {
    display: none;
}
.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
}
.wpcf7-not-valid-tip {font-size: 12px;line-height: 16px;position: absolute;bottom: -8px;left: 10px;background-color: #ffffff;padding: 2px 10px;border-radius: 6px;box-shadow: 0px 0px 4px 0px rgb(25 36 51 / 15%);}
.wpcf7-form input[type="submit"]:hover {
    border-color: #ff5252;
}
section#services {
    background-color: #f3f3f3;
    padding-top: 100px;
    padding-bottom: 100px;
}
.title-block {
    display: inline-flex;
    font-weight: bold;
    color: #222222;
    font-size: 42px;
    position: relative;
    flex-direction: column;
    row-gap: 22px;
    flex-shrink: 0;
    margin-bottom: 50px;
}

.title-block:after {
    content: "";
    display: block;
    width: 70px;
    height: 6px;
    background-color: #ff5252;
}

.aboutus-text p, .aboutus-text {
    color: #666666;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
}

.aboutus-wrap {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}

section#aboutus {
    padding-top: 100px;
    padding-bottom: 100px;
}

.aboutus-text {
    width: 100%;
    max-width: 860px;
}

.service-item--title {
    color: #222222;
    font-size: 20px;
    font-weight: bold;
    padding: 0 40px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 24px;
}

.service-item--description {
    font-size: 16px;
    color: #666666;
    font-weight: 300;
    line-height: 22px;
    padding: 0 40px 45px;
    text-align: center;
}

.service-item {
    background-color: #ffffff;
}

.services-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    justify-content: center;
    grid-gap: 30px;
}

.service-item--image {
    height: 260px;
    width: 100%;
    display: flex;
}

.service-item--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#news {
    padding-top: 100px;
    padding-bottom: 100px;
}

.new-item--title {
    margin-top: 28px;
}

.new-item--title a {
    color: #222222;
    font-size: 20px;
    font-weight: bold;
}

.new-item--description p, .new-item--description {
    font-size: 16px;
    color: #666666;
    font-weight: 300;
    line-height: 22px;
}

.new-item--button a {
    color: #ff5252;
    border-bottom: dashed 1px;
    transition: border-color .3s linear;
    font-size: 16px;
    font-weight: bold;
}

.new-item--button a:hover {
    border-color: transparent;
}
.news-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    justify-content: center;
    grid-column-gap: 30px;
    grid-row-gap: 60px;
}
.new-item--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-item--image {
    height: 260px;
}

.new-item--description {
    margin-top: 18px;
}

.new-item--button {
    margin-top: 22px;
}


.footer-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    column-gap: 12px;
}

.footer-logo a {
    display: block;
    max-height: 30px;
    width: 100%;
}
.footer-menu ul.menu li a {
    color: #888888;
    font-size: 18px;
    font-weight: 300;
    display: inline-flex;
    padding: 20px 10px;
    min-height: 100px;
    align-items: center;
    position: relative;
}

.footer-menu ul.menu {
    display: flex;
    align-items: center;
    column-gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {max-width: 80px;max-height: 30px;width: 100%;}

.footer-menu {width: 100%;max-width: 700px;}

.footer-contact {display: flex;flex-direction: column;align-items: flex-end;row-gap: 8px;}

.footer-wrap {
    border-bottom: solid 1px rgb(255 255 255 / 10%);
    position: relative;
}

.footer-contact a.phone-link {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

.footer-contact a.callback-link {
    color: #ff5252;
    font-weight: 300;
    border-bottom: dashed 1px;
    transition: border-color .3s linear;
}

.footer-contact a.callback-link:hover {
    border-bottom-color: transparent;
}

.footer-contact a.phone-link:hover {
    color: #ff5252;
}

footer {
    background-color: #192433;
}

.footer-menu ul.menu li a:hover {
    color: #ff5252;
}

.footer-copyright {
    color: #666666;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    min-height: 50px;
    align-items: center;
    padding: 10px 0;
}

.footer-copyright a {
    color: #ff5252;
}
section#contact {
    background-color: #ededed;
    padding-top: 100px;
    padding-bottom: 100px;
}

.form-fields-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 10px;
}

.form-wrap {
    width: 100%;
    max-width: 570px;
}

.wpcf7-form .form-fields-block label {
    display: block;
    width: 100%;
    margin-top: 0;
}

.form-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.wpcf7-form .form-wrap input[type="submit"] {
    margin-top: 0;
}

.form-acceptance {
    color: #888888;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-top: 15px;
    text-align: center;
}

.contact-wrap {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.contact--name {
    color: #222222;
    font-size: 18px;
    font-weight: bold;
}

.contact-list {
    display: grid;
    grid-template-columns: minmax(90px, 100px) 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 26px;
}

.contact--value {
    color: #222222;
    font-size: 18px;
    font-weight: 300;
}

.contact--value a {
    color: #fd5555;
    border-bottom: dashed 1px;
    transition: border-color .3s linear;
}

.contact--value a:hover {
    border-color: transparent;
}
.header--fixed .header-wrap, .open-slide-menu .header-wrap {
    position: fixed;
    width: 100%;
    background-color: #192433;
    left: 0;
    right: 0;
    z-index: 9;
}

.header-button {
    display: none;
}

.slide-menu-wrap {
    display: none;
}

.full_global_inner header,
.mobile_global_inner header {
    background-color: #192433;
}

.full_global_inner header:before,
.mobile_global_inner header:before {
    content: none;
}

.page-title h1 {
    font-weight: bold;
    color: #222222;
    font-size: 42px;
}

.page-title {
    display: inline-flex;
    position: relative;
    flex-direction: column;
    row-gap: 22px;
    flex-shrink: 0;
    margin-bottom: 50px;
}

.page-title:after {
    content: "";
    display: block;
    width: 70px;
    height: 6px;
    background-color: #ff5252;
}

#breadcrumbs span {
    color: #888888;
    font-size: 16px;
}

#breadcrumbs {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 300;
}

#breadcrumbs span a, #breadcrumbs a {
    color: #192433;
}

.paginate a, .paginate span {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 39px;
    height: 40px;
    padding: 10px 12px;
    border-radius: 6px;
    background-color: #192433;
    transition: all .3s ease;
}

.paginate span {
    background-color: #ccc;
}

.paginate a:hover {
    background-color: #ff5252;
}

.paginate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.content {
    margin-bottom: 80px;
}

.home .content {
    margin-bottom: 0;
}

.single h1, .page h1 {
    font-weight: bold;
    color: #222222;
    font-size: 42px;
}


.service-content--image {
    width: 100%;
    max-width: 500px;
    min-width: 340px;
    flex: 1;
}

.service-content--image img {
    width: 100%;
    object-fit: cover;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 60px;
    row-gap: 60px;
}

.service-content--text {
    flex: 1;
    width: 100%;
    min-width: 340px;
}

.single-content--image {
    width: 100%;
    max-width: 500px;
    min-width: 340px;
    flex: 1;
}

.single-content--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 60px;
    row-gap: 60px;
}

.single-content--text {
    flex: 2;
    width: 100%;
    /* max-width: 600px; */
    min-width: 340px;
}

.single h1, .page h1 {
    font-weight: bold;
    color: #222222;
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 40px;
}

.text-content {
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    color: #666666;
}

.button img {
    margin-left: 15px;
    max-width: 24px;
    max-height: 25px;
}

.exact-cost--button {
    margin-top: 40px;
}

.price-block .form-acceptance {
    text-align: left;
    margin-top: 0;
}

.wpcf7-response-output {
    display: none!important;
}
.stages-work-wrap {
    background-color: #F2F2F2;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 100px;
}

.stages-work--step {
    font-weight: 700;
    font-size: 30px;
    line-height: 160%;
/* identical to box height, or 48px */
    color: #CCCCCC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: relative;
    margin-bottom: 35px;
}

.stages-work--step img {
    position: absolute;
    top: 0;
    right: 0;
}

.stages-work--title {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
/* or 25px */
    color: #222222;
    margin-bottom: 12px;
}

.stages-work--description {
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
/* or 26px */
    color: #666666;
}

.stages-work-block {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 30px;
}

.stages-work-item {
    position: relative;
}

.stages-work-item:not(:last-child):before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    border-bottom: 1px dashed #CCCCCC;
    top: 50px;
    left: 50px;
}

.application-wrap {
    display: flex;
    column-gap: 40px;
    row-gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.application-content {
    max-width: 530px;
}

#application-footer {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ededed;
}

.single-services #application-footer .application-form input:not([type="submit"]), .single-services #application-footer .application-form select, .single-services #application-footer .application-form textarea {
    background-color: #F2F2F2;
}

.single-services #application-footer {
    background-color: #ffffff;
}

@media (max-width: 1100px) {

    .header-button {
        display: block;
    }

    .burger:after, .burger:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: all .3s linear;
    }
    
    .burger:after {
        bottom: -10px;
    }
    
    .burger:before {
        top: -10px;
    }
    
    [data-action="close"] .burger:before {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
    }
    
    [data-action="close"] .burger:after {
        transform: translate(-50%, -50%) rotate(-45deg);
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        left: 50%;
        top: 50%;
    }

    .header-menu {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .header-block {
        padding: 16px 0;
    }
    
    i.burger {
        display: block;
        width: 40px;
        height: 2px;
        background-color: #ffffff;
        position: relative;
        transition: all .3s ease;
    }
    
    span.js-target-menu {
        display: flex;
        height: 40px;
        width: 50px;
        align-items: center;
        justify-content: flex-end;
    }
    
    [data-action="close"] i.burger {
        background-color: transparent;
    }

    .slide-menu-wrap {
        display: none;
        position: fixed;
        top: -100%;
        left: 0;
        height: 100vh;
        max-height: calc(100vh - 72px);
        background-color: #192433;
        width: 100%;
        padding: 30px 30px;
        transition: top .3s linear;
    }
    
    .slide-menu-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        overflow: auto;
    }

    .slide-menu-wrap.active {
        top: 72px;
    }
    
    .slide-menu-menu ul.menu li a {
        color: #fff;
        font-size: 22px;
    }
    
    .slide-menu-menu ul.menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 22px;
    }
    
    .slide-menu-contact .phone-link {
        color: #fff;
        font-size: 24px;
    }
    
    .slide-menu-contact {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        align-items: center;
        row-gap: 12px;
    }
    
    .slide-menu-contact a.callback-link {
        color: #ff5252;
        font-size: 22px;
        font-weight: 300;
        border-bottom: dashed 1px;
    }

    .banner-title {
        font-size: 46px;
        line-height: 50px;
    }
    
    .banner-description {
        font-size: 18px;
        line-height: 24px;
    }
    
    .banner-wrap {
        min-height: 400px;
    }
    
    .banner-wrap {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .aboutus-wrap {
        flex-direction: column;
    }
    
    section#aboutus {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .title-block {
        margin-bottom: 35px;
        font-size: 32px;
        row-gap: 14px;
    }
    
    section#services {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .services-block {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .news-block {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        grid-row-gap: 40px;
    }
    
    .title-block:after {
        height: 4px;
    }
    
    .contact-wrap {
        flex-direction: column;
        row-gap: 60px;
    }
    
    .form-fields-block {
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
    }
    
    .form-button {
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
    }
    
    .contact-list {
        grid-template-columns: 1fr;
        grid-row-gap: 10px;
    }
    
    .contact--value {
        margin-bottom: 16px;
    }
    
    section#contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .footer-block {
        flex-direction: column;
        padding: 40px 0;
        row-gap: 28px;
    }
    
    .footer-menu ul.menu {
        flex-direction: column;
    }
    
    .footer-menu ul.menu li a {
        min-height: auto;
        padding: 12px 0;
    }
    
    .footer-contact {
        align-items: center;
        row-gap: 16px;
    }

    section#news {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .service-content--image {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .service-content--text {
        min-width: 100%;
    }

    .single-content--image {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .single-content--text {
        min-width: 100%;
    }

    .stages-work--step {
        grid-row: 1/3;
        width: 80px;
        height: 80px;
        font-size: 22px;
    }
    
    .stages-work-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-column-gap: 30px;
    }
    
    .stages-work-item:not(:last-child):before {
        width: auto;
        height: 100%;
        border-bottom: none;
        border-left: 1px dashed #CCCCCC;
        top: 40px;
        left: 40px;
    }
    
    .single h1, .page h1 {
        font-size: 32px;
        line-height: 34px;
        margin-bottom: 30px;
    }
    
    #breadcrumbs {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 22px;
    }
    
    .button, button, input[type="submit"] {
        font-size: 16px;
    }
    
    .button img {
        max-width: 17px;
    }
    
    #application-footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .content {
        margin-bottom: 40px;
    }
    .page-title h1 {
        font-size: 32px;
    }
    
    .page-title {
        margin-bottom: 30px;
    }
    .stages-work-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 50px;
    }
}
.form-fields-block.merge {
    grid-template-columns: 1fr;
}


.aboutus-text p {
    margin-bottom: 14px;
}