/*
Theme name: Transfer Goo
Description: Описание
Author: Aleksandrlao
Author URI: https://alao.cfd
*/


:root {
	--white: #fff;
	--black: #000;
	--black2: #383838;
	--l-blue: #2351F0;
	--blue: #043577;
	--d-blue: #001532;
	--l-grey: #F2F2F2;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	background: var(--white);
	color: var(--black);
	font: 0.8rem/1.5 'Montserrat', Arial, sans-serif;
}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1320px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input,
textarea,
select,
button {
	font-family: 'Montserrat', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: var(--white);
}
input::-webkit-input-placeholder {
	color: var(--white);
}
input::-moz-placeholder {
	color: var(--white);
}
input:-moz-placeholder {
	color: var(--white);
}
input:-ms-input-placeholder {
	color: var(--white);
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2,
.text h3,
.text h4,
.text h5 {
	margin-bottom: 1.2rem;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.3rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}



/* Header ----------------------------------------------------------------------------- */
.header {
	padding-top: 15px;
	padding-bottom: 20px;
	background: #b35b1d;
}
.header .container {
	align-items: center;
}
.header__logo {
	display: block;
	width: 115px;
	height: 45px;
	background: url('/new-assets/img/logo-white.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	font-size: 0;
}

.header__nav {
	flex: 1;
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
}
.header__nav ul li {
	margin: 0 16px;
	position: relative;
}
.header__nav ul li::before {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	right: -15px;
	width: 1px;
	height: 12px;
	background: var(--white);
}
.header__nav ul li:last-child::before {
	display: none;
}
.header__nav ul li a {
	display: block;
	padding: 4px;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
}
.header__nav ul li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: rgb(255, 255, 255);
	transition: all .3s ease;
}
.header__nav ul li a:hover::before {
	width: 100%;
}

.header__nav-btn {
	display: none;
	width: 30px;
	height: 30px;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--white);
	margin: 7px 0 0;
	position: relative;
}
.header__nav-btn span::before,
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 3px;
	background: var(--white);
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -7px;
}
.header__nav-btn span::after {
	bottom: -7px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}


.header__button-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}
.header__reg {
	display: block;
	padding: 6px 14px;
	border-radius: 18px;
	background: transparent;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s ease;
}
.header__reg:hover {
	background: #1E3A8A;
}
.header__login {
	display: block;
	min-height: 37px;
	padding: 6px 14px 6px 38px;
	border-radius: 18px;
	background: #1E3A8A;
	border: 1px solid #1E3A8A;
	position: relative;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s ease;
}
.header__login:hover {
	background: rgb(255, 255, 255);
	color: #1E3A8A;
}
.header__login::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	transition: all .3s ease;
}
.header__login:hover::before {
	background: #1E3A8A;
}
.header__login::after {
	content: '';
	position: absolute;
	top: 9px;
	left: 10px;
	width: 16px;
	height: 16px;
	background: #1E3A8A;
	-webkit-mask: url("i/bg-icon-user.svg") center no-repeat;
	mask: url("i/bg-icon-user.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: all .3s ease;
	z-index: 5;
}
.header__login:hover::after {
	background: rgb(255, 255, 255);
}











/* Hero ----------------------------------------------------------------------------- */
.hero {
	min-height: 660px;
	overflow: hidden;
	background: var(--blue);
	color: rgb(255, 255, 255);
}
.hero .container {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	transform: translateX(-50%);
	z-index: 10;
}
.hero__block {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}
.hero .container::after {
	display: none;
}
.hero__info {
	max-width: 480px;
}
.hero__head {
	margin-bottom: 15px;
    color: #fff;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
}
.hero__head span {
	display: block;
}
.hero__desc {
	margin-bottom: 45px;
    color: #fff;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
}
.hero__button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-width: 228px;
	min-height: 44px;
	border-radius: 5px;
	background: #1E3A8A;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	transition: all .3s ease;
}
.hero__button:hover {
	background: rgb(255, 255, 255);
	color: #1E3A8A;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}










/* Steps ----------------------------------------------------------------------------- */
.steps {
	background: #b35b1d;
	color: var(--white);
}
.steps::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #1E3A8A;
}
.steps .container {
	z-index: 10;
}
.steps__list {
	justify-content: flex-start;
}
.steps-item {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 25%;
	min-height: 240px;
	padding: 16px;
	background: #b35b1d;
	position: relative;
	z-index: 5;
}
.steps-item:nth-child(2n+2) {
	background: #1E3A8A;
}
.steps-item__ins {
	width: 100%;
	max-width: 250px;
	min-height: 80px;
	padding-left: 12px;
	position: relative;
}
.steps-item__ins::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 100%;
	min-height: 74px;
	transform: translateY(-50%);
	background: var(--white);
}
.steps-item__count {
	position: absolute;
	top: 50%;
	left: 50%;
	color: rgba(255, 255, 255, 0.07);
	font-size: 155px;
	font-weight: 800;
	line-height: 1.2;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.steps-item__title {
	margin-bottom: 4px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}
.steps-item__desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
}









