@charset "UTF-8";

.itemBtns{margin:30px 0 0; overflow: hidden;}
.itemBtns li{float:left; width:300px; text-align: center;}
.itemBtns li + li{margin-left:19px;}
.itemBtns li a {
  display: block;
  padding: 13px;
  border: #014099 1px solid;
  font-weight: 600;
  transition: all .3s;
}
.itemBtns li a::after{transition: all .3s;}
.itemBtns li a:hover{
  text-decoration: none;
  background-color:#014099;
  color:#fff;
}
.itemBtns li a:hover::after{color:#fff;}

@keyframes fadein {
  0%{opacity:0;}
  100%{opacity:1;}
}
@keyframes fadeout {
  0%{opacity:1;}
  100%{opacity:0;}
}

  @media screen and (max-width:767px){
    .itemBtns li{float:none; width:70%; margin:0 auto;}
    .itemBtns li + li{margin:10px auto 0;}
  }


@-webkit-keyframes spin-anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin-anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
