@font-face {
    font-family: 'Montserrat';
    src: url('/templates/dom/lib/fonts/Montserrat-Regular.ttf');
    /* font-weight: 400; */
    font-style: normal;
    font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

:focus, :active {
  outline: none; }
/* a {
  color: #424242;
}
a:hover {
  color: #424242;
} */
a:focus, a:active {
  outline: none; }
  li {
     list-style-type: none;
  }

nav, footer, header, aside {
  display: block; }
  html {
    height: 100%;
  }
html, body {
    /* min-height: 100%; */
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: #202020;
    /* height: 100%; */
    width: 100%;
    line-height: 1.4;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background-color: rgba(177, 177, 177, 0.1);
}
.wrapper {
  min-height: calc(100vh - 70px);
}
.btn-oil {
	cursor: pointer;
    background-color: rgb(229, 79, 42);
    color: #fff;
    padding: 10px 15px;
    border-radius: 0px;
    box-shadow: rgb(199, 49, 12) 0px 0.25em 0px 0.01em;
    font-size: 18px;
    border-color: transparent;
}
.color-red {
  color: #ff0000;
}
a.btn-oil {
  color: #f0f0f0;;
  text-decoration: none;
}
a.btn-oil:hover {
  color: #fff;
  text-decoration: none;
}
/* Кнопка */
/* Основные стили */
.wave-btn {
	width: 280px;
	height: 60px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	overflow: hidden;

	position: relative;

	transition: all 0.8s ease 0s;
	-webkit-transition: all 0.8s ease 0s;
	-moz-transition: all 0.8s ease 0s;
	-ms-transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;

	justify-content:center;
	align-items: center;

	border-radius: 0 0 10px 10px;
	text-decoration: none;
}

.wave-btn:hover {
	border-radius: 10px;

	transition: all 0.8s ease 0.2s;
	-webkit-transition: all 0.8s ease 0.2s;
	-moz-transition: all 0.8s ease 0.2s;
	-ms-transition: all 0.8s ease 0.2s;
	-o-transition: all 0.8s ease 0.2s;

	-webkit-box-shadow: 0 0 40px rgba(244, 67, 3, 0.6);
	box-shadow: 0 0 40px rgba(244, 67, 3, 0.6);
	rgb(3, 169, 244)
}
.wave-btn:hover .wave-btn__waves{
	top: -50px;
}

.wave-btn__text {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 8px;
	position: relative;
	z-index: 1;
}
.wave-btn__waves {
	position: absolute;
	width: 280px;
	height: 280px;
	background-color: #d84315;
	top: 0;
	left: 0;
	-webkit-box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);

	transition: all 0.8s ease 0s;
	-webkit-transition: all 0.8s ease 0s;
	-moz-transition: all 0.8s ease 0s;
	-ms-transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;
}
.wave-btn__waves:after,
.wave-btn__waves:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 250%;
	height: 250%;

	transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	-moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	-ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	-webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	-o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
}

.wave-btn__waves:before{
	background-color: #ff5722;
	border-radius: 48%;

	animation: waves 5s infinite linear;
	-webkit-animation: waves 5s infinite linear;
	-moz-animation: waves 5s infinite linear;
	-o-animation: waves 5s infinite linear;
}
.wave-btn__waves:after{
	background-color: rgba(116, 39, 1, 0.5);
	border-radius: 44%;

	animation: waves 10s infinite linear;
	-webkit-animation: waves 10s infinite linear;
	-moz-animation: waves 10s infinite linear;
	-o-animation: waves 10s infinite linear;
}

@keyframes waves{
	0%{
		transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	}
	100%{
		transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
	}
}
@-webkit-keyframes waves{
	0%{
		transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	}
	100%{
		transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
	}
}
@-moz-keyframes waves{
	0%{
		transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	}
	100%{
		transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
	}
}
@-o-keyframes waves{
	0%{
		transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(0deg) scale(1);
	}
	100%{
		transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-moz-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-ms-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-webkit-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
		-o-transform: translate3d(-50%,-96%,0) rotate(360deg) scale(1);
	}
}
/* <- Кнопка */
.btn-oil:hover {
  transition: all 0.3s;
  background-color: rgb(199, 49, 12);
  border-radius: 0px;
  box-shadow: none;
  font-size: 18px;
  border-color: transparent;
}
.txt-gray {
  color: #A9A9A9;
}
/* ------------------ Стили сайта-----------------*/