/* Line ----------------------------------------------------------------------------- */
.line {
	overflow: hidden;
	background: rgb(242, 242, 242);
}
.line__info {
	width: 50%;
	margin-left: auto;
	padding: 36px 48px;
	color: rgb(56, 56, 56);
}
.line--right-img .line__info {
	margin-left: 0;
}
.line__head {
	padding-bottom: 15px;
	margin-bottom: 14px;
	position: relative;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.line__head span {
	display: block;
	max-width: 400px;
}
 .line__head::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgb(56, 56, 56);
}
.line__text >*:last-child {
	margin-bottom: 0;
}

.line__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
}
.line--right-img .line__bg {
	left: inherit;
	right: 0;
}
.line__bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}











/* service ----------------------------------------------------------------------------- */
.service {
	padding-top: 54px;
	padding-bottom: 130px;
	background: #1E3A8A url('i/bg-service.svg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: rgb(255, 255, 255);
}
.service__head {
	padding-bottom: 15px;
	margin-bottom: 14px;
	position: relative;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.service__head span {
	display: block;
	max-width: 400px;
}
.service__head::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgb(255, 255, 255);
}
.service__list {
	justify-content: flex-start;
}
.service-item {
	width: 33.3%;
}


.item-link {
	display: block;
	width: 100%;
	padding-top: 56%;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}
.item-title {
	position: absolute;
	bottom: 32px;
	left: 40px;
	max-width: 240px;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	z-index: 10;
}
.item-title span {
	display: block;
}
.item-icon {
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 32px;
	height: 32px;
	background: var(--white);
	-webkit-mask: url("i/bg-icon-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	z-index: 5;
}
.item-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .3s ease;
}
.item-link:hover .item-bg {
	transform: scale(1.1);
}
.item-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(4, 53, 119, 0.6);
	opacity: 0;
	transition: all .3s ease;
	z-index: 2;
}
.item-link:hover .item-bg::before {
	opacity: 1;
}
.item-bg img {
	position: absolute;
	top: -0.5%;
	left: -0.5%;
	width: 101%;
	height: 101%;
	object-fit: cover;
}












