﻿@-webkit-keyframes backgroundAnimation {
  0% {
    background-color: #999;
  }
  100% {
    background-color: #000;
  }
}
@-moz-keyframes backgroundAnimation {
  0% {
    background-color: #999;
  }
  100% {
    background-color: #000;
  }
}
@-ms-keyframes backgroundAnimation {
  0% {
    background-color: #999;
  }
  100% {
    background-color: #000;
  }
}
.heading {
  text-align: center;
  font-size: 2.14rem;
  line-height: 1.3em;
}

.heading__paragraph {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8em;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 1.57rem;
    line-height: 1.3em;
  }

  .heading__paragraph {
    margin-top: 20px;
  }
}

.icon {
  position: relative;
  padding-left: 90px;
}
.icon:before {
  width: 88px;
  height: 53px;
  display: block;
  background: url(../images/index_icon.gif) no-repeat 0 center;
  background-size: contain;
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
}

@media screen and (max-width: 767px) {
.icon {
  padding-left: 105px;
}
  .icon:before {
    background: url(../images/index_icon2.gif) no-repeat 0 center;
    background-size: contain;
    top: 0px;
  }
}