.header-container-wrapper{
  border-bottom: 1px solid #C7C7C7;
}
.card__icon{
  margin-bottom:10px;
}
.page-header {
  height: var(--height-header);
  align-items: center;  
}
.page-header .header__logo {
  max-width: 180px;
  width: 100%;
}
.page-header .header__menu {
  max-width: calc(100% - 180px);
  width: 100%;
}
.page-header .header-menu__container{
  width: 100%;
}
.page-header .menu__nav {
  justify-content: space-around;
  max-width: calc(100% - 170px);
  width: 100%; 
}
.page-header .menu__container {
  justify-content: space-evenly;
  align-items: center;
  width: 100%;  
}
.page-header .menu__cta {
  max-width: 170px;
  width: 100%;
}
.page-header .item__container {
  visibility: hidden;
  height: 0;
  width: 100%;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: calc(100% + 1px);
  padding: 30px 0;
}
.page-header .menu-item__title {
  cursor: pointer;
  color: black;
  font-weight: 500;
}
.page-header .menu-item__link a {
  color: black;
  font-weight: 500;
}
.page-header .menu__item.active .item__container {
  visibility: visible;
  height: auto;  
  z-index: 550;
}
.page-header .menu__item .item-arrow__icon svg {
  transition: all 0.5s ease;
  transform: rotate(0deg);
}
.page-header .menu__item.active .item-arrow__icon svg {
  transition: all 0.5s ease;
  transform: rotate(180deg);
}
.page-header .menu-header__icon,
.page-header .menu-header__icon .close-menu__icon,
.page-header .nav__checkbox {
  display: none
}


.page-header .slider__item {
  padding: 0px 15px;
}
.page-header .slider__item .card {
  background-color: #FAFAFA;
  padding: 58px 24px;
  border-radius: 24px;
  width:auto;
  border:none;
}
.page-header .slider__item .card:hover {
  background-color: white;
  padding: 58px 24px;
  border-radius: 24px;
  width:auto;
  border:none;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.25);
  transform: scale(1.025);
  transition: all 250ms;
}
.page-header .slider__item .card .card__title {
  position: relative;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.page-header .slider__item .card .card__description {
  color: #6D6D6D;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
}
.page-header .slider__item .card .card__link a {
  margin-left: 24px;
  color: #AF182B;
  font-weight: 600;
}
.page-header .slider__item .card:hover .card__link a {
  margin-left: 24px;
  color: #AF182B;
  font-weight: 600;
  transform: scale(1.05);
  transition: all 250ms;
}
.page-header .reports .card,
.page-header .community .card{
  background-color: #FAFAFA;
  padding: 13px 24px;
  border-radius: 24px;
  width: fit-content;
  margin: 0 18px;
}

.page-header .reports ul ,
.page-header .community ul {
  display: flex;
  justify-content: center;
}

.page-header .university .slider__item .card .card__title {
  color: #6D6D6D;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;  
}

@media screen and (max-width:992px){
  .page-header {
    justify-content: space-between;
  }
  .page-header .menu-header__icon {
    display: block;
    cursor: pointer;
  }
  .page-header .header__menu {    
    display: none;
  }
  .page-header #menu-header__checkbox:checked~label.nav__toggle .close-menu__icon {
    display: block;
  }
  .page-header #menu-header__checkbox:checked~label.nav__toggle .hamburger-menu__icon {
    display: none;
  }
  .page-header #menu-header__checkbox:checked~div.header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    /*     box-shadow: 5px 10px 8px #f0f0f0; */
    z-index: 550;
    background-color: #fff;
    height: calc(100vh - (var(--height-header)));

  }
  .header-menu__container{
    height: 100%;
    width: 100%;
    overflow: auto;
    justify-content: center;
    align-content: flex-start;
  }
  .page-header .menu__nav {
    max-width: 100%;
  }
  .page-header .menu__container {
    display: flex;
    flex-direction: column;
  }
  .page-header .menu__container li {
    width: 100%;
  }
  .page-header .menu__item {
    padding: 10px 5%;
    cursor: pointer;
    border-bottom: 1px solid#F0F0F0;
  }
  .page-header .item__container {
    position: relative;
    height: auto;
    display: none;
  }
  .page-header .menu__item.active .item__container {
    visibility: visible;
    display: block;
    width: 100%;
    padding: 0;
  }
  .page-header .menu__cta {
    position: fixed;
    bottom: 0;
    max-width: 100%;
    z-index: 551;
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 25px;
  }
  .page-header .menu-item__link {
    padding: 15px 0;
  }
  .page-header .menu-item__title {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
  }

  .page-header .menu-item__title a {
    width: 100%;
  }
  .page-header .reports .card,
  .page-header .community .card{
    padding: 16px 15px;
    margin: 7px 0;
    border-radius: 5px;
    width: 100%;
  }
  .page-header .reports ul ,
  .page-header .community ul {
    flex-direction: column;
  }
  .page-header .slider__item {
    padding: 0;
  }
  .page-header .slider__item .card {
    background-color: #FAFAFA;
    padding: 38px 20px;
    border-radius: 24px;
    margin: 8px 0
    border:none;  
  }
}
.hs-modal--open .backdrop {
  position: fixed;
  top: var(--height-header);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 500;
  background-color: #000;
  opacity: 0.5;
}
.hs-modal--open {
  overflow: hidden;
}
.page-header .menu-item__link.active-color a ,
.page-header .menu-item__title.active-color {
  color: #AF182B;
}
@media screen and (min-width: 768px) {
  .card {
        margin-bottom: 0;
        width: 100%;
    border:none    
    }
}