html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*                border-sizing: border-box              */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/*================================================================================================================================================================================================================
                 Разметка
====================================================================================================================================================================================================================
*/
bodi{
	max-width: 1380px;
	margin: 0 auto;
}
.container{
	width: 100%;
}
/*================================================================================================================================================================================================================
                 header
====================================================================================================================================================================================================================
*/
.header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: grid;
	grid-template-columns: 2fr 1fr 3fr 6fr;
	height: 80px;
}
.number{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}
.number p{
	color: rgb(0, 0, 0);
}
.number a{
	text-decoration: none;
	letter-spacing: 2px;
	font-size: 18px;
	margin: 3px 0;
	font-weight: 600;
}
.number a:hover{
	box-shadow: 0 0 7px #fff;
}
.type-logo{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header img{
	width: 80px;
	height: 80px;
	margin-right: 10px;
}
.company{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.company p{
	text-transform: uppercase;
	font-size: 24px;
	font-weight: bold;
	box-shadow: 0 0 10px rgb(85, 252, 8);
	margin-left: 10px;
}
/*================================================================================================================================================================================================================
                 меню
====================================================================================================================================================================================================================
*/
.menu{
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu ul{
	display: flex;
}
.menu ul a{
	text-decoration: none;
	font-size: 20px;
	text-transform: lowercase;
	color: rgb(14, 2, 126);
	font-weight: 600;
	letter-spacing: 1px;
}
.list{
	margin: 0 3px;
	width: 120px;
	height: 35px;
	text-align: center;
	border: 1px solid #000;
	padding-top: 3px;
	box-shadow: 0 0 7px rgb(28, 2, 255);
	background-color: rgba(245, 244, 244, 0.89);
	border-radius: 7px;
	position: relative;
}
.list:hover{
	box-shadow: 0 0 12px rgb(28, 2, 255);
}
.list a:hover{
	font-size: 24px;
	padding: 0 4px 4px 4px;
}
.list ul{
	display: none;
	position: absolute;
	top: 34px;
}
.list > ul li{
	width: 150px;
	height: 40px;
	border: 1px solid #000;
	margin-bottom: 5px;
	background-color: rgba(245, 244, 244, 0.459);
	border-radius: 7px;
	box-shadow: 0 0 5px rgba(21, 1, 197, 0.432);
}
.list > ul li:hover{
	box-shadow: 0 0 10px rgb(28, 2, 255);
}
.list > ul li a{
	font-size: 16px;
	letter-spacing: 3px;
}
.list > ul li a:hover{
	font-size: 18px;
}
.menu li:hover > ul{
	display: block;
}
.burger{
	display: none;
}

/*================================================================================================================================================================================================================
                 форма
====================================================================================================================================================================================================================
*/

	/*     кнопка     */

	.call1{
		position: absolute;
		bottom: 60px;
		left: 50%;
		transform: translate(-50%,0);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 400px;
		height: 50px;
		border-radius: 20px;
		border: 3px solid #fff;
		box-shadow: 0 0 10px rgb(83, 1, 189);
		background-color: rgba(6, 32, 179, 0.466);
		z-index: 3;
	}
	.call1 p{
		font-size: 18px;
		text-transform: uppercase;
		color: #fff;
	}
	.call1:hover{
		cursor: pointer;
		box-shadow: 0 0 20px rgb(111, 0, 255);
		background-color: rgb(6, 32, 179);
	}

   /*     спасибо     */

   .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .5);
	background-color: #45b8b8;
	display: none;
	z-index: 1001;
}
.popup {
	position: absolute;
	width: 300px;
	height: 350px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 40px;
	background-color: rgb(218, 11, 11);
	display: flex;
	align-items: center;
	justify-content: center;
}
.popup h6{
	color: #F0F0F0;
	box-shadow: 0 0 7px #F0F0F0;
	font-size: 20px;
	text-align: center;
}
.close-popup{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 23px;
	height: 23px;
	cursor: pointer;
}
.close-popup:before {
	content: '';
	background-color: #000;
	position: absolute;
	height: 1px;
	width: 31px;
	top: 11px;
	left: -4px;
	transform: rotate(-45deg);
}
.close-popup:after {
	content: '';
	background-color: #000;
	position: absolute;
	height: 1px;
	width: 31px;
	top: 11px;
	transform: rotate(45deg);
	left: -4px;
}

   /*     сама форма     */

   .modal{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #45b8b8a2;
	z-index: 1000;
}
.modal-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 300px;
	height: 350px;
	background-color: rgb(83, 83, 250);
	text-align: center;
}
.modal-content img{
	margin-top: 20px;
}
.modal-content p{
	margin: 20px auto;
}
.form{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.form-field{
	width: 230px;
	height: 35px;
	border: 1px solid #000;
	border-radius: 7px;
	margin-bottom: 15px;
	text-indent: 5px;
	background-color: #F0F0F0;
	color: #000;
	font-style: oblique;
}
.form-button{
	height: 30px;
	width: 170px;
	border: 1px solid #000;
	border-radius: 7px;
	margin-bottom: 20px;
	text-transform: uppercase;
	background-color: rgb(243, 7, 7);
	color: #FFF;
}
.form-field:hover{
	cursor: pointer;
	background-color: #FFF;
	box-shadow: 0 0 5px #FFF;
}
.form-button:hover{
	cursor: pointer;
	background-color: rgb(255, 0, 0);
	box-shadow: 0 0 5px rgb(255, 0, 0);
}
.modal-content a{
	text-decoration: none;
	color: rgb(151, 10, 10);
}
.close-modal{
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
	width: 36px;
	height: 36px;
}
.close-modal::after{
	position: absolute;
	content: "";
	width: 35px;
	height: 2px;
	background-color: #FFF;
	top: 17px;
	left: 0px;
	transform: rotate(45deg);
}
.close-modal::before{
	position: absolute;
	content: "";
	width: 35px;
	height: 2px;
	background-color: #FFF;
	top: 17px;
	left: 0px;
	transform: rotate(-45deg);
}
/*================================================================================================================================================================================================================
                 слоган
====================================================================================================================================================================================================================
*/
.prod{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
}
.prod h1{
	position: relative;
	z-index: 3;
	font-size: 50px;
	letter-spacing: 3px;
	font-weight: 800;
	color: blue;
	text-align: center;
}
.prod h2{
	position: relative;
	z-index: 3;
	font-size: 28px;
	font-weight: 600;
	color: blue;
	text-transform: lowercase;
	font-style: oblique;
	text-align: center;
}
.banner{
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../image/prod3.jpg);
	background-size: cover;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}
