@font-face {
  font-family: 'Balsamiq Sans';
  src: url('BalsamiqSans-Bold.ttf');
}

/* START Reset ================================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 18px;
  line-height: 1.5;
  font-family: 'Balsamiq Sans', serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-wrap: pretty;
  scrollbar-color: #9f9f9f #2c2c2c;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-weight: inherit;
  line-height: 1.2;
}

b,
strong {
  font-weight: bolder;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
/* END Reset ==================================================================================== */

/* START General Style ============================================================================ */
:root {
  --clr-bg: hsl(323 10% 5%);
  --clr-neon: hsl(317 100% 54%);
}

body {
  background: var(--clr-bg);
}

/* START Header ================================================================================= */
.header {
  margin-bottom: 100px;
  background: #000;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1)
}

.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5px 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.neon__wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.2;
  -webkit-filter: brightness(200%);
          filter: brightness(200%);
  overflow: hidden;
}

.neon__wrapper-txt {
  color: #fff;
  background: #000;
  font-size: clamp(3rem, 0.0994rem + 15.4696vw, 10rem);
  font-weight: bold;
  text-transform: uppercase;
}

.neon__wrapper-txt::before {
  content: 'hot dates';
  position: absolute;
  mix-blend-mode: difference;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.neon__wrapper-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#151515), to(var(--clr-neon)));
  background: -o-linear-gradient(#151515, var(--clr-neon));
  background: linear-gradient(#151515, var(--clr-neon));
  mix-blend-mode: multiply;
}

.neon__wrapper-dodge {
  position: absolute;
  top: -100%;
  left: -100%;
  right: 0;
  bottom: 0;
  background: -o-radial-gradient(circle, white, black 35%) center / 25% 25%;
  background: radial-gradient(circle, white, black 35%) center / 25% 25%;
  mix-blend-mode: color-dodge;
  -webkit-animation: dodge-area 3s linear infinite;
          animation: dodge-area 3s linear infinite;
}
@-webkit-keyframes dodge-area {
  to {
    -webkit-transform: translate(50%,50%);
            transform: translate(50%,50%);
  }
}
@keyframes dodge-area {
  to {
    -webkit-transform: translate(50%,50%);
            transform: translate(50%,50%);
  }
}
/* END Header ================================================================================== */

/* START Section1 =============================================================================== */
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.grid__left {
  max-width: 50%;
  width: 100%;
}

.section1 .grid__left {
  margin: 0 10px;
}

.grid__left-hello {
  font-size: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

#city {
  text-shadow: 0 0 10px rgba(255, 255, 255, .8), 0 0 20px rgba(255, 255, 255, .8), 0 0 22px rgba(255, 255, 255, .8), 0 0 40px rgba(219, 66, 217, .8), 0 0 60px rgba(219, 66, 217, .8), 0 0 80px rgba(219, 66, 217, .8), 0 0 100px rgba(219, 66, 217, .5), 0 0 140px rgba(219, 66, 217, .5), 0 0 200px rgba(219, 66, 217, .5);
  -webkit-animation: neon 5s linear infinite;
          animation: neon 5s linear infinite;
}
@-webkit-keyframes neon {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  63% {
    opacity: 1;
  }
  93% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  97% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes neon {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  63% {
    opacity: 1;
  }
  93% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  97% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* START Neon-button ======================================================================== */
.neon-button {
  margin-top: 120px;
  font-size: 3rem;
  display: block;
  width: 60%;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: var(--clr-neon);
  border: var(--clr-neon) .125em solid;
  border-radius: .25em;
  text-shadow: 0 0 .125em hsl(0 0% 100% / .3), 0 0 .45em currentColor;
  -webkit-box-shadow: inset 0 0 .5em 0 var(--clr-neon), 0 0 .5em 0 var(--clr-neon);
          box-shadow: inset 0 0 .5em 0 var(--clr-neon), 0 0 .5em 0 var(--clr-neon);
  position: relative;
  z-index: 1;
}

.neon-button::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: var(--clr-neon);
  top: 120%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: perspective(1em) rotateX(40deg) scale(1, 0.35);
          transform: perspective(1em) rotateX(40deg) scale(1, 0.35);
  -webkit-filter: blur(1em);
          filter: blur(1em);
  opacity: 0.7;
}

.neon-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 2em 0.5em var(--clr-neon);
          box-shadow: 0 0 2em 0.5em var(--clr-neon);
  opacity: 0;
  background-color: var(--clr-neon);
  z-index: -1;
  -webkit-transition: opacity 100ms linear;
  -o-transition: opacity 100ms linear;
  transition: opacity 100ms linear;
}

.neon-button:hover,
.neon-button:focus {
  color: var(--clr-bg);
  text-shadow: none;
}

.neon-button:hover::before,
.neon-button:focus::before {
  opacity: 1;
}
.neon-button:hover::after,
.neon-button:focus::after {
  opacity: 1;
}
/* END Neon-button ======================================================================== */

.grid__right {
  max-width: 50%;
}

#hello {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
#hello img {
  max-width: 100%;
  -webkit-animation: none 0.5s linear forwards;
          animation: none 0.5s linear forwards;
}

@-webkit-keyframes img-in {
    0% { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 0; -webkit-transform: scale(1.05); transform: scale(1.05); }
   50% { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
  100% { -webkit-filter: grayscale(0); filter: grayscale(0); }}

@keyframes img-in {
    0% { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 0; -webkit-transform: scale(1.05); transform: scale(1.05); }
   50% { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
  100% { -webkit-filter: grayscale(0); filter: grayscale(0); }}
@-webkit-keyframes img-out {
    0% { -webkit-filter: grayscale(0); filter: grayscale(0); opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
   30% { -webkit-filter: grayscale(100%); filter: grayscale(100%); }
  100% { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 0; -webkit-transform: scale(1.05); transform: scale(1.05); }}
@keyframes img-out {
    0% { -webkit-filter: grayscale(0); filter: grayscale(0); opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
   30% { -webkit-filter: grayscale(100%); filter: grayscale(100%); }
  100% { -webkit-filter: grayscale(100%); filter: grayscale(100%); opacity: 0; -webkit-transform: scale(1.05); transform: scale(1.05); }}

#hello img::before {
  content: "";
  position: absolute;
  background: var(--clr-neon);
  bottom: 20%;
  right: 20%;
  width: 29%;
  height: 25%;
  -webkit-transform: perspective(1em) rotateX(-2deg) scale(1, 0.35);
          transform: perspective(1em) rotateX(-2deg) scale(1, 0.35);
  -webkit-filter: blur(3em);
          filter: blur(3em);
  opacity: 0.7;
}

.grid__right-bottom {
  background: var(--clr-neon);
  border-radius: 50%;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0 0 120px hsl(317 100% 54% / 20%),
  0 0 200px hsl(317 100% 54% / 40%),
  0 0 300px hsl(317 100% 54% / 60%),
  0 0 400px hsl(317 100% 54% / 80%),
  0 0 500px hsl(317 100% 54%);
          box-shadow: 0 0 120px hsl(317 100% 54% / 20%),
  0 0 200px hsl(317 100% 54% / 40%),
  0 0 300px hsl(317 100% 54% / 60%),
  0 0 400px hsl(317 100% 54% / 80%),
  0 0 500px hsl(317 100% 54%);
  -webkit-filter: blur(0.5em);
          filter: blur(0.5em);
}

@media (max-width: 768px) {
  .header {
    margin-bottom: 30px;
  }
  .grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .grid__left,
  .grid__right {
    max-width: 100%;
  }
  .neon-button {
    margin: 0 auto;
    margin-top: 70px;
  }
  .section1 .grid__right {
    margin: 0 auto;
    margin-top: 100px;
  }
}

@media (max-width: 375px) {
  .grid__left-hello {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 1.4;
  }
}
/* END Section1 ============================================================================= */


/* START Section2 Cube ======================================================================= */
.section2 {
  margin-top: 300px;
}

.section2 .grid__left {
  margin: 0 10px;
}

.cube {
  margin-top: 100px;
  margin-right: 130px;
  position: relative;
  width: 250px;
  height: 250px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: animate 10s linear infinite;
          animation: animate 10s linear infinite;
}
@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotateX(-30deg) rotateY(360deg);
            transform: rotateX(-30deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateX(-30deg) rotateY(0deg);
            transform: rotateX(-30deg) rotateY(0deg);
  }
}
@keyframes animate {
  0% {
    -webkit-transform: rotateX(-30deg) rotateY(360deg);
            transform: rotateX(-30deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: rotateX(-30deg) rotateY(0deg);
            transform: rotateX(-30deg) rotateY(0deg);
  }
}

.cube div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.cube div span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#151515), to(var(--clr-neon)));
  background: -o-linear-gradient(#151515, var(--clr-neon));
  background: linear-gradient(#151515, var(--clr-neon));
  -webkit-transform: rotateY(calc(90deg * var(--i))) translateZ(125px);
          transform: rotateY(calc(90deg * var(--i))) translateZ(125px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.cube div span p {
  position: absolute;
  font-size: 3em;
  text-transform: uppercase;
  color: #fff;
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.cube__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2em;
  color: var(--clr-neon);
  text-shadow: 0 0 .125em hsl(0 0% 100% / .3), 0 0 .45em currentColor;
  background: #222;
  -webkit-transform: rotateX(90deg) translateZ(125px);
          transform: rotateX(90deg) translateZ(125px);
}

.cube__top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: var(--clr-neon);
  -webkit-transform: translateZ(-300px);
          transform: translateZ(-300px);
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-box-shadow: 0 0 120px hsl(317 100% 54% / 20%),
  0 0 200px hsl(317 100% 54% / 40%),
  0 0 300px hsl(317 100% 54% / 60%),
  0 0 400px hsl(317 100% 54% / 80%),
  0 0 500px hsl(317 100% 54%);
          box-shadow: 0 0 120px hsl(317 100% 54% / 20%),
  0 0 200px hsl(317 100% 54% / 40%),
  0 0 300px hsl(317 100% 54% / 60%),
  0 0 400px hsl(317 100% 54% / 80%),
  0 0 500px hsl(317 100% 54%);
}

@media (max-width: 850px) {
  .cube {
    margin-right: 50px;
  }
}

@media (max-width: 768px) {
  .section2 {
    margin-top: 150px;
  }
  .cube {
    margin: 0 auto;
    margin-top: 150px;
  }
}
/* END Section2 Cube ============================================================================ */

/* START Section3 Slider_3d ======================================================================= */
.section3 {
  margin-top: 300px;
}

.banner {
  width: 100%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.banner .slider {
  position: absolute;
  width: 200px;
  height: 250px;
  top: 10%;
  left: calc(50% - 100px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: perspective(1000px);
          transform: perspective(1000px);
  -webkit-animation: autoRun 20s linear infinite;
          animation: autoRun 20s linear infinite;
  z-index: 2;
}

@-webkit-keyframes autoRun {
  from {
    -webkit-transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
            transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
  }
  to {
    -webkit-transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
            transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
  }
}

@keyframes autoRun {
  from {
    -webkit-transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
            transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
  }
  to {
    -webkit-transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
            transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
  }
}

.banner .slider .item {
  position: absolute;
  inset: 0 0 0 0;
  -webkit-transform: 
  rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
  translateZ(550px);
          transform: 
  rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
  translateZ(550px);
}

.banner .slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(1400px, 100vw);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.banner .content h1 {
  font-size: 21em;
  line-height: 1em;
  text-shadow: 0 0 .125em hsl(317 100% 54% / 50%);
  position: relative;
}

.banner .content h1::after {
  position: absolute;
  inset: 0 0 0 0;
  content: attr(data-content);
  z-index: 2;
  -webkit-text-stroke: 1px var(--clr-neon);
  color: transparent;
}

.banner .content .author {
  text-align: right;
  max-width: 190px;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.banner .content .author p {
  color: #afafaf;
}

.banner .content span {
  font-size: 3em;
  line-height: initial;
}

.banner .content .model {
  background-image: url(img/slider-model.png);
  width: 100%;
  height: 75vh;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: auto 130%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .banner .slider {
    width: 160px;
    height: 200px;
    left: calc(50% - 80px);
  }
  .banner .slider .item {
    -webkit-transform: 
    rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(300px);
            transform: 
    rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(300px);
  }
  .banner .content h1 {
    text-align: center;
    width: 100%;
    font-size: 7em;
  }
  .banner .content .author {
    color: #fff;
    padding: 20px;
    z-index: 2;
    max-width: unset;
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .section3 {
    margin-top: 150px;
  }
  .banner .slider {
    width: 100px;
    height: 150px;
    left: calc(50% - 50px);
  }
  .banner .slider .item {
    -webkit-transform: 
    rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(180px);
            transform: 
    rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(180px);
  }
  .banner .content h1 {
    font-size: 5em;
  }
}
/* END Section3 Slider_3d ======================================================================== */

/* START Section4 Background video =============================================================== */
.bgvideo {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 130vh;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 1);
          box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 1);
}

.bgvideo__source {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.bgvideo__mask {
  position: absolute;
  width: 100%;
  height: 130vh;
  background-color: hsl(323deg 50% 5% / 80%);
}

.bgvideo__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bgvideo__text-wrap {
  padding: 0 10px;
  position: relative;
  max-width: 910px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.bgvideo__text-wrap-title {
  font-size: 28px;
  line-height: 1.5;
}

.bgvideo__text-wrap-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #afafaf;
}

/* START Dating ============================================================================== */
#dating {
  font-size: 20px;
  opacity: 0;
  -webkit-transition: all 2.0s;
  -o-transition: all 2.0s;
  transition: all 2.0s;
}
#dating.datingnow {
  opacity: 1;
  color: #afafaf;
  -webkit-transition: all 2.0s;
  -o-transition: all 2.0s;
  transition: all 2.0s;
}
/* END Dating ================================================================================ */

.bgvideo .neon-button {
  margin: 0 auto;
  margin-top: 120px;
}

@media (max-width: 425px) {
  .bgvideo .neon-button {
    width: 90%;
  }
}
/* END Section4 Background video ================================================================ */

/* START Section4.1 Fixed Background ============================================================= */
.fixed__background {
  background-image: url('img/fixed__background.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fixed__background .bgvideo__text-wrap-subtitle {
  color: #afafaf;
}
/* END Section4.1 Fixed Background =============================================================== */

/* START Section6 Heart ========================================================================= */
.section__header {
  text-align: center;
  padding: 0 10px 40px;
  font-size: 28px;
  text-transform: uppercase;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.section6 {
  margin-top: 150px;
}

.section6 .section__header {
  padding: 0 10px 60px;
}

.section6 .grid__right {
  padding: 0 10px;
  color: #afafaf;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.section6 .neon-button {
  width: 70%;
}
@media (max-width: 425px) {
  .section6 .neon-button {
    width: 80%;
  }
}

.heart__background {
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.heart__container {
  position: relative;
  width: 100%;
  height: 430px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, transparent, transparent, #0005);
}

#heart {
  position: relative;
  width: 225px;
  height: 250px;
}

#heart::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 20px;
  width: 125px;
  height: 200px;
  background: var(--clr-neon);
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
  rotate: 315deg;
  z-index: 1;
  -webkit-box-shadow: 0 0 200px hsl(317 100% 50% / 100%);
          box-shadow: 0 0 200px hsl(317 100% 50% / 100%);
  -webkit-animation: animateHeart 2s steps(10) infinite;
          animation: animateHeart 2s steps(10) infinite;
}

#heart::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 74px;
  width: 125px;
  height: 200px;
  background: var(--clr-neon);
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
  rotate: 45deg;
  z-index: 1;
  -webkit-animation: animateHeart 2s steps(10) infinite;
          animation: animateHeart 2s steps(10) infinite;
}
@-webkit-keyframes animateHeart {
  0%,94%,100% {
    -webkit-filter: none;
            filter: none;
  }
  95% {
    -webkit-filter: drop-shadow(0 0 50px #f00) drop-shadow(0 0 150px #f00);
            filter: drop-shadow(0 0 50px #f00) drop-shadow(0 0 150px #f00);
    background: #f00;
  }
}
@keyframes animateHeart {
  0%,94%,100% {
    -webkit-filter: none;
            filter: none;
  }
  95% {
    -webkit-filter: drop-shadow(0 0 50px #f00) drop-shadow(0 0 150px #f00);
            filter: drop-shadow(0 0 50px #f00) drop-shadow(0 0 150px #f00);
    background: #f00;
  }
}

.drop {
  position: absolute;
  top: 40px;
  width: 30px;
  height: 30px;
  -webkit-filter: drop-shadow(5px 5px 10px #000) drop-shadow(0 0 10px #f00);
          filter: drop-shadow(5px 5px 10px #000) drop-shadow(0 0 10px #f00);
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: anamateDrop 4s linear forwards;
          animation: anamateDrop 4s linear forwards;
}

.drop::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 30px;
  background: var(--clr-neon);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  rotate: -45deg;
  z-index: 1;
}

.drop::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 30px;
  height: 20px;
  background: var(--clr-neon);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  rotate: 315deg;
  z-index: 1;
}

@-webkit-keyframes anamateDrop {
  0% {
  top: 40px;
  opacity: 1;
  scale: 1;
  }
  70% {
  top: 400px;
  opacity: 1;
  }
  80% {
  top: 400px;
  }
  100% {
  top: 400px;
  opacity: 0;
  scale: 0;
  }
}

@keyframes anamateDrop {
  0% {
  top: 40px;
  opacity: 1;
  scale: 1;
  }
  70% {
  top: 400px;
  opacity: 1;
  }
  80% {
  top: 400px;
  }
  100% {
  top: 400px;
  opacity: 0;
  scale: 0;
  }
}
/* END Section6 Heart ============================================================================ */

/* START Section7 Girl ============================================================================ */
.section7 {
  margin-top: 200px;
}

.section7 .grid__left {
  margin: 0 10px;
  color: #afafaf;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.section7 .grid__right {
  position: relative;
}

.section7 .bgvideo__mask {
  position: absolute;
  margin: 20px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: hsl(323deg 50% 5% / 60%);
}

.container__video {
  margin: 20px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 3em 0 var(--clr-neon);
          box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 3em 0 var(--clr-neon);
}

.section7 .grid__right .hidden-link {
  cursor: pointer;
}

.section7 .grid__right .container__video:hover {
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 5em 0 var(--clr-neon);
          box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 5em 0 var(--clr-neon);
}

.section7 .video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section7 .privacy {
  position: absolute;
  right: 20px;
  margin-top: -80px;
}

@media (max-width: 1100px) {
  .section7 .bgvideo__mask {
    width: 400px;
    height: 400px;
  }
  .container__video {
    width: 400px;
    height: 400px;
  }
  .section7 .privacy {
    margin-top: -60px;
  }
}
@media (max-width: 900px) {
  .section7 .bgvideo__mask {
    width: 300px;
    height: 300px;
  }
  .container__video {
    width: 300px;
    height: 300px;
  }
  .section7 .privacy {
    margin-top: -45px;
  }
}
@media (max-width: 768px) {
  .section7 .bgvideo__mask {
    width: 500px;
    height: 500px;
  }
  .container__video {
    width: 500px;
    height: 500px;
  }
  .grid__right {
    margin: 0 auto;
  }
  .section7 .privacy {
    margin-top: -80px;
  }
  .line {
    margin-top: 150px;
  }
}
@media (max-width: 550px) {
  .section7 .bgvideo__mask {
    width: 400px;
    height: 400px;
  }
  .container__video {
    width: 400px;
    height: 400px;
  }
  .section7 .privacy {
    margin-top: -60px;
  }
}
@media (max-width: 450px) {
  .section7 .bgvideo__mask {
    width: 300px;
    height: 300px;
  }
  .container__video {
    width: 300px;
    height: 300px;
  }
  .section7 .privacy {
    margin-top: -45px;
  }
}
@media (max-width: 350px) {
  .section7 .bgvideo__mask {
    width: 250px;
    height: 250px;
  }
  .container__video {
    width: 250px;
    height: 250px;
  }
  .section7 .privacy {
    margin-top: -40px;
  }
}
/* END Section7 Girl ============================================================================== */

/* START Section8 Accordion ======================================================================= */
.section8 {
  margin-top:  100px;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

details {
  margin: 20px 0;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px hsl(317 100% 30%);
          box-shadow: 0 0 10px hsl(317 100% 30%);
  -webkit-transition: .5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
  -o-transition: .5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
  transition: .5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

details div {
  margin-bottom: -50px;
}

details[open] {
  padding-bottom: 50px;
}

details:hover {
  -webkit-box-shadow: 0 0 20px hsl(317 100% 50%);
          box-shadow: 0 0 20px hsl(317 100% 50%);
}

summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
}

summary h2 {
  margin: 0;
}

summary::marker,
summary::-webkit-details-marker {
  display: none;
  content: none;
}

details span {
  padding-right: 30px;
  height: 20px;
}
details span:before,
details span:after {
  position: absolute;
  content: '';
  width: 16px;
  height: 2px;
  background: #fff;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  -o-transition: transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}
details span:before {
  -webkit-transform: translate(-5px, 8px) rotate(45deg);
      -ms-transform: translate(-5px, 8px) rotate(45deg);
          transform: translate(-5px, 8px) rotate(45deg);
}
details span:after {
  -webkit-transform: translate(5px, 8px) rotate(-45deg);
      -ms-transform: translate(5px, 8px) rotate(-45deg);
          transform: translate(5px, 8px) rotate(-45deg);
}

details[open] span:before {
  -webkit-transform: translate(5px, 8px) rotate(45deg);
      -ms-transform: translate(5px, 8px) rotate(45deg);
          transform: translate(5px, 8px) rotate(45deg);
}

details[open] span:after {
  -webkit-transform: translate(-5px, 8px) rotate(-45deg);
      -ms-transform: translate(-5px, 8px) rotate(-45deg);
          transform: translate(-5px, 8px) rotate(-45deg);
}

details p {
  padding: 10px;
  color: #afafaf;
}
/* END Section8 Accordion ======================================================================== */

/* START Search ================================================================================= */
.section8-1 {
  margin-top: 100px;
  padding: 0 10px;
}

:focus::-webkit-input-placeholder {opacity:0;}
:focus::-moz-placeholder               {opacity:0;}
:focus:-moz-placeholder                {opacity:0;}
:focus:-ms-input-placeholder       {opacity:0;}

.search {
  margin: 0 auto;
  max-width: 300px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px hsl(317 100% 30%);
          box-shadow: 0 0 10px hsl(317 100% 30%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search:hover {
  -webkit-box-shadow: 0 0 20px hsl(317 100% 50%);
          box-shadow: 0 0 20px hsl(317 100% 50%);
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search:focus-within {
  -webkit-box-shadow: 0 0 20px hsl(317 100% 50%);
          box-shadow: 0 0 20px hsl(317 100% 50%);
}

.search-btn {
  width: 40px;
  background: none;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search:hover > .search-btn {
  color: var(--clr-neon);
  width: 50px;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search:focus-within > .search-btn {
  color: var(--clr-neon);
  width: 50px;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search-txt {
  width: 220px;
  background: none;
  outline: none;
  font-family: 'Balsamiq Sans', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  color: #afafaf;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search:hover > .search-txt {
  font-size: 16px;
  color: #afafaf;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.search-txt:focus {
  text-shadow: 0 0 0.45em rgb(255 20 189);
  cursor: default;
  color: rgba(255, 255, 255, 1);
}
/* END Search =================================================================================== */

/* START Loader ================================================================================= */
#modelSearch {
  opacity: 0;
  -webkit-transition: 2s;
  -o-transition: 2s;
  transition: 2s;
}

#modelLoad {
  width: 260px;
  height: 40px;
  font-size: 40px;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.loader {
  margin-top: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.loader .dot {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  background: var(--clr-neon);
  -webkit-box-shadow: 0 0 10px var(--clr-neon),
                          0 0 20px var(--clr-neon),
						  0 0 40px var(--clr-neon),
						  0 0 60px var(--clr-neon),
						  0 0 80px var(--clr-neon),
						  0 0 100px var(--clr-neon);
          box-shadow: 0 0 10px var(--clr-neon),
                          0 0 20px var(--clr-neon),
						  0 0 40px var(--clr-neon),
						  0 0 60px var(--clr-neon),
						  0 0 80px var(--clr-neon),
						  0 0 100px var(--clr-neon);
  margin: 20px 8px;
  -webkit-transform: scale(0.1);
      -ms-transform: scale(0.1);
          transform: scale(0.1);
  border-radius: 50%;
  -webkit-animation: animateDot 2s linear infinite;
          animation: animateDot 2s linear infinite;
  -webkit-animation-delay: calc(0.1s * var(--i));
          animation-delay: calc(0.1s * var(--i));
}

@-webkit-keyframes animateDot {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
    50%,100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
}

@keyframes animateDot {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
    50%,100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
}
/* END Loader =================================================================================== */

/* START Footer ================================================================================= */
.footer {
  margin: 70px 0 0;
  padding: 10px 10px 0;
  line-height: 40px;
  font-size: 18px;
  background-color: #000;
  -webkit-box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 1);
          box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 1);
  color: #fff;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}

.footer__nav-title {
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer__nav li {
  list-style: none;
}

.footer__nav li a,
.footer__nav li button,
.footer__nav .hidden-link {
  text-align: left;
  width: 100%;
  display: block;
  color: #fff;
}

.footer__nav li a:hover,
.footer__nav li button:hover,
.footer__nav .hidden-link:hover {
  cursor: pointer;
  color: #ff14bd;
}

.footer__nav .hidden-link img {
  display: inline-block;
  margin: 0px 5px -8px 0;
  width: 30px;
  border-radius: 10px;
}

.footer__nav ul li img {
  border-radius: 10px;
}

.footer .copyright {
  margin-top: 50px;
  line-height: 1.5;
  font-size: 16px;
  color: #afafaf;
}

.footer .copyright .hidden-link {
  font-size: 20px;
  color: #fff;
}

.footer .copyright .hidden-link:hover {
  cursor: pointer;
  color: #ff14bd;
}

.footer hr {
  border: 1px solid #c5c5c5;
  border-top-color: #000;
  margin: 50px 0 10px;
  width: 100%;
}

.footer__img img {
  width: 100%;
  height: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* END Footer =================================================================================== */

/* START Popup ================================================================================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  overflow-y: hidden;
  backdrop-filter: blur(10px);
}

.popup-content {
  position: relative;
  padding: 40px 0;
  max-width: 460px;
  width: 95%;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px hsl(317 100% 30%);
  box-shadow: 0 0 10px hsl(317 100% 30%);
  text-align: center;
  background-color: #12090f;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}

.close-btn:hover {
  color: #333;
}

.popup-content .bgvideo__mask {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: hsl(323deg 50% 5% / 70%);
}

.popup-content .container__video {
  margin: 0 auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 3em 0 var(--clr-neon);
  box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 3em 0 var(--clr-neon);
}

.popup-content p {
  padding: 20px 0;
  line-height: 1.1;
  color: #afafaf;
  text-transform: uppercase;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}

.popup-content .neon-button {
  margin: 0 auto;
  font-size: 2rem;
  width: 50%;
}
/* END Popup ================================================================================== */

/* START Privacy ================================================================================ */
.section20 {
  padding: 10px;
  color: #afafaf;
  text-shadow: 0 0 0.45em rgb(255 20 189);
}
/* END Privacy =================================================================================== */

/* START 404 ==================================================================================== */
.not_found {
  font-size: 200px;
  color: #fff;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
}
/* END 404 ====================================================================================== */