
/**
 * Styling navpromenuigation
 */

/**
 * Styling top level items
 */
.navpromenu a,
.navpromenu label {
  display: block;
  padding: 1.2rem;
    color: #333;
    background-color: #fff;
    box-shadow: inset 0 -1px 1px #f7f7f7;
  transition: all 0.25s ease-in;
}
.navpromenu a:focus, .navpromenu a:hover,
.navpromenu label:focus,
.navpromenu label:hover {
  color:#fff;
  background: #0157aa;
}

.navpromenu label {
  cursor: pointer;
}


.navpromenu__list .active{
    color: #fff;
    background-color: #0157aa;
}

/**
 * Styling first level lists items
 */
.group-list a,
.group-list label {
  padding-left: 2rem;
  background: rgba(0,0,0,0.01);
  color:#333;
  box-shadow: inset 0 -1px #fff;
}
.group-list2 a, .group-list2 label {
  background: #fff!important;
}
.group-list a:focus, .group-list a:hover,
.group-list label:focus,
.group-list label:hover,
.navpromenu__list .active label {
    color: #fff!important;
  background: #1048a0!important;
}



/**
 * Styling second level list items
 */
.sub-group-list a,
.sub-group-list label {
  padding-left: 2rem;
  background: #fff; color:#666;
  box-shadow: inset 0 -1px #ccc;
}
.sub-group-list a:focus, .sub-group-list a:hover,
.sub-group-list label:focus,
.sub-group-list label:hover {
  background: #232323;
}

/**
 * Styling third level list items
 */
.sub-sub-group-list a,
.sub-sub-group-list label {
  padding-left: 6rem;
  background: #454545;
  box-shadow: inset 0 -1px #575757;
}
.sub-sub-group-list a:focus, .sub-sub-group-list a:hover,
.sub-sub-group-list label:focus,
.sub-sub-group-list label:hover {
  background: #333333;
}

/**
 * Hide nested lists
 */
.group-list,
.sub-group-list,
.sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.navpromenu__list input[type=checkbox]:checked + label + ul {
  /* reset the height when checkbox is checked */
  max-height: 1000px;
}

/**
 * Rotating chevron icon
 */
label > span {
  float: right;
  transition: transform 0.65s ease;
}

.navpromenu__list input[type=checkbox]:checked + label > span {
  transform: rotate(90deg);
}

/**
 * Styling footer
 */
footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #050505;
}

.soc-media {
  display: flex;
  justify-content: center;
}

.soc-media li:nth-child(n+2) {
  margin-left: 1rem;
}

.soc-media a {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease-in;
}
.soc-media a:focus, .soc-media a:hover {
  color: rgba(255, 255, 255, 0.2);
}