:root {
  --main-color: #ff767d;
  --second-color: #acb8c1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
body {
  min-height: 100vh;
  background-color: #f2f2f2;

  display: flex;
  align-items: center;
  justify-content: center;
} */
h2{
  color: #fff;
}

.navigation-bar {
  background: black;
  border-radius: 8px;
  height: 2.8rem;
  width: 20rem;
  overflow: hidden;
}
.navigation-bar .list-items {
  list-style: none;
  display: flex;
  position: relative;
}
.navigation-bar .list-items .pointer {
  position: absolute;
  left: 0px;
  height: 100%;
  width: 3rem;
  z-index: 0;
  transition: all 0.2s linear;
}
.navigation-bar .list-items .pointer::before,
.navigation-bar .list-items .pointer::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
.navigation-bar .list-items .pointer::before {
  top: 0;
  border-bottom: 8px solid var(--main-color);
  border-radius: 0 0 30px 30px;
}
.navigation-bar .list-items .pointer::after {
  bottom: 0;
  border-top: 8px solid var(--main-color);
  border-radius: 30px 30px 0 0;
}

.navigation-bar .list-items .item {
  flex: 1 1 0px;
  position: relative;
  z-index: 2;
}
.navigation-bar .list-items .item .link {
  display: inline-block;
  height: 0rem;
  width: 4.5rem;
  line-height: 4.5;
  text-align: center;
  color: var(--second-color);
}
.navigation-bar .list-items .item.active .link {
  color: var(--main-color);
}
.navigation-bar .list-items .item .link i {
  font-size: 1.6rem;
  transition: font-size 0.2s linear;
}
.navigation-bar .list-items .item.active .link i {
  font-size: 1.4rem;
}

.bottom-bar {

    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 25px;
    width: 100%;
    z-index:900; 
}
/*
.bottom-bar-content {
    background-color: blue;
}*/


footer .inner,footer .scrollama__steps {
                width: 100%;
                height: 100%
            }


            @media (max-width: 800px) {
    main{
        width: 100%;
    }
    header img{
        width: 80%;
        object-fit: contain;
    }
    .hes-gallery{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
/*
@media (max-width: 500px) {
    .hes-gallery{
        grid-template-columns: 1fr 1fr;
    }
}
#more {display: none;}
}
*/


  .pc{
    display : none;
  }
  .tablet{
    display : none;
  }
  .mobile{
    display: none;
  }
  @media (min-width: 991px){
    .pc{
      display: inline !important;
    }
  }
  @media (min-width: 991px){
    .tablet{
      display: inline !important;
    }
  }
  @media (max-width: 991px){
    .mobile{
      display:inline;
    }
  }