.link-menu {
	color: #f5f5f5 !important;
}

.dp_color_bc {
	background-color: #388E3C;
}
.title_color {
	color: #388E3C;
}
.hr-border {
	border-color: #388E3C;
}
.lp_color {
	color: #C8E6C9;
}
.p_color_bc  {
	background-color:	#4CAF50;
}
.ti_color {
	color: #FFFFFF;
}
.akcent_color_bc {
	background-color: #FF5722;
}
.akcent_font_color {
	color: #FF5722;
}
.pr_color {
	color: #212121;
}
.secondry_color {
	color: #757575;
}
.d_color:{
	color: #BDBDBD;
}
.bg-color {
	background-color: #37474f;
}
/*----------- validate forms ---------------*/
#police.error {
	border: 1px solid #ff0000;
}
input.error{
  border: 1px solid #ff0000;
}
input.valid {
  border: 1px solid #05a40f;
}
label.error {
	color: #ff0000;
	font-weight: normal;
}
/* ------------/validate forms -------------*/
/* ------------ header----------------------- */
header {
display: block;
width: 100%;
position: fixed;
z-index: 999;
}
header .nav-link.link-menu.text-center.active {
color: #fff !important;
}
header .nav-link.link-menu.text-center.active::after {
	color: #fff;
	content: '';
	position: absolute;
	display: inline;
	height: 1px;
	background-color: #fff;
	bottom: 7px;
	left: 0px;
	width: 100%;
  }
  header .nav-link {
position: relative;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: #4caf50;
  }

a.lp_color {
	color: #C8E6C9;
  }
  a.lp_color:hover {
	color: #C8E6C9;
  }
  .header-contacts {
	height: 100%;
  }
header .img-logotip {
	width: 60px;
  border-radius: 50%;
  height: auto;
}
header a, header a:hover  {
  text-decoration: none;
}

header .bi.bi-list {
	display: inline-block;
	font-size: 1.7em;
	transition-property: transform;
	transition-duration: 0.5s;
  }

  header .bi.bi-list:hover {
	transform: rotate(90deg);
  }

header button{
	position: absolute;
	right: 0;
	top: -55px;
}
.navbar-toggler {
color: #fff;
border-color: #f0f0f0;
}
/* ------------/ header----------------------- */

/*---------------- slaider----------------------------- */

.block-text-slider {
width: 100%;
top:20%;
}
.slide-desc {
	z-index: 999;
}

.slide-desc {
	background-color: rgba(56, 142, 60,0.8);
}
.slick-prev {
	left: 25px;
	z-index: 9;
}
.slick-next {
	right: 25px;
	z-index: 9;
  }
  .slick-dots {
	bottom: 25px;
  }
/* -----------------------bl_raschet------------- */
.item-square1 {
	width: 80px;
	text-align: center;
	align-content: center;
	display: grid;
	border: 1px solid #ced4da;
	cursor: pointer;
	border-radius: 7px;
	margin: 5px;
	z-index: 3;
  }
 .block-square {
	background-color: #fff;
	border: 1px solid #cbc9c9;
	border-radius: 5px;
	height: 42px;
	overflow: hidden;
	padding: 0;
	position: relative;
  }
  .item-square {
	align-items: center;
	border-left: 1px solid #cbc9c9;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	height: 40px;
	justify-content: space-around;
	line-height: 22px;
	opacity: 1;
	padding: 0 12px;
	position: relative;
	transition: .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	width: 30%;
	z-index: 2;
  }
  .metka-square.p-absolute {
  background-color: #4caf50;
  border: 0;
  bottom: -1px;
  height: auto;
  left: 1px;
  position: absolute;
  top: -1px;
  transition: .2s;
  z-index: 1;
  }

