
/*-------- DEFAULT --------*/

 html
	{
	height: 100%;
	scroll-behavior: smooth;
	}

 html * 
	{
	box-sizing: border-box;
	max-height: 20000px;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: none;
	}

 body
	{
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 0;
	background-color: #051527;
	overflow-x: auto;
	overflow-y: scroll;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #fff;
	}

 .outer
	{
	min-width: 320px;
	padding: 0 40px;
	scroll-margin-top: 110px;
	}

 .wrapper
	{
	margin: 0 auto;
	width: 100%;
	max-width: 1320px;
	height: 100%;
	}

 section
	{
	margin: 100px 0;
	}

 a
	{
	font: inherit;
	color: #888888;
	text-decoration: none;
	}

 img
	{
	width: auto;
	height: auto;
	border: none;
	}

 h2
	{
	margin: 0 0 50px 0;
	font-size: 54px;
	text-align: left;
	}

 .section-label
	{
	position: relative;
	display: inline-flex;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #E8200C;
	letter-spacing: 5px;
	align-items: center;
	}
 .section-label:before
	{
	content: '';
	margin-right: 15px;
	display: inline-block;
	width: 30px;
	border-top: 2px solid #E8200C;
	}

 .btn
	{
	display: inline-block;
	padding: 15px 20px;
	min-width: 100px;
	border: none;
	font: inherit;
	*background: #11294C;
	background: #112955;
	border-radius: 4px;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	outline: none;
	user-select: none;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	}
 .btn:hover
	{
	background: #2266bb;
	}

 .btn.primary
	{
	background: #E8200C;
	}
 .btn.primary:hover
	{
	background: #99200C;
	}

 .btn.secondary
	{
	background: RGBA(100,150,250, 0.2);
	}
 .btn.secondary:hover
	{
	*background: RGBA(200,200,200, 0.4);
	background: #11294CBB;
	}


/*-------- HEADER --------*/

 header
	{
	position: fixed;
	top:0; left:0; right:0;
	z-index: 100;
	}

 header .wrapper
	{
	max-width: 1400px;
	border-bottom: 5px solid RGBA(255,255,255, 0.18);
	border-radius: 0 0 20px 20px;
	}

 header .cols
	{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #11294C;
	*background: RGBA(255,255,255, 0.85);
	border-radius: 0 0 16px 16px;
	padding: 16px 30px;
	}

 header .cols > div
	{
	display: flex;
	align-items: center;
	}

 header .logo img
	{
	display: block;
	*width: 274px;
	}

 header .menu
	{
	margin-left: 40px;
	}

 header .menu a
	{
	display: inline-block;
	margin-right: 30px;
	padding: 5px 9px;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	transition: opacity 0.3s ease;
	}
 header .menu a:hover
	{
	*color: #2266cc;
	opacity: 0.7;
	text-decoration: underline;
	}

 header .langs
	{
	margin: 0 40px;
	white-space: nowrap;
	}

 header .langs span
	{
	margin: 0 3px;
	color: #fff;
	opacity: 0.5;
	}

 header .langs .lang
	{
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	}
 header .langs .lang:hover
	{
	*color: #2266cc;
	opacity: 0.75;
	text-decoration: underline;
	}
 header .langs .lang.active
	{
	opacity: 1;
	font-weight: 700;
	}

 header .btn
	{
	padding: 10px 20px;
	border-radius: 7px;
	font-size: 15px;
	background: #2266aa;
	}
 header .btn:hover
	{
	background: #4499ff;
	}

 header .phone
	{
	display: flex;
	align-items: center;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	}

 header .phone svg
	{
	margin-right: 7px;
	width: 18px;
	fill: #11294C;
	fill: #E8200C;
	}


/*-------- TOP --------*/

 #top
	{
	position: relative;
	display: flex;
	min-height: 84vh;
	*background: url('images/hero-image.jpg') center top no-repeat;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	align-items: center;
	}
 #top:after
	{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, RGBA(0,0,0, 0.4) 30%, RGBA(0,0,0, 0));
	z-index: 1;
	}

