body{
	margin: 0;
	background: #0A0A0A;
	font-family: "AvenirNextCyr";
	color: #FCFCFD;
}
*{box-sizing: border-box;}
#wrapper{
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: url(../img/bg.png) 0 0 no-repeat;
	display: flex;
	align-items: center;
}
.box-center{
	width: 100%;
}
.box-center .wrap{
	max-width: 1300px;
	margin: 0 auto;
}
.h1{
	font-size: 40px;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 30px;
}
.with-uz{position: relative;}
.with-uz:after{
	content: '';
	width: 32px;
	height: 108px;
	background: url(../img/uz.svg) 0 0 no-repeat;
	position: absolute;
	left: -62px;
	top: 50%;
	margin-top: -54px;
}
.ico-list{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.ico-list li{
	width: 50%;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 1.4;
	padding-right: 30px;
}
.ico-list li .ico{
	margin-right: 30px;	
}
.slider{
	padding-left: 220px;
	width: 2000px;
	margin-bottom: 23px;
}
.slider .img{
	overflow: hidden;
	border-radius: 10px;
	width: 250px;
}
.owl-carousel .owl-nav{
	width: 190px;
	left: 0px;
	top: 50%;
	margin-top: -40px;
	position: absolute;
}
.owl-carousel .owl-nav>div{
	display: block;
	text-indent: -9999px;
	width: 80px;
	height: 80px;
	float: left;
	border: 2px solid #E1171B;
	border-radius: 50%;
	background: url(../img/left.svg) 50% no-repeat;
}
.owl-carousel .owl-nav>div:last-child{
	float: right;
   transform: rotate(-180deg);
}
.owl-carousel .owl-nav>div:hover{
	background-color: #E1171B;
}
.btn-bx{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.h3{
	font-size: 30px;
	line-height: 1.4;
	margin: 0;
}
.btn{
	min-width: 240px;
	width: 240px;
	height: 240px;
	text-decoration: none;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #E1171B;
	font-weight: bold;
	font-size: 25px;
	line-height: 1.1;
	margin-left: 50px;
	position: relative;
}
.pulse::before {
  content: ''; // Нужно для отображения псевдокласса
  position: absolute;
  border: 2px solid #E1171B; // Ширину обводки можете выбрать сами
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite; // Указываем название анимации, время, тип, и нужно ли её повторять
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.pulse::after,
.pulse::before {
  content: '';
  position: absolute;
  border: 2px solid #E1171B;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

	.small-scr .h1{
		font-size: 35px;
		margin-bottom: 20px;
	}
	.small-scr .ico-list .ico img{
		zoom:.5;
	}
	.small-scr .ico-list li{
		font-size: 18px;
	}
	.small-scr .h3{
		font-size: 25px;
	}
	.small-scr .btn{
		min-width: 150px;
		width: 150px;
		height: 150px;
		font-size: 16px;
	}
	.small-scr .btn img{width: 40px;}
	.small-scr .slider .img{width: 200px;}




@media (max-width: 1299px){
	.wrap{padding-left: 15px;padding-right: 15px;}
	.with-uz:after{display: none;}
}
@media (max-width: 1023px){
	#wrapper{padding: 40px 0;height: auto;}
	.slider{width: auto;}
	.slider .img{width: auto;}
	.h1{font-size: 30px;}
	.ico-list li .ico img{zoom:.5;}
	.ico-list li .ico{margin-right: 15px;}
	.ico-list li {font-size: 16px;}
	.slider{padding-left: 0;}
	.owl-carousel .owl-nav>div{zoom:.5;}
	.owl-carousel .owl-nav{width: 100%;margin-top: -20px;padding: 0 10px;}
	.h3{font-size: 22px;}
	.btn{min-width: 160px;width: 160px;height: 160px;font-size: 16px;}
	.btn img{width: 40px;}
	.btn  span span{display: block;}
}
@media (max-width: 767px){
	.h1{font-size: 25px;}
	.ico-list li{width: auto;padding-right: 0;}
	.ico-list {display: block;}
	.btn-bx{display: block;}
	.h3{margin-bottom: 30px;font-size: 20px;}
	.btn{margin: 0 auto;}
}