/*  Reset styles
    ------------------------------------------------------- */
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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none;}

*,
*::before,
*::after {
	box-sizing: border-box;
}

a {
	color: #070F2B;
	outline: none;
}

svg {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
}

button {
	padding: 0;
	font-size: 0;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

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

/*  fonts
    ------------------------------------------------------- */
@font-face {
	font-family: 'Montserrat-Regular';
	src: url('../fonts/Montserrat-Regular.eot');
	src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		 url('../fonts/Montserrat-Regular.woff') format('woff'),
		 url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TitilliumWeb-SemiBold';
	src: url('../fonts/TitilliumWeb-SemiBold.eot');
	src: url('../fonts/TitilliumWeb-SemiBold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/TitilliumWeb-SemiBold.woff2') format('woff2'),
		 url('../fonts/TitilliumWeb-SemiBold.woff') format('woff'),
		 url('../fonts/TitilliumWeb-SemiBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TitilliumWeb-Regular';
	src: url('../fonts/TitilliumWeb-Regular.eot');
	src: url('../fonts/TitilliumWeb-Regular.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/TitilliumWeb-Regular.woff2') format('woff2'),
		 url('../fonts/TitilliumWeb-Regular.woff') format('woff'),
		 url('../fonts/TitilliumWeb-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*  body
    ------------------------------------------------------- */
html {
	-webkit-text-size-adjust: 100%;
}

html,
body {
	height: 100%;
}

body {
	position: relative;
	color: #070F2B;
	background: #fff;
	font-size: 18px;
	font-family: 'Montserrat-Regular';
}

#page::before,
#page::after {
	content: '';
	position: fixed;
	z-index: 9001;
	top: 0;
	left: 0;
    height: 0;
    width: 0;
    opacity: 0;
	-webkit-transition: opacity 0.4s ease-out 0s;
    		transition: opacity 0.4s ease-out 0s;
}

#page::before {
	background: rgba(20, 32, 73, 0.6);
}

#page::after {
	background: rgba(20, 32, 73, 0.5);
}

#page.modal-open,
#page.form-open {
	overflow: hidden;
}

#page.modal-open::before,
#page.form-open::after {
    height: 100%;
    width: 100%;
	opacity: 1;
}

h1, h2, h3, h4 {
	font-family: 'TitilliumWeb-SemiBold';
}

h2 {
	font-size: 40px;
	line-height: 1.25;
}

.wrapper {
	overflow: hidden;
}

.wrap {
	margin: 0 auto;
	width: 100%;
	max-width: 1226px;
	padding: 0 33px;
	position: relative;
}

.flex {
	display: flex;	
}

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

.mr-2 {
	margin-right: 8px;
}

.row {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
}

.row2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	-webkit-align-items: center;
			align-items: center;
}

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

.logo {
	width: 146px;
	height: 40px;
}

.btn,
.btn2,
.btn3,
.btn4 {
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	height: 60px;
	padding: 0 35px;
	font-size: 20px;
	text-transform: uppercase;
	font-family: 'TitilliumWeb-SemiBold';
	-webkit-transition: background-color 0.5s;
			transition: background-color 0.5s;
}

.btn {
	color: #fff;
	background-color: #F98022;
}

.btn:hover {
	background-color: #FFA055;
}

.btn2 {
	color: #1D2049;
	background-color: #fff;
}

.btn2:hover {
	background-color: #F3F3F3;
}

.btn3 {
	border: 2px solid #fff;
	color: #fff;
	-webkit-transition-property: color, background-color, border-color;
			transition-property: color, background-color, border-color;
}

.btn3:hover {
	color: #1D2049;
	border-color: #F3F3F3;
	background-color: #F3F3F3;
}

.btn4 {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	border: 2px solid #2A2E67;
	color: #2A2E67;
}

.wrap-container {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
			justify-content: flex-end;
}

.container {
	-webkit-flex-grow: 1;
			flex-grow: 1;
	max-width: 465px;
}

.description {
	line-height: 1.5;
}

.statistics-item-value {
	margin-bottom: 10px;
	font-size: 40px;
	font-family: 'TitilliumWeb-SemiBold';
}

/*  form IU
    ------------------------------------------------------- */
input[type=text] {
    -webkit-appearance: none;
    		appearance: none;
}

input {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: transparent;
	-webkit-box-shadow: none;
			box-shadow: none;
}

input::-moz-placeholder {
	opacity: 1;
	color: #fff;
}

input::-webkit-input-placeholder {
	color: #fff;
}

input:-ms-input-placeholder {
	color: #fff;
}

input::-ms-input-placeholder {
	color: #fff;
}

input::placeholder {
	color: #fff;
}

:invalid {
	box-shadow: none;
}

.input-label {
	margin-bottom: 11px;
	display: block;
	color: #2A2E67;
	font-size: 14px;
	text-transform: uppercase;
}

.input-field {
	width: 100%;
	border-bottom: 1px solid #fff;
	padding-bottom: 16px;
	color: #fff;
	font-size: 14px;
	font-family: 'Montserrat-Regular';
}

.checkbox,
.checkbox2 {
	cursor: pointer;
}

.checkbox-input,
.checkbox2-input {
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	border: 2px solid #2A2E67;
}

.checkbox-input {
	width: 28px;
	height: 28px;
}

.checkbox2-input {
	width: 23px;
	height: 23px;
}

.checkbox-input-icon,
.checkbox2-input-icon {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out 0s;
    		transition: opacity 0.3s ease-out 0s;
}

.checkbox.checked .checkbox-input-icon,
.checkbox2.checked .checkbox2-input-icon {
	opacity: 1;
}

