*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1200px) {
  body {
    overflow: hidden;
  }
}
img {
  width: 100%;
}
.stop-scrolling {
  height: 100%;
  overflow-y: hidden;
}
.container {
  margin: 0 auto;
  padding: 40px 30px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 30px 0;
    max-width: 1200px;
  }
}
.container--noVerticalPadding {
  padding: 0 30px;
}
.header {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: #2b2b2b;
  z-index: 10;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.header--show {
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .header {
    position: static;
    transition: none;
  }
}
.header__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hamburgerBtn {
  position: relative;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  outline: transparent;
}
@media (min-width: 1024px) {
  .hamburgerBtn {
    display: none;
  }
}
.hamburgerBtn--isOpen .hamburgerBtn__top {
  animation: topTransform 0.2s linear forwards,
    topRotate 0.2s 0.3s linear forwards;
}
.hamburgerBtn--isOpen .hamburgerBtn__middle {
  opacity: 0;
}
.hamburgerBtn--isOpen .hamburgerBtn__bottom {
  animation: bottomTransform 0.2s linear forwards,
    bottomRotate 0.2s 0.3s linear forwards;
}
.hamburgerBtn__top,
.hamburgerBtn__middle,
.hamburgerBtn__bottom {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #a07eb5;
}
.hamburgerBtn__top {
  top: 0;
  left: 0;
  animation: topBack 0.2s linear;
}
.hamburgerBtn__middle {
  top: 50%;
  left: 0;
}
.hamburgerBtn__bottom {
  top: 100%;
  left: 0;
  animation: bottomBack 0.2s linear;
}
@keyframes topTransform {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes topRotate {
  0% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes topBack {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes bottomTransform {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes bottomRotate {
  0% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes bottomBack {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.navigation {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100vw;
  min-height: calc(100vh - 55px);
  padding: 20px 30px;
  background-color: #2b2b2b;
  transform: translateY(calc(-100vh - 200px));
  transform-origin: top;
  transition: transform 0.3s ease-in;
  z-index: 1;
}
@media (min-width: 1024px) {
  .navigation {
    display: none;
  }
}
.navigation--isOpen {
  transform: translateY(0);
}
.navigation__list {
  list-style: none;
}
.navigation__link {
  display: block;
  padding: 16px 0;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #303030;
}
.navigation__link--active {
  color: #b3b3b3;
}
.navigation__searchBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  color: #aaaaaa;
  font-size: 24px;
}
@media (min-width: 1024px) {
  .navigation__searchBox {
    display: none;
  }
}
.navigation__search {
  max-width: 210px;
  height: 70px;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  border: none;
  outline: transparent;
}
.navigation__search::placeholder {
  color: inherit;
}
.navigation__searchIcon {
  color: inherit;
  font-size: inherit;
}
.mainNav {
  display: none;
}
@media (min-width: 1024px) {
  .mainNav {
    display: block;
  }
}
.mainNav__list {
  display: flex;
  list-style: none;
}
.mainNav__item {
  padding: 0 17px;
}
.mainNav__link {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 17px 0;
  transition: color 0.2s ease-in;
}
.mainNav__link:hover {
  color: #b3b3b3;
}
.mainNav__link--active {
  color: #b3b3b3;
}
.heading {
  margin-bottom: 25px;
  color: #3f3849;
  font-size: 38px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .heading {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  .heading__part {
    display: block;
  }
}
.heading--lifestyle {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  opacity: 0;
}
@media (min-width: 768px) {
  .heading--lifestyle {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .heading--lifestyle {
    font-size: 92px;
  }
}
.heading--small {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
}
.heading--white {
  color: #fff;
}
.heading--footer {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.heading__fancy {
  color: #994fff;
}
.heading--anim {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.lifestyle {
  position: relative;
  padding-top: 73px;
  background-color: #2b2b2b;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .lifestyle {
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .lifestyle {
    display: flex;
    align-items: center;
    padding: 0;
    width: 100vw;
    min-width: 100vw;
    height: calc(100vh - 95px);
  }
}
.lifestyle__content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 330px;
}
@media (min-width: 768px) {
  .lifestyle__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .lifestyle__content {
    max-width: none;
  }
}
.lifestyle__textBox {
  width: 260px;
}
@media (min-width: 768px) {
  .lifestyle__textBox {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .lifestyle__textBox {
    width: 55%;
  }
}
.lifestyle__heading {
  margin: 30px 0 5px;
  font-size: 12px;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .lifestyle__heading {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .lifestyle__heading {
    margin: 50px 0 30px;
    font-size: 20px;
  }
}
.lifestyle__description {
  margin-bottom: 35px;
  font-size: 11px;
  color: #b2b3bf;
}
@media (min-width: 1200px) {
  .lifestyle__description {
    font-size: 17px;
  }
}
.lifestyle__clock {
  max-width: 345px;
  opacity: 0;
}
@media (min-width: 1200px) {
  .lifestyle__clock {
    max-width: 480px;
  }
}
.lifestyle__clock--anim {
  animation: roll-in-left 0.6s ease-out both;
}
.lifestyle__scroll {
  display: none;
  text-transform: uppercase;
  color: #994fff;
  font-size: 20px;
  font-weight: 700;
  animation: scrollIconAnim 1s ease infinite alternate;
}
@media (min-width: 1200px) {
  .lifestyle__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lifestyle__scroll::before {
    content: "\f8cc";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
  }
}
@keyframes roll-in-left {
  0% {
    transform: translateX(800px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scrollIconAnim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}
.description {
  margin-bottom: 20px;
  font-size: 18px;
  color: #3f3849;
}
.description--small {
  font-size: 16px;
  color: #8d8698;
}
.description--lighter {
  font-size: 16px;
  color: #a1a1a1;
}
.description--fadeIn {
  animation: fade-in 1.2s ease;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.subHeading {
  margin-bottom: 10px;
  font-size: 15px;
  color: #aca3ba;
  text-transform: uppercase;
}
.subHeading--gray {
  color: #9b9b9b;
}
.gallery {
  text-align: center;
  flex-shrink: 0;
  background-image: url("./public/bgImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 1200px) {
  .gallery {
    display: flex;
    align-items: center;
    width: 100vw;
    min-width: 100vw;
    height: calc(100vh - 95px);
  }
}
.gallery__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}
.gallery__content--anim {
  animation: tilt-in-bottom-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media (min-width: 768px) {
  .gallery__textBox {
    max-width: 600px;
  }
}
.gallery__fullImgBox {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 10;
}
.gallery__fullImgBox--isVisible {
  display: flex;
}
.gallery__fullImg {
  width: 80%;
  animation: scaleImg 1s 0.2s ease both;
}
@media (min-width: 576px) {
  .gallery__fullImg {
    width: 285px;
  }
}
@media (min-width: 768px) {
  .gallery__fullImg {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .gallery__fullImg {
    width: 600px;
  }
}
.gallery__closeFullImg {
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 38px;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease-in-out;
}
.gallery__closeFullImg:hover {
  color: #fff;
}
@keyframes tilt-in-bottom-1 {
  0% {
    transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}
@keyframes scaleImg {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.slider {
  width: 230px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .slider {
    width: 480px;
  }
}
@media (min-width: 768px) {
  .slider {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .slider {
    width: 960px;
  }
}
.slider__itemsList {
  display: flex;
  list-style: none;
  overflow: hidden;
}
.slider__img {
  height: 100%;
  transition: transform 0.3s ease;
}
.slider__item {
  position: relative;
  width: 230px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 576px) {
  .slider__item {
    margin-right: 20px;
  }
}
@media (min-width: 768px) {
  .slider__item {
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .slider__item {
    width: 300px;
  }
}
.slider__item::before {
  content: "\f00e";
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  font-size: 24px;
  transform: translate(-50%, calc(-50% + 20px));
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 5;
}
.slider__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease-in;
}
.slider__item:hover .slider__img {
  transform: scale(1.2);
}
.slider__item:hover.slider__item::after {
  background-color: rgba(125, 30, 255, 0.8);
}
.slider__item:hover.slider__item::before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.slider__dot {
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background-color: #b47eff;
  border: none;
  border-radius: 50%;
  outline: transparent;
  cursor: pointer;
}
.slider__dot--isActive {
  background-color: #7d1eff;
}
.section {
  background-color: #fff;
}
@media (min-width: 1200px) {
  .section {
    width: 100vw;
    min-width: 100vw;
    height: calc(100vh - 95px);
  }
}
.section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .section__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .section__content {
    justify-content: space-around;
  }
}
@media (min-width: 768px) {
  .section__content--reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .section__content--reverse {
    justify-content: space-around;
  }
}
.section__content--reverse .section__img {
  margin-right: 0;
}
@media (min-width: 768px) {
  .section__content--reverse .section__img {
    margin-left: 20px;
  }
}
.section__img {
  margin-bottom: 30px;
  max-width: 448px;
  opacity: 0;
}
@media (min-width: 768px) {
  .section__img {
    margin-right: 20px;
    max-width: 355px;
  }
}
@media (min-width: 1200px) {
  .section__img {
    margin: 0;
    max-width: 448px;
  }
}
.section__img--anim {
  animation: flip-in-hor-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.section__list {
  margin-top: 50px;
  list-style: none;
}
.section__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  transition: transform 0.2s ease-out;
}
.section__item:nth-last-child(1) {
  margin-bottom: 0;
}
.section__item:hover {
  transform: translateX(20px);
}
@media (min-width: 1200px) {
  .section__item {
    width: 80%;
  }
}
.section__icon {
  font-size: 27px;
  color: #7d1eff;
}
.section__textItem {
  width: 80%;
}
.section__percentagesBox {
  display: flex;
  flex-direction: column;
}
.section__percentages {
  width: 100%;
  height: 5px;
  background-color: #7d1eff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s 1s ease-in;
}
.section__percentagesValue {
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.video {
  background-image: url("./public/bgImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 1200px) {
  .video {
    display: flex;
    align-items: center;
    width: 100vw;
    min-width: 100vw;
    height: calc(100vh - 95px);
  }
}
.video__content {
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.video__content--anim {
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.video__videoWrapper {
  position: relative;
  max-width: 1000px;
}
@media (min-width: 576px) {
  .video__videoWrapper {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .video__videoWrapper {
    margin: 0 auto;
    height: 500px;
    min-width: 1000px;
  }
}
.video__videoWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./public/videoBg.jpg");
  background-size: cover;
}
.video__videoWrapper--noOverlay::before {
  display: none;
}
.video__playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #8a8a8a;
  border-radius: 50%;
  border: none;
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.video__playButton:hover {
  background-color: #7d1eff;
  color: #fff;
}
.video__playButton--hide {
  display: none;
}
.video__iframe {
  width: 100%;
  height: 100%;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.chooseColor {
  text-align: center;
  background-color: #363636;
  color: #fff;
}
@media (min-width: 1200px) {
  .chooseColor {
    display: flex;
    align-items: center;
    width: 100vw;
    min-width: 100vw;
    height: calc(100vh - 95px);
  }
}
.chooseColor__itemsList {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-bottom: 50px;
  list-style: none;
}
@media (min-width: 992px) {
  .chooseColor__itemsList {
    grid-template-columns: repeat(3, minmax(242px, 1fr));
  }
}
@media (min-width: 1200px) {
  .chooseColor__itemsList {
    grid-template-columns: repeat(3, minmax(386px, 1fr));
  }
}
.chooseColor__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  height: 332px;
  background-image: url("./public/items/green_clock.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  opacity: 0;
}
.chooseColor__item--purpleBg {
  background-image: url("./public/items/purple_clock.jpg");
}
.chooseColor__item--purpleBg .chooseColor__colorName {
  color: #cea9ff;
}
.chooseColor__item--goldBg {
  background-image: url("./public/items/gold_clock.jpg");
}
.chooseColor__item--goldBg .chooseColor__colorName {
  color: #f3b560;
}
.chooseColor__item--anim {
  animation: flipInY 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.chooseColor__typeClock {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}
.chooseColor__colorName {
  margin-bottom: 20px;
  color: #99ffee;
  font-size: 20px;
  font-weight: 700;
}
.chooseColor__price {
  font-size: 21px;
  font-weight: 700;
}
.chooseColor__moreBtn {
  padding: 15px 41px;
  color: inherit;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 28px;
  transition: opacity 0.2s ease;
}
.chooseColor__moreBtn:hover {
  opacity: 0.7;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.testimonials {
  text-align: center;
  background-image: url("./public/bgImage2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
@media (min-width: 1200px) {
  .testimonials {
    display: flex;
    align-items: center;
    min-width: 100vw;
    height: calc(100vh - 95px);
  }
}
.testimonials__content {
  margin: 0 auto;
  max-width: 550px;
  opacity: 0;
}
.testimonials__content--anim {
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.testimonials__slider {
  margin-top: 50px;
  min-height: 356px;
}
@media (min-width: 576px) {
  .testimonials__slider {
    min-height: 275px;
  }
}
.testimonials__topBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials__img {
  margin: 0 50px 30px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
}
@media (min-width: 576px) {
  .testimonials__img {
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media (min-width: 768px) {
  .testimonials__img {
    margin-left: 120px;
    margin-right: 120px;
  }
}
.testimonials__img--fadeIn {
  animation: fade-in 1.2s ease;
}
.testimonials__btn {
  background-color: transparent;
  color: #d4b5ff;
  font-size: 28px;
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 0.2s ease-in;
}
@media (min-width: 1200px) {
  .testimonials__btn:hover {
    color: #fff;
  }
}
.testimonials__name {
  margin-top: 20px;
  color: #7d1eff;
  font-size: 16px;
  font-weight: 800;
}
.testimonials__name--fadeIn {
  animation: fade-in 1.2s ease;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .pageBox {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
  }
}
