*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
input,
textarea {
  margin: 0;
  padding: 0;
  border: none;
}
body:focus-visible,
h1:focus-visible,
h2:focus-visible,
h3:focus-visible,
h4:focus-visible,
p:focus-visible,
ul:focus-visible,
ol:focus-visible,
li:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

body,
button,
a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

h1 {
  font-size: 5.3125rem;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: white;
  max-width: 46.875rem;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  h1 {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1280px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1050px) {
  h1 {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.28em;
  }
}

.h2 {
  font-size: 1.3125rem;
  line-height: 1.47em;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .h2 {
    font-size: 1.125rem;
  }
}

.h3 {
  font-size: 2.5rem;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: white;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .h3 {
    font-size: 1.875rem;
    line-height: 1.3em;
  }
}

.h4 {
  font-size: 2rem;
  line-height: 1.4em;
  color: white;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .h4 {
    font-size: 1.5rem;
  }
}

.navbar-block {
  width: 100%;
  position: fixed;
  top: 2rem;
  z-index: 10;
}
.navbar-block::before {
  content: "";
  height: calc(100% + 6rem);
  width: 100%;
  position: absolute;
  top: -2rem;
  left: 0;
  background-image: linear-gradient(180deg, #242424 0%, #2424240d 90%, #24242400 100%);
  pointer-events: none;
}

.navbar {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  text-align: right;
  color: white;
}

.navbar__logo-top {
  font-size: 1.875rem;
  line-height: 1em;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .navbar__logo-top {
    font-size: 1.375rem;
  }
}

.navbar__logo-bottom {
  font-size: 0.9375rem;
  line-height: 1em;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 768px) {
  .navbar__logo-bottom {
    font-size: 0.6875rem;
  }
}

.navbar__menu-button {
  position: relative;
  z-index: 2;
  width: 2.4375rem;
  height: 2.4375rem;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px white;
  display: flex;
  backdrop-filter: blur(0.5rem);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.navbar__menu-button:hover {
  background-color: white;
}
.navbar__menu-button:hover [class^=navbar__menu-l] {
  background-color: #242424;
}
.navbar__menu-button.navbar-open {
  background-color: white;
}
.navbar__menu-button.navbar-open:hover {
  background-color: transparent;
}
.navbar__menu-button.navbar-open:hover .navbar-cross {
  background-color: white;
}

.navbar__menu {
  pointer-events: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__menu-l-top,
.navbar__menu-l-center,
.navbar__menu-l-bottom {
  width: 1.0625rem;
  height: 0.0625rem;
  background-color: white;
  transition: all 0.3s ease;
  position: absolute;
}
.navbar__menu-l-top.navbar-cross,
.navbar__menu-l-center.navbar-cross,
.navbar__menu-l-bottom.navbar-cross {
  background-color: #242424;
}

.navbar__menu-l-top {
  transform: translate(0, -0.375rem);
}
.navbar__menu-l-top.navbar-cross {
  transform: rotate(45deg);
  width: 1.3125rem;
}

.navbar__menu-l-center.navbar-cross {
  opacity: 0;
}

.navbar__menu-l-bottom {
  transform: translate(0, 0.375rem);
}
.navbar__menu-l-bottom.navbar-cross {
  transform: rotate(-45deg);
  width: 1.3125rem;
}

.navbar__list {
  position: relative;
  z-index: 1;
  top: -2.5px;
  right: -5px;
  padding: 5px;
  box-shadow: inset 0 0 0 1px white;
  border-radius: 3rem;
  display: grid;
  grid-template-columns: auto auto auto auto 2.4375rem;
  column-gap: 0.625rem;
  backdrop-filter: blur(0.5rem);
  transition: all 0.3s ease;
  position: absolute;
}
@media screen and (max-width: 1050px) {
  .navbar__list {
    top: 4.3125rem;
    right: 0;
    display: grid;
    padding: 0;
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.navbar__list.hidden {
  pointer-events: none;
  box-shadow: inset 0 0 0 1px transparent;
  backdrop-filter: none;
}

.navbar__list-item {
  display: flex;
  justify-content: flex-end;
  position: relative;
  transition: all 0.3s ease;
}
.navbar__list-item.hidden {
  opacity: 0;
  transform: translate(1.25rem, 0);
}
@media screen and (max-width: 1050px) {
  .navbar__list-item.hidden {
    opacity: 0;
    transform: translate(0, -1.25rem);
  }
}

.navbar__list-link {
  border-radius: 2rem;
  padding: 0.5625rem 0.9375rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.navbar__list-link:hover {
  color: #242424;
  background-color: white;
}
@media screen and (max-width: 1050px) {
  .navbar__list-link {
    font-size: 1.125rem;
    padding: 0.625rem 1.5625rem;
    background-color: white;
    color: #242424;
    box-shadow: inset 0 0 0 1px white;
    backdrop-filter: blur(1rem);
  }
  .navbar__list-link:hover {
    color: white;
    background-color: transparent;
  }
}

.section--hero {
  padding: 18rem 0 17.1rem 0;
}
@media screen and (max-width: 1050px) {
  .section--hero {
    padding: 21rem 0 2.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .section--hero {
    padding: 21.8rem 0 2.5rem 0;
  }
}

.hero__content {
  width: 63.3%;
  display: flex;
  margin-left: auto;
  flex-direction: column;
}
@media screen and (max-width: 1050px) {
  .hero__content {
    width: 100%;
  }
}

.hero__content-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .hero__content-bottom {
    margin: 0;
  }
}

.hero__text {
  max-width: 530px;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3125rem;
  line-height: 1.6em;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .hero__text {
    max-width: unset;
    margin-top: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.65em;
  }
}

.button--hero {
  margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
  .button--hero {
    margin-top: 0.75rem;
  }
}

.section--wwd {
  padding: 2.5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 1050px) {
  .section--wwd {
    overflow: hidden;
    padding: 0;
  }
}

.wwd {
  box-shadow: 0 0 1.25rem 1.25rem #242424;
  padding: 7.5rem 0 9.375rem 0;
  border-radius: 1.25rem;
  margin: 0 2.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .wwd {
    width: max-content;
    display: inline-block;
    padding: 4.7rem 0 4.7rem 0;
  }
}
@media screen and (max-width: 768px) {
  .wwd {
    padding: 2.5rem 0 3.125rem 0;
    margin: 0 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .wwd .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1050px) {
  .wwd__content-wrapper {
    overflow: auto;
    padding: 2.5rem 0;
    width: 100%;
  }
}

.wwd__content {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1050px) {
  .wwd__content-top-wrapper {
    width: 100%;
  }
}

.wwd__content-top--mobile {
  display: none;
  pointer-events: none;
}
@media screen and (max-width: 1050px) {
  .wwd__content-top--mobile {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    left: 5rem;
    top: 7rem;
    width: calc(100vw - 10rem);
    position: absolute;
    z-index: 3;
  }
}
@media screen and (max-width: 768px) {
  .wwd__content-top--mobile {
    flex-direction: column;
    align-items: center;
    height: 7.8125rem;
    top: 5rem;
    left: 0;
    width: 100vw;
  }
  .wwd__content-top--mobile .h3 {
    max-width: 15rem;
    text-align: center;
  }
}

.wwd__content-top {
  display: flex;
  width: 100%;
  padding-right: 6.25rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 1440px) {
  .wwd__content-top {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 1280px) {
  .wwd__content-top {
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 1050px) {
  .wwd__content-top {
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .wwd__content-top {
    flex-direction: column;
    height: 7.8125rem;
    max-width: 15rem;
  }
}

.wwd__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .wwd__cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1050px) {
  .wwd__cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.wwd__card {
  border-radius: 1.1875rem;
  box-shadow: inset 0 0 0 1px #ffffff33;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(205deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.wwd__card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(205deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.wwd__card:hover::after {
  opacity: 100%;
  pointer-events: none;
}
.wwd__card:hover .wwd__card-count {
  color: white;
}
@media screen and (max-width: 768px) {
  .wwd__card {
    padding: 1.875rem;
    max-width: 80vw;
  }
}

.wwd__card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wwd__card-icon {
  margin-bottom: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .wwd__card-icon {
    margin-bottom: 1.875rem;
  }
}

.h4--wwd {
  margin-bottom: 1.25rem;
}

.wwd__card-text {
  font-size: 1.125rem;
  line-height: 1.6em;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .wwd__card-text {
    margin-bottom: 1rem;
  }
}

.wwd__card-count {
  margin-top: 2.1875rem;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.section--about {
  padding: 15.3rem 0 14.375rem 0;
}
@media screen and (max-width: 1050px) {
  .section--about {
    padding: 3.75rem 0 5rem 0;
  }
}
@media screen and (max-width: 768px) {
  .section--about {
    padding: 3.75rem 0 5rem 0;
  }
}

.about {
  display: grid;
  grid-template-columns: 80vmin 1fr;
}
@media screen and (max-width: 1280px) {
  .about {
    grid-template-columns: 70vmin 1fr;
  }
}
@media screen and (max-width: 1050px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__left {
  display: flex;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .about__left {
    grid-row-start: 2;
    padding: 20vmin 0;
    height: 70vmin;
  }
}
@media screen and (max-width: 480px) {
  .about__left {
    padding: 30vmin 0;
    height: 100vmin;
  }
}

.about__button {
  top: 35vmin;
  position: sticky;
  width: 30vmin;
  height: 30vmin;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3em;
  color: white;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 12.25vmin 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.about__button.js--active {
  pointer-events: auto;
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  .about__button {
    margin: 0 11vmin 0 auto;
    top: 37vmin;
    width: 26vmin;
    height: 26vmin;
  }
}
@media screen and (max-width: 1050px) {
  .about__button {
    margin: 0;
    position: relative;
    z-index: 2;
    left: 48%;
    top: 2vmin;
  }
}
@media screen and (max-width: 768px) {
  .about__button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .about__button {
    width: 30vmin;
    height: 30vmin;
    top: 0;
    left: 47%;
  }
}

.about__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 27.1875rem;
  margin: 0 5.925rem 0 auto;
}
@media screen and (max-width: 1440px) {
  .about__right {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 1050px) {
  .about__right {
    margin: auto;
    align-items: center;
    max-width: 34rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .about__right {
    align-items: flex-start;
  }
}

.h2--about {
  margin-bottom: 1.3rem;
}

@media screen and (max-width: 1050px) {
  .h3--about {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .h3--about {
    text-align: start;
  }
}

.about__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
  margin: 3.125rem 0 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .about__list {
    margin: 2.125rem 0 1.6rem 0;
    row-gap: 1.4rem;
  }
}

.about__l-item-count {
  margin-bottom: 0.93rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: -0.02em;
  font-size: 1.3125rem;
  line-height: 1.47em;
}
@media screen and (max-width: 1050px) {
  .about__l-item-count {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .about__l-item-count {
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .about__l-item-count {
    text-align: start;
  }
}

.about__l-item-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1050px) {
  .about__l-item-text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .about__l-item-text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .about__l-item-text {
    text-align: start;
  }
}

.section--portfolio {
  padding: 7.5rem 0 9.375rem 0;
}
@media screen and (max-width: 1050px) {
  .section--portfolio {
    padding: 3.125rem 0;
  }
}

.portfolio {
  display: grid;
  grid-template-columns: 40rem 1fr;
  column-gap: 8.125rem;
}
@media screen and (max-width: 1440px) {
  .portfolio {
    column-gap: 6rem;
  }
}
@media screen and (max-width: 1280px) {
  .portfolio {
    grid-template-columns: 1fr;
  }
}

.portfolio__cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .portfolio__cards {
    gap: 0;
    display: flex !important;
  }
}

.portfolio__card {
  position: relative;
  height: 22.8125rem !important;
  display: flex;
  align-items: flex-end;
  border-radius: 0.625rem;
  overflow: hidden;
}
.portfolio__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(235, 104, 169, 0) 0%, rgba(235, 104, 169, 0.25) 50%, #9d98cd 100%);
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .portfolio__card {
    max-width: 19rem;
  }
}
@media screen and (max-width: 480px) {
  .portfolio__card {
    max-width: 82vw;
  }
}
.portfolio__card--your {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px #ffffff1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
.portfolio__card--your::after {
  opacity: 0;
  transition: opacity 0.3s ease;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
.portfolio__card--your:hover::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .portfolio__card--your {
    max-width: 19.375rem;
    height: 22.8125rem !important;
  }
}

.portfolio__card-image {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.portfolio__card-text {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 0 1.25rem;
  border-radius: 0.625rem;
}
.portfolio__card-text::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.625rem;
  backdrop-filter: blur(0.5rem);
}

.portfolio__card-title {
  font-size: 1.125rem;
  line-height: 1.4em;
  color: white;
  letter-spacing: -0.02em;
  padding-bottom: 1.25rem;
}

.portfolio__card-descr {
  padding-bottom: 1.875rem;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: white;
}
.portfolio__card-descr--your {
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: white;
}

.portfolio__card-icon {
  margin-bottom: 0.9375rem;
}

.portfolio__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .portfolio__right {
    grid-row-end: 1;
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .portfolio__right {
    padding: 0 10px;
    width: 100vw;
    position: relative;
    left: -10px;
  }
}

.portfolio__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .portfolio__bottom {
    margin-top: 2rem;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .portfolio__bottom {
    flex-direction: column;
    margin-top: 1.5rem;
    width: 100vw;
    position: relative;
    left: -10px;
  }
}

@media screen and (max-width: 1280px) {
  .portfolio__title-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1280px) {
  .portfolio__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.h2--portfolio {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1280px) {
  .h2--portfolio {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 1280px) {
  .h3--portfolio {
    max-width: 21.1rem;
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .h3--portfolio {
    text-align: center;
  }
}

.portfolio__text {
  font-size: 1.125rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  margin: 1.25rem 0;
}
@media screen and (max-width: 1280px) {
  .portfolio__text {
    margin: 1.25rem 0 2.5rem 0;
    text-align: center;
  }
}
@media screen and (max-width: 1050px) {
  .portfolio__text {
    margin: 1.25rem auto 2.5rem;
    max-width: 34rem;
  }
}
@media screen and (max-width: 768px) {
  .portfolio__text {
    font-size: 0.875rem;
    margin: 1.25rem auto 3.1rem;
  }
}

.portfolio__social-links {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.625rem;
}
@media screen and (max-width: 1280px) {
  .portfolio__social-links {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .portfolio__social-links {
    margin-top: 1.5rem;
  }
}

.portfolio__social-icon.w-p__icon {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.portfolio__swiper-container {
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 768px) {
  .portfolio__swiper-container {
    position: relative;
    left: -10px;
    display: block;
    width: calc(100vw - 20px);
  }
}

@media screen and (max-width: 768px) {
  .portfolio__cards.swiper-wrapper {
    height: unset;
    padding-left: 10px;
  }
}

.portfolio__swiper-pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .portfolio__swiper-pagination {
    display: block;
    position: relative !important;
    bottom: 0 !important;
    left: 10px !important;
    margin-top: 2.1875rem;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .portfolio__swiper-bullet {
    display: inline-block;
    margin: 0 0.6875rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #2f2f2f;
    cursor: pointer;
  }
  .portfolio__swiper-bullet.portfolio__swiper-bullet--active {
    background-color: #a1a1a1;
  }
}

.section--testimonials {
  padding: 9.375rem 0 10.9375rem 0;
}
@media screen and (max-width: 1050px) {
  .section--testimonials {
    padding: 3.125rem 0 4.6875rem 0;
  }
}

.testimonials__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .testimonials__top {
    flex-direction: column;
    align-items: center;
  }
}

.h2--testimonials {
  margin-top: 1rem;
}
@media screen and (max-width: 1050px) {
  .h2--testimonials {
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
}

.h3--testimonials {
  padding-right: 10.9375rem;
}
@media screen and (max-width: 1440px) {
  .h3--testimonials {
    padding-right: 0;
  }
}
@media screen and (max-width: 1050px) {
  .h3--testimonials {
    text-align: center;
  }
}

.testimonials__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 19.375rem;
  width: 100%;
  height: 100%;
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  box-shadow: inset 0 0 0 1px #ffffff33;
  border-radius: 1.25rem;
  overflow: hidden;
  background-image: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
}
.testimonials__card::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(150deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.testimonials__card:hover::after {
  opacity: 1;
}
.testimonials__card:hover .testimonials__card-review,
.testimonials__card:hover .testimonials__card-powered {
  color: white;
}

.testimonials__card-reviewer {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.testimonials__card-photo-wrapper {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.testimonials__card-photo-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, rgba(208, 156, 197, 0.7) 0%, rgba(212, 104, 140, 0) 100%);
}

.testimonials__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__card-name-block {
  margin-left: 0.9375rem;
}

.testimonials__card-name {
  margin-bottom: 2px;
  font-weight: 500;
  color: white;
  font-size: 1.125rem;
  line-height: 1.4em;
  letter-spacing: -0.02em;
}

.testimonials__card-profession {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
}

.testimonials__card-review {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65em;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.testimonials__card-bottom {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials__card-social-link {
  cursor: none;
}
.testimonials__card-social-link path {
  transition: fill 0.3s ease;
}
.testimonials__card-social-link:hover path {
  fill: white;
}

.testimonials__card-powered {
  font-size: 0.75rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.testimonials__swiper-container.swiper-container {
  margin-top: 6.25rem;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 1050px) {
  .testimonials__swiper-container.swiper-container {
    margin-top: 3.125rem;
  }
}

.swiper-gradient-left {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: 100%;
  border-left: 1px solid #525252;
  background-image: linear-gradient(90deg, #2b2b2b 60%, transparent 100%);
}
@media screen and (max-width: 1650px) {
  .swiper-gradient-left {
    display: none;
  }
}

.swiper-gradient-right {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: 100%;
  border-right: 1px solid #525252;
  background-image: linear-gradient(270deg, #2b2b2b 60%, transparent 100%);
}
@media screen and (max-width: 1650px) {
  .swiper-gradient-right {
    display: none;
  }
}

.testimonials__swiper-wrapper {
  position: relative;
  z-index: 1;
}

.testimonials__swiper-slide.swiper-slide {
  min-height: 100%;
  height: unset;
  max-width: 19.375rem;
}

.testimonials__swiper-pagination {
  bottom: -5.1rem !important;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .testimonials__swiper-pagination {
    bottom: -4.5rem !important;
  }
}

.testimonials__swiper-bullet {
  display: inline-block;
  margin: 0 0.6875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #2f2f2f;
  cursor: pointer;
}
.testimonials__swiper-bullet.testimonials__swiper-bullet--active {
  background-color: #a1a1a1;
}
@media screen and (max-width: 768px) {
  .testimonials__swiper-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .testimonials__swiper-bullet {
    margin: 0 0.6875rem 0.6875rem 0.6875rem;
  }
}

.section--blog {
  padding: 9.7rem 0 10.625rem 0;
}
@media screen and (max-width: 1050px) {
  .section--blog {
    padding: 5rem 0 2.8125rem 0;
  }
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h2--blog {
  margin-bottom: 1.25rem;
}

.h3--blog {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 1050px) {
  .h3--blog {
    margin-bottom: 3.125rem;
  }
}

.blog__cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
}
@media screen and (max-width: 1050px) {
  .blog__cards {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}

.blog__card {
  position: relative;
  height: 41.5625rem;
  display: flex;
  align-items: flex-end;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .blog__card {
    height: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .blog__card {
    height: 27.5rem;
  }
}

.blog__card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.blog__card-image-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(255, 101, 101, 0) 0%, #de4e2b 100%);
  opacity: 0.4;
}
.blog__card-image-filter::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  filter: blur(100px);
  background-image: url("../images/bg-gradient-image.jpg");
  opacity: 0.5;
  mix-blend-mode: hue;
}

.blog__card-category {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  padding: 0.625rem 1.5625rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  letter-spacing: -0.03em;
  font-weight: 500;
  border-radius: 2rem;
  background-color: #ffffff;
  z-index: 2;
}
.blog__card-category[data-blog-category=user-experience] {
  color: #4a36de;
}
.blog__card-category[data-blog-category=user-interface] {
  color: #f13071;
}
@media screen and (max-width: 768px) {
  .blog__card-category {
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1.125rem;
    font-size: 0.75rem;
  }
}

.blog__card-text {
  position: relative;
  padding: 1.875rem 2.5rem 1.5625rem 2.5rem;
  background-color: #2020201a;
}
@media screen and (max-width: 768px) {
  .blog__card-text {
    padding: 1.25rem;
  }
}

.blog__card-title-block {
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .blog__card-title-block {
    padding-bottom: 0;
  }
}

.h4--blog {
  margin-bottom: 0.625rem;
}

.blog__card-time {
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.blog__card-descr {
  padding-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: white;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .blog__card-descr {
    font-size: 1rem;
    line-height: 1.65em;
  }
}

.button--blog {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .button--blog {
    margin-top: 2rem;
  }
}

.section--quote {
  padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
  .section--quote {
    padding: 6.2rem 0 2.5rem 0;
  }
}

.quote {
  box-shadow: 0 0 1.25rem 1.25rem #242424;
  margin: 0 2.5rem;
  padding: 12.5rem 0;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .quote {
    padding: 2.5rem 0 3.125rem 0;
  }
}
@media screen and (max-width: 768px) {
  .quote {
    margin: 0 0.625rem;
  }
}

.quote__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .quote__content {
    flex-direction: column;
    align-items: center;
  }
}

.quote__left {
  max-width: 34rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .quote__left {
    max-width: unset;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .quote__left {
    align-items: center;
  }
}

.h2--quote {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1050px) {
  .h2--quote {
    margin-bottom: 1.25rem;
  }
}

.h3--quote {
  font-size: 5.3125rem;
  margin-bottom: 1.875rem;
  font-weight: 800;
}
@media screen and (max-width: 1440px) {
  .h3--quote {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .h3--quote {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1050px) {
  .h3--quote {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .h3--quote {
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
  }
}

.quote__link-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1050px) {
  .quote__link-block {
    align-items: center;
  }
}

.quote__link-text {
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 1050px) {
  .quote__link-text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .quote__link-text {
    font-size: 1.125rem;
  }
}

.quote__right {
  margin: 3.75rem 0 0 2rem;
  max-width: 33.125rem;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .quote__right {
    margin: 3.125rem 0 0 0;
    max-width: unset;
  }
}

.quote__form {
  max-width: 33.125rem;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2.5rem 1.875rem 2.5rem;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px #ffffff33;
  background-image: linear-gradient(205deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  overflow: hidden;
}
@media screen and (max-width: 1050px) {
  .quote__form {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .quote__form {
    padding: 1.875rem 1.25rem;
  }
}

.h4--quote {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .h4--quote {
    font-size: 1.5rem;
  }
}

.quote__form-label {
  width: 100%;
  margin-bottom: 0.9375rem;
  padding: 0.625rem 0;
  position: relative;
}
.quote__form-label::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.quote__form-label::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 1s ease;
  background-color: white;
}
.quote__form-label:hover::after, .quote__form-label:focus-within::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .quote__form-label {
    padding: 0 0 0.6rem 0;
    margin-bottom: 1.9rem;
  }
}

.quote__form-input,
.quote__form-textarea {
  background-color: transparent;
  width: 100%;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4em;
  color: white;
  font-size: 1.125rem;
  font-family: "Poppins";
}
.quote__form-input::placeholder,
.quote__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .quote__form-input,
.quote__form-textarea {
    font-size: 0.875rem;
  }
}

.quote__form-textarea {
  height: 1.4em;
  max-height: 7em;
  padding-right: 1rem;
  resize: none;
}
.quote__form-textarea::-webkit-scrollbar, .quote__form-textarea::-webkit-scrollbar-thumb {
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .quote .container {
    padding: 0 1.25rem;
  }
}

.footer {
  position: relative;
  z-index: 2;
  margin: 0 2.5rem 2.5rem 2.5rem;
  padding: 5rem 0 3.125rem 0;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px #ffffff33;
  background-color: #ffffff08;
  backdrop-filter: blur(1rem);
}
@media screen and (max-width: 768px) {
  .footer {
    margin: 0 0.625rem 0.625rem 0.625rem;
    padding: 1.875rem 0 3.125rem 0;
  }
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 7.5rem;
}
@media screen and (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
  }
}

.footer__nav {
  display: grid;
  grid-template-columns: auto auto auto;
  row-gap: 3.125rem;
  column-gap: 1.875rem;
  max-width: 34.5rem;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer__nav {
    grid-template-columns: auto auto;
    row-gap: 2.3rem;
  }
}

.footer__nav-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__nav-link:hover .footer__nav-link-count {
  color: white;
}
.footer__nav-link:hover .footer__nav-link-name::after {
  width: 100%;
}

.footer__nav-link-count {
  margin-bottom: 3px;
  font-size: 0.75rem;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .footer__nav-link-count {
    font-size: 1.3125rem;
  }
}

.footer__nav-link-name {
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: white;
  position: relative;
}
.footer__nav-link-name::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0.25em;
  left: 0;
  background-color: white;
  transition: width 0.5s ease;
}
@media screen and (max-width: 768px) {
  .footer__nav-link-name {
    font-size: 1.125rem;
  }
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__contacts {
    margin-top: 3.125rem;
    align-items: flex-start;
  }
}

.footer__contacts-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1050px) {
  .footer__contacts-text {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .footer__contacts-text {
    font-size: 0.875rem;
  }
}

.footer__contacts-link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.02em;
  position: relative;
}
.footer__contacts-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0.25em;
  left: 0;
  background-color: white;
  transition: width 0.5s ease;
}
.footer__contacts-link:hover::after {
  width: 100%;
}

.footer__copyright {
  white-space: nowrap;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    grid-row-start: 4;
    white-space: normal;
    font-size: 0.875rem;
  }
}

.footer__social-links {
  margin-left: auto;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__social-links {
    margin: 0 auto 0 0;
  }
}

.footer__social-link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: white;
  position: relative;
}
.footer__social-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0.25em;
  left: 0;
  background-color: white;
  transition: width 0.5s ease;
}
@media screen and (max-width: 768px) {
  .footer__social-link {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .footer .container {
    padding: 0 1.25rem;
  }
}

.section-pp--hero {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .section-pp--hero {
    padding: 6.25rem 0 3.125rem 0;
  }
}

.pp-hero {
  position: relative;
  margin: 0 2.5rem;
  padding: 2.375rem 0 6.6875rem 0;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .pp-hero {
    margin: 0 0.625rem;
    padding: 5.625rem 0 4.1875rem 0;
  }
}

.pp-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button--back {
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .button--back {
    display: none !important;
  }
}

.h2-pp-hero {
  margin-top: 1.75rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .h2-pp-hero {
    margin-top: 0rem;
  }
}

.h1-pp {
  text-align: center;
  margin: 1.25rem 0 1.9375rem 0;
  max-width: 50rem;
}

.section-pp--about {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .section-pp--about {
    padding-bottom: 6.875rem;
  }
}

.pp-about {
  display: grid;
  max-width: 78.75rem;
  width: 100%;
  margin: auto;
  grid-template-columns: 1.24fr 1fr;
  column-gap: 8.125rem;
}
@media screen and (max-width: 1280px) {
  .pp-about {
    column-gap: 3.125rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1050px) {
  .pp-about {
    column-gap: 0;
    row-gap: 1.875rem;
    grid-template-columns: 1fr;
  }
}

.pp-about__image {
  max-width: 40rem;
  width: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  margin: auto;
}
@media screen and (max-width: 1050px) {
  .pp-about__image {
    grid-row-start: 2;
  }
}

.pp-about__right {
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .pp-about__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50rem;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .pp-about__right {
    display: block;
  }
}

.h2-pp-about {
  margin-bottom: 1.25rem;
}

.h3-pp-about {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1050px) {
  .h3-pp-about {
    margin-bottom: 1.875rem;
  }
}

.pp-about__subtitle {
  margin: 1.25rem 0 0.625rem 0;
  font-size: 1.3125rem;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pp-about__text {
  font-size: 1rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.02em;
  font-weight: 400;
}
@media screen and (max-width: 1050px) {
  .pp-about__text {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .pp-about__text {
    text-align: left;
    font-size: 0.875rem;
  }
}

.section-pp--swiper {
  padding: 3.125rem 0;
}

.pp__card {
  width: 100%;
}

.pp__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp__swiper-container.swiper-container {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .pp__swiper-container.swiper-container {
    padding: 0 0.625rem;
  }
}

.swiper-gradient-left--pp {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: -5%;
  left: 0;
  height: 110%;
  width: 5vw;
  border-left: 1px solid #525252;
  background-image: linear-gradient(90deg, #2b2b2b 20%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .swiper-gradient-left--pp {
    display: none;
  }
}

.swiper-gradient-right--pp {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: -5%;
  right: 0;
  height: 110%;
  width: 5vw;
  border-right: 1px solid #525252;
  background-image: linear-gradient(270deg, #2b2b2b 20%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .swiper-gradient-right--pp {
    display: none;
  }
}

.pp__swiper-wrapper {
  position: relative;
  z-index: 1;
}

.pp__swiper-slide.swiper-slide {
  height: 27.1875rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1050px) {
  .pp__swiper-slide.swiper-slide {
    height: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .pp__swiper-slide.swiper-slide {
    height: 16.25rem;
  }
}

.pp__swiper-pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .pp__swiper-pagination {
    display: block;
    position: static !important;
    margin-top: 2.1875rem;
  }
}

.pp__swiper-bullet {
  display: inline-block;
  margin: 0 0.6875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #2f2f2f;
  cursor: pointer;
}
.pp__swiper-bullet.pp__swiper-bullet--active {
  background-color: #a1a1a1;
}
@media screen and (max-width: 768px) {
  .pp__swiper-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .pp__swiper-bullet {
    margin: 0 0.6875rem 0.6875rem 0.6875rem;
  }
}

.pp__swiper-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .pp__swiper-button-wrapper {
    margin-top: 1.3125rem;
  }
}

.section-pp--thinks {
  padding: 4.5rem 0 4.5rem 0;
}
@media screen and (max-width: 1050px) {
  .section-pp--thinks {
    padding: 6.25rem 0 3.75rem 0;
  }
}
@media screen and (max-width: 768px) {
  .section-pp--thinks {
    padding: 6.25rem 0 0 0;
  }
}

.pp-thinks {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h2-pp-thinks {
  font-size: 1.3125rem;
  margin-bottom: 1.25rem;
}

.pp-thinks__text {
  font-size: 2.5rem;
  line-height: 1.4em;
  letter-spacing: -0.04em;
  text-align: center;
  color: white;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .pp-thinks__text {
    font-size: 1.5rem;
  }
}

.pp-thinks__name {
  margin-top: 1.875rem;
  font-size: 21px;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.section-inner--hero {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .section-inner--hero {
    padding: 6.25rem 0 3.125rem 0;
  }
}

.inner-hero {
  margin: 0 2.5rem;
  background-image: url("../images/blog-image-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .inner-hero {
    margin: 0 0.625rem;
  }
}

.inner-hero-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(255, 101, 101, 0) 0%, #de4e2b 100%);
  opacity: 0.5;
}
.inner-hero-filter::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  filter: blur(100px);
  background-image: url("../images/bg-gradient-image.jpg");
  opacity: 1;
  mix-blend-mode: hue;
}

.inner-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8.125rem 0;
}
@media screen and (max-width: 768px) {
  .inner-hero__content {
    padding: 5rem 0 7.5rem 0;
  }
}

.inner-hero__tag {
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 0.625rem 1.875rem;
  background-color: #ffffff;
  border-radius: 3.125rem;
  margin-bottom: 1.875rem;
}
.inner-hero__tag[data-blog-category=web-design] {
  color: #b330f1;
}

.h1-inner {
  max-width: unset;
  text-align: center;
}

.inner-hero__date {
  color: #ffffff;
  letter-spacing: -0.02em;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 1.875rem;
}

.inner-info {
  display: grid;
  grid-template-columns: 1fr 750px;
}
@media screen and (max-width: 1280px) {
  .inner-info {
    grid-template-columns: 1fr 650px;
  }
}
@media screen and (max-width: 1050px) {
  .inner-info {
    grid-template-columns: 1fr;
  }
}

.inner-info__nav-container {
  position: absolute;
  top: 0;
  left: 0;
}

.inner-info__nav {
  position: sticky;
  top: 6.25rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.9375rem;
  max-width: 16.875rem;
}
.inner-info__nav a {
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  cursor: pointer;
}
.inner-info__nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.inner-info__nav a.active {
  color: white;
}

.inner-info__text {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 1050px) {
  .inner-info__text {
    padding-bottom: 3.125rem;
  }
}
.inner-info__text h2 {
  font-size: 1.75rem;
  line-height: 1.5em;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-top: 6.25rem;
  margin: -3.125rem 0 1.875rem 0;
}
@media screen and (max-width: 768px) {
  .inner-info__text h2 {
    font-size: 1.625rem;
  }
}
.inner-info__text h3 {
  font-size: 1.3125rem;
  line-height: 1.5em;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 -0.9375rem 0;
}
@media screen and (max-width: 768px) {
  .inner-info__text h3 {
    font-size: 1.1875rem;
  }
}
.inner-info__text p {
  font-size: 1.125rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 0 0;
}
@media screen and (max-width: 768px) {
  .inner-info__text p {
    font-size: 1rem;
  }
}
.inner-info__text ul {
  margin: 0.625rem 0 0 0;
}
.inner-info__text li {
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.01em;
  font-weight: 300;
  position: relative;
}
.inner-info__text li::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 0.75rem;
  transform: translate(-50%, -50%);
}
.inner-info__text li p {
  font-size: 1rem;
  line-height: 1.6em;
  color: white;
  letter-spacing: -0.01em;
  font-weight: 300;
  max-width: 23.125rem;
}

.inner-info__author-block {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.875rem;
}
@media screen and (max-width: 480px) {
  .inner-info__author-block {
    flex-direction: column;
  }
}

.inner-info__author {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.inner-info__author-photo {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  margin-right: 1.25rem;
}

.inner-info__author-status {
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.inner-info__author-name {
  font-size: 1.3125rem;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: white;
}

.inner-info__author-social {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.625rem;
}
@media screen and (max-width: 480px) {
  .inner-info__author-social {
    margin-top: 3.125rem;
  }
}

.inner-info__social-icon.w-p__icon {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.inner-info__ready-container {
  position: relative;
  padding-top: calc(100vh - 27rem);
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 1280px) {
  .inner-info__ready-container {
    padding-bottom: 11.25rem;
  }
}
@media screen and (max-width: 1050px) {
  .inner-info__ready-container {
    display: none;
  }
}

.inner-ready__left {
  position: sticky;
  top: calc(100vh - 22rem);
  bottom: 6.25rem;
}
@media screen and (max-width: 1050px) {
  .inner-ready__left {
    grid-row-start: 2;
    width: 100%;
  }
}
.inner-ready__left.mobile {
  display: none;
}
@media screen and (max-width: 1050px) {
  .inner-ready__left.mobile {
    display: block;
    position: relative;
    top: 0;
    bottom: 0;
  }
}

.inner-ready__button-lottie {
  position: absolute;
  top: 0;
  left: 0;
  width: 19.375rem;
  height: 19.375rem;

  background-size: 600% 110%;
  background-image: url('../images/gradient.png');
  background-repeat: repeat-x;
  background-position-y: 100%;

  animation-name: logo-button-marquee, logo-button-move;
  animation-duration: 4s, 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  mask-image:
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg')
  ;
  mask-repeat: no-repeat;

  -webkit-mask-image:
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg')
  ;
  -webkit-mask-repeat: no-repeat;

  pointer-events: none;
}
@media screen and (max-width: 1050px) {
  .inner-ready__button-lottie {
    margin: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 480px) {
  .inner-ready__button-lottie {
    width: 10.625rem;
    height: 10.625rem;
  }
}

.inner-ready__button {
  position: relative;
  z-index: 1;
  width: 19.375rem;
  height: 19.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.3em;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: white;
}
@media screen and (max-width: 1050px) {
  .inner-ready__button {
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .inner-ready__button {
    height: 10.625rem;
    width: 10.625rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 1050px) {
  .inner-ready__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .inner-ready__right {
    margin-bottom: 0;
  }
}

.h2-inner-ready {
  margin-top: 16.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1050px) {
  .h2-inner-ready {
    margin-top: 6.25rem;
  }
}

.h3-inner-ready {
  text-transform: none;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 1050px) {
  .h3-inner-ready {
    text-align: center;
    margin-bottom: 3.125rem;
  }
}

.inner-blur-wrapper {
  margin-bottom: 2.5rem !important;
}

.section-inner--swiper {
  padding: 9.375rem 0 8.125rem 0;
}
@media screen and (max-width: 768px) {
  .section-inner--swiper {
    padding: 3.125rem 0;
  }
}

.inner__swiper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h2-inner-swiper {
  margin-bottom: 1.25rem;
}

.h3-inner-swiper {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .h3-inner-swiper {
    margin-bottom: 3.125rem;
  }
}

.inner__card {
  position: relative;
  height: 26.25rem;
  display: flex;
  align-items: flex-end;
  border-radius: 1.25rem;
  overflow: hidden;
}

.inner__card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.inner__card-image-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.inner__card-image-filter::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  filter: blur(100px);
  background-image: url("../images/bg-gradient-image.jpg");
  opacity: 0.5;
  mix-blend-mode: hue;
}

.inner__card-category {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  padding: 0.625rem 1.875rem;
  font-size: 0.875rem;
  line-height: 1.5em;
  letter-spacing: -0.03em;
  font-weight: 500;
  border-radius: 2rem;
  background-color: #ffffff;
  z-index: 2;
}
.inner__card-category[data-blog-category=user-experience] {
  color: #4a36de;
}
.inner__card-category[data-blog-category=user-interface] {
  color: #f13071;
}
.inner__card-category[data-blog-category=web-design] {
  color: #b330f1;
}
@media screen and (max-width: 768px) {
  .inner__card-category {
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1.125rem;
    font-size: 0.75rem;
  }
}

.inner__card-text {
  position: relative;
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  backdrop-filter: blur(0.5rem);
  border-radius: 0 0 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .inner__card-text {
    padding: 1.25rem;
  }
}

.inner__card-title-block {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .inner__card-title-block {
    padding-bottom: 0;
  }
}

.h4--inner {
  font-size: 1.3125rem;
  margin-bottom: 0.625rem;
}

.inner__card-time {
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.inner__card-descr {
  padding-top: 0.9375rem;
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: white;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .inner__card-descr {
    font-size: 1rem;
    line-height: 1.65em;
  }
}

.inner__swiper-container.swiper-container {
  width: 100%;
  position: relative;
  overflow: visible;
}

.swiper-gradient-left--inner {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: -5%;
  left: -40px;
  height: 110%;
  width: 40px;
  border-left: 1px solid #525252;
  background-image: linear-gradient(90deg, #2b2b2b 10%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .swiper-gradient-left--inner {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .swiper-gradient-left--inner {
    display: none;
  }
}

.swiper-gradient-right--inner {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: -5%;
  right: -40px;
  height: 110%;
  width: 40px;
  border-right: 1px solid #525252;
  background-image: linear-gradient(270deg, #2b2b2b 10%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .swiper-gradient-right--inner {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .swiper-gradient-right--inner {
    display: none;
  }
}

.inner__swiper-wrapper {
  position: relative;
  z-index: 1;
  display: grid !important;
  column-gap: 1.25rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1280px) {
  .inner__swiper-wrapper {
    column-gap: 0;
  }
}

.inner__swiper-slide.swiper-slide {
  height: 26.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.inner__swiper-pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .inner__swiper-pagination {
    display: block;
    position: static !important;
    margin-top: 2.1875rem;
  }
}

.inner__swiper-bullet {
  display: inline-block;
  margin: 0 0.6875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #2f2f2f;
  cursor: pointer;
}
.inner__swiper-bullet.inner__swiper-bullet--active {
  background-color: #a1a1a1;
}
@media screen and (max-width: 768px) {
  .inner__swiper-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .inner__swiper-bullet {
    margin: 0 0.6875rem 0.6875rem 0.6875rem;
  }
}

.button-inner-slider {
  text-transform: capitalize;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .button-inner-slider {
    margin-top: 1.375rem;
  }
}

body {
  background-color: #242424;
  line-height: 1em;
}

.section {
  width: 100%;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1380px;
  padding: 0 40px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.page-change {
  position: fixed;
  z-index: 9998;
  background-color: #242424;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s ease;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1050px) {
  ::-webkit-scrollbar {
    display: none;
  }
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.6);
}

.button {
  display: flex;
  align-items: center;
  margin-left: -1rem;
  padding-right: 0.9375rem;
}
.button:hover .button__circle {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  width: 4rem;
  height: 4rem;
}

.button__arrow-block {
  width: 4rem;
  height: 4rem;
  margin-right: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.button__circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
}

.button__arrow {
  width: 1.4375rem;
  height: 0.875rem;
}

.button__text {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: white;
}

.cursor {
  position: fixed;
  width: 4.6875rem;
  height: 4.6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.1s ease, transform 0.1s ease;
}
.cursor.hidden {
  opacity: 0;
  transform: scale(0.4);
}

.cursor__circle {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation-name: cursor-circle-rotate;
  animation-duration: 7.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes cursor-circle-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cursor-drag {
  display: flex;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition-delay: 0.2s;
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 1;
}
.cursor-drag.hidden {
  opacity: 0;
  transform: scale(0.4);
}

.cursor-drag__arrow-left {
  transform: rotate(180deg);
  position: absolute;
  left: -1rem;
}

.cursor-drag__circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cursor-drag__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: white;
}

.cursor-drag__arrow-right {
  position: absolute;
  right: -1rem;
}

.cc-block {
  cursor: none;
}

.blur-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px #ffffff33;
  margin: 0 40px;
  background-color: #ffffff08;
  backdrop-filter: blur(0.5rem);
}
@media screen and (max-width: 768px) {
  .blur-wrapper {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
  }
}

.card {
  overflow: hidden;
}

.card__text-wrapper {
  transition: height 0.5s ease, opacity 0.5s ease;
  max-height: 100%;
  opacity: 0;
}

.w-p__icon {
  box-shadow: inset 0 0 0 1px #ffffff;
  border-radius: 1.125rem;
  transition: background-color 0.3s ease;
}
.w-p__icon path {
  transition: fill 0.3s ease;
}

.w-p__p-element:hover .w-p__icon {
  background-color: white;
}
.w-p__p-element:hover .w-p__icon path {
  fill: #f13071;
}

.bg-gradient {
  z-index: -1;
  position: absolute;
  width: 600%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/bg-gradient.jpg");
  animation-name: bg-gradient-move;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.bg-gradient::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/bg-gradient.jpg");
}

@keyframes bg-gradient-move {
  0% {
    left: 0;
  }
  100% {
    left: -600%;
  }
}

.preloader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  padding-block: 10vmin;
  background-color: #232323;
}
.preloader.js--active {
  animation-name: preloader-disappear;
  animation-duration: 1000ms;
  animation-delay: 4000ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
@keyframes preloader-disappear {
  0% { opacity: 1 }
  100% { opacity: 0 }
}
.preloader__logo {
  position: relative;
  overflow: hidden;

  width: 80vmin;
  height: 80vmin;
}
@media screen and (max-width: 1280px) {
  .preloader {
    padding-block: 15vmin;
  }
  .preloader__logo {
    height: 70vmin;
    width: 70vmin;
  }
}
@media screen and (max-width: 1050px) {
  .preloader__logo {
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .preloader {
    padding: 35vmin 0 0;
  }
  .preloader .preloader__logo {
    width: calc(100vmin - 20px);
    height: calc(100vmin - 20px);
  }
}

.logo-stroke,
.logo-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.preloader .logo-stroke {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
}

.preloader .logo-gradient {
  background-size: 600% 110%;
  background-image: url('../images/gradient.png');
  background-repeat: repeat-x;
  background-position: 0% -1100%;

  mask-image: url('.../images/logo.svg');
  mask-size: 100%, 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('../images/logo.svg');
  -webkit-mask-size: 100%, 100%;
  -webkit-mask-repeat: no-repeat;
}

.preloader.js--active .logo-stroke {
  animation-name: logo-stroke-appear, logo-stroke-disappear;
  animation-duration: 1s, 1s;
  animation-delay: 0s, 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.preloader.js--active .logo-gradient {
  animation-name: logo-gradient-appear, logo-gradient-marquee;
  animation-duration: 2s, 4s;
  animation-delay: 1s, 0s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-iteration-count: 1, infinite;
}

@keyframes logo-stroke-appear {
  0% { stroke-dashoffset: 2200 }
  100% { stroke-dashoffset: 0 }
}
@keyframes logo-stroke-disappear {
  0% { opacity: 1 }
  100% { opacity: 0 }
}

@keyframes logo-gradient-appear {
  0% { background-position-y: -1100% }
	100% { background-position-y: 100% }
}
@keyframes logo-gradient-marquee {
  0% { background-position-x: 0% }
	100% { background-position-x: 100% }
}

.logo-wrapper {
  position: fixed;
  z-index: 1;
  top: 10vmin;
  left: 0;
  width: 100%;
  height: 80vmin;
  opacity: 1;
}
.logo-wrapper.js--hidden {
  opacity: 0;
}
.logo-wrapper.js--hidden .logo-gradient{
  animation-play-state: paused;
}
.logo-wrapper .logo {
  width: 80vmin;
  height: 80vmin;
  position: relative;
}
.logo-wrapper--second .logo-gradient,
.logo-wrapper .logo-gradient {
  background-size: 600% 110%;
  background-image: url('../images/gradient.png');
  background-repeat: repeat-x;
  background-position: 0% 100%;

  mask-image: url('.../images/logo.svg');
  mask-size: 100%, 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('../images/logo.svg');
  -webkit-mask-size: 100%, 100%;
  -webkit-mask-repeat: no-repeat;

  animation-name: logo-gradient-marquee;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 1280px) {
  .logo-wrapper {
    top: 15vmin;
    height: 70vmin;
  }
  .logo-wrapper .logo {
    width: 70vmin;
    height: 70vmin;
  }
}
@media screen and (max-width: 1050px) {
  .logo-wrapper .logo {
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .logo-wrapper {
    top: 35vmin;
    height: calc(100vmin - 20px);
  }
  .logo-wrapper .logo {
    width: calc(100vmin - 20px);
    height: calc(100vmin - 20px);
  }
}

.logo-button {
  position: absolute;
  top: 31.5%;
  left: 47%;
  width: 38%;
  height: 38%;

  background-size: 600% 110%;
  background-image: url('../images/gradient.png');
  background-repeat: repeat-x;
  background-position-y: 100%;

  animation-name: logo-button-marquee, logo-button-move;
  animation-duration: 4s, 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;

  mask-image:
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg')
  ;
  mask-repeat: no-repeat;

  -webkit-mask-image:
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg'),
    url('../images/bubble.svg')
  ;
  -webkit-mask-repeat: no-repeat;

  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
.logo-button.js--active {
  opacity: 1;
  animation-play-state: running;
}

@keyframes logo-button-marquee {
  0% { background-position-x: 0% }
	100% { background-position-x: 100% }
}

@keyframes logo-button-move {
  0% {
    -webkit-mask-position:
      50% 0%,
      100% 50%,
      50% 100%,
      0% 50%
    ;
    -webkit-mask-size: 95%, 90%, 85%, 90%;
  }
  100% {
    -webkit-mask-position:
      100% 50%,
      50% 100%,
      0% 50%,
      50% 0%
    ;
    -webkit-mask-size: 90%, 85%, 90%, 95%;
  }
}

.logo-wrapper--second {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  /* left: -40px; */
  /* height: 100vh; */
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .logo-wrapper--second {
    display: block;
  }
}
.logo-wrapper--second .logo--second {
  position: sticky;
  height: 70vmin;
  width: 70vmin;
  top: 15vmin;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .logo-wrapper--second .logo--second {
    top: 35vmin;
    height: calc(100vmin - 20px);
    width: calc(100vmin - 20px);
  }
}

.cursor-block {
  z-index: 9999;
  position: fixed;
  width: 4.6875rem;
  height: 4.6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.cursor-block .cursor {
  position: relative;
}
.cursor-block .cursor-drag {
  position: absolute;
  top: 25%;
  left: 25%;
}

.navbar__list {
    grid-template-columns: auto auto auto auto auto auto auto;
	padding-right: 50px;
}
a {
    color: #f068ff;
    text-decoration: none;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
.alignleft, .alignnone { float: left; max-width: 100%; height: auto; margin: 0 20px 20px 0; }
.alignright { float: right; max-width: 100%; height: auto; margin: 0 0 20px 20px; }
.aligncenter { float: none; display: block; max-width: 100%; height: auto; margin: 0 auto 20px auto;}

/* @media only screen and (min-width: 1180px) and (max-width: 1366px) {
.inner-ready__left {
    top: calc(100vh - 10rem);
}
} */
/*# sourceMappingURL=main.css.map */