.checkbox-label,
.checkbox2-label {
	color: #2A2E67;
	text-transform: uppercase;
	font-family: 'TitilliumWeb-SemiBold';
	-webkit-user-select: none;
			user-select: none;
}

.checkbox-label {
	margin-left: 15px;
	font-size: 20px;
}

.checkbox2-label {
	margin-left: 10px;
	font-size: 16px;
}

.select {
	display: none;
}

/*  header
    ------------------------------------------------------- */
.wrap-header {
    position: relative;
    height: 75px;
}

.header {
	padding-top: 35px;
	-webkit-transition: 0.3s;
			transition: 0.3s;
}

.header.fixed {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	left: 0;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 2px 20px rgba(7, 20, 62, 0.1);
}

.header-container {
	max-width: 840px;
}

.header-home .wrap {
	-webkit-justify-content: flex-end;
			justify-content: flex-end;
}

.header-home .header-container {
	margin-right: 99px;
	-webkit-flex-grow: 1;
			flex-grow: 1;
	max-width: 460px;
}

.header.fixed .wrap {
	-webkit-justify-content: flex-start;
			justify-content: flex-start;
}

.header.fixed .header-container {
    max-width: 840px;
	margin: 0;
}

.header-link {
	margin-right: 37px;
	font-size: 15px;
	-webkit-transition: color 0.3s;
			transition: color 0.3s;
}

.header-link:last-child {
	margin: 0;
}

.header-link:hover {
	color: #F98022;
}

.header-burger {
	display: none;
}

/*  home1
    ------------------------------------------------------- */
.home1 {
	position: relative;
	padding-bottom: 90px;
}

.home1 .wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
			justify-content: flex-end;
}

.home1-content {
	position: relative;
	padding-top: 122px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
			flex-direction: column;
	-webkit-align-items: flex-end;
			align-items: flex-end;
}

.home1-title {
	margin-bottom: 35px;
	font-size: 50px;
}

.home1 .wrap-container {
	margin-right: 99px;
}

.home1 .description {
	margin-bottom: 33px;
}

.home1-action {
	margin-bottom: 76px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-end;
			align-items: flex-end;
}

.home1-link {
	margin-left: 35px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
			align-items: center;
	height: 60px;
	border-bottom: 2px solid #F98022;
	color: #F98022;
	font-size: 20px;
	text-transform: uppercase;
	font-family: 'TitilliumWeb-SemiBold';
	-webkit-transition-property: border-color, color;
			transition-property: border-color, color;
	-webkit-transition-duration: 0.5s;
			transition-duration: 0.5s;
}

.home1-link:hover {
	color: #FFA055;
	border-color: #FFA055;
}

.home1-decor {
	position: absolute;
	z-index: -1;
	top: -75px;
	right: 100%;
	-webkit-transform: translateX(-5px);
			transform: translateX(-5px);
}

.tel,
.tel span {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
}

.tel {
	position: fixed;
	z-index: 10;
	top: 575px;
	right: 50px;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background-color: #1F224E;
	box-shadow: 0px 4px 44px rgba(4, 6, 38, 0.1);
	-webkit-transition: background-color 0.5s;
			transition: background-color 0.5s;
}

.tel:hover {
	background-color: #383B68;
}

.tel span {
	position: absolute;
	top: 50%;
	right: 100%;
	-webkit-transform: translate(-14px, -50%);
			transform: translate(-14px, -50%);
	width: 0;
	height: 76px;
	border-radius: 10px;
	color: #fff;
	background: #1F224E;
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
	font-family: 'TitilliumWeb-SemiBold';
	-webkit-transition: width 0.3s;
			transition: width 0.3s;
}

.tel:hover span {
	width: 223px;
	font-size: 20px;
}

/*  home2
    ------------------------------------------------------- */
.home2 {
	padding: 120px 0;
}

.home2 .wrap {
	max-width: 1042px;
}

.home2-title {
	margin-bottom: 50px;
	line-height: 1.3;
}

.home2 .description {
	margin-bottom: 43px;
}

/*  home3
    ------------------------------------------------------- */
