* {
  margin: 0;
  padding: 0;
}

.promo {
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.promo .mobile {
  display: none;
}
@media screen and (min-width: 660px) {
  .promo {
    margin-top: 115px;
  }
}
@media screen and (min-width: 1024px) {
  .promo {
    width: 768px;
  }
}
@media screen and (max-width: 659px) {
  .promo .mobile {
    display: block;
  }
  .promo .mobile.flex {
    display: flex;
  }
  .promo .desktop {
    display: none;
  }
}
.promo * {
  font-family: "Nunito Sans", sans-serif;
  box-sizing: border-box;
}
.promo .flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.promo .promo-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  background: #F8F8F8;
  display: inline-flex;
  padding: 5px 8px;
  cursor: pointer;
  align-items: center;
  color: #575757;
}
.promo .promo-close__text {
  font-size: 12px;
  margin-right: 4px;
}
.promo .promo-close__icon {
  stroke: currentColor;
}
.promo .promo-close:hover .promo-close__text {
  text-decoration: underline;
}
.promo .promo__inner {
  height: 120px;
  background: url(../img/bg.png) no-repeat center center;
  background-size: cover;
  align-items: center;
}
.promo .promo__inner .promo-content {
  align-items: center;
  height: 100%;
  z-index: 99;
  margin-left: auto;
}
@media screen and (max-width: 659px) {
  .promo .promo__inner {
    height: 214px;
    background-image: url(../img/bg-mobile.png);
  }
  .promo .promo__inner .promo-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 27px;
  }
}
.promo .promo__inner .promo-text {
  position: relative;
  text-align: left;
  margin-left: 36px;
  flex-direction: column;
  order: 1;
}
@media screen and (max-width: 659px) {
  .promo .promo__inner .promo-text {
    position: static;
    order: 1;
    margin: 0;
    align-items: center;
    text-align: left;
  }
}
.promo .promo__inner .promo-text__inner {
  position: relative;
  font-size: 13px;
  line-height: 1;
  margin-left: 98px;
}
.promo .promo__inner .promo-text__inner .text {
  color: #fff;
}
.promo .promo__inner .promo-text__inner .text__large {
  font-size: 19px;
}
@media screen and (max-width: 659px) {
  .promo .promo__inner .promo-text__inner {
    margin: 10px 0 0 0;
  }
}
.promo .promo__inner .promo-text__name {
  font-size: 33px;
  font-weight: bold;
  color: #fff;
}
.promo .promo__inner .promo-text__age {
  position: absolute;
  top: 10px;
  right: -12px;
  padding: 2px 5px;
  background: #fff;
  font-weight: bold;
  font-size: 14px;
  color: #4F95FF;
}
.promo .promo__inner .promo-text__profile {
  font-size: 9px;
  color: #fff;
  opacity: 0.4;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 659px) {
  .promo .promo__inner .promo-text__profile {
    display: block;
  }
}
.promo .promo-logo {
  width: 123px;
  height: 50px;
}
.promo .promo-logo img {
  max-width: 100%;
  max-height: 100%;
}
.promo .promo-logo.mobile {
  width: 176px;
  height: 20px;
}
.promo .promo-logo.desktop {
  order: 3;
  margin-right: 60px;
}
.promo .promo-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 183px;
  height: 235px;
  z-index: 98;
}
.promo .promo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.promo .promo-image:before {
  content: "";
  width: 177px;
  height: 182px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url(../img/heart.png) no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 659px) {
  .promo .promo-image {
    left: -30px;
  }
  .promo .promo-image:before {
    display: none;
  }
}
.promo .promo-button {
  margin-left: auto;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 48px;
  min-width: 182px;
  color: #fff;
  position: relative;
  z-index: 999;
  text-decoration: none;
  overflow: hidden;
  order: 2;
  margin-right: 37px;
  background: linear-gradient(180deg, #FF4566 0%, #D71737 100%);
  border: 2px solid #FF5B78;
  border-radius: 34px;
}
.promo .promo-button-mobile {
  display: none;
}
@media screen and (max-width: 659px) {
  .promo .promo-button {
    margin-left: 0;
    order: 2;
    margin-top: 20px;
    display: none;
    margin-right: 0;
  }
  .promo .promo-button-mobile {
    display: inline-flex;
  }
}
.promo .promo-button span {
  position: relative;
  z-index: 3;
  pointer-events: none;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
.promo .promo-button:before, .promo .promo-button:after {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  left: 0;
  top: 0;
  box-sizing: inherit;
  opacity: 0;
  transition: all 0.24s ease-in-out;
  z-index: 1;
}
.promo .promo-button:before {
  background: linear-gradient(182deg, #FF4566 6%, #D71737 318%);
  border-color: #FF5B78;
}
.promo .promo-button:after {
  background: linear-gradient(180deg, #FF4566 -314%, #D71737 100%);
  z-index: 2;
}
.promo .promo-button:hover:before {
  opacity: 1;
}
.promo .promo-button:active:after {
  opacity: 1;
}
.promo .promo-button .animation {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  transform: rotateZ(60deg) translate(-5em, 7.5em);
  animation: flash 3s forwards infinite;
  pointer-events: none;
}
.promo .promo-link-overview {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

@keyframes flash {
  0% {
    transform: rotateZ(105deg) translate(-5em, 7.5em);
  }
  50% {
    transform: rotateZ(105deg) translate(1em, -9em);
  }
  100% {
    transform: rotateZ(105deg) translate(1em, -9em);
  }
}

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