<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	font-family: 'Open Sans', 'Roboto', sans-serif;
	background-color: #ffffff;
}

ul{
	list-style-type: none;
}

a{
	text-decoration: none;
	color: #ffffff;
}

button{
	border: 0;
	background: #00668C;
	border-radius: 0;
	cursor: pointer;
	padding: 8px 14px;
}

.container{
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.header .container{
	background-color: #313D44;
	color: #FFFEFB;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;	
	padding-left: 16px;
	padding-right: 16px;
}

.header__inner{
	display: flex;
	min-width: 64px;
	align-items: center;
	justify-content: space-between;
}

.burger{
	display: none;
	position: relative;
	width: 40px;
	height: 40px;
	border: none;
	background-color: transparent;
}

.burger span{
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #FFFEFB;
	left: 5px;
	transition: transform .4s, opacity .4s;
}

.burger span:nth-child(1){
	transform: translateY(-10px);
}

.burger span:nth-child(3){
	transform: translateY(10px);
}

.header.open .burger span:nth-child(1){
	transform: translateY(0) rotate(45deg);
}

.header.open .burger span:nth-child(2){
	opacity: 0;
}

.header.open .burger span:nth-child(3){
	transform: translateY(0) rotate(-45deg);
}

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

.menu__link{
	display: flex;
	justify-content: space-between;
	transition: .4s;
}

.menu__link:hover{
	color: #8e989e;
	transition: .4s;
}

.menu__link__uslugi{
	display: flex;
	justify-content: space-between;
	padding-left: 35px;
	padding-right: 35px;
	transition: .4s;
}

.menu__link__uslugi:hover{
	color: #8e989e;
	transition: .4s;
	cursor: pointer;
}

.arrow{
	transition: .4s;
}

.menu__link__uslugi:hover .arrow{
	transform: rotate(180deg);
	transition: .4s;
}

.menu__item:hover .arrow{
	transform: rotate(180deg);
}

.submenu{
	position: absolute;
	width: 275px;
	background: #313D44;
	padding-top: 20px;
	opacity: 0;
	z-index: -1;
	transition: .4s;
	margin-top: -100px;
}

.menu__item:hover .submenu{
	opacity: 1;
	z-index: 99;
	transition: .4s;
	margin-top: 5px;
}

.submenu__item{
	padding: 20px;
	transition: .4s;
}

.submenu__link:hover{
	color: #8e989e;
	transition: .4s;
}

#phone1, #phone2{
	display: none;
}

.logo{
	padding-top: 2px;
	padding-bottom: 2px;
}

