.devices__el {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.devices__wrapper {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.devices__el {
  padding-top: 20px;
}
.devices__text{
	font-size: 12px;
}
@media (min-width: 768px) {
  .devices__el {
    padding-top: 100px;
  }
	.devices__text{
		font-size: 14px;
	}
}
.devices__el:after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 769px) {
	.devices__wrapper{
		display: flex;
		flex-direction: column;
	}
	.devices__wrapper_2>div:nth-child(2) { order: 1; }
	.devices__wrapper_2>div:nth-child(1) { order: 2; }
}
/*
@media (max-width: 769px) {
  .devices__col_start {
    float: right;
		width: 100%;
		background: #0000FF;
  }
  .devices__col_end {
    float: left;
		width: 100%;
		background: #FF0000;
  }
}
*/
.devices__col {
	float: left;
	width: 100%;
}

@media (min-width: 768px) {
  .devices__col {
    width: 50%;
		float: left;
  }
}
.devices__pretitle {
  font-family: Catamaran, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #00aeef;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -1px;
  display: none;
}
.devices__pretitle.is-mobile {
  display: block;
}
@media (min-width: 768px) {
  .devices__pretitle {
    display: block;
    padding: 0;
  }
  .devices__pretitle.is-mobile {
    display: none;
  }
}
.devices__title {
  color: #fff;
  font-size: 32px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -3px;
  display: none;
}
.devices__title_both {
  color: #fff;
  font-size: 32px;
  padding-right: 15px;
  margin-left: 0;	
}
.devices__title.is-mobile {
  display: block;
}
@media (min-width: 768px) {
  .devices__title {
    display: block;
    font-size: 42px;
    line-height: 0.8em;
    padding: 0;
    margin-bottom: 20px;
  }
  .devices__title.is-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .devices__title {
    font-size: 48px;
  }
}
.devices__content {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding: 20px;
}
.devices__features {
  margin-top: 30px;
	padding-left: 0;
  text-align: center;
}
.devices__feature{
	font-weight: normal;
}
@media (min-width: 1024px) {
  .devices__features {
    text-align: left;
  }
}
.devices__single {
  display: inline-block;
  width: calc(25% - 24px);
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  vertical-align: top;
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .devices__single {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .devices__single {
    text-align: center;
  }
}
.devices__icon {
  height: 35px;
  width: auto;
  max-width: 40px;
  vertical-align: bottom;
  margin-bottom: 10px;
}




.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track {
  transform: translate3d(0, 0, 0);
}

	.carousel-smart img{
		max-height: 100px;
	}

@media (min-width: 768px) {
	.carousel-smart img{
		max-height: 700px;
	}
}
.carousel-smart:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 174, 239, 0.6);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  z-index: 0;
}

.carousel-smart>.carousel-control{
	background-image: none;
}


.carousel-smart>.carousel-indicators li {
	width: 14px;
	height: 14px;
	background: transparent;
	border: 2px solid #FFFFFF;
	margin: 3px;
}
.carousel-smart>.carousel-indicators .active {
	background-color: #FFFFFF;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.6);
  }
  70% {
    box-shadow: 0 0 0 200px rgba(0, 174, 239, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
  }
}