.home3 {
	padding: 120px 0;
	color: #fff;
	background: linear-gradient(275deg, #1D2049, #2A2E67 73%);
}

.home3 .wrap {
	-webkit-align-items: flex-start;
			align-items: flex-start;
}

.home3-title {
	margin-right: 60px;
	max-width: 655px;
}

.home3-form {
	margin-top: 15px;
	-webkit-flex-grow: 1;
			flex-grow: 1;
	max-width: 430px;
	min-width: 300px;
}

.home3 .input-field {
	margin-bottom: 40px;
}

.home3 .input-field2 {
	margin-bottom: 36px;
}

.home3 .btn2 {
	height: 50px;
}

/*  home4
    ------------------------------------------------------- */
.home4 {
	padding: 110px 0 120px;
}

.home4-title {
	margin-bottom: 60px;
	max-width: 865px;
	padding-left: 100px;
}

.home4-subtitle {
	margin-bottom: 40px;
	max-width: 1010px;
	color: #070F2A;
	padding-left: 100px;
	line-height: 1.2;
	font-family: 'TitilliumWeb-Regular';
}

.home4-tab.tab1 .home4-subtitle {
	max-width: 885px;
}

.home4-tab.tab2 .home4-subtitle {
	max-width: 1030px;
}

.home4-switch {
	margin-bottom: 70px;
	border: 1px solid #2A2E67;
}

.home4-switch-item {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	width: 25%;
	height: 66px;
	border-right: 1px solid #2A2E67;
	color: #2A2E67;
	font-size: 20px;
	text-transform: uppercase;
	font-family: 'TitilliumWeb-SemiBold';
	-webkit-transition-property: background-color, color;
			transition-property: background-color, color;
	-webkit-transition-duration: 0.5s;
			transition-duration: 0.5s;
}

.home4-switch-item:last-child {
	border: none;
}

.home4-switch-item:hover,
.home4-switch-item.active {
	color: #fff;
	background: #2A2E67;
}

.home4-tab {
	display: none;
}

.home4-tab.active {
	display: block;
}

.home4-wrap-img {
	margin-bottom: 70px;
	position: relative;
	height: 400px;
}

.home4-wrap-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home4-checkAll {
	position: absolute;
	top: 0;
	right: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
			flex-direction: column;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	width: 290px;
	height: 100%;
	padding: 60px 40px;
	background-color: rgba(29, 32, 73, 0.8);
	-webkit-transition: background-color 0.5s;
			transition: background-color 0.5s;
}

.home4-checkAll:hover {
	background-color: #1D2049;
}

.home4-checkAll-title {
	max-width: 150px;
	color: #fff;
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
}

.home4-tab.tab1 .container {
	max-width: 464px;
}

.home4-tab.tab2 .container {
	max-width: 564px;
}

.home4-tab.tab3 .container {
	max-width: 420px;
}

.home4-tab.tab4 .container {
	max-width: 543px;
}

.home4-tab.tab2 .home4-services-col {
	width: 248px;
}

.home4-label {
	margin-right: 58px;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	letter-spacing: 0.06em;
	font-variant: small-caps;
}

.home4-services {
	margin-bottom: 40px;
	-webkit-justify-content: space-between;
			justify-content: space-between;
	-webkit-align-items: flex-start;
			align-items: flex-start;
}

.home4-service {
	margin-bottom: 24px;
}

.home4-service:last-child {
	margin: 0;
}

.home4-service-icon {
	margin-bottom: 12px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
	width: 22px;
	height: 22px;
}

.home4-service-title {
	font-size: 20px;
	color: #2A2E67;
	text-transform: uppercase;
	font-family: 'TitilliumWeb-SemiBold';
}

/*  home5
    ------------------------------------------------------- */
.home5 {
	padding-bottom: 120px;
}

.home5-img {
	margin-right: 60px;
	font-size: 0;
}

.home5-text {
	max-width: 550px;
}

.home5-title {
	margin-bottom: 75px;
}

.home5 .statistics {
	max-width: 480px;
}

/*  home6
    ------------------------------------------------------- */
.home6 {
	padding: 125px 0;
	color: #fff;
	background: linear-gradient(275deg, #1D2049, #2A2E67 73%);
}

.home6 .wrap {
    max-width: 1030px;
}

.home6-title {
	margin-bottom: 50px;
	line-height: 1.2;
}

.home6-action {
	-webkit-align-items: flex-start;
			align-items: flex-start;
	max-width: 900px;
}

.home6-col {
	max-width: 400px;
}

.home6-description {
	margin-bottom: 26px;
	font-size: 25px;
	line-height: 1.2;
	font-family: 'TitilliumWeb-SemiBold';
}

/*  footer
    ------------------------------------------------------- */
.footer {
	padding: 100px 0;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 24px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
}

.footer-link {
	color: #070F2A;
	font-size: 15px;
	margin-bottom: 24px;
}

.footer-link:last-child {
	margin: 0;
}

.footer-link:hover {
	color: #F98022;
}

.footer-link:hover path {
	stroke: #F98022;
}

.footer-copyright {
	font-size: 15px;
	color: #070F2A;
	text-align: right;
}

/*  portfolio
    ------------------------------------------------------- */
.portfolio {
	padding: 94px 0 130px;
}

.portfolio-title {
	margin-bottom: 75px;
	max-width: 1070px;
	font-size: 60px;
	line-height: 1.1;
}

.portfolio-wrap-switch {
	margin-bottom: 89px;
	padding-left: 100px;
}

.portfolio-label {
	margin-bottom: 23px;
	letter-spacing: 0.06em;
	font-variant: small-caps;
}

.portfolio-switch-item {
	margin-right: 39px;
	color: rgba(7, 15, 43, 0.5);
	text-transform: uppercase;
	font-family: 'TitilliumWeb-SemiBold';
}

.portfolio-switch-item:last-child {
	margin: 0;
}

.portfolio-switch-item.active {
	color: #F98022;
}

.portfolio-tab {
	display: none;
}

.portfolio-tab.active {
	display: block;
}

.grid {
	font-size: 0;
}

.grid img {
	display: block;
	height: 100%;
	object-fit: cover;
}

.grid-row {
	flex-grow: 1;
	display: flex;
	width: 100%;
	margin-bottom: 30px;
}

.grid-col {
	display: flex;
	flex-direction: column;
	margin-right: 30px;
}

.grid-item {
	margin-right: 30px;
}

.grid-row:last-child,
.grid-col:last-child,
.grid-item:last-child {
	margin: 0;
}

.grid-tablet {
	display: none;
}

.grid-row5 {
	display: none;
	order: 5;
}

.grid-row3 {
	display: none;
}

.grid-row4 {
	order: 5;
}

/*  faq-section
    ------------------------------------------------------- */
.faq-section {
	padding: 95px 0 120px;
}

.faq-section-title {
	margin-bottom: 78px;
	max-width: 655px;
	font-size: 60px;
}

.faq {
	max-width: 1064px;
	padding-left: 100px;
}

.faq-item {
	padding: 30px 0;
	border-bottom: 1px solid #070F2A;
}

.faq-item:first-child {
	padding-top: 0;
}

.faq-item:last-child {
	border: none;
	padding-bottom: 0;
}

.faq-question {
	-webkit-user-select: none;
			user-select: none;
	cursor: pointer;
	font-size: 40px;
	font-family: 'TitilliumWeb-SemiBold';
}

.faq-question-icon {
	margin-left: 20px;
	position: relative;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #070F2B;
	-webkit-transition: transform ease-in-out 0.3s;
			transition: transform ease-in-out 0.3s;
}

.faq-question.active .faq-question-icon {
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}

.faq-question-icon::before,
.faq-question-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	background-color: #fff;
	-webkit-transition: transform ease-in-out 0.3s;
			transition: transform ease-in-out 0.3s;
}

.faq-question-icon::before {
	width: 18px;
	height: 4px;
}

.faq-question-icon::after {
	width: 4px;
	height: 18px;
}

.faq-answer {
	display: none;
	margin-top: 21px;
	line-height: 1.5;
}

.faq-answer.active {
	display: block;
}

/*  contacts
    ------------------------------------------------------- */
.contacts {
	padding: 91px 0 130px;
}

.contacts-head {
	margin-bottom: 64px;
	-webkit-align-items: flex-start;
			align-items: flex-start;
}

.contacts-title {
	margin-top: 3px;
	max-width: 510px;
	font-size: 40px;
	line-height: 1.2;
	flex-shrink: 0;
}

.contacts-list {
	margin-left: 90px;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
}

.contacts-list-item {
	margin-bottom: 24px;
}

.contacts-list-item:last-child {
	margin: 0;
}

.contacts-link {
	color: #1E306E;
	font-size: 40px;
	font-family: 'TitilliumWeb-SemiBold';
}

.contacts-container {
	margin: 0 auto;
	max-width: 978px;
}

.contacts-text {
	width: 479px;
	-webkit-flex-shrink: 0;
			flex-shrink: 0;
}

.contacts-subtitle {
	margin-bottom: 40px;
}

/*  modal window
    ------------------------------------------------------- */
.modal-box {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	height: 100vh;
    width: 100vw;
	overflow-y: auto;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}

.modal-box.open {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
			justify-content: center;
	-webkit-align-items: center;
			align-items: center;
}

.modal {
    position: relative;
	z-index: 2;
    width: calc(100vw - 66px);
	max-width: 960px;
	padding: 92px 100px 85px;
	background: #fff;
}

.modal-progressbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #C1C3D8;
	overflow: hidden;
}