/*================================================================================================================================================================================================================
                 преимущества
====================================================================================================================================================================================================================
*/
.advantage{
	position: relative;
}
.fon-one{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../image/fon1.jpg);
	background-position: center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	z-index: 1;
	opacity: 0.5;
}
.advantage h3{
	position: relative;
	text-align: center;
	font-size: 34px;
	color: rgb(4, 4, 26);
	font-weight: 600;
	font-style: oblique;
	padding: 10px 0 10px 0;
	z-index: 2;
}
.about-adv{
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	z-index: 2;
}
.adv-item{
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-rows: 100px;
	align-items: center;
}
.adv-item>p{
	font-size: 24px;
	font-weight: bold;
	font-style: italic;
}
.adv-item .fa{
	font-size: 30px;
	font-weight: bold;
	color: rgb(28, 104, 10);
}
.over-fa{
	display: flex;
	align-items: center;
	justify-content: center;
}
.adv-i-item{
	width: 65px;
	height: 65px;
	border: 2px solid rgb(12, 5, 71);
	box-shadow: 0 0 15px rgb(0, 0, 112);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*================================================================================================================================================================================================================
                 услуги
====================================================================================================================================================================================================================
*/
.service-all{
	position: relative;
}
.service-all h4{
	text-align: center;
	font-size: 34px;
	font-weight: 600;
	font-style: oblique;
	padding: 10px 0 10px 0;
	position: relative;
	z-index: 3;
}
.service{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	position: relative;
	z-index: 3;
}
.card{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0 20px 0;
}
.card-10{
	grid-column: 2/3;
	grid-row: 4/5;
}
.card img{
	width: 350px;
	height: 280px;
	border-radius: 20px;
	margin: 10px 10px;
}
.card-over{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 450px;
	width: 370px;
	box-shadow:  0 0 15px rgb(0, 0, 112);
	border-radius: 20px;
}
.card-over:hover{
	perspective: 1000;
	cursor: pointer;
	transform: scale(1.1);
	box-shadow:  0 0 25px rgb(0, 0, 112);
}
.card-over h5{
	font-size: 24px;
	font-weight: bold;
	font-style: italic;
	margin: 15px 0 15px 0;
}
.card-over h6{
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	margin-bottom: 5px;
}
.car-call{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 40px;
	border-radius: 20px;
	border: 3px solid #fff;
	box-shadow: 0 0 10px rgb(83, 1, 189);
	background-color: rgba(6, 32, 179, 0.466);
	margin-bottom: 5px;
}
.car-call p{
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
}
.car-call:hover{
	cursor: pointer;
	box-shadow: 0 0 20px rgb(111, 0, 255);
	background-color: rgb(6, 32, 179);
}
.fon-thu{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../image/fon2.jpg);
	background-position: center;
	background-size: 100% 100%;
	z-index: 1;
	opacity: 0.5;
}