.phones{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.phones__number{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.banner{
	position: relative;
}

.banner__image{
	position: absolute;
	top: 0;
	right: 0;
}

.article{
	position: absolute;
	width: 600px;
	height: 400px;
	flex-shrink: 0;
	background: rgba(255, 254, 251, 0.40);
	backdrop-filter: blur(4.199999809265137px);
	margin-left: 20px;
	margin-top: 20px;
}

.h1{
	color: #1D1C1C;
	text-align: center;
	font-family: 'Open Sans';
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.banner__text{
	color: #1D1C1C;
	text-align: justify;
	font-family: 'Open Sans';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-left: 18px;
	margin-right: 18px;
}

.banner__button{
	color: #F5F4F1;
	text-align: justify;
	font-family: 'Open Sans';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-left: 210px;
	margin-top: 15px;
}
.banner__button:hover{
	background-color: #3298bd;
}
.modal{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
	display: grid;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	transition: opacity .4s, visibility .4s;
}
.modal__box{
	max-width: 500px;
	padding: 45px;
	z-index: 1;
	margin: 30px 15px;
	background-color: #F5F4F1;
	box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
	transform: scale(0);
	transition: .4s;
}
.modal.open {
	visibility: visible;
	opacity: 1;
}
.modal.open .modal__box{
	transform: scale(1);
}
.modal__close-btn{
	position: absolute;
	top: 8px;
	right: 8px;
	border: none;
	background-color: transparent;
	padding: 5px;
	cursor: pointer;
}
.form__input-box:not(:last-child){
	margin-bottom: 20px;
}
.form__input-inp{
	border: 1px solid #00668C;
	border-radius: 0;
	outline: none;
	width: 100%;
	padding: 14px 30px;
}
.form__input-inp:focus {
	outline: #1D1C1C 2px solid;
}
.form__btn{
	background-color:#00668C;
	padding: 14px 30px;
	border-radius: 0;
	outline: none;
	border: none;
	color: #F5F4F1;
	cursor: pointer;
	transition: background-color .4s;
}
.form__btn:hover{
	background-color: #0385b4;
}
#msg{
	height: 300px;
}
.banner__bottom{
	position: relative;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	top: 470px;
}
.banner__bottom__text{
	color: #1D1C1C;
	font-family: 'Open Sans';
	font-size: 16px;
	font-style: normal;
	text-align: justify;
	font-weight: 300;
	line-height: normal;
	margin-left: 30px;
	margin-right: 15px;
	text-indent: 10px;
}
.a__zakon{
	color: #1D1C1C;
}
.a__zakon:hover {
	color: #1D1C1C;
	text-decoration: underline;
}
.pto{
	position: relative;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	top: 550px;
}
.pto__pto{
	width: 350px;
}
.pto__h2{
	margin-top: 10px;
	color: #1D1C1C;
	text-align: center;
	font-family: 'Open Sans';
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.pto__text{
	margin-top: 10px;
	margin-bottom: 30px;
	color: #1D1C1C;
	text-align: justify;
	font-family: 'Open Sans';
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}
.srok{
	justify-content: space-between;
	position: relative;
	top: 600px;
	background-color: #dfdedc;
}
.srok__h2{
	color: #1D1C1C;
	font-family: 'Open Sans';
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 15px;
	text-align: center;
}
.sroki{
	flex-wrap: wrap;
	padding-bottom: 10px;
	padding-top: 10px;
}
.sroki__text{
	color: #1D1C1C;
	text-align: center;
	font-family: 'Open Sans';
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	margin-bottom: 25px;
	list-style-position: inside;
}
.footer{
	position: relative;
	top: 620px;
	margin-top: 30px;
}
.footer .container{
	background-color: #313D44;
}
.footer__inner{
	display: flex;
	justify-content: space-between;
	margin-left: 16px;
	margin-right: 16px;
}
.footer__logo {
	margin-top: 12px;
	margin-bottom: 12px;
}
.footer__logo-li{
	margin-bottom: 12px;
	color: #FFFEFB;
	font-family: 'Roboto';
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.footer__logo-li2, .footer__logo-li3{
	margin-bottom: 12px;
	color: #FFFEFB;
	font-family: 'Roboto';
	font-size: 14px;
	font-style: normal;
	font-weight: 10;
	line-height: normal;
}
.footer__menu {
	margin-top: 12px;
}
.footer__menu-li {
	margin-bottom: 15px;
	color: #FFFEFB;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	font-size: 15px;
}
.footer__rk {
	margin-top: 12px;
	color: #FFFEFB;
	font-family: 'Roboto';
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.footer__contacts{
	margin-top: 12px;
	padding: 12px;
	text-align: center;
	color: #FFF;
	font-family: 'Roboto';
	font-size: 15px;
	font-style: normal;
	font-weight: 50;
	line-height: normal;
}

@media (max-width:850px){
	.burger{
		display: block;
		z-index: 2;
	}
	.menu{
		position: absolute;
		left: 0;
		top: 0;
		background-color: #313D44;
		padding: 0 20px 20px 20px;
		width: 320px;
		left: -320px;
		transition: 0.4s;
		margin-top: 58px;
		z-index: 1;
	}
	.menu__list{
		display: block;
	}
	.menu__item{
		color: #FFFEFB;
		font-size: 21px;
		display: block;
		padding: 10px 0;
	}
	.menu__link__uslugi{
		display: flex;
		justify-content: start;
		align-items: center;
		padding-left: 0px;
		padding-right: 0px;
		transition: .4s;
	}
	.header.open .menu{
		transform: translateX(100%);
	}
	.submenu{
		position: absolute;
		width: 280px;
		background: #313D44;
		padding-top: 0;
		opacity: 1;
		z-index: 1;
		transition: .4s;
		margin-top: 0px;
	}	
	.submenu__item{
		text-align: right;
		font-size: 17px;
		padding: 10px;
	}
	.arrow{
		display: none;
	}
	.menu__item:hover .submenu{
		opacity: 1;
		z-index: 1;
		transition: 0;
		margin-top: 0;
	}
	#contacts{
		padding-top: 270px;
	}
	.menu__link__uslugi:hover{
		color: #FFFEFB;
		transition: 0;
	}
	.phones{
		display: block;
	}
	.phone__phone{
		display: none;
	}
}
@media (max-width:716px){
	.footer__inner{
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		margin-left: 16px;
		margin-right: 16px;
	}
}

	@media (max-width:640px){
		.phones{
			display: none;
		}
		#phone1, #phone2{
			display: block;
			background-color: #313D44;
		}
		.banner__image{
			position: absolute;
			height: 240px;
			left: auto;
			top: 0;
			right: 0;
		}
		.article{
			position: absolute;
			width: 90%;
			height: 257px;
			flex-shrink: 0;
			background: rgba(255, 254, 251, 0.40);
			backdrop-filter: blur(4.199999809265137px);
			margin-top: 270px;
			text-align: center;
		}
		.banner__bottom{
			top: 710px;
		}
		.h1{
			color: #1D1C1C;
			text-align: center;
			font-family: Open Sans;
			font-size: 16px;
			font-style: normal;
			font-weight: 700;
			line-height: normal;
		}
		.banner__text{
			color: #1D1C1C;
			text-align: justify;
			font-family: Open Sans;
			font-size: 16px;
			font-style: normal;
			font-weight: 400;
			line-height: normal;
		}
		.banner__button{
			color: #F5F4F1;
			font-family: Open Sans;
			font-size: 16px;
			font-style: normal;
			font-weight: 400;
			line-height: normal;
			margin: 10px auto;
			display: inline-block;
		}
		.pto{
			top: 770px;
		}
		.pto__h2{
			font-size: 16px;
		}

		.srok{
			top: 700px;
		}
	}
	@media (max-width:490px){
	.banner__bottom{
		padding-top: 70px;
	}
}
@media (max-width:440px){
	.banner__bottom{
		padding-top: 100px;
	}
}
@media (max-width:420px){
	.banner__bottom{
		padding-top: 110px;
	}
}

@media (max-width:390px){
	.banner__bottom{
		padding-top: 190px;
	}
}

@media (max-width:375px){
	.banner__bottom{
		padding-top: 200px;
	}
}</pre></body></html>