@font-face{
font-family: 'MyWebF';
src: url('../fonts/15806.otf');
/*font-weight: normal;*/
/*font-style: normal;*/
}
/*MODAL////////////////////////////////////////////////////*/
/*.bgc-modal-window {
  cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background-color: rgba(255,255,255,0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 10000;
}
.bgc-modal-window-active {
    opacity: 1;
    visibility: unset;
}
.modal-window {
    position: fixed;
    top: 0;
    width: 50%;
    z-index: 100000;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 90px 40px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 90px 40px rgba(0,0,0,0.5);
    background-color: #212529;
    top: -50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.form-phone input {
    position: relative;
    border: 0;
    box-shadow: none;
    background-color: #fff;
    border-radius: 3px;
    margin: 10px 0px;
    width: 80%;
    font-size: 15px;
    font-family: 'PoiretOne-Regular', sans-serif;
    font-weight: 500;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.form-phone small {
	padding: 10px;
}
.form-phone button {
	color: #fff;
	width: 80%;
	margin: 0 auto;
	font-family: 'PoiretOne-Regular', sans-serif;
	background-color: #ff9300;
}
.modal-window-active {
    top: 50%;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.close-modal {
    position: absolute;
    right: 0;
    top: -25px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}*/
/*END_MODAL///////////////////////////////////////////////////*/
/*CALL///////////////////////////////////////////////////////*/
.pulse a {
	color: #ff9300!important;
  z-index: 1000;
}
.pulse {
  position: fixed;
  bottom: 5%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #212529c7;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  color: #ff9300;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
  z-index: 999;
  cursor: pointer;
  
}

.pulse:before,
.pulse:after {
	content: " ";
	display: block;
	position: absolute;
	border: 50%;
	border: 1px solid #ff9300;
	left: -20px;
	right: -20px;
	top: -20px;
	bottom: -20px;
	border-radius: 50%;
	animation: animate 1.5s linear infinite;
	opacity: 0;
	backface-visibility: hidden; 
  z-index: -1;
}

.pulse:after{
	animation-delay: .5s;
}

@keyframes animate
{
	0%
	{
		-webkit-transform:scale(0.5) ;
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
		opacity: 0;
	}
	50%
	{
		opacity: 1;
	}
	100%
	{
		-webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
		opacity: 0;
	}
}

/*END_CALL/////////////////////////////////////////////////////*/
/*MENU/////////////////////////////////////////////////////////////*/
.navigation-menu__bars, .navigation-menu__bars::before, .navigation-menu__bars::after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 25px;
  background: #ff9300;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.navigation-menu {
  background-color: transparent;
  height: 100%;
  position: fixed;
  width: 600px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: transform .3s .1s;
  -o-transition: transform .3s .1s;
  transition: transform .3s .1s;
  z-index: 1001;
}
.navigation-menu::before {
  background: #212529;
  content: '';
  height: 400%;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(40deg);
  -ms-transform: translate(-50%, -50%) rotate(40deg);
  -o-transform: translate(-50%, -50%) rotate(40deg);
  transform: translate(-50%, -50%) rotate(40deg);
  width: 100%;
  z-index: 1000;
}
.navigation-menu--open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.navigation-menu--open .navigation-menu__bars {
  background-color: transparent;
}
.navigation-menu--open .navigation-menu__bars::before, .navigation-menu--open .navigation-menu__bars::after {
  top: 0;
}
.navigation-menu--open .navigation-menu__bars::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navigation-menu--open .navigation-menu__bars::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navigation-menu--open .menu-list__item {
  opacity: 1;
}
.navigation-menu--open .menu-list__item:nth-child(1) {
  -webkit-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s;
}
.navigation-menu--open .menu-list__item:nth-child(2) {
  -webkit-transition-delay: .7s;
-o-transition-delay: .7s;
transition-delay: .7s;
}
.navigation-menu--open .menu-list__item:nth-child(3) {
  -webkit-transition-delay: .8s;
-o-transition-delay: .8s;
transition-delay: .8s;
}
.navigation-menu--open .menu-list__item:nth-child(4) {
  -webkit-transition-delay: .9s;
-o-transition-delay: .9s;
transition-delay: .9s;
}
.navigation-menu__toggle {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: -40px;
  top: 5px;
  width: 30px;
  z-index: 1001;
}
.navigation-menu__bars::before, .navigation-menu__bars::after {
  content: '';
}
.navigation-menu__bars::before {
  left: 0;
  top: -8px;
}
.navigation-menu__bars::after {
  left: 0;
  top: 8px;
}