.modal-progressbar span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #2A2E67;
	-webkit-transition: width ease 0.5s;
			transition: width ease 0.5s;
}

.modal-step {
	display: none;
}

.modal-step.active {
	display: block;
}

.modal-head {
	margin-bottom: 46px;
}

.modal-questions {
	color: rgba(7, 15, 43, 0.8);
	font-size: 16px;
	text-transform: uppercase;
}

.modal-close {
	margin-left: 20px;
	width: 20px;
	height: 20px;
}

.modal-title,
.modal-title2 {
	color: #2A2E67;
	line-height: 1.1;
}

.modal-title {
	margin-bottom: 56px;
}

.modal-step.step5 .modal-title {
	max-width: 642px;
}

.modal-step.step6 .modal-title {
	max-width: 744px;
}

.modal-title span {
	color: #F98022;
}

.modal-container1 {
	max-width: 548px;
	-webkit-justify-content: flex-start;
			justify-content: flex-start;
}

.modal-container1 .checkbox {
	margin-right: 53px;
}

.modal-container1 .checkbox:nth-child(3) {
	margin-right: 0;
}

.modal-container1 .checkbox:nth-child(1),
.modal-container1 .checkbox:nth-child(2),
.modal-container1 .checkbox:nth-child(3) {
	margin-bottom: 29px;
}

.modal-container2 {
	-webkit-justify-content: flex-start;
			justify-content: flex-start;
	padding: 36px 27px 25px;
	background: #fff;
	box-shadow: 0px 2px 0px #2A2E67, 0px 4px 36px rgba(218, 220, 232, 0.3);
}

.modal-container2 .checkbox2 {
	margin: 0 20px 12px 0;
}

.modal-container2 .checkbox2:nth-child(3n) {
	margin-right: 0;
}

.modal-container2 .checkbox2:nth-child(3n+1) {
	width: 226px;
}

.modal-container2 .checkbox2:nth-child(3n+2) {
	width: 232px;
}

.modal-step.step3 .modal-container {
	margin-bottom: 40px;
}

.modal-container .checkbox {
	margin-right: 30px;
}

.modal-container .checkbox:last-child {
	margin: 0;
}

.modal-hide {
	display: none;
}

.modal-hide.active {
	display: block;
}

.modal-action {
	margin-top: 50px;
}

.modal-step.step4 .modal-action {
	margin-top: 117px;
}

.modal .btn4 {
	margin-left: 20px;
}

.modal-question {
	margin-bottom: 20px;
	position: relative;
	border-bottom: 1px solid #2A2E67;
	padding-bottom: 8px;
	color: #2A2E67;
	cursor: pointer;
}

.modal-question-title {
	margin-bottom: 15px;
	font-size: 20px;
	font-family: 'TitilliumWeb-SemiBold';
}