/* progress ----------------------------------------------------------------------------- */
.progress {
	background: rgb(0, 21, 50);
	color: rgb(255, 255, 255);
}
.progress .container {
	z-index: 10;
}
.progress::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('i/bg-progress-list.svg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	z-index: 2;
}
.progress__info {
	width: 50%;
	margin-left: auto;
	padding: 48px 64px 88px;
}
.progress__head {
	margin-bottom: 48px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.progress-item {
	margin-bottom: 20px;
}
.progress-item__head {
	padding-bottom: 9px;
	margin-bottom: 10px;
	position: relative;
	padding-right: 40px;
	border-bottom: 1px solid rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
}
.progress-item__head::before,
.progress-item__head::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 16px;
	width: 2px;
	height: 16px;
	background: rgb(255, 255, 255);
}
.progress-item__head::after {
	transform: rotate(90deg);
}
.progress-item.active .progress-item__head::before {
	opacity: 0;
}
.progress-item__body {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.progress-item.active .progress-item__body {
	max-height: 5000px;
}
.progress-item__text {
	max-width: 480px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.3;
}

.progress__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.progress__bg img {
	position: absolute;
	top: -0.5%;
	left: -0.5%;
	width: 101%;
	height: 101%;
	object-fit: cover;
}












/* Type ----------------------------------------------------------------------------- */
.type {
	padding-top: 44px;
	padding-bottom: 104px;
	background: #b35b1d url('i/bg-type.svg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: rgb(255, 255, 255);
}
.type__head {
	padding-bottom: 15px;
	margin-bottom: 14px;
	position: relative;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.type__head span {
	display: block;
	max-width: 400px;
}
.type__head::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgb(255, 255, 255);
}
.type__list {
	justify-content: flex-start;
}
.type-item {
	width: 50%;
}









/* Calc ----------------------------------------------------------------------------- */
.calc {
	border: 1px solid rgb(55, 100, 255);
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.06),4px 15px 35px 0px rgba(0, 0, 0, 0.06),16px 61px 63px 0px rgba(0, 0, 0, 0.05),36px 137px 85px 0px rgba(0, 0, 0, 0.03),65px 243px 100px 0px rgba(0, 0, 0, 0.01),101px 379px 110px 0px rgba(0, 0, 0, 0);
	background: #1E3A8A url("i/bg-calc-info.svg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.calc__info {
	width: 50%;
	padding: 80px 70px 120px 0;
}
.calc__head {
	padding-bottom: 15px;
	margin-bottom: 54px;
	position: relative;
	color: rgb(255, 255, 255);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.calc__head span {
	display: block;
	max-width: 400px;
}
.calc__head::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgb(255, 255, 255);
}
.calc__box {
	margin-bottom: 35px;
}
.calc__box-name {
	margin-bottom: 22px;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
}
.calc__start-invest {
	width: 100%;
	max-width: 194px;
}
.calc__start-invest input {
	display: block;
	width: 100%;
	height: 48px;
	border-radius: 5px;
	background: rgb(255, 255, 255);
	border: 1px solid rgb(255, 255, 255);
	padding-left: 22px;
	padding-right: 8px;
	color: rgb(0, 0, 0);
	font-size: 16px;
	font-weight: 500;
}

.calc__time {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% + 12px);
	margin-left: -6px;
	text-align: center;
}
.calc__time-item {
	width: calc(25% - 12px);
	margin: 0 6px 12px;
}
.calc__time label {
	display: block;
}
.calc__time input {
	display: none;
}
.calc__time-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 48px;
	border-radius: 5px;
	background: rgb(255, 255, 255);
	color: rgb(26, 26, 26);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
}
.calc__time input:checked + .calc__time-text {
	background: #b35b1d;
	color: rgb(255, 255, 255);
}

.calc__result {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	border-radius: 5px;
	background: #b35b1d;
	text-align: center;
}
.calc__result-item {
	width: 33.3%;
	min-height: 132px;
	padding: 22px 16px 16px;
	color: rgb(255, 255, 255);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}
.calc__result-item:nth-child(2) {
	background: rgb(2, 69, 158);
}
.calc__result-name {
	margin-bottom: 20px;
}
.calc__result-name span {
	display: block;
}
.calc__sum {
	font-size: 18px;
	font-weight: 700;
}


.calc__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
}
.calc__bg img {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}











.advantage {
	padding-top: 70px;
	padding-bottom: 128px;
	background: rgb(242, 242, 242) url("i/bg-advantage.svg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.advantage__head {
	margin-bottom: 52px;
	color: rgb(56, 56, 56);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.advantage__head span {
	display: block;
}
.advantage__list {
	justify-content: center;
}
.advantage-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 33.3%;
	min-height: 244px;
	background: #b35b1d;
	padding: 44px;
}
.advantage-item:nth-child(2n+2) {
	background: #1E3A8A;
}
.advantage-item__ins {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.advantage-item__icon {
	width: 68px;
	height: 68px;
}
.advantage-item__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.advantage-item__title {
	width: calc(100% - 90px);
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}











/* Feedback ----------------------------------------------------------------------------- */
.feedback {
	background: #b35b1d url('i/bg-finplan-form.svg') top right no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	color: rgb(255, 255, 255);
}
.feedback__info {
	width: 50%;
	margin-left: auto;
	padding: 70px 0 120px 60px;
}
.feedback__head {
	margin-bottom: 12px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}
.feedback__desc {
	max-width: 510px;
	margin-bottom: 32px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
}
.feedback-form__label {
	margin-bottom: 20px;
	position: relative;
}
.feedback-form__label input {
	display: block;
	width: 100%;
	height: 32px;
	border: none;
	border-bottom: 1px solid rgb(255, 255, 255);
	background-color: transparent;
	outline: none;
	padding-left: 4px;
	padding-right: 4px;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}
.feedback-form__label input.error {
	border-bottom-color: #c00;
}
.feedback-form__submit {
	padding-top: 16px;
	position: relative;
}
.feedback-form__submit input {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-width: 228px;
	min-height: 44px;
	border: none;
	outline: none;
	background: #1E3A8A;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	transition: all .3s ease;
	cursor: pointer;
}
.feedback-form__submit input:hover {
	background: rgb(255, 255, 255);
	color: #1E3A8A;
}

.feedback__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
}
.feedback__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}














