:root{
  --main-bg-color: #576FD3;
}
*,
*::after,
*::before{
  box-sizing: border-box;
}
a{
  text-decoration: none;
  color: #111;
  cursor: pointer;
}
ol,
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
img{
  max-width: 100%;
}
b,
strong{
  font-weight: 600;
}
hr{
  background: #111;
  box-shadow: none;
  border: none;
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
::selection{
  background: var(--main-bg-color);
  color: #fff;
}
::-moz-selection{
  background: var(--main-bg-color);
  color: #fff;
}

.container{
  position: relative;
  top: -1.12rem;
  width: 100%;
  /* max-width: 980px; */
  margin: 0 auto;
  padding: 0 2.64rem;
}
.card{
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease-in-out;
}
.card:hover .card__title{
  color: #7F328E;
}
.card-infos>.time a:nth-last-child(1){
  padding: 5px 10px;
  background: #F1F1F1;
  border-radius: .1rem;
}
.card:hover .card-infos>.time a:nth-last-child(1){
  background: #7F328E!important;
  color: #FFFFFF!important;
}
.card__picture{
  display: block;
  width: 100%;
  height: auto;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.card-infos{
  padding: 20px;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.card-infos>.time{
  display: flex;
  justify-content: space-between;
  font-size: .18rem;
  color: #888888;
  margin: .1rem 0;
}
.card-infos>.time a{
  color: #888888!important;
}

.card>a:hover{
  color: #576FD3;
}

.card__title{
  font-family: 'Hind';
  font-size: .3rem;
  font-weight: 600;
  /* line-height: 1.4; */
  margin: 0 0 10px;
}
.card__text{
  font-size: .26rem;
  font-weight: 300;
  margin: 0;
  color: #888888;
}
.card__text--high{
  font-weight: 600;
}

.header{
  background: var(--main-bg-color);
  height: 160px;
  display: flex;
}
.header__title{
  margin: auto;
  font-weight: 300;
  font-size: 3.2rem;
  color: #fff;
}
.header__title--high{
  font-weight: 600;
}

.sortable__nav{
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  margin-bottom: 20px;
/*   border-bottom: 1px solid #DFDFDF;
 */}
.sortable__nav>li{
  width: 16.6666666666667%;
  margin: 0!important;
  height: 1.12rem;
  border-right: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;;
  background: #FFFFFF;
}
.sortable__nav>li>a:focus, .sortable__nav>li>a:hover{
  color: #FFFFFF!important;
  background: #183e85!important;
}
.wrapper .sortable__nav>li>a{
  width: 100%;
  height: 100%;
  text-align: center;
  padding:  .2rem;
}
/* .wrapper .sortable__nav>li>a::before{
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
} */
.nav__link{
  padding: 0 .89rem .31rem;
  color: #454545;
  font-size: .24rem;
  font-weight: 300;
  display: block;
  border-bottom: 1px solid transparent;
 
}
.nav__link.is-active{
  /* border-color: var(--main-bg-color); */
}

.footer__list.list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list__item.item{
  display: flex;
}
.item__link.link{
  margin: 0;
}
.item__link.link:not(:first-child){
  margin-left: 20px;
}
.link__icon{
  height: 2rem;
  width: 2rem;
}