.modal-question-checked {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.modal-question-icon {
	margin-left: 8px;
}

.modal-group-inputs {
	width: 100%;
	max-width: 732px;
	-webkit-justify-content: flex-start;
			justify-content: flex-start;
}

.modal-input {
	margin: 0 30px 30px 0;
	width: 224px;
}

.modal-input:last-child {
	margin: 0;
}

.modal .input-field {
	padding-bottom: 12px;
	color: rgba(42, 46, 103, 0.5);
	border-color: #2A2E67;
}

.modal-step.step3 .input-field {
	max-width: 224px;
}

.modal-step.step5 .input-field {
	font-size: 13px;
}

.modal input::-moz-placeholder {
	color: rgba(42, 46, 103, 0.5);
}

.modal input::-webkit-input-placeholder {
	color: rgba(42, 46, 103, 0.5);
}

.modal input:-ms-input-placeholder {
	color: rgba(42, 46, 103, 0.5);
}

.modal input::-ms-input-placeholder {
	color: rgba(42, 46, 103, 0.5);
}

.modal input::placeholder {
	color: rgba(42, 46, 103, 0.5);
}

.modal-info {
	margin-bottom: 30px;
	line-height: 1.5;
}

/*  animation modal form
    ------------------------------------------------------- */
@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
			animation-name: zoomIn;
	-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
}

@-webkit-keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	to {
		opacity: 0;
	}
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
				transform: scale3d(0.3, 0.3, 0.3);
	}

	to {
		opacity: 0;
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
			animation-name: zoomOut;
	-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
}

/*  Popup info
    ------------------------------------------------------- */
.popup-info {
	position: fixed;
	z-index: 90006;
	top: 20px;
	left: 20px;
	width: calc(100vw - 40px);
	max-width: 400px;
	border-radius: 3px;
	padding: 20px 40px 20px 80px;
	color: #fff;
	background: linear-gradient(275deg, #1D2049, #2A2E67 73%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	visibility: visible;
	-webkit-animation-name: bounceInDown;
			animation-name: bounceInDown;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;	
	-webkit-animation-timing-function: ease-in-out;	
			animation-timing-function: ease-in-out;	
}

.fadeOut {
	opacity: 0;
	transition: opacity 500ms;
}

.popup-info p {
	line-height: 1.5;
}

.popup-info > svg {
	position: absolute;
	left: 40px;
	width: 26px;
	height: 26px;
}

.popup-info-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.4);
}

.popup-info-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 14px;
	height: 14px;
	fill: #fff;
}

.popup-error .popup-info-close {
	fill: #fff;
}

.popup-error {
	color: #fff;
	border-color: #e74c3c;
	background: #e74c3c;
}

@-webkit-keyframes bounceInDown {
	from, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
				animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
				transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
				transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
				transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
				transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
				transform: none;
	}
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, 100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
				animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
				transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
				transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
				transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
				transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
				transform: none;
	}
}

/*  menu
    ------------------------------------------------------- */
.menu {
	position: fixed;
	z-index: 9002;
	top: 0;
	right: -200%;
	width: 100vw;
	max-width: 238px;
	height: 100vh;
	background: #142049;
	box-shadow: 0px 2px 20px rgba(7, 20, 62, 0.1);
	-webkit-transition: 0.3s;
			transition: 0.3s;
	overflow-y: auto;
	text-align: center;
}

.menu.open {
	right: 0;
}

.menu-container {
	padding: 105px 35px 35px;
}

.menu-close {
	position: absolute;
	top: 35px;
	right: 35px;
	fill: #fff;
	cursor: pointer;
}

.menu-list {
	margin-bottom: 105px;
}

.menu-list-item {
	padding: 30px 0;
	border-bottom: 1px solid #fff;
}

.menu-list-item:first-child {
	padding-top: 0;
}

.menu-list-item:last-child {
	padding-bottom: 0;
	border: none;
}

.menu-list-link {
	color: #fff;
	font-size: 30px;
}

.menu .btn,
.menu .btn3 {
	width: 100%;
	height: 50px;
	padding: 0;
	font-size: 16px;
}

.menu .btn {
	margin-bottom: 16px;
}

@media screen and (max-width: 1280px) {
	.tel {
		right: 33px;
	}
} /*1280*/

@media screen and (max-width: 1170px) {
	.contacts-list-item {
		margin-bottom: 18px;
	}
	
	.contacts-link {
		font-size: 55px;
	}
	
	.modal-container2 {
		padding: 24px 24px 12px;
	}
} /*1170*/

