#animated-header {
  position: relative;
  overflow: hidden;
}
#animated-header #animated-header-names-wrapper {
  color: var(--color-default-2);
}
#animated-header #animated-header-names-wrapper .animated-header-names {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  top: 0;
}
#animated-header #animated-header-names-wrapper .animated-header-names > * {
  margin: 0.1rem 0.5rem;
}
#animated-header #animated-header-names-wrapper .animated-header-names:last-child {
  left: -100%;
}
#animated-header #animated-header-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  #animated-header #animated-header-overlay {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), transparent);
  }
}
#animated-header .animated-header-slot {
  position: relative;
  z-index: 2;
}
#animated-header .animated-header-content {
  margin: 3rem auto 1rem;
}
@media (min-width: 992px) {
  #animated-header .animated-header-content {
    margin-top: 4rem;
  }
}
#animated-header .animated-header-content h1 {
  text-align: center;
}
#animated-header .animated-header-content img {
  width: 20rem;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #animated-header-names-wrapper.animate > :first-child {
    animation: loop 100s linear infinite;
  }
  #animated-header-names-wrapper.animate > :last-child {
    animation: loopClone 100s linear infinite;
  }
}
@keyframes loop {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes loopClone {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.cr-form-group {
  background-color: transparent;
  border-radius: 4px;
  padding: 1rem;
}
.cr-form-group span.cr-form-group-title {
  font-size: 0.9rem;
  color: var(--color-default-4);
  display: block;
  font-weight: bold;
  transform: translateY(-50%);
}
/** ---- NAVIGATION ---- **/
.collections-bullet {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: var(--color-default-2);
  cursor: pointer;
  margin: 0.5rem 0;
}
.collections-bullet:hover {
  background-color: var(--color-default-4);
}
.collections-bullet:active,
.collections-bullet.active {
  background-color: var(--color-default-5);
}
.collections-bullet.hint:after {
  content: '';
  background-color: var(--color-default-4);
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: bulletHint 3s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
#collections-nav {
  display: none;
}
@media (min-width: 1250px) {
  #collections-nav {
    display: block;
    position: fixed;
    top: 50%;
    right: 3rem;
    z-index: 2;
    padding: 1rem;
    border-radius: 4px;
    transform: translateY(-50%);
    transition: background-color 0.1s ease-in-out;
  }
  #collections-nav p {
    position: relative;
    text-align: right;
    padding-right: 1.5rem;
    cursor: pointer;
    margin: 0;
  }
  #collections-nav p span {
    color: var(--color-default-3);
    opacity: 0;
    transition: opacity 0.1s ease-in-out, color 0.1s ease-in-out;
  }
  #collections-nav p:not(:last-child):before {
    content: '';
    display: block;
    position: absolute;
    width: 4px;
    height: 0.9rem;
    top: 1rem;
    right: 0.5rem;
    transform: translateX(50%);
    background-color: var(--color-default-2);
  }
  #collections-nav p:after {
    content: '';
    display: block;
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    right: 0;
    top: 50%;
    transform: translateY(-65%);
    background-color: var(--color-default-2);
    transition: opacity 0.1s ease-in-out, background-color 0.1s ease-in-out;
  }
  #collections-nav p:hover span {
    opacity: 1;
    color: var(--color-default-4);
  }
  #collections-nav p:hover:after {
    background-color: var(--color-default-4);
  }
  #collections-nav p.active span {
    color: var(--color-default-3);
  }
  #collections-nav p.active:after {
    background-color: var(--color-default-3);
  }
  #collections-nav:hover {
    background-color: white;
    box-shadow: none;
  }
  #collections-nav:hover p span {
    opacity: 1;
  }
}
.collections-stack {
  position: relative;
  padding-left: 2rem;
}
.collections-stack .collections-bullets-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.collections-stack .collections-stack-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50px;
  opacity: 0;
  transition: opacity 1s ease-in-out, top 1s ease-in-out;
}
.collections-stack .collections-stack-item.popped {
  top: -50px;
}
.collections-stack .collections-stack-item.active {
  top: 0;
  opacity: 1;
}
.collections-stack.content .collections-bullets-wrapper {
  left: 1rem;
}
@media (min-width: 1250px) {
  .collections-stack.content .collections-bullets-wrapper {
    left: 0;
  }
}
.collections-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  transition: opacity 0.1s ease-in-out;
}
.collections-scroll-hint:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background-color: var(--color-default-4);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 64 64%27><path d=%27M30.34 40a2.39 2.39 0 0 0 3.31 0l12.73-12.7a2.37 2.37 0 0 0 .69-1.66 2.34 2.34 0 0 0-.69-1.64 2.4 2.4 0 0 0-3.32 0L32 35 20.94 24a2.34 2.34 0 0 0-3.32 0 2.36 2.36 0 0 0 0 3.32z%27/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 64 64%27><path d=%27M30.34 40a2.39 2.39 0 0 0 3.31 0l12.73-12.7a2.37 2.37 0 0 0 .69-1.66 2.34 2.34 0 0 0-.69-1.64 2.4 2.4 0 0 0-3.32 0L32 35 20.94 24a2.34 2.34 0 0 0-3.32 0 2.36 2.36 0 0 0 0 3.32z%27/></svg>");
  animation: collectionsScrollHint 1s linear infinite;
  animation-delay: 0.5s;
}
.collections-scroll-hint.scrolled {
  opacity: 0;
}
/** ---- AVATAR ---- **/
.collection-avatar-decoration {
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--color-default-2);
}
.collection-avatar-wrapper {
  position: relative;
  width: 10rem;
  height: 10rem;
  padding: 0.5rem;
  border: 1px solid var(--color-default-4);
  border-radius: 5rem;
  margin: 0 auto;
}
.collection-avatar-wrapper .collection-avatar {
  width: calc(9rem - 2px);
  height: calc(9rem - 2px);
  border: 2px solid var(--color-default-5);
  border-radius: 4.5rem;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.collection-avatar-wrapper .collection-avatar img {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .collection-avatar-wrapper .decoration-level-1 {
    animation: avatarRotation 100s linear infinite;
  }
  .collection-avatar-wrapper .decoration-level-2 {
    animation: avatarRotation 140s linear infinite;
  }
  .collection-avatar-wrapper .decoration-level-3 {
    animation: avatarRotation 180s linear infinite;
  }
}
/** ---- DECORATIONS ---- **/
.decoration-level-1,
.decoration-level-2,
.decoration-level-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .decoration-level-1,
  .decoration-level-2,
  .decoration-level-3 {
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
  }
}
.decoration-level-1 {
  transform: scale(0.9);
  filter: blur(1px);
}
.decoration-level-2 {
  transform: scale(0.85);
  filter: blur(2px);
}
.decoration-level-3 {
  transform: scale(0.775);
  filter: blur(3px);
}
/** ---- INTRODUCTION PANEL ---- **/
#collections-introduction {
  display: flex;
  flex-direction: column;
}
#collections-introduction #collections-header,
#collections-introduction .content {
  flex: 1 1 auto;
}
/** ---- INSTRUCTIONS PANEL ---- **/
#collections-instructions {
  display: flex;
}
#collections-instructions.flex-grid .d-flex > :first-child {
  width: 200px;
}
#collections-instructions .collections-stack {
  flex: 0 0 40%;
}
#collections-instructions .collections-stack .collections-stack-item > div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
/** ---- SPOTLIGHTS PANEL ---- **/
@media (min-width: 992px) {
  .spotlight {
    display: flex;
    align-items: center;
  }
  .spotlight .spotlight-about {
    display: flex;
    flex-direction: column;
    flex: 0 0 40%;
    max-height: 100%;
    padding: 0 1rem;
  }
  .spotlight .spotlight-about .frame {
    overflow: auto;
    margin-top: -2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-shadow: none;
    position: relative;
    z-index: 1;
  }
  .spotlight .spotlight-heading {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .spotlight .spotlight-heading h2 {
    display: inline-block;
    border-radius: 4px;
    background-color: var(--color-default-4);
    color: white;
    padding: 0.5rem 0.75rem 0;
    box-shadow: none;
  }
  .spotlight .spotlight-btn {
    margin-top: -1rem;
    box-shadow: none;
    position: relative;
    z-index: 2;
  }
  .spotlight .spotlight-arts-wrapper {
    position: relative;
    flex: 0 0 60%;
    height: 600px;
  }
  .spotlight .spotlight-arts-wrapper .spotlight-arts {
    position: relative;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .spotlight .spotlight-arts-wrapper .spotlight-arts > :nth-child(1) {
    transform: scale(0.8);
  }
  .spotlight .spotlight-arts-wrapper .spotlight-arts > :nth-child(2) {
    transform: scale(0.85);
  }
  .spotlight .spotlight-arts-wrapper .spotlight-arts > :nth-child(3) {
    transform: scale(0.9);
  }
  .spotlight .spotlight-art {
    position: absolute;
    width: 270px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: none;
    z-index: 2;
  }
  .spotlight .spotlight-art img {
    width: 100%;
  }
  .spotlight .spotlight-art-info {
    position: absolute;
    background-color: var(--color-default-5);
    color: white;
    top: 1rem;
    left: 1rem;
    width: 2rem;
    overflow: hidden;
    opacity: 0.5;
    border-radius: 4px;
    transition: width 0.1s ease-in-out, opacity 0.1s ease-in-out;
  }
  .spotlight .spotlight-art-info .icon-cr {
    display: block;
    width: 2rem;
    height: 2rem;
  }
  .spotlight .spotlight-art-info .spotlight-art-info-text {
    position: absolute;
    top: 50%;
    left: 2rem;
    opacity: 0;
    transform: translateY(-50%);
  }
  .spotlight .spotlight-art-info .spotlight-art-info-text a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
  }
  .spotlight .spotlight-art-info:hover {
    opacity: 0.9;
    width: calc(100% - 2rem);
  }
  .spotlight .spotlight-art-info:hover .spotlight-art-info-text {
    opacity: 1;
    transition: opacity 0.1s ease-in-out 0.1s;
  }
  .spotlight .decoration-level-1,
  .spotlight .decoration-level-2,
  .spotlight .decoration-level-3 {
    opacity: 0;
  }
  .spotlight.active .decoration-level-1,
  .spotlight.active .decoration-level-2,
  .spotlight.active .decoration-level-3 {
    opacity: 1;
  }
  .spotlight.active .decoration-level-1 {
    transform: scale(1);
  }
  .spotlight.active .decoration-level-2 {
    transform: scale(0.9);
  }
  .spotlight.active .decoration-level-3 {
    transform: scale(0.8);
  }
}
/** ---- BENEFITS PANEL ---- **/
#collections-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  #collections-benefits {
    justify-content: space-evenly;
    align-content: space-around;
  }
}
#collections-benefits > .collections-benefit {
  flex: 1 1 auto;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #collections-benefits > .collections-benefit {
    flex: 1 0 45%;
    align-items: center;
    margin: 1.5rem 0.5rem;
  }
}
@media (min-width: 1200px) {
  #collections-benefits > .collections-benefit {
    flex-basis: 40%;
  }
}
#collections-benefits > .collections-benefit > :first-child {
  flex: 0 0 75px;
  height: 75px;
}
@media (min-width: 992px) {
  #collections-benefits > .collections-benefit > :first-child {
    flex: 0 0 100px;
    height: 100px;
  }
}
/** ---- DEPOSITIONS PANEL ---- **/
.collections-deposition {
  color: var(--color-default-4);
}
.collections-deposition h3 {
  position: relative;
  z-index: 1;
  font-family: Roboto, 'Trebuchet MS', Arial, Helvetica, sans-serif;
  text-transform: none;
}
.collections-deposition p {
  font-style: italic;
  letter-spacing: 0.045em;
  line-height: 1.7;
}
.collections-deposition .deposition-quote {
  position: relative;
  z-index: 1;
}
.collections-deposition .deposition-quote .quote-open {
  display: block;
  position: absolute;
  background-size: 100%;
  opacity: 0.2;
  background-color: var(--color-default-4);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 100 150%27 style=%27enable-background:new 0 0 100 150;%27 xml:space=%27preserve%27> <path d=%27M0.87,86.91c0.04-3.95,0.54-7.85,1.44-11.7C5.17,63.03,10.45,52,18.01,42.04c2.41-3.18,5.1-6.1,8.25-8.58 c1.54-1.21,3.18-2.24,4.97-3.05c1.73-0.78,3.55-1.06,5.39-0.8c2.61,0.36,4.93,1.44,6.73,3.45c0.7,0.78,1.16,1.69,1.3,2.75 c0.11,0.83,0.02,1.63-0.43,2.34c-0.48,0.78-0.98,1.56-1.56,2.27c-1.23,1.51-2.53,2.97-3.79,4.46c-1.43,1.69-2.77,3.44-3.93,5.32 c-1.55,2.53-2.75,5.21-3.25,8.15c-0.19,1.08-0.26,2.19-0.34,3.29c-0.1,1.45,0.36,2.77,1.21,3.93c0.57,0.77,1.2,1.49,1.87,2.17 c0.99,0.99,2.04,1.91,3.07,2.86c1.49,1.38,2.9,2.83,4.12,4.45c2.39,3.19,3.78,6.79,4.33,10.73c0.34,2.46,0.41,4.92,0.19,7.38 c-0.53,5.77-2.47,10.96-6.45,15.27c-3.2,3.46-7.13,5.63-11.8,6.41c-8.07,1.35-14.72-1.24-20-7.39c-3.14-3.64-5.04-7.92-6.13-12.58 C1.14,92.27,0.84,89.61,0.87,86.91z%27/> <path d=%27M76.89,115.25c-5.86-0.09-10.66-2.1-14.67-5.98c-3.16-3.05-5.32-6.74-6.77-10.86c-1.45-4.11-2.02-8.35-1.86-12.7 c0.22-6.31,1.59-12.39,3.62-18.33c3.06-8.94,7.37-17.24,13.06-24.79c2.4-3.18,5.04-6.15,8.13-8.69c1.57-1.29,3.23-2.45,5.09-3.27 c0.6-0.27,1.22-0.51,1.85-0.7c1.58-0.48,3.19-0.49,4.79-0.14c1.9,0.41,3.62,1.22,5.1,2.5c0.96,0.83,1.68,1.83,2.01,3.1 c0.24,0.94,0.18,1.83-0.29,2.67c-0.36,0.64-0.75,1.27-1.19,1.85c-0.74,0.96-1.55,1.87-2.33,2.8c-1.38,1.67-2.81,3.32-4.12,5.04 c-1.75,2.29-3.16,4.78-4.13,7.52c-0.73,2.07-1.09,4.2-1.16,6.38c-0.04,1.24,0.23,2.43,0.91,3.47c0.48,0.73,1.02,1.45,1.63,2.08 c0.86,0.91,1.8,1.74,2.71,2.59c1.57,1.45,3.12,2.91,4.47,4.58c2.58,3.19,4.14,6.83,4.79,10.88c0.47,2.96,0.55,5.94,0.18,8.91 c-0.63,5.04-2.37,9.63-5.68,13.54c-3.29,3.88-7.43,6.29-12.45,7.18C79.27,115.1,77.95,115.2,76.89,115.25z%27/> </svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 100 150%27 style=%27enable-background:new 0 0 100 150;%27 xml:space=%27preserve%27> <path d=%27M0.87,86.91c0.04-3.95,0.54-7.85,1.44-11.7C5.17,63.03,10.45,52,18.01,42.04c2.41-3.18,5.1-6.1,8.25-8.58 c1.54-1.21,3.18-2.24,4.97-3.05c1.73-0.78,3.55-1.06,5.39-0.8c2.61,0.36,4.93,1.44,6.73,3.45c0.7,0.78,1.16,1.69,1.3,2.75 c0.11,0.83,0.02,1.63-0.43,2.34c-0.48,0.78-0.98,1.56-1.56,2.27c-1.23,1.51-2.53,2.97-3.79,4.46c-1.43,1.69-2.77,3.44-3.93,5.32 c-1.55,2.53-2.75,5.21-3.25,8.15c-0.19,1.08-0.26,2.19-0.34,3.29c-0.1,1.45,0.36,2.77,1.21,3.93c0.57,0.77,1.2,1.49,1.87,2.17 c0.99,0.99,2.04,1.91,3.07,2.86c1.49,1.38,2.9,2.83,4.12,4.45c2.39,3.19,3.78,6.79,4.33,10.73c0.34,2.46,0.41,4.92,0.19,7.38 c-0.53,5.77-2.47,10.96-6.45,15.27c-3.2,3.46-7.13,5.63-11.8,6.41c-8.07,1.35-14.72-1.24-20-7.39c-3.14-3.64-5.04-7.92-6.13-12.58 C1.14,92.27,0.84,89.61,0.87,86.91z%27/> <path d=%27M76.89,115.25c-5.86-0.09-10.66-2.1-14.67-5.98c-3.16-3.05-5.32-6.74-6.77-10.86c-1.45-4.11-2.02-8.35-1.86-12.7 c0.22-6.31,1.59-12.39,3.62-18.33c3.06-8.94,7.37-17.24,13.06-24.79c2.4-3.18,5.04-6.15,8.13-8.69c1.57-1.29,3.23-2.45,5.09-3.27 c0.6-0.27,1.22-0.51,1.85-0.7c1.58-0.48,3.19-0.49,4.79-0.14c1.9,0.41,3.62,1.22,5.1,2.5c0.96,0.83,1.68,1.83,2.01,3.1 c0.24,0.94,0.18,1.83-0.29,2.67c-0.36,0.64-0.75,1.27-1.19,1.85c-0.74,0.96-1.55,1.87-2.33,2.8c-1.38,1.67-2.81,3.32-4.12,5.04 c-1.75,2.29-3.16,4.78-4.13,7.52c-0.73,2.07-1.09,4.2-1.16,6.38c-0.04,1.24,0.23,2.43,0.91,3.47c0.48,0.73,1.02,1.45,1.63,2.08 c0.86,0.91,1.8,1.74,2.71,2.59c1.57,1.45,3.12,2.91,4.47,4.58c2.58,3.19,4.14,6.83,4.79,10.88c0.47,2.96,0.55,5.94,0.18,8.91 c-0.63,5.04-2.37,9.63-5.68,13.54c-3.29,3.88-7.43,6.29-12.45,7.18C79.27,115.1,77.95,115.2,76.89,115.25z%27/> </svg>");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  top: -2rem;
  left: -50px;
  width: 100px;
  height: 100px;
}
.collections-deposition .deposition-quote .quote-close {
  display: block;
  position: absolute;
  background-size: 100%;
  opacity: 0.2;
  background-color: var(--color-default-4);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 100 150%27 style=%27enable-background:new 0 0 100 150;%27 xml:space=%27preserve%27> <path d=%27M0.87,86.91c0.04-3.95,0.54-7.85,1.44-11.7C5.17,63.03,10.45,52,18.01,42.04c2.41-3.18,5.1-6.1,8.25-8.58 c1.54-1.21,3.18-2.24,4.97-3.05c1.73-0.78,3.55-1.06,5.39-0.8c2.61,0.36,4.93,1.44,6.73,3.45c0.7,0.78,1.16,1.69,1.3,2.75 c0.11,0.83,0.02,1.63-0.43,2.34c-0.48,0.78-0.98,1.56-1.56,2.27c-1.23,1.51-2.53,2.97-3.79,4.46c-1.43,1.69-2.77,3.44-3.93,5.32 c-1.55,2.53-2.75,5.21-3.25,8.15c-0.19,1.08-0.26,2.19-0.34,3.29c-0.1,1.45,0.36,2.77,1.21,3.93c0.57,0.77,1.2,1.49,1.87,2.17 c0.99,0.99,2.04,1.91,3.07,2.86c1.49,1.38,2.9,2.83,4.12,4.45c2.39,3.19,3.78,6.79,4.33,10.73c0.34,2.46,0.41,4.92,0.19,7.38 c-0.53,5.77-2.47,10.96-6.45,15.27c-3.2,3.46-7.13,5.63-11.8,6.41c-8.07,1.35-14.72-1.24-20-7.39c-3.14-3.64-5.04-7.92-6.13-12.58 C1.14,92.27,0.84,89.61,0.87,86.91z%27/> <path d=%27M76.89,115.25c-5.86-0.09-10.66-2.1-14.67-5.98c-3.16-3.05-5.32-6.74-6.77-10.86c-1.45-4.11-2.02-8.35-1.86-12.7 c0.22-6.31,1.59-12.39,3.62-18.33c3.06-8.94,7.37-17.24,13.06-24.79c2.4-3.18,5.04-6.15,8.13-8.69c1.57-1.29,3.23-2.45,5.09-3.27 c0.6-0.27,1.22-0.51,1.85-0.7c1.58-0.48,3.19-0.49,4.79-0.14c1.9,0.41,3.62,1.22,5.1,2.5c0.96,0.83,1.68,1.83,2.01,3.1 c0.24,0.94,0.18,1.83-0.29,2.67c-0.36,0.64-0.75,1.27-1.19,1.85c-0.74,0.96-1.55,1.87-2.33,2.8c-1.38,1.67-2.81,3.32-4.12,5.04 c-1.75,2.29-3.16,4.78-4.13,7.52c-0.73,2.07-1.09,4.2-1.16,6.38c-0.04,1.24,0.23,2.43,0.91,3.47c0.48,0.73,1.02,1.45,1.63,2.08 c0.86,0.91,1.8,1.74,2.71,2.59c1.57,1.45,3.12,2.91,4.47,4.58c2.58,3.19,4.14,6.83,4.79,10.88c0.47,2.96,0.55,5.94,0.18,8.91 c-0.63,5.04-2.37,9.63-5.68,13.54c-3.29,3.88-7.43,6.29-12.45,7.18C79.27,115.1,77.95,115.2,76.89,115.25z%27/> </svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 100 150%27 style=%27enable-background:new 0 0 100 150;%27 xml:space=%27preserve%27> <path d=%27M0.87,86.91c0.04-3.95,0.54-7.85,1.44-11.7C5.17,63.03,10.45,52,18.01,42.04c2.41-3.18,5.1-6.1,8.25-8.58 c1.54-1.21,3.18-2.24,4.97-3.05c1.73-0.78,3.55-1.06,5.39-0.8c2.61,0.36,4.93,1.44,6.73,3.45c0.7,0.78,1.16,1.69,1.3,2.75 c0.11,0.83,0.02,1.63-0.43,2.34c-0.48,0.78-0.98,1.56-1.56,2.27c-1.23,1.51-2.53,2.97-3.79,4.46c-1.43,1.69-2.77,3.44-3.93,5.32 c-1.55,2.53-2.75,5.21-3.25,8.15c-0.19,1.08-0.26,2.19-0.34,3.29c-0.1,1.45,0.36,2.77,1.21,3.93c0.57,0.77,1.2,1.49,1.87,2.17 c0.99,0.99,2.04,1.91,3.07,2.86c1.49,1.38,2.9,2.83,4.12,4.45c2.39,3.19,3.78,6.79,4.33,10.73c0.34,2.46,0.41,4.92,0.19,7.38 c-0.53,5.77-2.47,10.96-6.45,15.27c-3.2,3.46-7.13,5.63-11.8,6.41c-8.07,1.35-14.72-1.24-20-7.39c-3.14-3.64-5.04-7.92-6.13-12.58 C1.14,92.27,0.84,89.61,0.87,86.91z%27/> <path d=%27M76.89,115.25c-5.86-0.09-10.66-2.1-14.67-5.98c-3.16-3.05-5.32-6.74-6.77-10.86c-1.45-4.11-2.02-8.35-1.86-12.7 c0.22-6.31,1.59-12.39,3.62-18.33c3.06-8.94,7.37-17.24,13.06-24.79c2.4-3.18,5.04-6.15,8.13-8.69c1.57-1.29,3.23-2.45,5.09-3.27 c0.6-0.27,1.22-0.51,1.85-0.7c1.58-0.48,3.19-0.49,4.79-0.14c1.9,0.41,3.62,1.22,5.1,2.5c0.96,0.83,1.68,1.83,2.01,3.1 c0.24,0.94,0.18,1.83-0.29,2.67c-0.36,0.64-0.75,1.27-1.19,1.85c-0.74,0.96-1.55,1.87-2.33,2.8c-1.38,1.67-2.81,3.32-4.12,5.04 c-1.75,2.29-3.16,4.78-4.13,7.52c-0.73,2.07-1.09,4.2-1.16,6.38c-0.04,1.24,0.23,2.43,0.91,3.47c0.48,0.73,1.02,1.45,1.63,2.08 c0.86,0.91,1.8,1.74,2.71,2.59c1.57,1.45,3.12,2.91,4.47,4.58c2.58,3.19,4.14,6.83,4.79,10.88c0.47,2.96,0.55,5.94,0.18,8.91 c-0.63,5.04-2.37,9.63-5.68,13.54c-3.29,3.88-7.43,6.29-12.45,7.18C79.27,115.1,77.95,115.2,76.89,115.25z%27/> </svg>");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  right: -20px;
  bottom: -1rem;
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
}
.collections-deposition .btn {
  margin-top: 1rem;
}
/** ---- FORM ---- **/
@media (min-width: 768px) {
  #collections-form .frame {
    margin: 0 auto;
    box-shadow: none;
  }
}
/** ---- ANIMATIONS ---- **/
@keyframes avatarRotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes collectionsScrollHint {
  0% {
    bottom: -1.3rem;
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    bottom: calc(-1.3rem - 10px);
    opacity: 0;
  }
}
@keyframes bulletHint {
  0% {
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}


/*# sourceMappingURL=partnerships.1827f4cd2c3129c13d87.css.map*/