/*================================================================================================================================================================================================================
                 сотрудник месяца
====================================================================================================================================================================================================================
*/
.worker{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.worker h3{
	text-align: center;
	font-size: 34px;
	font-weight: 600;
	font-style: oblique;
	padding: 15px 5px 5px 5px;
	position: relative;
	z-index: 3;
}
.worker h5{
	text-align: center;
	font-size: 18px;
	font-style: italic;
	padding: 10px 5px;
	position: relative;
	z-index: 3;
}
.worker-element{
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.worker-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 10px;
}
.worker-item img{
	width: 250px;
	height: 250px;
	border-radius: 20px;
	box-shadow:  0 0 15px rgb(0, 0, 112);
}
.worker-item h4{
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	font-style: oblique;
	padding: 15px 5px;
}
.fon-worker{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../image/fon_worker.jpg);
	background-size: cover;
	opacity: 0.4;
}
/*================================================================================================================================================================================================================
                 заявка
====================================================================================================================================================================================================================
*/
.help{
	height: 130px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgb(232,232,242);
    background: linear-gradient(90deg, rgba(232,232,242,1) 0%, rgba(121,121,255,0.6982143199076505) 25%, rgba(0,212,255,1) 100%);
}
.call2{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 400px;
	height: 50px;
	border-radius: 20px;
	border: 3px solid #fff;
	box-shadow: 0 0 10px rgb(83, 1, 189);
	background-color: rgba(6, 32, 179, 0.466);
}
.call2 p{
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
}
.call2:hover{
	cursor: pointer;
	box-shadow: 0 0 20px rgb(111, 0, 255);
	background-color: rgb(6, 32, 179);
}
/*================================================================================================================================================================================================================
                 вопрос-ответ
====================================================================================================================================================================================================================
*/
.dialog{
	position: relative;
}
.dialog h3{
	text-align: center;
	font-size: 34px;
	font-weight: 600;
	font-style: oblique;
	padding: 15px 5px;
	position: relative;
	z-index: 3;
}
.all-dialog{
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
}
.dialog-item{
	text-align: left;
	width: 80%;
	margin: 10px auto;
	padding-bottom: 10px;
	box-shadow: 0 0 10px rgb(0, 0, 112);
	border-radius: 20px;
}
.dialog-item h4{
	font-size: 24px;
	font-weight: 600;
	padding: 5px 10px;
}
.dialog-item h5{
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	padding-left: 5px;
}
.dialog-item2{
	text-align: right;
	width: 80%;
	margin: 10px auto;
	box-shadow: 0 0 10px rgb(0, 0, 112);
	padding-bottom: 10px;
	border-radius: 20px;
}
.dialog-item2 h4{
	font-size: 24px;
	font-weight: 600;
	padding: 5px 5px;
}
.dialog-item2 h5{
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	padding-right: 5px;
}
.fon-dialog{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../image/fon_dialog.jpg);
	background-size: cover;
	opacity: 0.2;
}
/*================================================================================================================================================================================================================
                 вопрос в whats app
====================================================================================================================================================================================================================
*/
.whatsapp{
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgba(43, 255, 0, 0.164);
}
.whatsapp h3{
	text-align: center;
	font-size: 34px;
	font-weight: 600;
	font-style: oblique;
	padding: 15px 5px;
}
.wh-item{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 10px 15px 10px;
}
.wh-element{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgb(43, 255, 0);
	box-shadow: 0 0 10px rgb(21, 122, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.wh-element .fa-whatsapp{
	color: #fff;
	font-size: 36px;
}
.wh-item a{
	text-decoration: none;
	font-size: 24px;
	font-weight: 600;
	color: rgb(150, 144, 144);
	text-shadow: 0 0 10px rgb(70, 255, 37);
}

/*================================================================================================================================================================================================================
                 footer
====================================================================================================================================================================================================================
*/
.foot{
	width: 100%;
	height: 150px;
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	background-color: rgb(156, 156, 223);
}
.copy{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
}
.kontakt{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}
.kontakt a{
	text-decoration: none;
	margin-top: 5px;
}
.kontakt a:hover{
	box-shadow: 0 0 10px rgb(50, 4, 255);
}
.icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.icon-item{
	width: 45px;
	height: 45px;
	border: 3px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 7px;
	cursor: pointer;
}
.icon .fa-facebook-official{
	color: rgb(0, 0, 112);
	font-size: 28px;
}
.icon-item-one:hover{
	box-shadow: 0 0 15px rgb(0, 0, 112);
}
.icon .fa-odnoklassniki-square{
	color: rgb(255, 117, 5);
	font-size: 28px;
}
.icon-item-thu:hover{
	box-shadow: 0 0 15px rgb(255, 117, 5);
}
.icon .fa-vk{
	color: rgb(0, 0, 112);
	font-size: 28px;
}
.icon-item-three:hover{
	box-shadow: 0 0 15px rgb(0, 0, 112);
}
.icon .fa-instagram{
	color: rgb(168, 0, 0);
	font-size: 28px;
}
.icon-item-fo:hover{
	box-shadow: 0 0 15px rgb(168, 0, 0);
}
/*================================================================================================================================================================================================================
                 media header
====================================================================================================================================================================================================================
*/
@media(max-width:1250px){
	body.log{
		overflow: hidden;
	}
	.burger{
		position: fixed;
		display: block;
		z-index: 1001;
		width: 47px;
		height: 56px;
		top: 15px;
		right: 15px;
		cursor: pointer;
	}
	.bur_one,
	.bur_thu,
	.bur_three{
		position: absolute;
		background-color: #fff;
		height: 4px;
		width: 41px;
		border-radius: 10px;
	}
	.bur_one:hover,
	.bur_thu:hover,
	.bur_three:hover{
		box-shadow: 0 0 5px rgb(28, 2, 255);
	}
	.bur_one{
		top: 0px;
		left: 3px;
	}
	.bur_one.active{
		transform: rotate(45deg);
		top: 12px;
	}
	.bur_thu{
		top: 13px;
		left: 3px;
	}
	.bur_thu.active{
		display: none;
	}
	.bur_three{
		bottom: 26px;
		left: 3px;
	}
	.bur_three.active{
		transform: rotate(-45deg);
		bottom: 38px;
	}
	.burger p{position: absolute;
		bottom: 0;
		left: 0;
		font-size: 16px;
		font-weight: 600;
		color: #fff;
	}
	.menu{
		position: fixed;
		right: -300%;
		transition: 0.7s;
	}
	.menu.active{
		right: 0;
		width: 90%;
		height: 100vh;
		background-color: rgba(137, 43, 226, 0.486);
		align-items: flex-start;
		justify-content: flex-start;
		overflow: scroll;
	}
	.menu.active .list > ul li{
		background-color: rgb(245, 244, 244);
		margin-bottom: 3px;

	}
	.menu ul{
		flex-direction: column;
		margin-top: 20px;
	}
	.menu ul li{
		margin-bottom: 10vh;
	}
	.list ul{
		right: -160px;
	}
	.header{
		grid-template-columns: 2fr 1fr 3fr;
		height: 70px;
	}
	.header img{
		width: 70px;
		height: 70px;
		margin-right: 10px;
	}
}
@media(max-width: 750px){
	.header{
		grid-template-columns: 2fr 1fr 5fr;
		height: 60px;
	}
	.header img{
		width: 60px;
		height: 60px;
	}
	.company p{
		font-size: 18px;
		margin-left: 5px;
	}
	.number a{
		letter-spacing: 0.5px;
		font-size: 14px;
	}
}
@media(max-width: 600px){
	.burger{
		width: 39px;
		height: 48px;
	}
	.bur_one,
	.bur_thu,
	.bur_three{
		height: 2px;
		width: 35px;
	}
	.bur_one{
		left: 2px;
	}
	.bur_thu{
		left: 2px;
		top: 12px;
	}
	.bur_three{
		left: 2px;
		bottom: 22px;
	}
	.burger p{
		left: -5px;
	}
	.header{
		grid-template-columns: 3fr 1fr 6fr;
		height: 60px;
	}
}
@media(max-width: 500px){
	.number{
		display: none;
	}
	.header{
		grid-template-columns: 2fr 9fr;
	}
	.company p{
		font-size: 16px;
		margin-left: 0px;
	}
}
/*================================================================================================================================================================================================================
                 media продающий блок
====================================================================================================================================================================================================================
*/
@media(max-width: 900px){
	.banner{
		background-position: center;
	}
}
@media(max-width: 430px){
	.call1{
		width: 280px;
		height: 50px;
		border-radius: 20px;
	}
	.call1 p{
		font-size: 12px;
		text-align: center;
	}
}
@media(max-width: 390px){
	.prod h1{
		letter-spacing: 2px;
	}
}
/*================================================================================================================================================================================================================
                @media преимущества 
====================================================================================================================================================================================================================
*/
@media(max-width: 670px){
	.about-adv{
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
	}
	.adv-item{
		grid-template-rows: 80px;
	}
	.fon-one{
		background-position: center;
		background-size: cover;
	}
}
/*================================================================================================================================================================================================================
                @media  услуги
====================================================================================================================================================================================================================
*/
@media(max-width: 1255px){
	.card img{
		width: 230px;
		height: 180px;
	}
	.card-over{
		height: 330px;
		width: 250px;
	}
}
@media(max-width: 880px){
	.service{
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	}
	.card-10{
		grid-column: 2/3;
		grid-row: 5/6;
	}
}
@media(max-width: 630px){
	.service{
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	}
	.card-10{
		grid-column: 1/2;
		grid-row: 10/11;
	}
	.card-over h5{
		text-align: center;
		font-size: 18px;
		margin: 10px 0 10px 0;
	}
	.card img{
		width: 350px;
		height: 280px;
	}
	.card-over{
		height: 450px;
		width: 370px;
	}
}
@media(max-width: 460px){
	.card img{
		/* width: 230px;
		height: 180px; */
		width: 80%;
		height: 220px;
	}
	.card-over{
		height: 330px;
		width: 90%;
	}
	.card-over:hover{
		transform: scale(1);
	}
	.card-over h5{
		font-size: 22px;
	}
}
/*================================================================================================================================================================================================================
                @media сотрудник месяца
====================================================================================================================================================================================================================
*/
@media(max-width: 850px){
	.worker-element{
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.alina{
		grid-column: 1/3;
	}
	.anna{
		grid-column: 3/5;
	}
	.kolya{
		grid-column: 2/4;
	}
}
@media(max-width: 580px){
	.worker-element{
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr;
	}
	.alina{
		grid-column: 1/2;
	}
	.anna{
		grid-column: 1/2;
	}
	.kolya{
		grid-column: 1/2;
	}
	.worker h3{
		font-size: 26px;
		padding-bottom: 0;
	}
	.worker-item h4{
		font-size: 20px;
		padding: 10px 5px;
	}
	.worker-item{
		padding: 5px 10px;
	}
	.worker-item img{
		width: 80%;
		height: auto;
		border-radius: 20px;
		box-shadow:  0 0 15px rgb(0, 0, 112);
	}
	.worker-item{
		padding: 5px 10px;
	}
}
/*================================================================================================================================================================================================================
                @media заявка
====================================================================================================================================================================================================================
*/
@media(max-width: 430px){
	.call2{
		width: 280px;
		height: 50px;
		border-radius: 20px;
	}
	.call2 p{
		font-size: 12px;
		text-align: center;
	}
}
/*================================================================================================================================================================================================================
                @media вопрос-ответ
====================================================================================================================================================================================================================
*/
@media(max-width: 550px){
	.dialog h3{
		font-size: 26px;
		padding: 7px 5px;
	}
	.dialog-item{
		width: 95%;
		margin: 10px auto;
	}
	.dialog-item h4{
		font-size: 20px;
	}
	.dialog-item h5{
		font-size: 16px;
	}
	.dialog-item2{
		width: 95%;
		margin: 10px auto;
	}
	.dialog-item2 h4{
		font-size: 20px;
	}
	.dialog-item2 h5{
		font-size: 16px;
	}
}
/*================================================================================================================================================================================================================
             @media    вопрос в whats app
====================================================================================================================================================================================================================
*/
@media(max-width: 550px){
	.whatsapp h3{
		font-size: 26px;
		padding: 7px 5px;
	}
	.wh-element{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}
	.wh-element .fa-whatsapp{
		font-size: 26px;
	}
	.wh-item a{
		font-size: 24px;
	}
	.wh-item{
		padding: 0 10px 5px 10px;
	}
}
/*================================================================================================================================================================================================================
                 media footer
====================================================================================================================================================================================================================
*/
@media(max-width: 830px){
	.foot{
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.copy{
		grid-column: 2/3;
		grid-row: 2/3;
	}
	.kontakt{
		grid-column: 2/3;
		grid-row: 1/2;
		align-items: center;
		justify-content: flex-end;
	}
	.icon{
		grid-column: 1/2;
		grid-row: 1/3;
	}
}
@media(max-width: 460px){
	.foot{
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
		height: 170px;
	}
	.copy{
		grid-row: 5/6;
		grid-column: 1/2;
	}
	.kontakt{
		grid-row: 3/5;
		justify-content: center;
		grid-column: 1/2;
	}
	.icon{
		grid-row: 1/3;
		grid-column: 1/2;
		margin-top: 9px;
	}
	.icon-item{
		margin: 0 9px 0 9px;
	}
}
/*================================================================================================================================================================================================================
                 кнопка
====================================================================================================================================================================================================================
*/
/*кнопка звонка*/

.callback-bt {
	display: none;
	background:#38a3fd;
	border:2px solid #38a3fd;
	border-radius:50%;
	box-shadow:0 8px 10px rgba(56,163,253,0.3);
	cursor:pointer;
	height:68px;
	text-align:center;
	width:68px;
	position: fixed;
	right: 8%;
	bottom: 18%;
	z-index:996;
	transition:.3s;
	-webkit-animation:hoverWave linear 1s infinite;
	animation:hoverWave linear 1s infinite;
}
.callback-bt .text-call{
	height:68px;
	width:68px;        
	border-radius:50%;
	position:relative;
	overflow:hidden;
}
.callback-bt i {
	color:#fff;
	font-size:34px;
	transition:.3s;
	line-height: 66px;transition: .5s ease-in-out;
}
.callback-bt i  {
animation: 1200ms ease 0s normal none 1 running shake;
	animation-iteration-count: infinite;
	-webkit-animation: 1200ms ease 0s normal none 1 running shake;
	-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes hoverWave {
	0% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 0 rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
40% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 15px rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
80% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 26.7px rgba(56,163,253,0.067)
}
100% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 40px rgba(56,163,253,0.0)
}
}@keyframes hoverWave {
	0% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 0 rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
40% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 15px rgba(56,163,253,0.2),0 0 0 0 rgba(56,163,253,0.2)
}
80% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 26.7px rgba(56,163,253,0.067)
}
100% {
	box-shadow:0 8px 10px rgba(56,163,253,0.3),0 0 0 30px rgba(56,163,253,0),0 0 0 40px rgba(56,163,253,0.0)
}
}

/* animations icon */

@keyframes shake {
0% {
transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
}
10% {
transform: rotateZ(-30deg);
	-ms-transform: rotateZ(-30deg);
	-webkit-transform: rotateZ(-30deg);
}
20% {
transform: rotateZ(15deg);
	-ms-transform: rotateZ(15deg);
	-webkit-transform: rotateZ(15deg);
}
30% {
transform: rotateZ(-10deg);
	-ms-transform: rotateZ(-10deg);
	-webkit-transform: rotateZ(-10deg);
}
40% {
transform: rotateZ(7.5deg);
	-ms-transform: rotateZ(7.5deg);
	-webkit-transform: rotateZ(7.5deg);
}
50% {
transform: rotateZ(-6deg);
	-ms-transform: rotateZ(-6deg);
	-webkit-transform: rotateZ(-6deg);
}
60% {
transform: rotateZ(5deg);
	-ms-transform: rotateZ(5deg);
	-webkit-transform: rotateZ(5deg);
}
70% {
transform: rotateZ(-4.28571deg);
	-ms-transform: rotateZ(-4.28571deg);
	-webkit-transform: rotateZ(-4.28571deg);
}
80% {
transform: rotateZ(3.75deg);
	-ms-transform: rotateZ(3.75deg);
	-webkit-transform: rotateZ(3.75deg);
}
90% {
transform: rotateZ(-3.33333deg);
	-ms-transform: rotateZ(-3.33333deg);
	-webkit-transform: rotateZ(-3.33333deg);
}
100% {
transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
}
}

@-webkit-keyframes shake {
0% {
transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
}
10% {
transform: rotateZ(-30deg);
	-ms-transform: rotateZ(-30deg);
	-webkit-transform: rotateZ(-30deg);
}
20% {
transform: rotateZ(15deg);
	-ms-transform: rotateZ(15deg);
	-webkit-transform: rotateZ(15deg);
}
30% {
transform: rotateZ(-10deg);
	-ms-transform: rotateZ(-10deg);
	-webkit-transform: rotateZ(-10deg);
}
40% {
transform: rotateZ(7.5deg);
	-ms-transform: rotateZ(7.5deg);
	-webkit-transform: rotateZ(7.5deg);
}
50% {
transform: rotateZ(-6deg);
	-ms-transform: rotateZ(-6deg);
	-webkit-transform: rotateZ(-6deg);
}
60% {
transform: rotateZ(5deg);
	-ms-transform: rotateZ(5deg);
	-webkit-transform: rotateZ(5deg);
}
70% {
transform: rotateZ(-4.28571deg);
	-ms-transform: rotateZ(-4.28571deg);
	-webkit-transform: rotateZ(-4.28571deg);
}
80% {
transform: rotateZ(3.75deg);
	-ms-transform: rotateZ(3.75deg);
	-webkit-transform: rotateZ(3.75deg);
}
90% {
transform: rotateZ(-3.33333deg);
	-ms-transform: rotateZ(-3.33333deg);
	-webkit-transform: rotateZ(-3.33333deg);
}
100% {
transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
}
}
/* конец кнопки звонка */
/*================================================================================================================================================================================================================
                 media кнопка
====================================================================================================================================================================================================================
*/
@media(max-width: 1250px){
	.callback-bt {
		display: block;
		height:68px;
		width:68px;
	}
}