* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-bg-section {
  width: 100%;
  max-width: 100%;
  height: 300vh;
  img {
      width: 100%;
      max-width: 100%;
      height: 100%;
      object-fit: cover;
  }
}

/* liquid glass element */
.fixed-container {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.liquid {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding: 20px 100px;
  .content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


.icons-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    svg {
      width: 30px;
      height: 30px;
    }
  }
}
