section{
	margin:0;
	padding:0;
	font-family:"arial",heletica,sans-serif;
	font-size:12px;
    background: #2980b9 url('img/background-intense.png') repeat 0 0;
	-webkit-animation: 25s linear 0s normal none infinite animate;
	-moz-animation: 25s linear 0s normal none infinite animate;
	-ms-animation: 25s linear 0s normal none infinite animate;
	-o-animation: 25s linear 0s normal none infinite animate;
	animation: 25s linear 0s normal none infinite animate;
 
}
 
@-webkit-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-moz-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-ms-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@-o-keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}
 
@keyframes animate {
	from {background-position:0 0;}
	to {background-position: 500px 0;}
}

/**worked with**/
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");

section {
  margin: 50px 0px;
}

.section-header {
  text-align: center;
  margin: 40px;
}

.section-title {
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

.trusted-row {
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  align-items: center;
}

.trusted-row img {
  width: 200px;
  margin: 20px;
}

@media (max-width: 1000px) {
  .trusted {
    width: 100%;
  }
  .trusted-row img {
    width: 100px;
    margin: 20px;
  }
  .section-subtitle {
    width: 100%;
  }
}