@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;
}
.card {
 height: 28rem;
 width: 90%;
 margin: 2rem  0 0 1rem;
 backdrop-filter: blur(0px);
 background: rgba(255, 255, 255, 1);
 border-radius: 32px;
 box-shadow: 35px 35px 68px 0px rgba(59, 82, 110, 0.5), inset -12px -12px 16px 0px rgba(59, 82, 110, 0.6), inset 0px 11px 28px 0px rgb(255, 255, 255);
 overflow: hidden;
}
.title {
 margin: 1rem;
 margin-top: 2rem;
 font-family: 'Ubuntu', sans-serif;
 font-weight: 500;
 text-align: center;
 color: #161e35;
}
.input-fields{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
input{
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 2rem;
  color: #232323;
  height: 42px;
  width: 220px;
  border: none;
  outline: none;
  text-decoration: none;
  background-color: #DDDFF4;
  border-radius: 6px;
  font-family: 'Oxygen', sans-serif;
  font-weight: 400;
}
.txtarea{
  padding: 1rem;
  color: #232323;
  border: none;
  outline: none;
  text-decoration: none;
  background-color: #DDDFF4;
  border-radius: 8px;
  font-family: 'Oxygen', sans-serif;
  font-weight: 400;
  font-style: italic;
}
.btn{
  float: right;
  position: relative;
  bottom: 1rem;
  right: 10rem;
  padding: 2rem;
}
button {
  font-family: inherit;
  font-size: 16px;
  background: linear-gradient(to bottom, #4dc7d9 0%,#66a6ff 100%);
  color: white;
  padding: 0.5em .8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}
button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
button span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}
button svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}
button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}
button:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}
button:hover svg {
  transform: rotate(45deg);
}