@media (min-width: 601px) 
 { 
 #top
	{
	background-image: url('images/hero-image.jpg');
	}
 }
@media (max-width: 600px) 
 { 
 #top
	{
	background-image: url('images/hero-image-mob.jpg');
	}
 }

 #top .wrapper
	{
	padding: 100px 0;
	}

 #top .content
	{
	position: relative;
	max-width: 700px;
	z-index: 10;
	}

 #top .worktime
	{
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #fff;
	line-height: 1;
	}

 #top .worktime .line
	{
	display: inline-block;
	width: 40px;
	border-top: 2px solid #fff;
	}

 #top .worktime .pulse-dot
	{
	margin: 0 10px;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #E8200C;
	flex-shrink: 0;
	animation: pulse 1.4s ease-in-out infinite;
	}

 #top .content h1
	{
	margin: 20px 0;
	font-size: 88px;
	color: #fff;
	line-height: 1;
	}
 #top .content h1 span
	{
	display: block;
	color: #E8200C;
	}

 #top .content p
	{
	margin: 0;
	max-width: 520px;
	font-size: 18px;
	color: #fff;
	line-height: 1.6;
	}

 #top .buttons
	{
	display: flex;
	margin-top: 30px;
	gap: 15px;
	}

 @keyframes pulse
	{
	0%, 100% { box-shadow: 0 0 0 0 rgba(232, 32, 12, .7); }
	50% { box-shadow: 0 0 0 10px rgba(232, 32, 12, 0); }
	}


/*-------- STATS --------*/

 #stats
	{
	margin-top: -70px;
	position: relative;
	z-index: 10;
	}

 #stats .wrapper
	{
	display: flex;
	*align-items: center;
	align-items: stretch;
	justify-content: space-between;
	}

 #stats .stat
	{
	flex: 0 0 32%;
	padding: 40px 10px;
	background: #112955;
	*background: linear-gradient(155deg, #11294C 30%, #11295F);
	background: linear-gradient(155deg, #11294C 30%, #ff0000);
	border-radius: 16px;
	color: #fff;
	text-align: center;
	}

 #stats .num
	{
	margin-bottom: 3px;
	font-size: 28px;
	font-weight: 700;
	}

 #stats .num span
	{
	color: #E8200C;
	}


/*-------- MARQUEE --------*/

 .marquee
	{
	margin: 30px 0;
	overflow: hidden;
	white-space: nowrap;
	}

 .marquee .content
	{
	display: inline-block;
	animation: run-string 50s linear infinite;
	}

 .marquee span
	{
	position: relative;
	margin: 0 40px;
	font-size: 24px;
	font-weight: 700;
	}
 .marquee span:before
	{
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -3px;
	left: -40px;
	width: 5px;	
	height: 5px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.4;
	}

 @keyframes run-string
	{
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-100%, 0, 0); }
	}


