.social-link {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.social-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  background-color: transparent;
}
.social-link img.hover {
  opacity: 0;
  z-index: 1;
}
.social-link:hover img.hover {
  opacity: 1;
}
.social-link:hover img.original {
  opacity: 0;
}

.gradient-text {
  color: black;
  background: linear-gradient(to right, #ff8a00, #e52e71);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
}
.gradient-text:hover {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gradient-head-text {
  font-size: 190px;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
  background-color: #F127AF;
  background-image: linear-gradient(90deg, #FB8006 0%, #FA6402 13.02%, #FB033D 46.88%, #F127AF 73.44%, #ED35CD 88.02%, #FB68FB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 500ms ease-in-out;
}

body {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
body.v-hidden {
  overflow: hidden;
}

.column.bottom-col {
  bottom: 0px;
}

.bottom.menu-margins .column.top-col {
  margin-bottom: 51px;
}

@media screen and (max-width: 900px) {
  .mobile-menu img.bg-mobile {
    top: -80px;
  }
}