@font-face{
	font-family: "Rosa Marena";
	src: url('fonts/8585.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "Gotham Pro";
	src: url('fonts/GothaProReg.otf');
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "Gotham Pro Light";
	src: url('fonts/GothaProLig.otf');
	font-weight: normal;
	font-style: normal;
}
body {
	--link: #3c3c3c;
	--link-hover: #7eaa31;
	--header-height: 130px;
	font-family: "Gotham Pro", Helvetica, Arial, sans-serif;
	color: var(--link);
	font-size: 15px;
	line-height: 1.2;
	scroll-behavior: smooth;
	background-color: #eeeeee;
}
@media (max-width: 1375px) {
	body {--header-height: 209px;}
}
@media (max-width: 767px) {
	body {--header-height: 75px;}
}
*:hover,
*:focus,
*:active {
	outline: none !important;
}
::-webkit-scrollbar {width: 4px;height: 0;}
::-webkit-scrollbar-track {background-color: var(--link-hover);}
::-webkit-scrollbar-track-piece {background-color: #ffffff;}
::-webkit-scrollbar-thumb {height: 0px;background-color: var(--link-hover);border-radius: 2px;}
::-webkit-scrollbar-corner {background-color: var(--link-hover);} 
*::selection {
	color: #ffffff;
	background: var(--link-hover);
}
input,
textarea {
	caret-color: var(--link-hover);
}
.label-for-checkbox input[type=checkbox] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.label-for-checkbox {
	padding-left: 30px !important;
}
.label-for-checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 0;
	border-radius: 4px;
	background-color: #f1f2f6;
	width: 20px;
	height: 20px;
}
.label-for-checkbox input:checked ~ .checkmark {
	background-color: var(--link-hover);
}
.label-for-checkbox .checkmark:after {
	content: "";
	position: absolute;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-ms-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}
.label-for-checkbox input:checked ~ .checkmark:after {
	opacity: 1;
}
.label-for-checkbox .checkmark:after {
	left: 6px;
	top: 2px;
	width: 8px;
	height: 13px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 2px;
}
.container-fluid {
	width: 100%;
	max-width: 1710px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
@media (min-width: 1200px) {
	.col_xl_5 {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
	}
}
.ul, .ol {
	list-style-type: none;
	padding-left: 0;
}
.ul li {
	padding-left: 25px;
	position: relative;
	margin-bottom: 15px;
}
.ul li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--link-hover);
    border-radius: 50%;
    position: absolute;
	left: 0;
	top: 4px;
}

.ol{
	counter-reset: myCounter;
}
.ol li {margin-bottom: 15px;}
.ol li:before {
	counter-increment: myCounter;
	content:counter(myCounter);
	color: #ffffff;
	display: inline-block;
	text-align: center;
	margin-right: 10px;
	line-height: 24px;
	border-radius: 50%;
	background-color: var(--link-hover);
	width: 24px;
	height: 24px;
}
div#navigation {
    max-width: 100%;
}

