@import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2&display=swap');

* {
  font-family: 'Baloo Chettan 2', cursive;
}

.logo {
  width: 25%; 
  padding-left: 5px;
}

* { 
  box-sizing: border-box; 
}

a {
  color: #565654;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #565654;
}
  
body,html {
  line-height: 1.5; 
}

.div {
text-align: center;
display: block;
}

.div img{
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}




.menu__button {
--x: -50%;
--y: 0;
--z: 0;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
border-radius: 28px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
backdrop-filter: blur(5px) saturate(100%) contrast(100%) brightness(100%);
-webkit-backdrop-filter: blur(5px) saturate(100%) contrast(100%) brightness(100%);
font-size: 16px;
white-space: nowrap;
position: fixed;
bottom: 30px;
left: 50%;
transform: translate3d(var(--x), var(--y), var(--z));
cursor: pointer;
z-index: 105;
transition: 0.15s cubic-bezier(0.33, 1, 0.53, 1);
}
.menu__button[hidden] {
--y: 200%;
}
.menu__button div {
display: flex;
align-items: center;
width: 12px;
height: 12px;
margin-right: 20px;
}
.menu__button div div {
display: table;
height: 1px;
/* background: var(--light);
box-shadow: 0 4px 0 var(--light), 0 -4px 0 var(--light); */
}

.menu__overlay {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.1);
position: fixed;
z-index: 100;
}

.menu__body {
  --x: 0;
  --y: 0;
  --z: 0;
  display: block;
  width: 100%;
  padding-bottom: 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px -9px 50px -30px #565654;
  color: #565654 !important;
  position: fixed;
  bottom: 0;
  z-index: 105;
  transform: translate3d(var(--x), var(--y), var(--z));
  transition: 0.2s cubic-bezier(0.33, 1, 0.53, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  backdrop-filter: blur(5px) saturate(100%) contrast(100%) brightness(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%) contrast(100%) brightness(100%)
}
.menu__body[hidden] {
--y: 150%;
}


.menu__header {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-right: 20px;
  /* padding-bottom: 10px; */
  padding-left: 20px;
}
.menu__header a img {
width: 85px;
  height: 45px;
  /* border: 2px solid var(--dark); */
  /* border-radius: 50%; */
  position: relative;
}
.menu__header label div:after {
content: "";
width: 2px;
height: 10px;
/* background: var(--dark); */
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
}
.menu__header p {
font-size: 18px;
/* font-weight: bold; */
vertical-align: center;
white-space: nowrap;
font-style: italic;
}
.menu__header h3 {
font-weight: normal;
}
.menu__header button {
display: flex;
align-items: center;
justify-content: center;
width: 25px;
height: 25px;
/* background: var(--neutral-dark); */
border-radius: 50%;
cursor: pointer;
}
.menu__header button div {
width: 15px;
height: 3px;
/* background: var(--light); */
position: relative;
transform: rotate(5.5rad);
}
.menu__header button div:before {
content: "";
width: 3px;
height: 15px;
/* background: var(--light); */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.menu__links {
display: flex;
padding: 10px 15px;
/* font-weight: bold; */
overflow-x: auto;
}
.menu__links a {
flex: 1 1 1px;
padding: 10px 8px;
/* color: var(--dark); */
text-decoration: none;
white-space: nowrap;
}

.menu__contact {
display: flex;
padding: 8px;
}
.menu__contact svg {
width: 100%;
/* fill: var(--color); */
}
.menu__contact a {
flex: 1 1 30%;
padding: 5px;
margin: 5px;
border-radius: 8px;
/* background: var(--neutral);
color: var(--color); */
text-align: center;
font-size: 14px;
font-weight: bold;
}
