@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400&family=Pathway+Gothic+One&family=Ubuntu:wght@300;400&display=swap');
*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body{
  background: #242132;
  overscroll-behavior-y: contain;
}
@media(min-width: 200px){
  .unavailable{
    display: none;
  }
}
@media(min-width: 320px) and (max-width: 480px){
  .unavailable{
    display: none;
  }
}
@media(min-width: 480px) and (max-width: 768px){
  body{
    display: block;
  }
  .heading{
    text-align: center;
  }
  .unavailable{
    display: none;
  }
}
@media(min-width: 769px) and (max-width: 1800px){
  .visible{
    display: none;
  }
  .unavailable{
    margin: 5rem;
    display: block;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
  }
  .un-heading{
    text-align: center;
    font-size: 2rem;
  }
  .oth-info{
    font-size: 1.500rem;
    font-style: italic;
    font-weight: 300;
    text-align: center;
  }
  .oth-info a{
    color: #F64081;
    font-weight: bold;
  }
}
header{
  height: 42px;
  width: 100%;
  background: rgba( 24, 25, 26, 0.2 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 12px );
  -webkit-backdrop-filter: blur( 12px );
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  overflow-x: hidden;
  overflow-y: scroll;
  transition: all 300ms;
}
header.open{
  height: 21rem;
}
.header.pop{
  height: 26rem;
}
.logo{
  margin: 0 0 1rem 1.25rem;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size:  2rem;
  text-decoration: none;
  color: #FEFCFF;
}
.hamburger{
 float: right;
 margin: .9rem 1.25rem 0 0 ;
}
#bar{
 display: block;
 height: 2px;
 width: 28px;
 margin: 3px;
 border-radius: 2px;
 background-color: #F64081;
 transition: all 500ms ease-in-out;
 transform-origin: 11px 1px;
}
.hamburger.active :nth-child(1){
 transform: rotate(45deg);
}
.hamburger.active :nth-child(2){
 transform: rotate(-45deg);
}

.nav-items{
  display: flex;
  margin: 0 0 0 1.5rem;
  flex-direction: column;
  font-family: 'Oxygen', sans-serif;
  font-size: 1rem;
}
.nav-items a{
  margin: 1.1rem;
  padding: .3rem;
  text-decoration: none;
  color: #FFFFFF;
  border-bottom: 1px solid #616161;
}
.sub-btn{
  margin: 1.1rem;
  padding: .3rem;
  color: #FFFFFF;
  border-bottom: 1px solid #616161;
}
.sub-menu{
  display: none;
  font-size: 1rem;
  list-style: none;
  border-left: 2px solid #F64081;
}
.sub-menu.show{
  display: block;
}
.nav-items ul li a{
  padding: 1rem;
  text-decoration: none;
  color: #FFFFFF;
  line-height: 1.8rem;
  border: none;
}
.wrights{
  display: block;
  padding: .5rem; 
  font-family: 'Oxygen', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: #fff;
  text-align: center;
}
.title{
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  margin-left: 1rem;
}
.container{
  margin-top: 1rem;
  margin: 1rem;
  padding: 1rem 1rem .5rem 1rem;
  background-color: #fff;
  color: #232323;
  border-radius: 12px;
}
.wrapper{
  background: #fff;
  margin-bottom: 10px;
}
.toggle{
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Oxygen', sans-serif;
  font-size: 17px;
}
.content{
  position: relative;
  text-align: justify;
  height: 0;
  overflow: hidden;
  font-family: 'Oxygen', sans-serif;
  font-weight: 380;
  font-size: 15px;
  transition: all .5s;
}
.pg-mention{
  color: #F64081;
}