.bx-404-container{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.bx-404-block{
	margin-top: 100px;
	margin-bottom: 66px;
}

@media (max-width:768px) {
	.bx-404-block{
		margin-top: 50px;
		margin-bottom: 33px;
	}
}

.bx-404-text-block{
	font-size: 20px;
	font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-bottom: 20px;
}


.row_20 {
    margin-left: -10px;
    margin-right: -10px;
}
.row_20 > div {
    padding-left: 10px;
    padding-right: 10px;
}
.workarea {
	min-height: calc(100vh - var(--header-height) - 209px);
	padding-top: 35px;
	padding-bottom: 30px;
}
.mb-15 {
	margin-bottom: 15px;
}

/* buttons and links */
button {
	border: none;
	cursor: pointer;
	color: var(--link);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
input[type=submit] {
	border: none;
	cursor: pointer;
}
a, .btn-link {
	color: var(--link);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
a:hover, .btn-link:hover,
a:focus, .btn-link:focus,
a:active, .btn-link:active {
	color: var(--link-hover);
	text-decoration: none;
}

.main-button {
	background-image: -moz-linear-gradient( 0deg, rgb(147,194,66) 0%, rgb(179,202,72) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(147,194,66) 0%, rgb(179,202,72) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(147,194,66) 0%, rgb(179,202,72) 100%);
	box-shadow: 0px 11px 13px 0px rgba(195, 216, 97, 0.38);
	min-width: 203px;
	height: 50px;
	line-height: 50px;
	font-size: 17px;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	padding: 0 30px;
	display: inline-block;
	border-radius: 25px;
}
.main-button.orange {
	background-image: -moz-linear-gradient( 0deg, rgb(194,126,66) 0%, rgb(216,175,97) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(194,126,66) 0%, rgb(216,175,97) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(194,126,66) 0%, rgb(216,175,97) 100%);
	box-shadow: 0px 11px 13px 0px rgba(194, 151, 66, 0.38);
}
.main-button.white {
	background: #ffffff;
	min-width: 234px;
	box-shadow: none;
	color: var(--link);
}
.main-button.callback {
	min-width: 231px;
}
.main-button:hover,
.main-button:focus,
.main-button:active {
	background-color: var(--link-hover);
	background-image: -moz-linear-gradient( 0deg, rgb(126,170,49) 0%, rgb(126,170,49) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(126,170,49) 0%, rgb(126,170,49) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(126,170,49) 0%, rgb(126,170,49) 100%);
	box-shadow: 0px 11px 13px 0px rgba(126, 170, 49, 0.38);
	color: #ffffff;
}

/* headings */
h1, h2 {
	font-size: 48px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 575px) {
	h1, h2 {
		font-size: 30px;
	}
}
h2 b {
	text-shadow: 0px 0px 71.07px rgba(253, 253, 253, 0.58);
}
h3 {
	font-size: 25px;
	text-transform: uppercase;
	text-align: center;
}
.subtitle {
	font-size: 18px;
	text-align: center;
	text-shadow: 0px 0px 71.07px rgba(253, 253, 253, 0.58);  
	margin-bottom: 20px;
}

/* header */
header {
	padding: 15px 0;
	background-color: #ffffff;
	box-shadow: 0px 11px 43px 0px rgba(47, 47, 47, 0.15);
}
.bx-header-logo { order: 1 }
.bx-header-logo-text { order: 1 }
.bx-header-personal { order: 3 }
.bx-header-menu { order: 2; padding-left: 100px; }
.bx-header-callback { order: 5 }
.bx-logo-block {
	display: block;
	height: 100px;
	border-bottom: none;
}
.bx-logo-block img {
	max-height: 100px;
	width: auto;
}
.bx-header-logo-text {
	font-size: 20px;
	line-height: 33px;
	font-weight: 600;
	padding-left: 4px;
}
.bx-header-phone-block {
	display: flex;
	padding-bottom: 3px;
}
.bx-header-phone-number {
	line-height: 33px;
	padding-left: 15px;
}
@media (max-width: 1700px) {
	.bx-header-menu {
		padding-left: 0;
	}
}
@media (max-width: 1600px) {
	.bx-header-logo-text {
		font-size: 17px;
	}
}
@media (max-width: 1555px) {
	.bx-header-logo-text {
		font-size: 17px;
	}
	.bx-nav-1-lvl-link-text {
		font-size: 15px;
	}
}
@media (max-width: 1450px) {
	.main-button.callback {
		min-width: auto;
		font-size: 15px;
	}
	#horizontal-multilevel-menu {
		padding-left: 2px;
	}
	.bx-top-nav-container {
		padding: 0;
	}
	.bx-header-logo-text {
		font-size: 15px;
	}
}
@media (max-width: 1375px) {
	.bx-header-menu {
		order: 10;
		min-width: 100%;
		padding-left: 15px;
	}
	.bx-nav-list-1-lvl,
	.bx-header-phone-block {
		justify-content: center;
	}
	.bx-header-logo {
		margin-bottom: 10px;
	}
}
@media (max-width: 790px) {
	.bx-nav-1-lvl-link-text {
		padding: 0 15px;
	}
}
@media (max-width: 767px) {
	.header-top-row {
		justify-content: space-between;
	}
	.bx-logo-block img {
		max-width: 100%;
		max-height: 65px;
		width: auto;
		height: auto;
	}
	.bx-header-logo {
		margin-bottom: 0;
	}
	.bx-logo-block { height: auto; }
	header .bx-header-logo-text {
		font-size: 13px;
		padding-left: 0;
		padding-right: 0;
		line-height: 1.2;
	}
	header .bx-header-logo {
		padding-left: 0;
	}
	.main-button.callback {
		font-size: 13px;
		padding: 0 15px;
	}
	.bx-header {
		padding: 5px 0;
		height: 75px;
		position: sticky;
		top: 0;
		z-index: 1000;
		width: 100%;
		background-color: #ffffff;
	}
}

/* footer */
footer {
	background-color: #3b3b3b;
	color: #ffffff;
	padding: 25px 0;
}
.bx-footer-logo {
	border-bottom: none !important;
	text-decoration: none !important;
}
.bx-footer-logo img {
	max-width: 100%;
	height: auto;
}
footer a {color: #ffffff;}
.bx-footer-buttons {
	order: 2;
	padding-left: 50px;
}
.bx-footer-buttons .main-button {
	min-width: 263px;
}
.bx-footer-buttons .main-button.main-button.orange {
    margin-left: 26px;
}
.bx-footer-social {
	order: 3;
}
@media (max-width: 1285px) {
	.bx-footer-buttons .main-button.main-button.orange {
		margin-left: 5px;
	}
	.bx-footer-buttons .main-button {
		min-width: 232px;
	}
	.bx-footer-social .bx-icon {
		margin-left: 5px;
		width: 50px;
	}
}
@media (max-width: 1109px) {
	.bx-footer-buttons .main-button.main-button.orange {
		margin-left: 0;
	}
	.bx-footer-buttons .main-button {
		min-width: 212px;
		height: 40px;
		line-height: 40px;
		font-size: 15px;
	}
}
@media (max-width: 1064px) {
	.bx-footer-buttons .main-button {
		margin-bottom: 10px;
	}
}
@media (max-width: 847px) {
	footer .bx-logo-block {
		height: 70px;
	}
	footer .bx-logo-block img {
		max-height: 70px;
	}
	.bx-footer-buttons {
		padding-left: 15px;
		text-align: center;
	}
}
@media (max-width: 790px) {
	footer .bx-header-logo-text {
		font-size: 13px;
		line-height: 2;
	}
}
@media (max-width: 767px) {
	.bx-footer-social {
		text-align: center;
	}
	.bx-footer-buttons .main-button {
		margin-bottom: 20px;
	}
	footer {
		text-align: center;
	}
	footer .bx-logo-block {
		height: 90px;
	}
	.copyright {
		margin-bottom: 20px;
	}
}
@media (max-width: 575px) {
	.copyright {
		font-size: 12px;
	}
}

/* mobile menu */
.mobile_menu {
    display: inline-block;
	height: 30px;
    width: 30px;
    background-image: url(images/burger.png);
    background-size: 30px;
    background-position: center;
	background-repeat: no-repeat;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}
.mobile_menu_opened {
	background-image: url(images/close.png);
	background-size: 20px;
}
.bx-mobile-callback {
	display: none;
	padding: 15px;
}
@media (max-width: 451px) {
	.bx-header-callback {
		display: none;
	}
	.bx-mobile-callback {
		display: block;
	}
}

/* modal */
.modal-header {
	padding: 30px;
	border-bottom: none;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
.modal-body {
	padding: 0 30px 30px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}
.modal-content {
	border: none;
	border-radius: 25px;
}
.modal-header .close {
	padding: 0;
	margin-top: -10px;
	margin-right: -10px;
	margin-bottom: 0;
	width: 30px;
	height: 30px;
}
@media (max-width: 575px) {
	.modal-header {
		padding: 15px;
	}
	.modal-body {
		padding: 15px;
	}
	.modal-header .close {
		margin-top: 0;
		margin-right: 0;
	}
}