/*-------- SERVICES --------*/

 #services .grid
	{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	}

 #services .item
	{
	padding: 40px 30px;
	background: #112955;
	background: linear-gradient(155deg, #11294C 30%, #21496F);
	border-radius: 16px;
	color: #fff;
	transition: all 0.2s ease;
	}

 #services h3
	{
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	text-align: left;
	}

 #services p
	{
	margin: 20px 0;
	font-size: 15px;
	line-height: 1.5;
	}

 #services .time
	{
	display: inline-block;
	padding: 10px 20px;
	background: RGBA(255,255,255, 0.2);
	font-size: 13px;
	border-radius: 5px;
	transition: background 0.3s ease;
	}

 #services .item:hover
	{
	transform: translateY(-10px);
	box-shadow: 0 4px 14px -5px RGBA(150,200,255, 0.4);
	}

 #services .item:hover .time
	{
	background: #E8200C;
	}


/*-------- ABOUT --------*/

 #about .cols
	{
	display: flex;
	justify-content: space-between;
	gap: 80px;
	}

 #about .col
	{
	flex: 1;
	}

 #about .left p
	{
	margin: 0;
	font-size: 17px;
	line-height: 1.5;
	}

 #about ul
	{
	display: block;
	margin: 40px 0 0 0;
	padding: 0;
	}

 #about li
	{
	display: flex;
	margin: 20px 0;
	padding: 0;
	font-size: 17px;
	line-height: 1.5;
	align-items: center;
	color: #d0d2d4;
	}
 #about li:before
	{
	content: '';
	margin-right: 20px;
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url('images/check.svg') center center no-repeat;
	background-size: 17px auto;
	background-color: #11294C;
	border-radius: 50%;
	flex-shrink: 0;
	}

 #about li:nth-child(2):before
	{
	background-color: #142E52;
	}
 #about li:nth-child(3):before
	{
	background-color: #173458;
	}
 #about li:nth-child(4):before
	{
	background-color: #1B3D62;
	}
 #about li:nth-child(5):before
	{
	background-color: #1F466C;
	}

 #about .grid
	{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
	}

 #about .item
	{
	min-width: 0;
	padding: 30px 30px;
	background: #11294C;
	background: linear-gradient(155deg, #11294C 30%, #21496F);
	border-radius: 16px;
	color: #fff;
	transition: all 0.2s ease;
	}

 #about .num
	{
	font-size: 54px;
	font-weight: 700;
	text-align: left;
	color: #E8200C;
	}

 #about p
	{
	margin: 0;
	margin-top: 6px;
	font-size: 15px;
	line-height: 1.5;
	}


/*-------- STEPS --------*/

 #steps
	{
	background: RGBA(17,41,76, 0.3);
	}

 #steps .wrapper
	{
	padding: 60px 0;
	}

 #steps .step
	{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 24%;
	padding: 0 20px;
	box-sizing: border-box;
	text-align: center;
	letter-spacing: normal;
	}

 #steps .step .icon
	{
	position: relative;
	display: inline-flex;
	margin: 10px 0;
	width: 78px;
	height: 78px;
	line-height: 78px;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	justify-content: center;
	align-items: center;
	*background: linear-gradient(155deg, #11294C 30%, #21496F);
	background: #35404F;
	*background: #11294C;
	border: 5px solid #081A32;
	border-radius: 50%;
	z-index: 10;
	transition: background-color 0.2s ease;
	}
 #steps .step:hover .icon
	{
	background: #E6232A;
	}

 #steps .steps:not(:hover) .step:first-child .icon
	{
	background: #E6232A;
	}

 #steps .step svg
	{
	width: 28px;
	fill: #fff;
	}
 #steps .step:first-child svg
	{
	width: 24px;
	}

 #steps .step .n
	{
	display: block;
	font-size: 15px;
	color: #fff;
	opacity: 0.65;
	}

 #steps .step .title
	{
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	}

 #steps .step .text
	{
	display: block;
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.65;
	}

 #steps .step .line
	{
	position: absolute;
	top: 66px;
	right: 50%;
	display: inline-block;
	width: 100%;
	height: 2px;
	border-top: 2px dashed #E6232A;
	}


/*-------- CONTACTS --------*/

 #contacts h2
	{
	margin-bottom: 20px;
	}

 #contacts .text
	{
	font-size: 17px;
	line-height: 1.6;
	opacity: 0.8;
	}

 #contacts .cols
	{
	display: flex;
	margin-top: 30px;
	justify-content: space-between;
	align-items: center;
	}

 #contacts .contacts
	{
	width: 36%;
	}

 #contacts .contacts p
	{ 
	position: relative;
	margin: 0;
	padding: 24px 0 24px 60px;
	border-bottom: 1px solid RGBA(255,255,255, 0.2);
	}

 #contacts .contacts .icon
	{ 
	position: absolute;
	top: 34px;
	left: 5px;
	}

 #contacts .contacts .icon svg
	{ 
	width: 24px;
	fill: #E6232A;
	}

 #contacts .contacts .label
	{ 
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	}

 #contacts .contacts .data
	{ 
	display: block;
	margin-top: 6px;
	font-size: 16px;
	color: #fff;
	opacity: 0.65;
	}

 #contacts .social
	{
	margin-top: 20px;
	display: flex;
	gap: 20px;
	*padding-left: 5px !important;
	*border: none !important;
	}

 #contacts .social a
	{ 
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 6px;
	background: #0C243a;
	color: #fff;
	*flex: 1;
	}
 #contacts .social .whatsapp:hover
	{ 
	background: #25D366;
	}
 #contacts .social .viber:hover
	{ 
	background: #7360F2;
	}
 #contacts .social .telegram:hover
	{ 
	background: #29B6F6;
	}

 #contacts .social svg
	{ 
	margin-right: 10px;
	}

 #contacts .form
	{
	width: 57%;
	}

 #contacts .form .err-msg
	{
	display: none;
	color: #F45048;
	}

 #contacts form p
	{ 
	margin: 20px 0;
	}

 #contacts .field
	{
	width: 100%;
	padding: 14px 20px;
	*background-color: RGBA(240,245,255, 0.04);
	background-color: #0c1c2f;
	border: 1px solid RGBA(255,255,255, 0.14);
	border-radius: 6px;
	font: inherit;
	color: #fff;
	outline: none;
	}
 #contacts .field:focus
	{
	background: #051527;
	border: 1px solid #E6232A;
	}
 #contacts .field.not-valid
	{
	border: 1px solid #F45048;
	}

 #contacts .field::placeholder
	{
	color: #ffffff;
	opacity: 0.3;
	}
 #contacts .field:-webkit-autofill
	{
	*border: 1px solid RGBA(255,255,255, 0.14);
	*box-shadow: 0 0 0 30px #051527 inset !important;
	*color: #fff;
	}

 #contacts .flex
	{
	display: flex;
	gap: 20px;
	}

 #contacts .flex .field
	{
	flex: 1;
	}

 #contacts .notice
	{
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	opacity: 0.5;
	}

 #contacts .btn
	{
	min-width: 200px;
	}

 #contacts .response,
 #contacts .response h2
	{
	text-align: center;
	}


/*-------- BOTTOM --------*/

 #bottom
	{
	margin-bottom: 0;
	background: RGBA(17,41,76, 0.3);
	}

 #bottom  .wrapper
	{
	padding: 100px 0;
	text-align: center;
	}

 #bottom h2
	{
	margin: 0;
	text-align: center;
	}

 #bottom .subtitle
	{
	margin: 16px 0;
	font-size: 36px;
	font-weight: 600;
	color: #E6232A;
	}

 #bottom .info
	{
	*margin: 5px 0;
	opacity: 0.65;
	}

 #bottom .phone
	{
	display: inline-block;
	margin: 30px 0;
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	transition: color 0.3s ease;
	}
 #bottom .phone:hover
	{
	color: #E6232A;
	}

 #bottom .chips
	{
	margin-top: 20px;
	}

 #bottom .chip
	{
	display: inline-block;
	margin: 0 10px;
	padding: 12px 24px;
	background: RGBA(255,255,255, 0.06);
	border: 1px solid RGBA(255,255,255, 0.1);
	border-radius: 30px;
	font-size: 14px;
	font-weight: 700;
	}


/*-------- FOOTER --------*/

 footer
	{
	border-top: 1px solid RGBA(255,255,255, 0.14);
	}

 footer .wrapper
	{
	display: flex;
	padding: 26px 0;
	justify-content: space-between;
	}

 footer .website
	{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
	}
 footer .website b
	{
	color: #E6232A;
	}

 footer .copyright
	{
	font-size: 15px;
	opacity: 0.65;
	}

 footer .phone
	{
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	}
 footer .phone:hover
	{
	text-decoration: underline;
	}


/*-------- CONTACTS --------*/

 #fixed-contacts
	{
	position: fixed;
	*margin-top: -85px;
	*top: 50%;
	right: 20px;
	bottom: 65px;
	width: 40px;
	z-index: 200;
	}

 #fixed-contacts a
	{
	display: block;
	margin: 10px 0;
	width: 100%;
	}

 #fixed-contacts svg
	{
	width: 100%;
	height: auto;
	}

 #fixed-contacts .telegram
	{
	width: 36px;
	}


/*-------- MOBILE --------*/

@media (max-width: 980px) 
 { 
 .outer
	{
	padding: 0 30px;
	}

 section
	{
	margin: 60px 0;
	}

 h2
	{
	margin-bottom: 40px;
	font-size: 44px;
	}
 }

@media (max-width: 768px) 
 {
 .outer
	{
	padding: 0 20px;
	}

 section
	{
	margin: 45px 0;
	}

 h2
	{
	margin-bottom: 30px;
	font-size: 34px;
	}
 }

@media (max-width: 480px) 
 {
 section
	{
	margin: 30px 0;
	}

 .section-label
	{
	margin-bottom: 8px;
	font-size: 9px;
	letter-spacing: 3px;
	}

 h2
	{
	margin-bottom: 20px;
	font-size: 24px;
	}

 .btn
	{
	padding: 13px 16px;
	font-size: 14px;
	}
 }

@media (max-width: 360px) 
 {
 .outer
	{
	padding: 0 15px;
	}
 }


/*-------- MOBILE HEADER --------*/

@media (max-width: 1200px) 
 { 
 header .cols
	{
	padding-bottom: 48px;
	}

 header .menu
	{
	position: absolute;
	left: 32px;
	bottom: 17px;
	margin: 0;
	}

 header .menu a
	{
	padding: 0;
	}
 }

@media (max-width: 768px) 
 {
 header .cols
	{
	padding: 16px 20px 50px 20px;
	}

 header .logo img
	{
	width: 160px;
	}

 header .btn
	{
	display: none;
	}

 header .phone
	{
	font-size: 14px;
	}

 header .langs
	{
	margin: 0 0 0 20px;
	}

 header .langs .lang
	{
	font-size: 14px;
	}

 header .menu
	{
	left: 22px;
	}
 }

@media (max-width: 480px) 
 {
 header.outer
	{
	padding: 0 10px;
	}

 header .phone
	{
	display: none;
	}

 header .menu a
	{
	margin-right: 20px;
	font-size: 14px;
	}

 header .menu a:last-child
	{
	margin-right: 0;
	}
 }


/*-------- TOP MOBILE --------*/

@media (max-width: 1200px) 
 {
 #top .wrapper
	{
	padding-top: 130px;
	}

 #top .content h1
	{
	font-size: 7.3vw;
	}
 }

@media (max-width: 980px) 
 {
 #top .content p
	{
	font-size: 16px;
	line-height: 1.5;
	}

 #stats .stat
	{
	flex-basis: 31%;
	padding: 30px 10px;
	}

 #stats .num
	{
	font-size: 24px;
	}

 #stats .label
	{
	font-size: 15px;
	}

 .marquee
	{
	margin: 20px 0;
	}

 .marquee span
	{
	margin: 0 30px;
	font-size: 20px;
	}
 .marquee span:before
	{
	left: -30px;
	}
 }

@media (max-width: 480px) 
 {
 #top .wrapper
	{
	padding-top: 110px;
	padding-bottom: 60px;
	}

 #top .worktime
	{
	font-size: 13px;
	line-height: 1.3;
	}

 #top .worktime .line
	{
	display: none;
	}

 #top .content h1
	{
	margin: 15px 0;
	font-size: 38px;
	}

 #top .content p
	{
	font-size: 14px;
	line-height: 1.4;
	}

 #top .buttons
	{
	margin-top: 20px;
	gap: 8px;
	}

 #stats
	{
	margin-top: -40px;
	}

 #stats .stat
	{
	padding: 16px 10px;
	border-radius: 10px;
	}

 #stats .num
	{
	font-size: 18px;
	}

 #stats .label
	{
	font-size: 13px;
	}

 .marquee
	{
	margin: 14px 0;
	}

 .marquee span
	{
	margin: 0 20px;
	font-size: 17px;
	}
 .marquee span:before
	{
	left: -20px;
	}
 }

@media (max-height: 560px) 
 {
 #top
	{
	min-height: 100vh;
	}

 #top .wrapper
	{
	padding-bottom: 30px;
	}

 #stats
	{
	margin-top: 20px;
	}
 }


/*-------- SERVICES MOBILE --------*/

@media (max-width: 980px) 
 {
 #services .grid
	{
	grid-template-columns: repeat(2, 1fr);
	}
 }

@media (max-width: 768px) 
 {
 #services .grid
	{
	grid-gap: 20px;
	}

 #services .item
	{
	padding: 20px 20px;
	border-radius: 12px;
	}
 }

@media (max-width: 480px) 
 {
 #services .grid
	{
	grid-gap: 14px;
	}

 #services .item
	{
	padding: 20px 10px;
	}

 #services h3
	{
	font-size: 18px;
	}

 #services p
	{
	margin: 15px 0;
	font-size: 14px;
	line-height: 1.4;
	}
 }

@media (max-width: 400px) 
 {
 #services .grid
	{
	grid-template-columns: repeat(1, 1fr);
	}

 #services .item
	{
	padding: 20px 20px;
	}
 }


/*-------- ABOUT MOBILE --------*/

@media (max-width: 980px) 
 {
 #about .cols
	{
	gap: 30px;
	}

 #about .left p
	{
	font-size: 15px;
	}

 #about ul
	{
	margin-top: 24px;
	}

 #about li
	{
	margin: 14px 0;
	font-size: 15px;
	}
 }

@media (max-width: 768px) 
 {
 #about .cols
	{
	flex-direction: column;
	}

 #about .grid
	{
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 15px;
	}

 #about .item
	{
	padding: 15px 10px;
	text-align: center;
	}

 #about .num
	{
	font-size: 40px;
	text-align: center;
	}
 }

@media (max-width: 600px) 
 {
 #about .grid
	{
	grid-gap: 10px;
	}

 #about .num
	{
	font-size: 30px;
	}

 #about p
	{
	margin-top: 3px;
	font-size: 14px;
	line-height: 1.4;
	}
 }

@media (max-width: 480px) 
 {
 #about .cols
	{
	gap: 18px;
	}

 #about li:before
	{
	margin-right: 14px;
	width: 24px;
	height: 24px;
	background-size: 12px auto;
	}

 #about .grid
	{
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 15px;
	}

 #about .item
	{
	padding: 25px 20px;
	}
 }


/*-------- MOBILE STEPS --------*/

@media (max-width: 980px) 
 {
 #steps h3
	{
	margin-bottom: 35px;
	}

 #steps .steps
	{
	margin: 0 auto;
	max-width: 350px;
	}

 #steps .step
	{
	display: block;
	width: 100%;
	padding: 30px 0;
	padding-left: 90px;
	text-align: left;
	}

 #steps .step .title
	{
	margin: 8px 0;
	}

 #steps .step .text
	{
	margin: 0px;
	}

 #steps .step .icon
	{
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -30px;
	border-width: 2px;
	width: 60px;
	height: 60px;
	*line-height: 46px;
	font-size: 15px;
	}

 #steps .step .line
	{
	position: absolute;
	top: -45px;
	left: 30px;
	width: 3px;
	height: 80px;
	border: none;
	border-left: 3px dotted #E6232A;
	}
 }

@media (max-width: 480px) 
 {
 #steps .wrapper
	{
	padding: 30px 0;
	}

 #steps h3
	{
	margin-bottom: 20px;
	}

 #steps .step
	{
	padding-top: 20px;
	padding-bottom: 20px;
	}

 #steps .step .text
	{
	font-size: 14px;
	line-height: 1.5;
	}
 }


/*-------- CONTACTS MOBILE --------*/

@media (max-width: 980px) 
 {
 #contacts
	{
	max-width: 700px;
	}

 #contacts .text
	{
	margin: 0;
	font-size: 18px;
	}

 #contacts .cols
	{
	margin: 0 auto;
	*display: block;
	flex-direction: column-reverse;
	max-width: 500px;
	}

 #contacts .cols > div
	{
	margin-top: 0;
	width: 100%;
	max-width: 100%;
	}

 #contacts .contacts p
	{
	margin: 0;
	padding-left: 52px;
	}

 #contacts .contacts .icon
	{
	width: 40px;
	height: 40px;
	line-height: 40px;
	}

 #contacts .contacts .label
	{
	font-size: 16px;
	}
 }

@media (max-width: 480px) 
 {
 #contacts .text
	{
	font-size: 14px;
	line-height: 1.5;
	}

 #contacts .text br
	{
	display: none;
	}

 #contacts .contacts
	{
	padding: 0;
	background: none;
	box-shadow: none;
	}

 #contacts form p
	{ 
	margin: 10px 0;
	}

 #contacts .field
	{
	padding: 11px 16px;
	font-size: 14px;
	}

 #contacts .notice
	{
	font-size: 14px;
	}

 #contacts .social
	{
	gap: 8px;
	}

 #contacts .social a
	{ 
	padding: 8px 9px;
	font-size: 13px;
	}

 #contacts .social svg
	{ 
	margin-right: 5px;
	width: 20px;
	}
 }

@media (max-width: 360px) 
 {
 #contacts .flex
	{
	display: block;
	margin: 0;
	}

 #contacts .flex .field
	{
	margin-top: 10px;
	max-width: 100%;
	}

 #contacts .btn
	{
	width: 100%;
	text-align: center;
	border-radius: 30px;
	}
 }


/*-------- BOTTOM MOBILE --------*/

@media (max-width: 980px) 
 {
 #bottom  .wrapper
	{
	padding: 60px 0;
	}

 #bottom .subtitle
	{
	margin: 12px 0;
	font-size: 26px;
	}

 #bottom .info
	{
	font-size: 15px;
	}

 #bottom .phone
	{
	margin: 20px 0;
	font-size: 36px;
	}

 #bottom .chip
	{
	padding: 10px 24px;
	font-size: 12px;
	font-weight: 400;
	}
 }

@media (max-width: 768px) 
 {
 #bottom .chips i
	{
	display: none;
	}

 #bottom .chip
	{
	margin: 5px;
	}
 }

@media (max-width: 480px) 
 {
 #bottom  .wrapper
	{
	padding: 30px 0;
	}

 #bottom .subtitle
	{
	margin: 12px 0;
	font-size: 20px;
	}

 #bottom .info
	{
	font-size: 14px;
	}

 #bottom .phone
	{
	margin: 10px 0;
	font-size: 26px;
	}

 #bottom .chip
	{
	width: 250px;
	}
 }


/*-------- FOOTER MOBILE --------*/

@media (max-width: 600px) 
 {
 footer .wrapper
	{
	display: block;
	padding: 20px 0;
	text-align: center;
	}

 footer .copyright
	{
	display: block;
	margin-top: 12px;
	font-size: 14px;
	}

 footer .phone
	{
	display: none;
	}
 }

/*-------- CONTACTS MOBILE --------*/

@media (max-width: 600px) 
 {
 #fixed-contacts
	{
	right: 8px;
	bottom: 4px;
	width: 22px;
	}

 #fixed-contacts a
	{
	margin: 3px 0;
	}

 #fixed-contacts .telegram
	{
	width: 20px;
	}
 }