.menu-list {
  padding: 60px 20px;
  position: relative;
  z-index: 1001;
}
.menu-list__item a {
	text-decoration: none;
	color: inherit;
}
.menu-list__item {
  margin: 40px 0;
  opacity: 0;
  -webkit-transition: opacity .5s .5s;
  -o-transition: opacity .5s .5s;
  transition: opacity .5s .5s;
  list-style: none;
  color: #ff9300;
  font-size: 25px;
}

@media only screen and (max-width: 700px) {
  .navigation-menu {
    min-width: 240px;
    width: 80%;
  }
  .navigation-menu::before {
    width: 110%;
  }
}
@media only screen and (max-width: 480px) {
  .navigation-menu {
    background-color: #212529;
    min-width: 240px;
    width: 80%;
  }
  .navigation-menu::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
/*END_MENU////////////////////////////////////////////////////////////*/
section {
	overflow-x: hidden;
}
.section-main {
	text-align: center;
	min-height: 100vh;
	background-color: #545b62;
	/*background: linear-gradient(to bottom, transparent, #000);*/
}
.product-description {
	/*min-height: 100vh;*/
	padding-bottom: 30px;
	background-color: #f8f9fa;
}
.product-description-two {
	/*min-height: 100vh;*/
	background-color: #e4e4e4;
}
.product-description-three {
	padding: 15px 0px;
	/*min-height: 100vh;*/
	background: #f8f9fa;
}
.product-description-four {
	padding: 15px 0px;
	/*min-height: 100vh;*/
	background: #e4e4e4;
}
.product-description-five {
	padding-top: 15px;
	/*min-height: 100vh;*/
	background: #f8f9fa;
}
.customers-section {
	padding-top: 15px;
	padding-bottom: 30px;
	/*min-height: 100vh;*/
	background: #545b62;
}
.section-contact {
	padding-top: 15px;
	padding-bottom: 30px;
	/*min-height: 100vh;*/
	background: #e4e4e4;
}
.leng-block {
	position: absolute;
	right: 0;
	top: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.leng-block img {
	margin: 10px;
}
.logo-img {
	/*position: absolute;*/
	/*left: 50%;*/
	/*-webkit-transform: translateX(-50%);*/
	/*-ms-transform: translateX(-50%);*/
	/*-o-transform: translateX(-50%);*/
	/*transform: translateX(-50%);*/
	width: 30%;
	margin-top: 70px;
	margin-bottom: 200px;
}
.block-text-main {
	/*position: absolute;*/
	/*top: 50%;*/
	/*left: 50%;*/
	width: 100%;
	/*-webkit-transform: translate(-50%, -50%);*/
	/*-ms-transform: translate(-50%, -50%);*/
	/*-o-transform: translate(-50%, -50%);*/
	/*transform: translate(-50%, -50%);*/
}
.h1-un-one {
	font-family: 'MyWebF', sans-serif;
	margin: 30px auto;
	font-weight: bold;
	text-align: center;
	color: #ff9300;
}
.h1-un-two {
	font-family: 'MyWebF', sans-serif;
	margin: 30px auto;
	font-weight: bold;
	text-align: center;
	color: #ff9300;
}
.btn-more:hover {
	color: #ff9300;
	background-color: #f8f9fa;
	-webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,.5);
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,.5);
}
.btn-more {
	margin: 10px auto;
	background-color: #ff9300;
	width: 300px;
	font-family: 'MyWebF', sans-serif;
	font-size: 25px;
	/*font-weight: bold;*/
	color: #f8f9fa;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	-webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,.4);
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,.4);
}
.main-footer-span {
	/*position: absolute;*/
	/*bottom: 5px;*/
	font-family: 'MyWebF', sans-serif;
	display: block;
	text-align: center;
	width: 100%;
	color: #f8f9fa;
}
.h2-un-three {
	font-family: 'MyWebF', sans-serif;
	/*margin: 30px auto;*/
	padding-top: 15px;
	font-weight: bold;
	text-align: center;
	color: #ff9300;
}
.h2-un-three span {
	color: #28a745;
}
.h4-un-four {
	font-family: 'MyWebF', sans-serif;
	/*margin: 30px auto;*/
	padding-top: 15px;
	font-weight: bold;
	text-align: center;
	color: #555;
	/*text-shadow: 	0px 4px 3px rgba(0,0,0,0.4), 
								0px 8px 13px rgba(0,0,0,0.1), 
								0px 18px 23px rgba(0,0,0,0.1);*/	
}
.h5-un-five {
	font-family: 'MyWebF', sans-serif;
	/*margin: 30px auto;*/
	padding-top: 15px;
	font-weight: bold;
	text-align: center;
	color: #555;
}
.block-span {
	margin-top: 50px;
}
.block-span span {
	display: block;
	width: 100%;
	text-align: center;
}
.span-text {
	/*margin-bottom: -5px;*/
	font-size: 22px;
	font-family: 'MyWebF', sans-serif;
}

