.gradient{
  margin: 70px 0 10px 0;
  padding: 50px;
  width: 100%;
  background-color: #283891;
  /* background-image: linear-gradient(125deg,#1855a3,#3949AB,#5C6BC0);
  background-size: 200%;
  animation: bganimation 15s infinite; */
}
.gradient h3{
  color: #fff;
  text-align: center;
  margin: 10px 0;
  padding: 0;
}
.gradient p{
  color: #fff;
  padding: 0;
  text-align: center;
  font-size: 20px;


}
.dugme1 a{
	margin-top: 30px;
	background-color:#fff;
	display:inline-block;
	cursor:pointer;
	color:#283891;
	font-size:14px;
	font-weight:bold;
  border: 1px solid #283891;
	border-radius: 5px;
	padding:13px 32px;
	text-decoration:none;

}
.dugme1 a:hover{
	background: #e5e5e5;
	color: #1e67c8;
	transition: 0.5s;
}
.dugme1 a:active{
	background-color:#1e67c8;
	color:#fff;

}
@keyframes bganimation {
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}