.item-text-active {
color: #fff;
}

.square-input {
	-webkit-appearance: none;
	background-color: transparent;
	border: 0;
	  border-top-color: currentcolor;
	  border-right-color: currentcolor;
	  border-bottom-width: 0px;
	  border-bottom-style: none;
	  border-bottom-color: currentcolor;
	  border-left-color: currentcolor;
	border-bottom: 1px solid #383129;
	  border-bottom-color: rgb(56, 49, 41);
	border-radius: 0;
	line-height: 16px;
	max-width: 80px;
	min-width: 40px;
	padding: 3px 5px;
	text-align: center;
	width: 80%;
  }
  input[type="number"].valid {
	border: 0;
	border-bottom: 1px solid #000;
}
.item-active input[type="number"] {
	color: #fff;
	border-color: #fff;
}
input[type="number"] {
	color: #000;
	border-bottom: 1px solid #000;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
	display: none;
}
input[type="number"] {
	-moz-appearance: textfield;
  }
  input[type="number"]:hover,
  input[type="number"]:focus {
	-moz-appearance: number-input;
  }
/* -----------------------/bl_raschet------------- */
/* ------------------Featured ---------------------*/

.item-icon-feature {
	height: 70px;
}
.item-title-feature {
	height: 150px;
}
.item-desc-feature{
	height: 160px;
}
.item-btn-feature {
	height: 50px;
}
.card {
	justify-content: center;

}
.fs-12 {
font-size: 2em;
	}
.fs-14 {
font-size: 4em;
}
.fs-18 {
	font-size: 1.8em;
		}
/* .card {
	white-space:pre-wrap;
} */
/* ------------------/Featured ---------------------*/



/* ------------footer----------------------- */
footer a.nav-link, footer a.nav-link:hover  {
	color: #FFFFFF;
	text-decoration: none;
  }
footer p {
	color: #fff;
}

/* -------------- /footer--------------------- */

/* -------------cookie------------- */
.p-relative {
	position: relative !important ;
  }
  .p-absolute {
	position: absolute !important;
  }
  .p-fixed {
	position: fixed !important;
  }
  
  .d-flex {
	display: flex !important;
  }
  .blk-cookie {
	position: fixed !important;
	bottom: -1000px;
	left: 0;
	z-index: 9999;
	width: 100%;
	padding: 5px 20px;
	box-sizing: border-box;
	background-color: #fff;
	transition: all .5s;
	color: #7b7b7b;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
	border: 1px solid #d7d7d8;
	display: flex;
	justify-content: center;
  }
  .blk-cookie_active {
  bottom: 0;
  transition-duration: 1s;
  }
  .blk-cookie_closed {
	bottom: -1000px;
	transition-duration: 1s;
  }
  .blk-cookie__close {
	background: #424242;
	border: 1px solid #424242;
	border-radius: 4px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	align-items: center;
	color: #fff;
	padding: 6px 15px;
	cursor: pointer;
	margin-left: 20px;
	height: 30px;
  }
  a.blk-cookie__close:hover {
	color: #fff;
	text-decoration:none;
  }
  .blk-cookie a.police_link {
	color: #424242;
  }
  .blk-cookie a.police_link:hover {
	color: #424242;
  }
  
  
  /* -------------/cookie------------- */

@media (min-width: 1200px) {
	.fs-4 {
	  font-size: 1.2rem !important;
	}
  }
@media (max-width: 991px) {
	header .dropdown-menu {
		background-color: #4CAF50;
		border: 1px solid #C8E6C9;
	}
	header .nav-link{
		background-color: #4CAF50;
	}
	header .dropdown-item {
		color: #fff;
	}

	header .dropdown-menu.text-center.show {
		border-radius: 0;
		border: 0;
		margin: 0;
	}
	header .dropdown-item:focus, header .dropdown-item:hover {
		color: #fff;
		background: transparent;
	  }
}
@media (max-width: 540px) {
	.item-square{
	  padding: 0 6px;
	}
  }