* {
    padding:0px;
    margin:0px;
    font-family: 'Open Sans', sans-serif;
}
.container {
    width: 970px;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #def0f6;
    background-image: url(pattern-top-right.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 236px;
}
h1 {
    color: #59b3d8;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 1.2px;
}
em {
    color: #afb0b0;
    margin: 0 8px;
}
.btn {
    min-width: 133px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding: 9px 7px 10px;
    background: #94be47;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    border: 0;
    border-radius: 19px;
    cursor: pointer;
    -webkit-transition: background-color .5s;
    -moz-animationtransition: background-color .5s;
    transition: background-color .5s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn:hover {
    background-color: rgba( 148, 190, 71, .7);
}
.left-content {
    float: left;
    padding: 20px;
}
.left-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.left-content li {
    position: absolute;
}

.left-content  li:nth-child(4) {
  -webkit-animation: xfade 16s 0s infinite;
          animation: xfade 16s 0s infinite;
}
.left-content  li:nth-child(3) {
  -webkit-animation: xfade 16s 4s infinite;
          animation: xfade 16s 4s infinite;
}
.left-content  li:nth-child(2) {
  -webkit-animation: xfade 16s 8s infinite;
          animation: xfade 16s 8s infinite;
}
.left-content  li:nth-child(1) {
  -webkit-animation: xfade 16s 12s infinite;
          animation: xfade 16s 12s infinite;
}

@-webkit-keyframes xfade{
  17% {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  25% {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  92% {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes xfade{
  17% {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  25% {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  92% {
    opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.right-content {
    max-width: 55%;
    float: left;
    padding-left: 47.6%;
    padding-top: 20px;
}
.logos {
    display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;  /* TWEENER - IE 10 */ /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 22px;
}
.logos img {
    width: 44px;
}
