.acb {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 99999;
}
@media screen and (max-width: 500px) {
  .acb {
    flex-direction: column;
  }
}
@keyframes icon_anim {
  0% {
    transform: rotate(0);
  }
  5% {
    transform: rotate(25deg);
  }
  10% {
    transform: rotate(-25deg);
  }
  15% {
    transform: rotate(25deg);
  }
  20% {
    transform: rotate(-25deg);
  }
  25%, 100% {
    transform: rotate(0);
  }
}
@keyframes circle_anim {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  10% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0.1;
  }
}
.acb .acb-tg,
.acb .acb-wa,
.acb .acb-tel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acb .acb-tg .circles,
.acb .acb-wa .circles,
.acb .acb-tel .circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.acb .acb-tg .circles .circle1,
.acb .acb-tg .circles .circle2,
.acb .acb-wa .circles .circle1,
.acb .acb-wa .circles .circle2,
.acb .acb-tel .circles .circle1,
.acb .acb-tel .circles .circle2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 170, 224, 0.35);
  border-radius: 50rem;
  animation-name: circle_anim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.acb .acb-tg .circles .circle2,
.acb .acb-wa .circles .circle2,
.acb .acb-tel .circles .circle2 {
  animation-delay: 0.75s;
}
.acb .acb-tg img,
.acb .acb-wa img,
.acb .acb-tel img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  animation-name: icon_anim;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.acb .acb-wa .circles .circle1,
.acb .acb-wa .circles .circle2 {
  background-color: rgba(82, 206, 95, 0.35);
}
.acb .acb-tel .circles .circle1,
.acb .acb-tel .circles .circle2 {
  background-color: rgba(255, 68, 0, 0.35);
}
.acb .msg {
  position: absolute;
  left: 0;
  top: -3rem;
  width: 100%;
  padding: 0.3333333333rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  color: #232323;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
}
@media screen and (max-width: 500px) {
  .acb .msg {
    width: 100px;
  }
}
.acb:hover .msg {
  opacity: 1;
  pointer-events: all;
}

.cb-contacts {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .cb-contacts {
    flex-direction: column;
  }
}
.cb-contacts .cb-email,
.cb-contacts .cb-phone {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cb-contacts .cb-email svg,
.cb-contacts .cb-phone svg {
  width: 80px;
  height: 80px;
  fill: var(--cb-contacts-color);
}
.cb-contacts .cb-email span,
.cb-contacts .cb-phone span {
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  font-size: 28px;
  color: var(--cb-contacts-color);
}

/*# sourceMappingURL=style.css.map */