/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 40px;
	padding-bottom: 50px;
	background: rgb(0, 29, 68) url("i/bg-footer.svg") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.footer .container {
	align-items: center;
}
.footer__logo {
	display: block;
	width: 105px;
	height: 100px;
	background: url('/new-assets/img/logo-white.png') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	font-size: 0;
}
.footer__nav ul {
	list-style: none;
}
.footer__nav ul li {
	margin-bottom: 24px;
}
.footer__nav ul li:last-child {
	margin-bottom: 0;
}
.footer__nav ul li a {
	display: block;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
}
.footer__nav ul li a:hover {
	text-decoration: underline;
}


.footer-social {
	margin-right: 12%;
}
.footer-social__item {
	display: block;
	min-height: 30px;
	padding-top: 5px;
	padding-left: 52px;
	margin-bottom: 15px;
	position: relative;
	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
}
.footer-social__item:last-child {
	margin-bottom: 0;
}
.footer-social__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	background: var(--white);
	-webkit-mask: url("i/bg-icon-tg.png") center no-repeat;
	mask: url("i/bg-icon-tg.png") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.footer-social__item--mail::before {
	-webkit-mask-image: url("i/bg-icon-mail.png");
	mask-image: url("i/bg-icon-mail.png");
}
.footer-social__item--skype::before {
	-webkit-mask-image: url("i/bg-icon-skype.png");
	mask-image: url("i/bg-icon-skype.png");
}







/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	.header__nav ul li {
		margin: 0 8px;
	}
	.header__nav ul li::before {
		right: -8px;
	}


	.hero {
		min-height: 600px;
	}


	.line__info {
		padding: 32px 40px;
	}


	.item-title {
		left: 32px;
	}


	.progress__info {
		padding: 40px 20px 64px 40px;
	}


	.calc__info {
		padding: 56px 20px 80px 0;
	}


	.advantage {
		padding-top: 40px;
		padding-bottom: 80px;
	}
	.advantage__head {
		margin-bottom: 32px;
		font-size: 24px;
	}
	.advantage-item {
		min-height: 220px;
		padding: 24px;
	}


	.feedback__info {
		padding: 40px 0 64px 20px;
	}

}














@media screen and (max-width:1050px) {

	.header__nav ul li a {
		padding: 4px 0;
		font-size: 16px;
	}

	.header__reg {
		padding: 4px;
		font-size: 16px;
	}
	.header__login {
		font-size: 16px;
	}


	.hero {
		min-height: 520px;
	}


	.steps-item__count {
		font-size: 120px;
	}


	.line__info {
		padding: 32px 0 32px 32px;
	}
	.line--right-img .line__info {
		padding: 32px 32px 32px 0;
	}


	.service {
		padding-top: 40px;
		padding-bottom: 80px;
	}
	.service-item {
		width: 50%;
	}


	.footer-social {
		margin-right: 5%;
	}

}












@media screen and (max-width:900px) {

	.header {
		z-index: 20;
	}
	.header__nav {
		flex: none;
		position: absolute;
		top: 24px;
		right: 20px;
		background: #b35b1d;
		padding: 10px;
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}
	.nav-active .header__nav {
		top: 44px;
		opacity: 1;
		pointer-events: auto;
	}
	.header__nav ul {
		display: block;
	}
	.header__nav ul li::before {
		display: none;
	}

	.header__button-wrap {
		margin-left: auto;
		margin-right: 32px;
	}

	.header__nav-btn {
		display: block;
	}


	.hero {
		min-height: 480px;
	}


	.steps-item {
		width: 50%;
	}


	.line__head {
		font-size: 22px;
	}


	.progress__info {
		width: 60%;
		padding: 40px 0 40px 20px;
	}
	.progress__bg {
		width: 40%;
	}


	.calc__info {
		width: 70%;
		padding: 48px 20px 40px 0;
	}
	.calc__bg {
		width: 30%;
	}


	.advantage-item {
		width: 50%;
		min-height: 160px;
	}
	.advantage-item:last-child {
		width: 100%;
	}


	.footer {
		padding-top: 24px;
		padding-bottom: 32px;
	}
	.footer-social {
		margin-right: 0;
	}


}












