
.nav-wrapper {
  border-radius: 40px;
  padding: 10px 20px;
}


.together{
    font-family: 'Caveat', cursive;
    color: #BA55D3;
}

.violetHeart{
      width: 70%;
      max-width: 600px;
      height: auto;
}

.icon-circle {
  width: 80px;
  height: 80px;

  background-color: rgba(146, 112, 255, 0.2);

  border-radius: 70%;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0; /* чтобы не сжимался в flex-контейнере */
}

.icon-circle img {
  width: 64px;
  height: 64px;

  object-fit: contain; /* сохраняет пропорции */
  flex-shrink: 0;      /* не деформируется в flex */
  display: block;
}

.icon-circle {
  background: rgba(146, 112, 255, 0.15);
  transition: 0.3s;
}

.icon-circle:hover {
  background: rgba(146, 112, 255, 0.3);
  transform: scale(1.05);
}

.help-text{
    font-size: 13px;
}

.background-decor {
  position: relative;
  overflow: hidden;
}

.violetHeart img {
    max-width: 180px;
}

.text-purple{
    color:#8f67c9;
}

.card{
    border-radius:20px;
}

.card-body{
    padding:30px 20px;
}

.partner-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

.light-lavender,
.btn-purple{
background-color: #E6E6FA;
}

.blur-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent,
        #FFF7F0
    );
    pointer-events: none;
}


