.advantages__row {
  padding-bottom: 10px;
}

.advantage {
  margin-top: 10px;
}
.advantage {
  text-align: center;
  position: relative;
  padding: 26px 0 4px;
  opacity: 0;
}

@media only screen and (min-width: 769px) {
  .advantage {
      /*1.12.16*/
      width: /*230px*/ auto;
      padding: 0;
      margin-top: 60px;
      margin-bottom: 12px;
  }
}

@media only screen and (min-width: 1024px) {
  .advantage {
      margin-top: 36px;
      margin-bottom: 0;
  }
}

.advantage__icon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #04a5d6;
  font-size: 32px;
  margin-bottom: 11px;
}

@media only screen and (min-width: 769px) {
  .advantage__icon {
      position: absolute;
      top: -2px;
  }
}

.advantage__title {
  color: #252525;  
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: bold;
}

.advantage__text {
  color: #252525;  
  font-size: 15px;
  line-height: 1.42;
}

.advantage--left {
}

@media only screen and (min-width: 990px) {
  .advantage--left {
      float: left;
      text-align: right;
  }
}

.advantage--left .advantage__icon {
  /*1.12.16*/
  /*right: -54px 0;*/
  left: 250px;
}

.advantage--right {
}

@media only screen and (min-width: 990px) {
  .advantage--right {
      float: right;
      text-align: left;
  }
}

.advantage--right .advantage__icon {
  /*1.12.16*/
  /*left: -54px 0;*/
  right: 250px;
}

.advantages-wrap {
  clear: both;
  /*background-color: #F3F3F4;
  background-image: linear-gradient(to top, #dfdfdf 0%, #fcfcfc 100%);  */
  margin-bottom: 5rem;
}

@media only screen and (min-width: 769px) {
  .advantages-wrap {
      /*height: 643px; Moytop*/
  }
}

@media only screen and (min-width: 1024px) {
  .advantages-wrap {
      /*height: 346px; Moytop*/
  }
}
.advantages {
  position: relative;
  /*overflow: hidden;*/
  padding: 0 36px 37px;
}

@media only screen and (min-width: 769px) {
  .advantages {
      /*height: 643px;*/
      padding: 0 30px 37px;
  }
}

@media only screen and (min-width: 1024px) {
  .advantages {      
      margin: 0 auto;
      padding: 0;
      top: 0px;
      /*height: 390px;*/
  }
  .glavnaya .advantages {
      max-width: 1320px;
  }
}

.advantages__picture {
	display:none;
}

@media only screen and (min-width: 1024px) {
.advantages__picture {display: block;
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  padding-bottom: 60px;
}
}


@media only screen and (max-width: 1360px) {
.text-desc .advantages__picture {	
	display: none;
}
}







@media only screen and (min-width: 768px) {
.advantage--left {
    margin-left: 20px;
	margin-right: 20px;
}
.advantage--right {
    margin-left: 20px;
	margin-right: 20px;
}
}



.advantages__row {
  overflow: hidden;
}

	
.glavnaya .advantage__title, .glavnaya .advantage__text {
  max-width: 330px;
}

.advantage__title, .advantage__text {
  max-width: 330px;
}

@media only screen and (max-width: 990px) {
  .advantage__title, .advantage__text, .glavnaya .advantage__title, .glavnaya .advantage__text {
      max-width: 100%;
  }
}

.advantage__text a {
  text-decoration: none;
  border-width: 0px 0px 1px 0px;
  border-style: dotted;
  transition:all 0.2s linear;
}

.advantage__text a:hover {
  text-decoration: none;
  border-style: solid;
  transition:all 0.2s linear;
}

.advantage__icon .fa-front {
  font-size: 25px;
  text-shadow: 1px 1px white;
}

.zoomin-1s {
  visibility: visible;
  animation: 1s zoomin;
}

.zoomin-3s {
  visibility: visible;
  animation: 3s zoomin;
}

.fromleft-1s {
  visibility: visible;
  opacity: 1;
  animation: 1s fromleft;
}

.fromright-1s {
  visibility: visible;
  opacity: 1;
  animation: 1s fromright;
}

@keyframes zoomin {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
		}

@keyframes fromleft {
  0% {
      transform: translateX(-999px) scale(0.2)
  }
  100% {
      transform: translateX(0px) scale(1)
  }
}

@keyframes fromright {
  0% {
      transform: translateX(999px) scale(0.2)
  }
  100% {
      transform: translateX(0px) scale(1)
  }
}