.btn-order:hover {
	color: #ff9300;
	background-color: #252921;
	-webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,.5);
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,.5);
}
.btn-order {
	margin: 0px auto;
	margin-top: 20px;
	background-color: #ff9300;
	width: 300px;
	font-family: 'MyWebF', sans-serif;
	font-size: 25px;
	/*font-weight: bold;*/
	color: #f8f9fa;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	-webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,.4);
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,.4);
}
.img-col img{
	width: 50%;
	position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.img-col {
	padding-top: 50px;
	min-height: 500px;
}
.list-group-item {
	background-color: transparent;
}
.d-program-p {
	padding: 0;
	margin: 0;
	font-family: 'MyWebF', sans-serif;
	font-size: 20px;
}
.monitor-img {
	max-width: 100%;
}
.tablett-img {
	max-width: 100%;
}
.hand-with-phone-img {
	max-width: 100%;
}
.foter-section {
	overflow: hidden;
	/*height: 50px;*/
	background-color: #212529;
	-webkit-box-shadow: 0px -20px 40px 15px rgba(0,0,0,.4);
	box-shadow: 0px -20px 40px 15px rgba(0,0,0,.4);
}
.footer-menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.footer-menu a {
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	font-family: 'MyWebF', sans-serif;
	color: #f8f9fa; 
	display: block;
	margin: 20px auto;
}
.main-footer-span-d {
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	font-family: 'MyWebF', sans-serif;
	color: #f8f9fa; 
	display: block;
	margin: 20px auto;
	text-align: center;
}
.list-group {
	font-family: 'MyWebF', sans-serif;
	border: none;
}
/*.card-span-block {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.card-map {
	margin: 0 auto;
	width: 50%;
	overflow: hidden;
	border-radius: 150px;
	border: none;
}
.h4-un-customers {
	font-family: 'MyWebF', sans-serif;
	padding-top: 15px;
	font-weight: bold;
	text-align: center;
	color: #ff9300;
}
.card-img-overlay {
	background-color: rgba(255,255,255,.7);
}
.span-city {
	font-family: 'MyWebF', sans-serif;
	font-weight: bold;
	display: block;
	width: 100%;
	color: #545b62;
	font-size: 22px;
	text-align: center;
}*/
.utc-results-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 43%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.utc-results-nav a {
  text-shadow: 0px 20px 5px rgba(0,0,0,0.5);
  -webkit-text-shadow: 0px 20px 5px rgba(0,0,0,0.5);
  text-decoration: none;
  text-transform: none;
  position: relative;
  display: inline-block;
  height: 50px;
  font: 25px 'MyWebF', sans-serif;
  color: #777;
  -webkit-transition: all 0.3s cubic-bezier(0.62, 1.49, 0.99, 1.35);
  -o-transition: all 0.3s cubic-bezier(0.62, 1.49, 0.99, 1.35);
  transition: all 0.3s cubic-bezier(0.62, 1.49, 0.99, 1.35);
}
.utc-results-nav a.active {
  /* margin-top: 10px; */
  /* text-decoration-line: underline; */
  font-size: 30px;
  text-shadow: 0px 15px 3px rgba(0,0,0,0.5);
  -webkit-text-shadow: 0px 15px 3px rgba(0,0,0,0.5);
  /*letter-spacing: 3px;*/
  font-weight: 900;
  color: #ff9300;
}
.from-them {
  position: relative;
  padding: 10px 20px;
  width: 65%;  
  background: #E5E5EA;
  border-radius: 20px;
  margin: 0 auto;
  color: black;
  /*float: left;*/
}
.from-them:after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: -2px;
  left: 4px;
  width: 26px;
  height: 20px;
  background: #545b62;
  border-bottom-right-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
  -ms-transform: translate(-30px, -2px);
  -o-transform: translate(-30px, -2px);
  transform: translate(-30px, -2px);
}
.from-them:before {
	content: "";
  position: absolute;
  z-index: 2;
  bottom: -2px;
  left: -7px;
  height: 20px;
  border-left: 20px solid #E5E5EA;
  border-bottom-right-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  -o-transform: translate(0, -2px);
  transform: translate(0, -2px);
}
.from-them  p {
	font-family: 'MyWebF', sans-serif;
	font-weight: 100;
	font-size: 14px;
}
.h5-un-five i {
	color: #ff9300;
	font-size: 25px; 
}
.form-contact input:focus {
	outline: none;
} 
.form-contact textarea:focus {
	outline: none;
} 
.form-contact input {
	position: relative;
  border: 0;
  /* outline: none; */
  box-shadow: none;
  background-color: #fff;
  border-radius: 3px;
  margin: 10px auto;
  font-family: 'MyWebF', sans-serif;
  width: 80%;
  font-size: 15px;
  font-weight: 500;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.form-contact textarea {
	outline: none;
	/*-moz-appearance: none;*/
  -webkit-appearance: textarea;
  white-space: pre-wrap;
  overflow-wrap: break-word;
	position: relative;
	font-family: 'MyWebF', sans-serif;
	width: 80%;
	margin: 10px auto;
	resize: none;
	height: 200px;
	padding: 15px;
	-webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  border-radius: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
/*ACARDEON/////////////////////////////////////////////////////////////////////////////////////*/

/*END_ACADRDEON//////////////////////////////////////////////////////////////////////////////////*/
/*D_PROGRAM////////////////////////////////////////////////////////////////////////////////*/
.d-section-main {
	/*min-height: 100vh;*/
	background: linear-gradient(to bottom, #545b62 , #f8f9fa);
}
.d-section-img {
	/*min-height: 100vh;*/
	background-color: #f8f9fa;
	padding-bottom: 60px;
}
.img-d-infograph {
	width: 60%;
}
.slider-scrin {
	width: 50%;
	margin: 0 auto;
}
.slider-scrin div img {
	width: 100%;
}
.slick-dots li button:before {
	font-size: 18px;
}
.slick-slide {
	outline: none;
}

.slider-client-phone div img {
	width: 40%;
	margin: 0 auto;
}
/*PRIVCY/////////////////////////////////////////////////////////*/
.border-ul {
  list-style: none;
  padding: 0;
  width: 80%;
  margin: 0 auto;
}
.border-ul li {
  font-family: "Trebuchet MS", "Lucida Sans";
  padding: 7px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 10px solid #f05d22; 
  box-shadow: 2px -2px 5px 0 rgba(0,0,0,.1),
       -2px -2px 5px 0 rgba(0,0,0,.1),
      2px 2px 5px 0 rgba(0,0,0,.1),
      -2px 2px 5px 0 rgba(0,0,0,.1);
  font-size: 20px;
  letter-spacing: 2px;
  transition: 0.3s all linear; 
  color: #f8f9fa;
  text-align: left;
}
.border-ul-2 li {
  border-left: 10px solid #dc3545;
}
/*END_D_PROGRAM////////////////////////////////////////////////////////////////////////////*/
@media (min-width: 2000px) {
	.img-col img {
		width: 35%;
	}
}
@media (max-width: 1024px) {
	.img-col img {
		width: 30%;
	}
	.card-map {
		width: 70%; 
	}
}
@media (max-width: 812px) {
	.logo-img {
		width: 75%;
	}
	.btn-more {
		width: 250px;
		font-size: 19px;
	}
	.main-footer-span {
		font-size: 10px;
	}
	.footer-menu a {
		font-size: 12px;
	}
	.main-footer-span-d {
		/*margin: 0 auto;*/
		font-size: 12px;
	}
	.card-map {
		width: 95%; 
	}
	.btn-order {
		width: 250px;
		font-size: 19px;
	}
	.slider-scrin {
		width: 95%;
		margin: 0 auto;
	}
	.slick-dots li button:before {
		font-size: 12px;
	}
	.utc-results-nav {
		width: 95%;
	}
	.from-them p {
		font-size: 12px;
	}
	.blockquote-footer {
		font-size: 50%;
	}
	.modal-window {
    width: 95%;
  }
	/*.un-slider-index-ru .slick-dotted .slick-slider{
		width: 90%;
	}*/
}
@media (max-width: 736px) {
	.logo-img {
		width: 75%;
		margin-bottom: 50px;
	}
	.span-city {
		font-size: 15px;
	}
  .border-ul {
    width: 96%;
  }
  .border-ul li {
    font-size: 12px;
  }
}
@media (max-width: 426px) {
	.img-col img {
		width: 80%;
	}
	.footer-menu a {
		font-size: 10px;
	}
	.form-contact input {
		width: 95%;
	}
	.form-contact textarea {
		width: 95%;
	}
	.d-program-p {
		font-size: 14px;
	}
	.h1-un-one-d {
		font-size: 25px;
	}
	.img-d-infograph {
		width: 100%;
	}
}