@media screen and (max-width:750px) {

	.hero {
		min-height: 440px;
	}


	.line__bg {
		width: 100%;
		height: 240px;
	}
	.line__info,
	.line--right-img .line__info {
		width: 100%;
		margin-left: 0;
		padding: 264px 0 24px;
	}


	.service-item {
		width: 100%;
	}


	.progress::before {
		width: 100%;
	}
	.progress__info {
		width: 100%;
		padding: 270px 0 30px;
	}
	.progress__bg {
		width: 100%;
		height: 250px;
		z-index: 4;
	}


	.type-item {
		width: 100%;
	}


	.calc__info {
		width: 100%;
		padding: 270px 0 30px;
	}
	.calc__head {
		padding-bottom: 12px;
		margin-bottom: 32px;
		font-size: 22px;
	}
	.calc__box-name {
		margin-bottom: 12px;
		font-size: 16px;
	}
	.calc__bg {
		width: 100%;
		height: 250px;
		z-index: 4;
	}


	.advantage__head {
		margin-bottom: 20px;
		font-size: 22px;
	}
	.advantage-item {
		width: 100%;
		min-height: 120px;
	}


	.feedback__info {
		width: 100%;
		padding: 270px 0 30px;
	}
	.feedback__bg {
		width: 100%;
		height: 250px;
		z-index: 4;
	}


	.footer__nav ul li {
		margin-bottom: 16px;
	}

	.footer-social__item {
		padding-left: 44px;
		margin-bottom: 12px;
		font-size: 16px;
	}

}












@media screen and (max-width:600px) {

	.header__button-wrap {
		margin-right: 20px;
	}


	.hero__head {
		font-size: 32px;
	}
	.hero__desc {
		margin-bottom: 24px;
		font-size: 20px;
	}


	.steps::after {
		display: none;
	}
	.steps-item {
		width: calc(100% + 2rem);
		min-height: 144px;
		margin-left: -1rem;
		margin-right: -1rem;
	}


	.type {
		padding-top: 32px;
		padding-bottom: 64px;
	}


	.footer .container {
		justify-content: center;
	}
	.footer__logo {
		margin: 0 auto 24px;
	}
	.footer__nav {
		width: 100%;
		padding-bottom: 32px;
	}
	.footer__nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		gap: 20px;
	}


}












@media screen and (max-width:450px) {

	.header__button-wrap {
		margin-right: 12px;
	}
	.header__reg {
		display: none;
	}


	.hero {
		min-height: 400px;
	}
	.hero__head {
		font-size: 30px;
	}
	.hero__desc {
		margin-bottom: 20px;
		font-size: 18px;
	}


	.line__head {
		font-size: 20px;
	}


	.service__head {
		font-size: 24px;
	}


	.item-title {
		left: 24px;
		max-width: 200px;
	}
	.item-icon {
		bottom: 40px;
		right: 24px;
		width: 28px;
		height: 28px;
	}


	.calc__time-item {
		width: calc(50% - 12px);
	}
	.calc__result-item {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		min-height: 64px;
		padding: 16px;
	}
	.calc__result-name {
		width: 55%;
		margin-bottom: 0;
		text-align: left;
	}
	.calc__sum {
		width: 45%;
		text-align: left;
	}


	.advantage-item {
		padding: 16px;
	}
	.advantage-item__icon {
		width: 48px;
		height: 48px;
	}
	.advantage-item__title {
		width: calc(100% - 64px);
		font-size: 16px;
	}


	.feedback__desc {
		margin-bottom: 20px;
		font-size: 15px;
	}


	.footer__nav ul li a {
		font-size: 16px;
	}

}












/* END ============================================================= */