@media screen and (max-width: 1024px) {
	.home1-title {
		font-size: 40px;
	}
	
	.home1 .wrap-container {
		margin: 0;
	}

	.header-home .header-container {
		margin: 0;
	}
	
	.home3 {
		padding-top: 110px;
	}
	
	.home3 .wrap {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.home3-title {
		margin: 0;
	}
	
	.home3-form {
		margin-top: 27px;
		width: 100%;
		max-width: none;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: flex-end;
				align-items: flex-end;
	}
	
	.home3 .input-field {
		margin: 0 20px 0 0;
	}
	
	.home4-title {
		max-width: 580px;
		padding: 0;
	}
	
	.home4-subtitle {
		padding-left: 0;
	}
	
	.home4-label {
		margin-right: 50px;
	}
	
	.home4-tab.tab1 .home4-subtitle {
		max-width: 610px;
	}
	
	.home4-checkAll {
		width: 177px;
		padding: 60px 20px;
	}
	
	.home4-service-title {
		line-height: 1.1;
	}
	
	.home5 .wrap {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.home5-img {
		margin: 0 0 70px;
		width: 100%;
		height: 525px;
	}
	
	.home5-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.home5-text {
		margin: 0;
		max-width: none;
	}
	
	.home5-title {
		margin-bottom: 44px;
	}
	
	.home6 {
		padding: 110px 0 120px;
	}
	
	.home6-title {
		margin-bottom: 36px;
		max-width: 622px;
	}
	
	.home6-description {
		font-size: 24px;
	}
	
	.footer-link {
		margin-right: 40px;
	}
	
	.contacts-head {
		margin-bottom: 108px;
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.contacts-title {
		margin: 0 0 41px;
		max-width: 626px;
	}
	
	.contacts-list {
		margin-left: 91px;
	}
	
	.contacts-container {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.contacts-img {
		margin-bottom: 58px;
		width: 100%;
		height: 400px;
	}
	
	.contacts-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.contacts-text {
		width: 100%;
	}
	
	.contacts-subtitle {
		margin-bottom: 29px;
	}
	
	.contacts .statistics {
		-webkit-justify-content: flex-end;
				justify-content: flex-end;
	}
	
	.contacts .statistics-item:first-child {
		margin-right: 32px;
	}
	
	.faq-section {
		padding: 90px 0 114px;
	}
	
	.faq-section-title {
		margin-bottom: 44px;
		max-width: 600px;
		font-size: 55px;
	}

	.faq {
		max-width: none;
		padding: 0;
	}
	
	.faq-answer {
		margin-top: 10px;
	}
	
	.portfolio {
		padding-bottom: 120px;
	}

	.portfolio-title {
		margin-bottom: 56px;
		font-size: 55px;
	}

	.portfolio-wrap-switch {
		margin-bottom: 67px;
		padding: 0;
	}

	.portfolio-label {
		margin-bottom: 23px;
		letter-spacing: 0.06em;
		font-variant: small-caps;
	}

	.grid-row {
		margin-bottom: 10px;
	}
	
	.grid-col {
		margin-right: 10px;
	}
	
	.grid-item {
		margin-right: 10px;
	}

	.modal-question {
		max-width: 534px;
	}
	
	.modal-container1 .checkbox {
		margin-right: 40px;
	}
	
	.modal-container2 {
		max-width: 534px;
		-webkit-justify-content: space-between;
				justify-content: space-between;
	}

	.modal-container2 .checkbox2 {
		margin-right: 0;
	}

	.modal-container2 .checkbox2:nth-child(2n+1) {
		width: 226px;
	}

	.modal-container2 .checkbox2:nth-child(2n) {
		width: 232px;
	}
} /*1024*/

@media screen and (max-width: 976px) {
	.footer-copyright {
		width: 100%;
		text-align: center;
		margin-top: 64px;
	}
}

@media screen and (max-width: 970px) {
	.modal {
		padding: 92px 90px 85px;
	}
} /*970*/

@media screen and (max-width: 768px) {
	.home1-content {
		width: 545px;
	}
	
	.home1-decor {
		-webkit-transform: none;
				transform: none;
	}
	
	.home2 {
		padding-top: 110px;
	}
	
	.home2-title {
		margin-bottom: 26px;
		line-height: 1.2;
	}
	
	.home2 .container {
		max-width: 396px;
	}

	.home2 .description {
		margin-bottom: 34px;
	}
	
	.home4-tab.tab1 .container,
	.home4-tab.tab2 .container,
	.home4-tab.tab3 .container,
	.home4-tab.tab4 .container {
		max-width: none;
	}
	
	.faq-question-text {

		max-width: 410px;
	}
	
	.grid-desktop {
		display: none;
	}
	
	.grid {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.grid-tablet {
		display: flex;
	}
	
	.tab4 .grid-row {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.tab4 .grid-item {
		margin: 0 0 10px;
	}
	
	.tab4 .grid-item,
	.tab4 .grid-item img {
		width: 100%;
	}
	
	.modal {
		padding: 92px 82px 85px;
	}
	
	.modal-container2 .checkbox2,
	.modal-container2 .checkbox2:nth-child(2n+1),
	.modal-container2 .checkbox2:nth-child(2n) {
		width: 100%;
	}
	
	.modal-step.step6 .modal-title {
		font-size: 37px;
	}
} /*768*/

@media screen and (max-width: 750px) {
	.wrap {
		padding: 0 20px;
	}
	
	.header-home .header-container {
		max-width: none;
	}
	
	.home1 .wrap-container {
		-webkit-justify-content: flex-start;
				justify-content: flex-start;
	}
	
	.statistics-item-label {
		font-size: 17px;
	}
	
	.header-link {
		margin-right: 20px;
	}
	
	.home1 .header {
		max-width: none;
	}
	
	.home1-content {
		width: 100%;
		display: block;
	}
	
	.home1-decor {
		right: -148px;
		opacity: 0.03;
	}
	
	.home2 {
		padding: 0 0 100px;
	}
	
	.home2 .container {
		max-width: 300px;
	}
	
	.home3 {
		padding: 90px 0 100px;
	}
	
	.home3-form {
		margin-top: 35px;
		max-width: 465px;
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.home3 .input-field {
		margin: 0 0 30px 0;
	}
	
	.home3 .input-field2 {
		margin: 0 0 40px 0;
	}
	
	.home3 .btn2 {
		width: 100%;
	}
	
	.home4 {
		padding: 90px 0 100px;
	}
	
	.home4-title {
		margin-bottom: 33px;
	}
	
	.home4-wrap-img {
		margin-bottom: 38px;
	}
	
	.home4-switch {
		margin-bottom: 40px;
		border: none;
	}
	
	.home4-switch-item {
		margin-right: 39px;
		width: auto;
		height: auto;
		border: none;
		color: rgba(7, 15, 43, 0.5);
		font-size: 16px;
	}
	
	.home4-switch-item:last-child {
		margin: 0;
	}
	
	.home4-switch-item:hover,
	.home4-switch-item.active {
		color: #F98022;
		background: none;
	}
	
	.home4 .wrap-container {
		position: relative;
		padding-left: 77px;
	}
	
	.home4-label {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
		-webkit-transform: translate(-43px, 46px) rotate(90deg);
				transform: translate(-43px, 46px) rotate(90deg);
		font-size: 14px;
	}
	
	.home4-services {
		margin-bottom: 38px;
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.home4-services-col:first-child {
		margin-bottom: 19px;
	}
	
	.home4-service {
		margin-bottom: 19px;
	}
	
	.home4-service-icon {
		margin-bottom: 8px;
	}
	
	.home5-img {
		margin-bottom: 50px;
		height: 400px;
	}
	
	.home6-action {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.home6-col {
		max-width: none;
	}
	
	.home6-col:first-child {
		margin-bottom: 30px;
	}
	
	.home6 .btn2,
	.home6 .btn3 {
		width: 218px;
	}
	
	.footer .wrap {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.footer .logo {
		margin-bottom: 23px;
	}

	.footer-container {
		align-items: center;
	}
	
	.footer-nav {
		flex-direction: row;
		margin-bottom: 23px;
	}
	
	.footer-link {
		margin-right: 20px;
	}

	.footer-contacts .footer-link {
		margin: 0 auto 24px;
		text-align: center;
	}

	.footer-contacts-globus {
		display: none;
	}

	.footer-copyright {
		margin-top: 12px;
	}
	
	.contacts-list {
		margin: 0;
	}
	
	.contacts-link {
		font-size: 50px;
	}
	
	.portfolio-wrap-switch {
		margin-bottom: 40px;
	}
	
	.portfolio-switch-item {
		font-size: 16px;
	}

	.modal {
		padding: 92px 30px 85px;
	}
	
	.modal-step.step3 .modal-container {
		margin-bottom: 22px;
		max-width: 224px;
		-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
		-webkit-justify-content: space-between;
				justify-content: space-between;
	}
	
	.modal-step.step3 .checkbox {
		margin: 0;
	}
	
	.modal-step.step3 .checkbox:nth-child(1),
	.modal-step.step3 .checkbox:nth-child(2) {
		margin-bottom: 22px;
	}
	
	.modal-group-inputs {
		-webkit-flex-direction: column;
				flex-direction: column;
	}
	
	.modal-input {
		margin: 0 0 28px;
		width: 100%;
	}
	
	.modal-container {
		max-width: 270px;
		-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
	}
	
	.modal-container .checkbox {
		width: 120px;
	}
	
	.modal-container .checkbox:nth-child(1),
	.modal-container .checkbox:nth-child(2) {
		margin-bottom: 29px;
	}
	
	.modal-container .checkbox:nth-child(2n) {
		margin-right: 0;
	}
	
	.modal-container1 {
		max-width: 440px;
		-webkit-justify-content: space-between;
				justify-content: space-between;
	}
	
	.modal-container1 .checkbox {
		margin: 0 0 29px;
		width: 158px;
	}
	
	.modal-container1 .checkbox:last-child {
		margin: 0;
	}
} /*750*/

@media screen and (max-width: 480px) {
	h2 {
		font-size: 23px;
	}
	
	.description {
		font-size: 15px;
		line-height: 1.3;
		letter-spacing: -0.01em;
	}
	
	.statistics-item-value {
		margin-bottom: 6px;
		font-size: 23px;
	}
	
	.statistics-item-label {
		font-size: 15px;
		line-height: 1.1;
	}
	
	.select {
		margin-bottom: 40px;
		display: block;
		position: relative;
		width: 100%;
		height: 60px;
		background: #2A2E67;
		font-size: 20px;
		text-transform: uppercase;
		font-family: 'TitilliumWeb-SemiBold';
	}

	.select-selected {
		height: 100%;
		padding: 0 64px 0 20px;
		white-space: nowrap;
		overflow: hidden;
		cursor: pointer;
		color: #fff;
	}

	.select-icon {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
		right: 22px;
	}

	.select-options {
		display: none;
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		max-height: 360px;
		overflow-y: auto;
		background-color: #fff;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	}

	.select-options-item {
		display: block;
		padding: 20px;
		cursor: pointer;
	}

	.select-options-item:hover {
		background-color: #f5f5f5;
	}
	
	.header-nav {
		display: none;
	}
	
	.header-burger {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
				flex-direction: column;
		-webkit-justify-content: center;
				justify-content: center;
		-webkit-align-items: center;
				align-items: center;
		width: 40px;
		height: 40px;
		color: #fff;
		background: #142049;
		font-size: 7px;
		letter-spacing: -0.02em;
	}

	.header-burger-lines {
		margin-bottom: 3px;
	}
	
	.home1-content {
		padding-top: 67px;
	}
	
	.home1-title {
		margin-bottom: 18px;
		font-size: 37px;
		line-height: 1.1;
	}
	
	.home1 .description {
		margin-bottom: 27px;
	}
	
	.home1-action {
		margin-bottom: 74px;
	}
	
	.home1-decor {
		width: 368px;
		height: 552px;
	}

	.tel {
		top: 481px;
		right: 15px;
		width: 59px;
		height: 59px;
	}

	.tel span {
		-webkit-transform: translate(-4px, -50%);
				transform: translate(-4px, -50%);
		height: 59px;
	}

	.tel:hover span {
		width: 180px;
		font-size: 16px;
	}
	
	.home2 .container {
		max-width: 231px;
	}
	
	.home2-title {
		margin-bottom: 22px;
	}

	.home2 .description {
		margin-bottom: 26px;
	}
	
	.home4-title {
		max-width: 260px;
	}
	
	.home4-switch {
		display: none;
	}
	
	.home4-wrap-img {
		height: 320px;
	}
	
	.home4-wrap-img img {
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
		width: 100vw;
		max-width: none;
	}

	.home4-checkAll {
		display: none;
	}
	
	.home4-service-title {
		font-size: 16px;
	}
	
	.home5 {
		padding-bottom: 100px;
	}
	
	.home5-title {
		margin-bottom: 18px;
	}
	
	.home5-img {
		margin-bottom: 38px;
		height: 320px;
		position: relative;
	}
	
	.home5-img img {
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
		width: 100vw;
		max-width: none;
	}
	
	.home5 .statistics {
		-webkit-justify-content: flex-end;
				justify-content: flex-end;
	}
	
	.home5 .statistics-item:first-child {
		margin-right: 19px;
		max-width: 86px;
	}
	
	.home5 .statistics-item:last-child {
		max-width: 111px;
	}
	
	.home6 {
		padding: 90px 0 100px;
	}
	
	.home6-title {
		margin-bottom: 32px;
	}
	
	.home6-description {
		margin-bottom: 17px;
		font-size: 16px;
	}
	
	.contacts {
		padding: 70px 0 96px;
	}
	
	.contacts-head {
		margin-bottom: 95px;
	}
	
	.contacts-list-item {
		margin-bottom: 10px;
	}
	
	.contacts-link {
		font-size: 30px;
	}
	
	.contacts-img {
		margin-bottom: 33px;
	}
	
	.contacts-subtitle {
		margin-bottom: 19px;
	}
	
	.contacts .statistics-item:first-child {
		margin-right: 19px;
		max-width: 86px;
	}
	
	.contacts .statistics-item:last-child {
		max-width: 111px;
	}
	
	.faq-section {
		padding: 70px 0 94px;
	}
	
	.faq-section-title {
		margin-bottom: 31px;
		font-size: 37px;
	}
	
	.faq-question {
		font-size: 23px;
	}
	
	.faq-question-icon {
		margin-left: 15px;
		width: 44px;
		height: 44px;
	}
	
	.faq-question-icon::before {
		width: 12px;
		height: 2px;
	}

	.faq-question-icon::after {
		width: 2px;
		height: 12px;
	}
	
	.faq-answer {
		font-size: 15px;
		line-height: 1.4;
	}
	
	.portfolio {
		padding: 70px 0 100px;
	}
	
	.portfolio-title {
		margin-bottom: 30px;
		font-size: 33px;
	}
	
	.portfolio-wrap-switch {
		margin-bottom: 17px;
	}
	
	.portfolio-switch {
		display: none;
	}
	
	.tab1 .grid-item1 {
		margin: 0;
	}
	
	.tab1 .grid-item2 {
		display: none;
	}

	.tab1 .grid-row2 {
		order: 3;
	}
	
	.tab1 .grid-row3 {
		display: flex;
		order: 3;
	}
	
	.tab1 .grid-item3 {
		margin: 0;
		width: 100%;
	}
	
	.tab1 .grid-item3 img {
		width: 100%;
	}

	.tab1 .grid-item4 {
		display: none;
	}

	.grid-row5 {
		display: flex;
	}

	.tab2 .grid-row {
		flex-direction: column;
	}

	.tab2 .grid-item {
		margin: 0 0 10px 0;
	}

	.tab2 .grid-item:last-child {
		margin: 0;
	}
	
	.tab2 .grid-item,
	.tab2 .grid-item img {
		width: 100%;
	}

	.tab2 .grid-row2,
	.tab2 .grid-item2 {
		display: none;
	}
	
	.tab3 .grid-row2 {
		display: none;
	}
	
	.tab3 .grid-row3 {
		display: block;
	}
	
	.tab3 .grid-item,
	.tab3 .grid-item img {
		width: 100%;
	}
	
	.modal {
		width: 100vw;
		padding: 92px 20px 85px;
	}
	
	.modal-title {
		margin-bottom: 31px;
		font-size: 30px;
	}
	
	.modal-step.step6 .modal-title {
		font-size: 27px;
	}
	
	.modal-container1 {
		max-width: 300px;
	}
	
	.modal-container1 .checkbox {
		width: 126px;
	}
	
	.modal-container1 .checkbox:nth-child(1),
	.modal-container1 .checkbox:nth-child(2) {
		margin-bottom: 22px;
	}

	.checkbox-input {
		width: 24px;
		height: 24px;
	}

	.checkbox-label {
		margin-left: 10px;
		font-size: 16px;
	}
} /*480*/

@media screen and (max-width: 440px) {
	.btn,
	.btn2,
	.btn3,
	.btn4 {
		height: 56px;
		padding: 0 25px;
		font-size: 16px;
	}
	
	.home1-link {
		margin-left: 25px;
		height: 56px;
		font-size: 16px;
	}
	
	.statistics {
		max-width: 295px;
	}
	
	.statistics-item {
		-webkit-flex-shrink: 0;
				flex-shrink: 0;
	}
	
	.statistics-item:first-child {
		max-width: 102px;
	}
	
	.statistics-item:last-child {
		max-width: 144px;
	}
	
	.select {
		height: 56px;
		font-size: 16px;
	}
	
	.home6 .btn2,
	.home6 .btn3 {
		width: 168px;
	}
	
	.contacts-title {
		margin-bottom: 28px;
		font-size: 23px;
	}
	
	.modal .btn {
		-webkit-flex-grow: 1;
				flex-grow: 1;
	}
} /*440*/

@media screen and (max-width: 375px) {
	.wrap {
		padding: 0 11px;
	}
	
	.home1 .btn,
	.home1-link {
		height: 55px;
		font-size: 15px;
	}
	
	.modal {
		padding: 80px 11px 82px;
	}
} /*375*/

@media screen and (max-height: 690px) and (min-width: 481px) {
	.tel {
		top: auto;
		bottom: 30px;
	}
} /*690*/

@media screen and (max-height: 580px) {
	.tel {
		top: auto;
		bottom: 20px;
	}
}