/*		HERO		*/

.abk-hero-image {
   max-height: 25rem;
   overflow: hidden;
}

.abk-hero-image img {
   width: 100%;
}

.abk-hero-image--no-image {
   height: 2rem;
}

/*		MENY			*/


.abk-subpage-menu{
   border: 1px solid #f9f9f7;
   border-radius: 3px;
   background-color: #f9f9f7;
   padding: 1.25rem;
   border-bottom-left-radius: 0;
   border-bottom-right-radius: 0;
   position: relative;
   margin-bottom: 2rem;
}

.abk-subpage-menu ul {
	margin: 0;
   padding: 0;
   list-style: none;
}

.abk-subpage-menu li{
   padding: 0 0.5rem 0 1.5rem;
   margin-bottom: 1rem;
   position: relative;
}

.abk-subpage-menu .sol-page-listing-item__icon{
   display: block;
   margin-top: 0.5rem;
   margin-right: 0.25rem;
   margin-left: -1.5rem;
}

.abk-subpage-menu a {
   margin-bottom: 0;
   font-size: 1.125rem;
}

.abk-subpage-menu a:after {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}




@media (min-width: 768px) {
   .abk-subpage-menu ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
   }

   .abk-subpage-menu li{
      width: auto!important;
      -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
      flex: 1 0 33%;
      max-width: 33%;
   }
}