@import url(https://fonts.googleapis.com/css2?family=Ubuntu);
@import url(https://fonts.googleapis.com/css2?family=Inter);
@import url(https://fonts.googleapis.com/css2?family=Poppins);
@import url(https://fonts.googleapis.com/css2?family=Raleway);
html,
body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fafafa;
  overscroll-behavior-y: contain;
  font-family: Poppins;
  
}
.blurHide {
display: flex;
width: 100%;
height: 0px;
backdrop-filter: blur(12px); 
transition: backdrop-filter 0.3s ease, opacity 0.3s ease;
opacity: 0.8;
background-color: #29292980; 
position: fixed; 
z-index: 5; 
top: 0px
}

.fixed {
  display: flex;
  width: 100%;
  height: max-content;
  position: fixed;
  flex-direction: row;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  font-family: ubuntu;
  font-size: 18px;
  z-index: 2;
  gap: 24px;
  box-sizing: border-box;
}

.header {
  top: 0px;
  padding: 24px
}

.footer {
  bottom: 0px
}

.row {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
}

.column {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
}


.btn {
  display: flex;
  min-width: 60px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-family: Ubuntu;
  white-space: nowrap;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

.transparent{
border: 1px solid #fff;
color: #fff
}

.white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #00695c;

}

.green {
  border: 1px solid #00695c;
  color: #fff;

}

@media (max-width: 700px) {

  .menu-header {
    display:none;
  }

  .menu-colapse {
    display: flex !important;
    width: max-content !important;
  }
}
