

/*
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Oswald:wght@200&family=Roboto+Mono:wght@100;200;300;400;500;600;700&family=Roboto:wght@100&display=swap');


/*
font-family: 'Montserrat', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Mono', monospace;
*/

body
{
	background-color: #fff;
	min-width: 320px;
	font-family: 'Montserrat', sans-serif;
	color: #000;
}

.no-scroll
{
	overflow:hidden;
}



.bg-shadow
{
	position: fixed;
	top: 0;
	left: -100000px;
	width: 0;
	height: 100%;
	background-color: #000;
	opacity: .5;
	z-index: 10;
}

.bg-shadow-open
{
	left: 0;
	width: 100%;
}








.whatsapp-button,
.telegram-button
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 50px;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	border-radius: 5px;
	letter-spacing: 2px;
	margin: 30px 10px 0 10px;
	transition: transform .3s;
}

.whatsapp-button:hover,
.telegram-button:hover
{
	transform: scale(1.1);
}

.whatsapp-button
{
	background-color: #00C644;
}

.telegram-button
{
	background-color: #29A4DF;
}

.whatsapp-button > i
{
	width: 20px;
	height: 20px;
	background: url(../images/whatsapp-logo.png) no-repeat center;
	background-size: contain;
	margin: 0 0 0 10px;
}

.telegram-button > i
{
	width: 20px;
	height: 20px;
	background: url(../images/telegram-logo.png) no-repeat center;
	background-size: contain;
	margin: 0 0 0 10px;
}













/*FORM*/
.feedback-form
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto 30px auto;
	max-width: 500px;
}

.feedback-form > button
{
	width: 190px;
	height: 48px;
	background-color: #FF6B6B;
	border: 2px solid #FF6B6B;
	border-radius: 10px;
	font-size: 14px;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: .3s;
	margin: 20px 5px 0 5px;
	cursor: pointer;
}

.input-container
{
	height: 50px;
	position: relative;
}

.input
{
	background-color: transparent;
	border: 2px solid #FF6B6B;
	border-radius: 10px;
	box-sizing: border-box;
	color: #000;
	font-size: 18px;
	height: 48px;
	outline: 0;
	padding: 4px 20px 0;
	width: 200px;
}

.placeholder
{
	width: 80%;
	color: #727272;
	font-family: sans-serif;
	left: 20px;
	text-align: center;
	letter-spacing: 3px;
	line-height: 15px;
	pointer-events: none;
	position: absolute;
	transform-origin: 0 50%;
	transition: transform 200ms, color 200ms;
	top: 16px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder 
{
	transform: translateY(-30px) translateX(45px) scale(0.75);
	width: auto;
	letter-spacing: 1px;
	top:20px;
}

.input:not(:placeholder-shown) ~ .placeholder > i,
.input:focus ~ .placeholder > i
{
	display: none;
}

.input:not(:placeholder-shown) ~ .placeholder
{
	color: #000;
}

.ic1
{
	margin: 20px 5px 0 5px;
}

.cut
{
	background-color: transparent;
	border-radius: 10px;
	height: 20px;
	left: 55px;
	position: absolute;
	top: -20px;
	transform: translateY(0);
	transition: transform 200ms;
	width: 88px;
}
  
.cut-short
{
	width: 50px;
}
  
input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut
{
	transform: translateY(8px);
	background-color: #FF6B6B;
}















header
{
	width: 100%;
	background-color: #000;
	padding: 15px 0;
}

header nav
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

header nav > a
{
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: .3s;
}

header nav > a:hover
{
	color: #FE4245;
}




















.menu-burger-icon
{
	display: none;
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	background-color: #000;
	opacity: .4;
	border-radius: 150px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	list-style-type: none;
	padding: 0;
	margin: 0;
	z-index: 20;
	transition: .3s;
}

.menu-burger-icon:hover
{
	opacity: 1;
}

.menu-burger-icon > li
{
	width: 60%;
	height: 2px;
	background-color: #fff;
}

.menu-burger-icon > li:nth-child(2)
{
	margin: 5px 0;
}

.first-screen-shadow
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .8;
}

























