* {
  box-sizing: border-box;
}

body {
  margin: 0;
}


.socials {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
  background-color: #121110;

  height: 100vh;
  height: 100svh;
}

@supports (-webkit-touch-callout: none) {
  .socials {
    /*height: -webkit-fill-available;*/
  }
}

.page_picture {
  display: block;
  max-width: 100%;
  height: auto;
}

.socials__decor {
  display: block;
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
}

.socials__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 800px;
  padding-inline: 24px;
}

.socials_bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.socials_bg--blur {
  filter: blur(2px);
  transition: filter 0.7s ease;
}

.socials__title {
  position: relative;
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 30px 0;
}

.socials__concert {
  display: none;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px 0;
  pointer-events: auto;
  animation: fadeIn 1.1s ease;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;

}

.socials__concert > .social_ivent:not(:last-child) {
  margin-bottom: 40px;
}


.socials__concert::-webkit-scrollbar {
  display: none; 
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.socials__item {
  display: block;
  position: relative;
}

.socials__link {
  margin: 0;
  padding: 0;
  font: 5svh/1.2 Arial bold, sans-serif;
  display: block;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 5px 6px rgba(0, 0, 0, 0.7);
  /* темна тінь */
  position: relative;
  transition: none
}

.socials__link--animation {
  animation: bubble ease-out;
  animation-fill-mode: forwards;
}

.socials__link:hover {
  opacity: 0.5;
}

.socials__link:active,
.socials__link:focus {
  opacity: 0.8;
}

.socials__links {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.socials__items {
  max-width: 220px;
  display: flex;
  height: 52px;
  justify-content: center;
}

.socials__buy {
  margin-top: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.socials__buy--inner {
  position: absolute;
  top: 0;
  will-change: transform;
  animation: bubble 1s ease forwards,
    scalePulse 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  max-width: 200px;
}


@keyframes bubble {
  0% {
    top: 1000px;
  }

  75% {
    top: 30%;
  }

  100% {
    top: 50%;
  }
}

@keyframes scalePulse {
  0% {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.socials__link:nth-of-type(1).socials__link--animation {
  animation-duration: 1.4s;
}

.socials__link:nth-of-type(2).socials__link--animation {
  animation-duration: 1.6s;
}

.socials__svgIcon {
  display: block;
  width: 100%;
  height: 100%;
}

.socials__bottom {
  position: absolute;
  bottom: 10px;
  width: 60px;
  right: 15px;
}

.flex-direction-column {
  flex-direction: column !important;
}

.socials__link--instagram {
  will-change: contents;
  animation: scalePulseB 7s infinite !important;
  width: 60px;
}

@keyframes scalePulseB {
  0% {
    transform: scale(1);
  }

  28.57% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social_ivent {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.social_ivent:nth-child(1) {
  animation-delay: 0.2s;
}

.social_ivent:nth-child(2) {
  animation-delay: 0.5s;
}

@media screen and (max-width: 986px) and (orientation: landscape) {
  .socials__concert {
    padding: 20px 0;
  }
}

@media screen and (min-width: 500px) {
  .socials__items {
    max-width: 200px;
    display: flex;
    height: auto;
    justify-content: center;
  }
}