.menu-burger
{
	position: fixed;
	top: 0;
	right: -100000px;
	display: none;
	flex-direction: column;
	align-items: center;
	width: 0%;
	max-width: 480px;
	background-color: #000;
	padding: 20px 0;
	overflow: hidden;
	opacity: 0;
	transition: .3s;
	z-index: 20;
}

.menu-burger-open
{
	display: flex;
	right: 0;
	width: 100%;
	opacity: 1;
}

.menu-burger-items
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.menu-burger-item
{
	width: 130px;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
	padding: 10px 0;
	margin: 10px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}

.menu-burger-feedback
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 0 40px 0;
}

.menu-burger-feedback .whatsapp-button,
.menu-burger-feedback .telegram-button
{
	width: 130px;
	height: 35px;
	line-height: 35px;
	font-size: 10px;
}

.menu-burger-feedback .whatsapp-button > i,
.menu-burger-feedback .telegram-button > i
{
	width: 18px;
	height: 18px;
}

.menu-burger-info
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.menu-burger-phone
{
	color: #fff;
	text-decoration: none;
	margin: 0 0 20px 0;
}

.menu-burger-phone > i
{
	color: #FE4245;
	margin-right: 10px;
}

.menu-burger-address
{
	color: #fff;
	margin: 0 0 20px 0;
	text-decoration: none;
}

.menu-burger-address > i
{
	color: #FE4245;
	margin-right: 10px;
}

.menu-burger-company
{
	color: #fff;
}

.menu-burger-company > i
{
	color: #FE4245;
	margin-right: 10px;
}




.burger-items-close-button
{
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border: 4px solid #FE4245;
	border-radius: 50px;
	padding: 0;
	margin: 0 0 20px 0;
}


.burger-items-close-button > i
{
	color: #FE4245;
	font-size: 30px;
}























/*LOGO*/

.lstk-logo
{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.lstk-logo-img-fff
{
	width: 200px;
	height: 50px;
	background: url(../images/lstk-logo-fff.png) no-repeat center;
	background-size: cover;
	margin: 0 0 10px 0;
}

.lstk-logo-company-name
{
	color: #fff;;
	text-align: center;
	font-size: 20px;
	margin: 0 0 10px 0;
}

.lstk-logo-slogan
{
	color: #fff;
	max-width: 200px;
	text-align: center;
	font-size: 14px;
	margin: 0 0 0 10px;
}
















/*FOOTER*/

footer
{
	background-color: #354654;
	margin: 100px 0 0 0;
	padding: 0;;
}

.footer-main-block
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px 0 50px 0;
}

.footer-main-block .lstk-logo
{
	display: none;
}

.lstk-logo-img-fe4245
{
	width: 200px;
	height: 50px;
	background: url(../images/lstk-logo-fe4245.png) no-repeat center;
	background-size: cover;
	margin: 0 0 10px 0;
}

.footer-site-sections,
.footer-phone-mail-address
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 20px 10px;
}

.footer-site-sections > a,
.footer-phone-mail-address > a
{
	text-decoration: none;
	color: #fff;
	margin: 0 0 20px 0;
	transition: .3s;
}

.footer-phone-mail-address > a
{
	margin: 0 0 30px  0;
}

.footer-site-sections > a:hover,
.footer-phone-mail-address > a:hover
{
	color: #FE4245;
}

.footer-phone-mail-address i
{
	color: #FE4245;
	margin-right: 15px;
}

.footer-feedback
{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 20px 10px;
}

.footer-feedback > p
{
	color: #fff;
	font-size: 20px;
}

.footer-feedback > a
{
	margin-top: 20px;
}

.footer-privacy-policy
{
	background-color: #000;
	width: 100%;
}

.footer-privacy-policy > div
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	max-width: 1500px;
	padding: 20px 0;
	margin: 0 auto;
}

.footer-privacy-policy > div > div
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	max-width: 600px;
}

.footer-privacy-policy p
{
	color: #fff;
	margin: 15px 0;
}

.footer-privacy-policy a
{
	text-decoration: none;
	color: #fff;
	transition: .3s;
	margin: 15px 0;
}

.footer-privacy-policy a:hover
{
	color: #FE4245;
}












/*Технические классы*/

.bred
{
	border: 1px solid red;
}

.bgreen
{
	border: 1px solid green;
}

.bblue
{
	border: 1px solid blue;
}